Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: change references to bitcoin-topics to decoding-bitcoin #69

Merged
merged 1 commit into from
Feb 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion authors/default.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: BDP
nym: default
avatar: /bitcoin-topics/static/images/authors/bdp.jpeg
avatar: /decoding-bitcoin/static/images/authors/bdp.jpeg
twitter: https://x.com/Bitcoin_Devs
github: https://github.com/bitcoin-dev-project/bitcoin-dev-project
---
Expand Down
10 changes: 5 additions & 5 deletions decoding/bitcoin-history.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ order: 102
],
media: {
type: "image",
src: "/bitcoin-topics/static/images/topics/bitcoin-history/step1-dark.png",
src: "/decoding-bitcoin/static/images/topics/bitcoin-history/step1-dark.png",
alt: "Satoshi starts working on Bitcoin"
}
},
Expand Down Expand Up @@ -59,7 +59,7 @@ order: 102
],
media: {
type: "image",
src: "/bitcoin-topics/static/images/topics/bitcoin-history/whitepaper.png",
src: "/decoding-bitcoin/static/images/topics/bitcoin-history/whitepaper.png",
alt: "Satoshi starts working on Bitcoin"
}
},
Expand All @@ -83,7 +83,7 @@ order: 102
],
media: {
type: "image",
src: "/bitcoin-topics/static/images/topics/bitcoin-history/step8.png",
src: "/decoding-bitcoin/static/images/topics/bitcoin-history/step8.png",
alt: "Genesis block"
}
},
Expand Down Expand Up @@ -204,7 +204,7 @@ order: 102
],
media: {
type: "image",
src: "/bitcoin-topics/static/images/topics/bitcoin-history/step7.png",
src: "/decoding-bitcoin/static/images/topics/bitcoin-history/step7.png",
alt: "Genesis block"
}
},
Expand Down Expand Up @@ -296,7 +296,7 @@ order: 102
],
media: {
type: "image",
src: "/bitcoin-topics/static/images/topics/bitcoin-history/step6.png",
src: "/decoding-bitcoin/static/images/topics/bitcoin-history/step6.png",
alt: "Genesis block"
}
},
Expand Down
6 changes: 3 additions & 3 deletions decoding/bitcoin-opcodes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ layout: TopicBanner
order: 2
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/bitcoin-opcodes-thumbnail.webp"
"/decoding-bitcoin/static/images/topics/thumbnails/bitcoin-opcodes-thumbnail.webp"
]
parent: overview
---
Expand All @@ -26,14 +26,14 @@ The visualization below includes an explanation of the most commonly used opcode

<div className="dark:hidden w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/overview/opcode-category.gif"
src="/decoding-bitcoin/static/images/topics/overview/opcode-category.gif"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/overview/opcode-category.gif"
src="/decoding-bitcoin/static/images/topics/overview/opcode-category.gif"
width="100%"
height="auto"
/>
Expand Down
2 changes: 1 addition & 1 deletion decoding/compact-size.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 2
icon: "FaHashtag"
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/taproot-roadmap-thumbnail.webp"
"/decoding-bitcoin/static/images/topics/thumbnails/taproot-roadmap-thumbnail.webp"
]
parent: "technical-foundation"
---
Expand Down
14 changes: 7 additions & 7 deletions decoding/endianness.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 1
icon: "FaHashtag"
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/transaction-module/endianness.png"
"/decoding-bitcoin/static/images/topics/thumbnails/transaction-module/endianness.png"
]
parent: "technical-foundation"
---
Expand All @@ -24,14 +24,14 @@ Similarly, computers have two ways to store data:

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/technical-foundation/communication-endianness.svg"
src="/decoding-bitcoin/static/images/topics/transactions/technical-foundation/communication-endianness.svg"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/technical-foundation/communication-endianness.svg"
src="/decoding-bitcoin/static/images/topics/transactions/technical-foundation/communication-endianness.svg"
width="100%"
height="auto"
/>
Expand All @@ -50,14 +50,14 @@ Suppose we want to store the number **12345678** (hexadecimal: `0x00BC614E`) in

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/technical-foundation/bigendian.jpg"
src="/decoding-bitcoin/static/images/topics/transactions/technical-foundation/bigendian.jpg"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/technical-foundation/bigendian.jpg"
src="/decoding-bitcoin/static/images/topics/transactions/technical-foundation/bigendian.jpg"
width="100%"
height="auto"
/>
Expand Down Expand Up @@ -85,14 +85,14 @@ Using the same number **12345678** (`0x00BC614E`), here's how it looks in **litt

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/technical-foundation/littleendian.png"
src="/decoding-bitcoin/static/images/topics/transactions/technical-foundation/littleendian.png"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/technical-foundation/littleendian.png"
src="/decoding-bitcoin/static/images/topics/transactions/technical-foundation/littleendian.png"
width="100%"
height="auto"
/>
Expand Down
18 changes: 9 additions & 9 deletions decoding/fee-calculation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ category: Transactions
layout: TopicBanner
order: 306
icon: "FaClipboardList"
images: ["/bitcoin-topics/static/images/topics/thumbnails/transaction-module/fees-thumbnail-feecalculation.jpg"]
images: ["/decoding-bitcoin/static/images/topics/thumbnails/transaction-module/fees-thumbnail-feecalculation.jpg"]
children: ["transaction-weight", "blocksize-blockweight", "fee-rate", "rbf"]
---

Expand Down Expand Up @@ -37,14 +37,14 @@ Let's calculate the fee for the following <a href="https://mempool.space/tx/c27c

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_0_temp.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_0_temp.png"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_0_temp.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_0_temp.png"
width="100%"
height="auto"
/>
Expand Down Expand Up @@ -77,14 +77,14 @@ Miners receive two types of rewards for securing the network:

