Skip to content

Commit 8352e09

Browse files
authored
Merge pull request #65 from jrakibi/add-decoder-tool
add transaction decoder
2 parents 343a199 + 5b38853 commit 8352e09

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

decoding/transaction-decoder.mdx

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: "Transaction Decoder"
3+
date: 2024-01-25T15:32:14Z
4+
lastmod: "2024-07-26"
5+
draft: false
6+
category: Tools
7+
layout: TopicBanner
8+
order: 0
9+
icon: "FaTools"
10+
---
11+
12+
<TransactionDecoder />

decoding/transaction-signing.mdx

+8-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ children:
2424
- transaction-signing-09
2525
---
2626

27-
In this tutorial, we'll learn how to sign a transaction by working with a real example from <a href="https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki#native-p2wpkh" target="_blank">BIP143's test vectors</a>.
27+
In this tutorial, we'll learn how to sign a transaction by working with a real example from <a href="https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki#native-p2wpkh" target="_blank">BIP143's test vectors</a>.
2828

2929
The transaction has two inputs, but we'll focus specifically on signing the second input which is a P2WPKH (native SegWit) input.
3030
The first input is a legacy P2PK input which uses a different signing method that we won't cover now.
@@ -68,6 +68,13 @@ Our goal is to create and sign this transaction:
6868
nLockTime: 11000000`}
6969
/>
7070

71+
<ExpandableAlert
72+
title="Transaction Decoder Tool"
73+
type="info"
74+
expandable={false}
75+
>
76+
💡 You can explore this transaction in detail using our [Transaction Decoder](/decoding/transaction-decoder) tool.
77+
</ExpandableAlert>
7178

7279
Below is the complete transaction data. You can refer back to this whenever you need to check any details during the following steps:
7380

0 commit comments

Comments
 (0)