|
1 | 1 | {
|
2 | 2 | "cells": [
|
3 |
| - { |
4 |
| - "cell_type": "markdown", |
5 |
| - "id": "3ca0e780", |
6 |
| - "metadata": {}, |
7 |
| - "source": [ |
8 |
| - "## Setup \n", |
9 |
| - "\n", |
10 |
| - "### Requirements\n", |
11 |
| - "For this exercise we'll need Bitcoin Core. This notebook has been tested with [v24.0.1](https://github.com/bitcoin/bitcoin/releases/tag/v24.0.1).\n", |
12 |
| - "\n", |
13 |
| - "Below, set the paths for:\n", |
14 |
| - "1. The bitcoin core functional test framework directory.\n", |
15 |
| - "2. The directory containing bitcoin-tx-tutorial.\n", |
16 |
| - "\n", |
17 |
| - "**You'll need to edit these next two lines for your local setup.**" |
18 |
| - ] |
19 |
| - }, |
20 | 3 | {
|
21 | 4 | "cell_type": "code",
|
22 |
| - "execution_count": 1, |
| 5 | + "execution_count": null, |
23 | 6 | "id": "752d005e",
|
24 | 7 | "metadata": {},
|
25 | 8 | "outputs": [],
|
26 | 9 | "source": [
|
27 |
| - "path_to_bitcoin_functional_test = \"/Users/dariuscognac/bitcoin/test/functional\"\n", |
28 |
| - "path_to_bitcoin_tx_tutorial = \"/Users/dariuscognac/Documents/Github/bitcoin-tx-tutorial\"\n", |
29 |
| - "\n", |
30 |
| - "import sys\n", |
31 |
| - "\n", |
32 |
| - "# Add the functional test framework to our PATH\n", |
33 |
| - "sys.path.insert(0, path_to_bitcoin_functional_test)\n", |
34 |
| - "from test_framework.test_shell import TestShell\n", |
35 |
| - "\n", |
36 |
| - "# Add the bitcoin-tx-tutorial functions to our PATH\n", |
37 |
| - "sys.path.insert(0, path_to_bitcoin_tx_tutorial)\n", |
38 | 10 | "from functions import *\n",
|
39 | 11 | "from functions.bip_0340_reference import *"
|
40 | 12 | ]
|
|
101 | 73 | },
|
102 | 74 | {
|
103 | 75 | "cell_type": "code",
|
104 |
| - "execution_count": 2, |
| 76 | + "execution_count": null, |
105 | 77 | "id": "2f212482",
|
106 | 78 | "metadata": {},
|
107 | 79 | "outputs": [],
|
|
120 | 92 | },
|
121 | 93 | {
|
122 | 94 | "cell_type": "code",
|
123 |
| - "execution_count": 3, |
| 95 | + "execution_count": null, |
124 | 96 | "id": "54b533fc",
|
125 | 97 | "metadata": {},
|
126 |
| - "outputs": [ |
127 |
| - { |
128 |
| - "name": "stdout", |
129 |
| - "output_type": "stream", |
130 |
| - "text": [ |
131 |
| - "pubkey: (55066263022277343669578718895168534326250603453777594175500187360389116729240, 32670510020758816978083085130507043184471273380659243275938904335757337482424)\n" |
132 |
| - ] |
133 |
| - } |
134 |
| - ], |
| 98 | + "outputs": [], |
135 | 99 | "source": [
|
136 | 100 | "privkey_int = int_from_bytes(privkey)\n",
|
137 | 101 | "pubkey = point_mul(G, privkey_int)\n",
|
|
180 | 144 | },
|
181 | 145 | {
|
182 | 146 | "cell_type": "code",
|
183 |
| - "execution_count": 4, |
| 147 | + "execution_count": null, |
184 | 148 | "id": "468b6795",
|
185 | 149 | "metadata": {},
|
186 |
| - "outputs": [ |
187 |
| - { |
188 |
| - "name": "stdout", |
189 |
| - "output_type": "stream", |
190 |
| - "text": [ |
191 |
| - "Uncompressed pubkey: 0479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8\n", |
192 |
| - "Compressed pubkey: 0279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798\n" |
193 |
| - ] |
194 |
| - } |
195 |
| - ], |
| 150 | + "outputs": [], |
196 | 151 | "source": [
|
197 | 152 | "# using the same privkey value from above\n",
|
198 | 153 | "pubkey = point_mul(G, privkey_int)\n",
|
|
226 | 181 | },
|
227 | 182 | {
|
228 | 183 | "cell_type": "code",
|
229 |
| - "execution_count": 5, |
| 184 | + "execution_count": null, |
230 | 185 | "id": "a56fe6dc",
|
231 | 186 | "metadata": {},
|
232 |
| - "outputs": [ |
233 |
| - { |
234 |
| - "name": "stdout", |
235 |
| - "output_type": "stream", |
236 |
| - "text": [ |
237 |
| - "original_pubkey: (115780575977492633039504758427830329241728645270042306223540962614150928364886, 78735063515800386211891312544505775871260717697865196436804966483607426560663)\n", |
238 |
| - "y coordinate is odd\n", |
239 |
| - "\n", |
240 |
| - "Negating the private key..\n", |
241 |
| - "new_pubkey: (115780575977492633039504758427830329241728645270042306223540962614150928364886, 37057025721515809211679672464182131982009266967775367602652617524301408111000)\n", |
242 |
| - "y coordinate is even\n" |
243 |
| - ] |
244 |
| - } |
245 |
| - ], |
| 187 | + "outputs": [], |
246 | 188 | "source": [
|
247 | 189 | "# This private key has been chosen as it'll produce a public key with an odd y-coordinate\n",
|
248 | 190 | "original_privkey = bytes.fromhex(\"0000000000000000000000000000000000000000000000000000000000000006\")\n",
|
|
289 | 231 | },
|
290 | 232 | {
|
291 | 233 | "cell_type": "code",
|
292 |
| - "execution_count": 6, |
| 234 | + "execution_count": null, |
293 | 235 | "id": "c7cd1861",
|
294 | 236 | "metadata": {},
|
295 |
| - "outputs": [ |
296 |
| - { |
297 |
| - "name": "stdout", |
298 |
| - "output_type": "stream", |
299 |
| - "text": [ |
300 |
| - "Pubkey generated from summing private keys: (112711660439710606056748659173929673102114977341539408544630613555209775888121, 25583027980570883691656905877401976406448868254816295069919888960541586679410)\n", |
301 |
| - "Pubkey generated from summing public keys: (112711660439710606056748659173929673102114977341539408544630613555209775888121, 25583027980570883691656905877401976406448868254816295069919888960541586679410)\n", |
302 |
| - "Success!\n" |
303 |
| - ] |
304 |
| - } |
305 |
| - ], |
| 237 | + "outputs": [], |
306 | 238 | "source": [
|
307 | 239 | "# Define private keys and convert to int\n",
|
308 | 240 | "privkey_a = bytes.fromhex(\"0000000000000000000000000000000000000000000000000000000000000001\")\n",
|
|
323 | 255 | "assert(pubkey_ab == pubkey2)\n",
|
324 | 256 | "print(\"Success!\")"
|
325 | 257 | ]
|
| 258 | + }, |
| 259 | + { |
| 260 | + "cell_type": "code", |
| 261 | + "execution_count": null, |
| 262 | + "id": "10adecc4", |
| 263 | + "metadata": {}, |
| 264 | + "outputs": [], |
| 265 | + "source": [] |
| 266 | + }, |
| 267 | + { |
| 268 | + "cell_type": "code", |
| 269 | + "execution_count": null, |
| 270 | + "id": "fa1bf7c9", |
| 271 | + "metadata": {}, |
| 272 | + "outputs": [], |
| 273 | + "source": [] |
326 | 274 | }
|
327 | 275 | ],
|
328 | 276 | "metadata": {
|
329 | 277 | "kernelspec": {
|
330 |
| - "display_name": "Python 3", |
| 278 | + "display_name": "Python 3 (ipykernel)", |
331 | 279 | "language": "python",
|
332 | 280 | "name": "python3"
|
333 | 281 | },
|
|
341 | 289 | "name": "python",
|
342 | 290 | "nbconvert_exporter": "python",
|
343 | 291 | "pygments_lexer": "ipython3",
|
344 |
| - "version": "3.7.0" |
| 292 | + "version": "3.8.16" |
345 | 293 | }
|
346 | 294 | },
|
347 | 295 | "nbformat": 4,
|
|
0 commit comments