<div className="dark:hidden w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_1.svg"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_1.svg"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_1.svg"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_1.svg"
width="100%"
height="auto"
/>
Expand All @@ -105,14 +105,14 @@ For now, understand that:

<div className="dark:hidden w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_2.svg"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_2.svg"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_2.svg"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_2.svg"
width="100%"
height="auto"
/>
Expand Down Expand Up @@ -149,14 +149,14 @@ Let's say you have a transaction that's been sitting in the mempool for hours be

<div className="dark:hidden w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_3.svg"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_3.svg"
width="80%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-lg">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_3.svg"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_3.svg"
width="80%"
height="auto"
/>
Expand Down
2 changes: 1 addition & 1 deletion decoding/fee-rate.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ category: Transactions
layout: TopicBanner
order: 2
icon: "FaClipboardList"
images: ["/bitcoin-topics/static/images/topics/thumbnails/musig-thumbnail.webp"]
images: ["/decoding-bitcoin/static/images/topics/thumbnails/musig-thumbnail.webp"]
parent: "fee-calculation"
---

Expand Down
2 changes: 1 addition & 1 deletion decoding/implement-OP_ADD-OP_HASH160.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 4
project: true
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/project-stack-thumbnail.webp"
"/decoding-bitcoin/static/images/topics/thumbnails/project-stack-thumbnail.webp"
]
parent: project
---
Expand Down
2 changes: 1 addition & 1 deletion decoding/implement-OP_CHECKSIG.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 5
project: true
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/project-stack-thumbnail.webp"
"/decoding-bitcoin/static/images/topics/thumbnails/project-stack-thumbnail.webp"
]
parent: project
---
Expand Down
2 changes: 1 addition & 1 deletion decoding/implement-basic-stack.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 2
project: true
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/project-stack-thumbnail.webp"
"/decoding-bitcoin/static/images/topics/thumbnails/project-stack-thumbnail.webp"
]
parent: project
---
Expand Down
6 changes: 3 additions & 3 deletions decoding/inputs-inputcount.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ category: Transactions
layout: TopicBanner
order: 3
icon: "FaClipboardList"
images: ["/bitcoin-topics/static/images/topics/thumbnails/transaction-module/fees-thumbnail-inputcount.jpg"]
images: ["/decoding-bitcoin/static/images/topics/thumbnails/transaction-module/fees-thumbnail-inputcount.jpg"]
parent: "transaction-structure"
---

Expand All @@ -27,14 +27,14 @@ Let's examine this real transaction:

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_10_inputcount.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_10_inputcount.png"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_10_inputcount.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_10_inputcount.png"
width="100%"
height="auto"
/>
Expand Down
6 changes: 3 additions & 3 deletions decoding/inputs-output-index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 4
icon: "FaClipboardList"
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/transaction-module/fees-thumbnail-vout.jpg"
"/decoding-bitcoin/static/images/topics/thumbnails/transaction-module/fees-thumbnail-vout.jpg"
]
parent: "transaction-structure"
---
Expand All @@ -22,14 +22,14 @@ Let's examine our transaction to understand this better:

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_12_vout.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_12_vout.png"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_12_vout.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_12_vout.png"
width="100%"
height="auto"
/>
Expand Down
6 changes: 3 additions & 3 deletions decoding/inputs-prev-txid.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 4
icon: "FaClipboardList"
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/transaction-module/fees-thumbnail-prevtxid.jpg"
"/decoding-bitcoin/static/images/topics/thumbnails/transaction-module/fees-thumbnail-prevtxid.jpg"
]
parent: "transaction-structure"
---
Expand All @@ -24,14 +24,14 @@ Let's examine our transaction to understand this better:

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_11_txid.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_11_txid.png"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_11_txid.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_11_txid.png"
width="100%"
height="auto"
/>
Expand Down
6 changes: 3 additions & 3 deletions decoding/inputs-scriptsig.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 6
icon: "FaClipboardList"
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/transaction-module/tx-thumbnail-scriptsig.jpg"
"/decoding-bitcoin/static/images/topics/thumbnails/transaction-module/tx-thumbnail-scriptsig.jpg"
]
parent: "transaction-structure"
---
Expand All @@ -20,14 +20,14 @@ The ScriptSig is a variable-length field in transaction inputs that provides the

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/tx-scriptsig.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/tx-scriptsig.png"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/tx-scriptsig.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/tx-scriptsig.png"
width="100%"
height="auto"
/>
Expand Down
6 changes: 3 additions & 3 deletions decoding/inputs-scriptsigsize.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ order: 5
icon: "FaClipboardList"
images:
[
"/bitcoin-topics/static/images/topics/thumbnails/transaction-module/fees-thumbnail-scriptsig-size.jpg"
"/decoding-bitcoin/static/images/topics/thumbnails/transaction-module/fees-thumbnail-scriptsig-size.jpg"
]
parent: "transaction-structure"
---
Expand All @@ -22,14 +22,14 @@ Let's examine our transaction to understand this better:

<div className="dark:hidden w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_13_scriptsigsize.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_13_scriptsigsize.png"
width="100%"
height="auto"
/>
</div>
<div className="hidden dark:block w-full rounded-xl overflow-hidden">
<SvgDisplay
src="/bitcoin-topics/static/images/topics/transactions/fees/fees_13_scriptsigsize.png"
src="/decoding-bitcoin/static/images/topics/transactions/fees/fees_13_scriptsigsize.png"
width="100%"
height="auto"
/>
Expand Down
Loading