albert0bsd
|
|
March 29, 2023, 05:40:24 PM |
|
But deterministic wallet can mean anything that can be reproduced with some algorithm, It can be an existing algorithm or a completely custom one.
I bet and believe that the creator used a custom algorithm or something that he create from scratch
|
|
|
|
Evillo
Member
Offline
Activity: 185
Merit: 15
Two things you should never abandon: Family & BTC
|
|
March 30, 2023, 12:16:39 AM |
|
But deterministic wallet can mean anything that can be reproduced with some algorithm, It can be an existing algorithm or a completely custom one.
I bet and believe that the creator used a custom algorithm or something that he create from scratch
I 100% agree .. the creator is not your average Joe when it comes to Bitcoin .. some people even suggested he was Satoshi Nakamoto and that he's trying to test his innovation's security by creating such puzzle.
|
Cool Story Bro. BTC: 1EviLLo1Y5VeNn2Lajv9tdZTkUuVgePVYN
|
|
|
AlanJohnson
Member
Offline
Activity: 126
Merit: 11
|
|
March 30, 2023, 06:39:08 AM |
|
I have few essential questions to people who are much longer in that topic: 1. How do you know that person who wrote this message really is the creator of the puzzle ? https://bitcointalk.org/index.php?topic=1306983.msg18765941#msg18765941He did nothing what he claimed there ... 2. How this whole puzzle thing was revealed ? Was it announced somewhere ? Who posted it first ? 3. Here we can see all the list of puzzles : https://privatekeys.pw/puzzles/bitcoin-puzzle-txHow all that addresses are known till 160bits ? Who posted them (i really doubt they are discovered by accident ? And why they end at 160bit range ? Who said they don't go further ?
|
|
|
|
nc50lc
Legendary
Offline
Activity: 2618
Merit: 6497
Self-proclaimed Genius
|
|
March 30, 2023, 07:28:33 AM Merited by albert0bsd (1) |
|
He did spent puzzles 161-256 just like what others have suggested since those are absurdly impossible to bruteforce. That's about 3 months after the post. 2. How this whole puzzle thing was revealed ? Was it announced somewhere ? Who posted it first ? -snip- How all that addresses are known till 160bits ? Who posted them (i really doubt they are discovered by accident ? And why they end at 160bit range ? Who said they don't go further ?
The author of this thread Bulista ( Link to OP) " discovered" it and though it's a puzzle, that's why this is dubbed as a " puzzle" despite having no pattern to solve. Bitcoin transactions aren't anonymous, everything can be seen if you have a copy of the blockchain or at least have the ability to access resources online.
|
|
|
|
AlanJohnson
Member
Offline
Activity: 126
Merit: 11
|
|
March 30, 2023, 09:03:22 AM |
|
He did spent puzzles 161-256 just like what others have suggested since those are absurdly impossible to bruteforce. That's about 3 months after the post. 2. How this whole puzzle thing was revealed ? Was it announced somewhere ? Who posted it first ? -snip- How all that addresses are known till 160bits ? Who posted them (i really doubt they are discovered by accident ? And why they end at 160bit range ? Who said they don't go further ?
The author of this thread Bulista ( Link to OP) " discovered" it and though it's a puzzle, that's why this is dubbed as a " puzzle" despite having no pattern to solve. Bitcoin transactions aren't anonymous, everything can be seen if you have a copy of the blockchain or at least have the ability to access resources online. Many thanks for your explanation.
|
|
|
|
albert0bsd
|
|
March 30, 2023, 01:53:47 PM |
|
He did spent puzzles 161-256 just like what others have suggested since those are absurdly impossible to bruteforce. That's about 3 months after the post.
Not forget to mention that he also increase the prize of the unsolved puzzles in a Factor of 10 just like he said. Relevant transactions ID of this challenge with link to the blockchain database:
|
|
|
|
VinIVaderr
Newbie
Offline
Activity: 17
Merit: 0
|
|
March 30, 2023, 09:46:24 PM |
|
Feedback for others to build upon.
Keyhunt cpu I tested on old i5 4 core 8GB Ram. I found this to be good. -t 8192 -R Initially `14m/keys then 2m/keys after a minute or so but what I was excited about was after some time it started getting faster, like from 2/ 2.2/ 2.250/
Using linux terminal was successful in using Crunch and piping it to Python. In crunch 17 17 0123456789abcdef -s 20000000000000000 | python3 code.py I like the idea of generating this in sequential order, after 24hrs though, I was only at column 7 and every next column is exponentially bigger.
Lastly I thought well if the puzzle has gotten us to the point of processing power and time variables, what is one way to speed things up. An example is to use .replace() in python. So how's that work. Generate a random output then, replace each hexadecimal char with a different one, I chose ("0", "1")("1", "2") etc. running the code on a few address char 13zb the code will print 13zb and 16 more. I've found on avg you get 4-7 unique outputs per run. The idea being you are searching more space in the same amount of time. I could be wrong and please reply if this is not true. Thanks.
|
|
|
|
Evillo
Member
Offline
Activity: 185
Merit: 15
Two things you should never abandon: Family & BTC
|
|
March 30, 2023, 10:14:46 PM Merited by albert0bsd (1) |
|
Feedback for others to build upon.
Keyhunt cpu I tested on old i5 4 core 8GB Ram. I found this to be good. -t 8192 -R Initially `14m/keys then 2m/keys after a minute or so but what I was excited about was after some time it started getting faster, like from 2/ 2.2/ 2.250/
Using linux terminal was successful in using Crunch and piping it to Python. In crunch 17 17 0123456789abcdef -s 20000000000000000 | python3 code.py I like the idea of generating this in sequential order, after 24hrs though, I was only at column 7 and every next column is exponentially bigger.
Lastly I thought well if the puzzle has gotten us to the point of processing power and time variables, what is one way to speed things up. An example is to use .replace() in python. So how's that work. Generate a random output then, replace each hexadecimal char with a different one, I chose ("0", "1")("1", "2") etc. running the code on a few address char 13zb the code will print 13zb and 16 more. I've found on avg you get 4-7 unique outputs per run. The idea being you are searching more space in the same amount of time. I could be wrong and please reply if this is not true. Thanks.
Either use crunch or python, not both. Because all they're good for is to generate ranges. I've said it before and I'll say it again: Like any programming language, Python is a great language on case by case basis, you can only use it if speed does not matter to you. For example, i use it to extract public keys from the blockchain as this task does not require speed. Now talking about solving a puzzle, you need both speed and luck. Here you should be using any of the following: c/c++/java/Golang. Any high level language cannot help. Start your journey with this fact in mind. You can however use Python to generate random sub-ranges for your bit range as this won't take much time. I've done it with puzzle 64, although Crunch could be fast enough to do it anyway too. After generating the whole range, use keyhunt or whatever cracking program to run through the generated sub-ranges. Good luck.
|
Cool Story Bro. BTC: 1EviLLo1Y5VeNn2Lajv9tdZTkUuVgePVYN
|
|
|
temka19036
Newbie
Offline
Activity: 5
Merit: 0
|
|
April 01, 2023, 10:06:59 AM |
|
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/0 Phras : 1172 count : 601896 Found : 3 PrivM : d16115225b19963aee89a5f700bb4b9695170cef10e74277dfb1c87d3826aa54 MaskM : 0000000000000000000000000000000000000000000000000000000000000001 Maskp : 0000000000000000000000000000000000000000000000000000000000000001 Addrp : 1BgGZ9tcN4rm9KBzDn7KprQz87SZ26SAMH AddrM : 1FgjZpn4vudr6kB32ZyjeFts8Rd4sS4XY9
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/1 Phras : 1172 count : 601898 Found : 3 PrivM : 0abc59333e639a6c65ff04bda4d7e7de4f5cb9a2e4f9d699b48e47eaa2f89f3f MaskM : 0000000000000000000000000000000000000000000000000000000000000002 Maskp : 0000000000000000000000000000000000000000000000000000000000000003 Addrp : 1CUNEBjYrCn2y1SdiUMohaKUi4wpP326Lb AddrM : 1KxsZZRc25pPgH7MRaa7RzARTNe5DpQvsW
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/2 Phras : 1172 count : 601900 Found : 3 PrivM : e5eda15674ca1738e9526f3348308fe859ea89b49d90609bc7997097e8647545 MaskM : 0000000000000000000000000000000000000000000000000000000000000004 Maskp : 0000000000000000000000000000000000000000000000000000000000000005 Addrp : 17Vu7st1U1KwymUKU4jJheHHGRVNqrcfLD AddrM : 1M5KAgvNL76VgSSNdrLQQF6tnsfkJjk56Z
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/3 Phras : 1172 count : 601902 Found : 3 PrivM : 901ded28f8413917be267188f35f01f24363e5db160904334dde0875906424a2 MaskM : 0000000000000000000000000000000000000000000000000000000000000008 Maskp : 000000000000000000000000000000000000000000000000000000000000000a Addrp : 13DaZ9nfmJLfzU6oBnD2sdCiDmf3M5fmLx AddrM : 18eBsDrdSxojwzWSe9AA972guji63muYm
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/4 Phras : 1172 count : 601904 Found : 3 PrivM : f094efc3a735374ad5d41a0eead1253fda2f5d190b78da2fa64db698bb780e8d MaskM : 0000000000000000000000000000000000000000000000000000000000000010 Maskp : 000000000000000000000000000000000000000000000000000000000000001d Addrp : 1Lh3oGDA7bxB7pQdJtgf29G3pf6rvxgNFU AddrM : 1NLNhbL12cEwFaC6gvcDyzzGTyq5byo7c1
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/5 Phras : 1172 count : 601906 Found : 3 PrivM : c749d1b1058db8483e19605202bed9d8ccf062b35fadf2554fa47732133f5867 MaskM : 0000000000000000000000000000000000000000000000000000000000000020 Maskp : 0000000000000000000000000000000000000000000000000000000000000027 Addrp : 165dGfnEBRc9948oyFbhz5GSRibfTTrEzR AddrM : 13voTZATxu2LXzGazmwAdXCYaMq5RmaxnV
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/6 Phras : 1172 count : 601908 Found : 3 PrivM : 79657461343f2dc24bc462470f62b32ec86bdafcc45646c79e2bc3bad6a87e03 MaskM : 0000000000000000000000000000000000000000000000000000000000000040 Maskp : 0000000000000000000000000000000000000000000000000000000000000043 Addrp : 18939AFStuaLPGuuh9Eus2BYoswcPXSSmF AddrM : 1NNBjMLjV6LRB1zLGpoLdJZhS8hQ7jjryt
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/7 Phras : 1172 count : 601910 Found : 3 PrivM : 5247591696ee6c0e42eeceac9eb435868ff1bb3f7da9cac1ae3cd14bf65d0783 MaskM : 0000000000000000000000000000000000000000000000000000000000000080 Maskp : 0000000000000000000000000000000000000000000000000000000000000083 Addrp : 1Lh78i5CMfzAqVLAYbbpRaemTRrVKfALbB AddrM : 1LVzYsFJiBrQUSk62iEfF2dwzBj7CggbLA
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/8 Phras : 1172 count : 601912 Found : 3 PrivM : 8ec7df82e2ed324cfdb0cd3666abfca6fdc80badf598078bcf1c7966cffa4e82 MaskM : 0000000000000000000000000000000000000000000000000000000000000100 Maskp : 0000000000000000000000000000000000000000000000000000000000000182 Addrp : 1FyjYsnonndRtiez43hy3P11ZCLVpvf11e AddrM : 1BMPCKypJo9ZvK5gxiymyFZ4TQrn36Pp3o
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/9 Phras : 1172 count : 601914 Found : 3 PrivM : 1393ab2f91b5dbbec9e0065d2b24a26ed5fbc4b2839ce406e54e58bdd3684022 MaskM : 0000000000000000000000000000000000000000000000000000000000000200 Maskp : 0000000000000000000000000000000000000000000000000000000000000222 Addrp : 17d1e7ciUqwxzYLQHJDCEs5Ko8VrQ6ovQT AddrM : 15ey4pSfzJZ98YCu6zKqaw3REVQzq4VWRL
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/10 Phras : 1172 count : 601916 Found : 3 PrivM : 4feea1b11e426b94bd71ea686679ea2487b12509bded59bfc5a955dd879c9238 MaskM : 0000000000000000000000000000000000000000000000000000000000000400 Maskp : 0000000000000000000000000000000000000000000000000000000000000638 Addrp : 17FJEeMUxjRcZr4ENm38RdWwYCWSE59wbU AddrM : 18PA6r7CfoHUeRNK133k9rMCwiZCbpZGHg
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/11 Phras : 1172 count : 601918 Found : 3 PrivM : 702046b42360dcd3d3cf4c78ef041333e0b62511197316b0e2ef17c6ed55e38d MaskM : 0000000000000000000000000000000000000000000000000000000000000800 Maskp : 0000000000000000000000000000000000000000000000000000000000000b8d Addrp : 13QekDJDH3Nms3xTW3pjSUbGUcszsJfTVT AddrM : 16axyMaPDoX51kq5Rg4JjUH7x5sMLaCfLf
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/12 Phras : 1172 count : 601920 Found : 3 PrivM : 9bc60860dc86f629f9f03a69a0113bf6b123b29346d915ba3adfed7967c27b91 MaskM : 0000000000000000000000000000000000000000000000000000000000001000 Maskp : 0000000000000000000000000000000000000000000000000000000000001b91 Addrp : 1HC718C2BrVWQtc8fHs9a2qduuf7vSuJjr AddrM : 18gjdhBDmqcntNqoxbv4tubdNpZT8n4gYp
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/13 Phras : 1172 count : 601922 Found : 3 PrivM : 34a4c0206a4d989d328b322da33eb2800ec2e1b27b804a40cca5e89d4819c541 MaskM : 0000000000000000000000000000000000000000000000000000000000002000 Maskp : 0000000000000000000000000000000000000000000000000000000000002541 Addrp : 1MaW5ja62Hg3Zu7Ytkfh6B8cLWMCxta84A AddrM : 13XHuEmKv5hHfeogn5Bhx6soNpvcybNQF7
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/14 Phras : 1172 count : 601924 Found : 3 PrivM : 6839aa121befae60891e70dacd43254ce02daa6175d3a51c903582a17f931ac7 MaskM : 0000000000000000000000000000000000000000000000000000000000004000 Maskp : 0000000000000000000000000000000000000000000000000000000000005ac7 Addrp : 12DmbznALQHJcAEdouR36zaemRaqGte5kW AddrM : 1Cu4KyCEnkFyiNHKx2qKjbUcRKg9tzUz3T
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/15 Phras : 1172 count : 601926 Found : 3 PrivM : e639ccec5a2438b8c42291379b5b0c4056eaa267fa91d899b054db3d9f9271a7 MaskM : 0000000000000000000000000000000000000000000000000000000000008000 Maskp : 000000000000000000000000000000000000000000000000000000000000f1a7 Addrp : 1B42aSUDF12X1zqMzfNiQqNGLC73zTpjer AddrM : 187vJU8CEmtiyrxrP3ExTqSDdvAc5jjCES
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/16 Phras : 1172 count : 601928 Found : 3 PrivM : 198051861000598ca18abaef1aeda7c49e87f8b15b9cc0a67d747ac87bf829e0 MaskM : 0000000000000000000000000000000000000000000000000000000000010000 Maskp : 00000000000000000000000000000000000000000000000000000000000129e0 Addrp : 1NWJ4ZtZJ9wSuMVvE8CRDdRgPUwBpn37Fy AddrM : 1FeuEfXQwrtw6TDLA5Q5Hf5A9SUiqwxYj5
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/17 Phras : 1172 count : 601930 Found : 3 PrivM : 709f9271c99f8e1ec4394925764a21706535ff25456b2c21f6609e6c4fe817a2 MaskM : 0000000000000000000000000000000000000000000000000000000000020000 Maskp : 00000000000000000000000000000000000000000000000000000000000217a2 Addrp : 1Ks3XLNQ7L8Hq34Z9HC5zKaTqHiJeW8gpq AddrM : 16a7eGAnt64cooYimsGiVgvKfXGYt9ywUs
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/18 Phras : 1172 count : 601932 Found : 3 PrivM : 1941fd181e5a5ddd92e13b3056a16402efe52262858720faa13d9c8d7e485b05 MaskM : 0000000000000000000000000000000000000000000000000000000000040000 Maskp : 0000000000000000000000000000000000000000000000000000000000045b05 Addrp : 1HT2XG2Mbkmon5YvVV9s6zaUrqJceWg2tE AddrM : 1Co5UZf6YpF5pSBSQbEEUDGwXJkBFDxDaL
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/19 Phras : 1172 count : 601934 Found : 3 PrivM : ea49feb59507a30526837d3eb5492cb343b1a01a3415892e70e63a313418a33b MaskM : 0000000000000000000000000000000000000000000000000000000000080000 Maskp : 000000000000000000000000000000000000000000000000000000000008a33b Addrp : 1LZTg86umbigJbiKN7GghgLxcQuysoV2Xg AddrM : 1MKGU6CWtGJrG8WCu9pGkmwCYZN9zYKotK
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/20 Phras : 1172 count : 601936 Found : 3 PrivM : 59faab04a033c77bfeaea4611a4b721b857b3293e2b78f6ce1d9dc5226bca34a MaskM : 0000000000000000000000000000000000000000000000000000000000100000 Maskp : 00000000000000000000000000000000000000000000000000000000001ca34a Addrp : 1HxsvSWoCramtNqttRjKnWSqYJCTunP165 AddrM : 1Mmdz5tE4GNu5tEiMFGxVacLScHj2SzLoQ
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/21 Phras : 1172 count : 601938 Found : 3 PrivM : e9404647dca0a73036086234119b49880b739235d5b69d53a879a18364a2d0f5 MaskM : 0000000000000000000000000000000000000000000000000000000000200000 Maskp : 000000000000000000000000000000000000000000000000000000000022d0f5 Addrp : 1MAtmxxRwWfYAKUZFarB4XSVXsx6bVZA4a AddrM : 1AzEdakTZ8BjsmCJziriZ9Mjd2D6WEYcmj
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/22 Phras : 1172 count : 601940 Found : 3 PrivM : 017347abab0dbdc25c4b64976497a543c6625e150c2e9a2b6b25182657f4864b MaskM : 0000000000000000000000000000000000000000000000000000000000400000 Maskp : 000000000000000000000000000000000000000000000000000000000074864b Addrp : 186TwSaoxDQbMxE7rmmSQqidCdHpudhVMB AddrM : 1Fkj7DwZDLLAYqKRmEqpx8i6gnpH6gGpNS
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/23 Phras : 1172 count : 601942 Found : 3 PrivM : 98edcd37e959b0e56ca370959adb03f14597528fc134474719ac2cb86c3e0f8c MaskM : 0000000000000000000000000000000000000000000000000000000000800000 Maskp : 0000000000000000000000000000000000000000000000000000000000be0f8c Addrp : 1J4nVMG29wAiar6ifjuHzxfoKzsYju4MyR AddrM : 12CwCwCmqvLobTSbdxsS4RtdvzZHR9yTYh
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/24 Phras : 1172 count : 601944 Found : 3 PrivM : 05d5909f7db6e754fc31d112d055da8f8058756f09b5b2fda34224a0ea7f91bd MaskM : 0000000000000000000000000000000000000000000000000000000001000000 Maskp : 00000000000000000000000000000000000000000000000000000000017f91bd Addrp : 1Q481w5LTJvanugCQkv1xc3Aaphpw8hebf AddrM : 12wuLe9u278CLXBjaArFzwT1UpHv7AkK3b
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/25 Phras : 1172 count : 601946 Found : 3 PrivM : 461337c313d9543cfc04c1cb81f7250a234b9174c13ab7c33617efd171f8e0c9 MaskM : 0000000000000000000000000000000000000000000000000000000002000000 Maskp : 0000000000000000000000000000000000000000000000000000000003f8e0c9 Addrp : 1Ed4xaZy1oF46C4P4a9zBVJFwDrUjBeoZh AddrM : 1NXjSjTSfUP8tLSCa3k4GGSDjikNWzuz66
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/26 Phras : 1172 count : 601948 Found : 3 PrivM : c9e53ba8e9ef2ec4f747d03f2b649abcdc2662876cbc7db24fabf051665e403f MaskM : 0000000000000000000000000000000000000000000000000000000004000000 Maskp : 00000000000000000000000000000000000000000000000000000000065e403f Addrp : 1BiWpsfcDXoKhhAGqxVDAh8EfR9HCgcSoV AddrM : 19aBFmjPv8eAsYHuEcqctz8nak8jvisxTP
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/27 Phras : 1172 count : 601950 Found : 3 PrivM : bca629e6a90a965e4843a00ece93f34c2dbb8a677f98356b04691be9c098b27f MaskM : 0000000000000000000000000000000000000000000000000000000008000000 Maskp : 000000000000000000000000000000000000000000000000000000000898b27f Addrp : 1AfogDvdQpuJzndwBtWksVXjitQNo8puht AddrM : 18YCME7VCuhhJgef3wMNgAzL6883b5gS24
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/28 Phras : 1172 count : 601952 Found : 3 PrivM : 59b01892c8a0259084a6d365431bfd1aa2afd03ee5a1d3c664f03b6ddf27a822 MaskM : 0000000000000000000000000000000000000000000000000000000010000000 Maskp : 000000000000000000000000000000000000000000000000000000001f27a822 Addrp : 16NM6vsXVwuYqZRn17uj21VRmYnQaov1t2 AddrM : 1NhHh3shTWRYzWG6tanFxmCiYfVRhCWssR
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/29 Phras : 1172 count : 601954 Found : 3 PrivM : 6ed9cc310508068c8a078e5755a8a60e948460e284959afe338e60aae40e62f0 MaskM : 0000000000000000000000000000000000000000000000000000000020000000 Maskp : 00000000000000000000000000000000000000000000000000000000240e62f0 Addrp : 16JBBYXKwnooPKWs7jRkVZgJJFZY8iZfdE AddrM : 1M551xnfgpYhWGRT3N6C11aenggtjY2LcW
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/30 Phras : 1172 count : 601956 Found : 3 PrivM : 029b1facbc30c748e9abd363b82388dbafa122dd5f9297730c1caad95f6b5fc5 MaskM : 0000000000000000000000000000000000000000000000000000000040000000 Maskp : 000000000000000000000000000000000000000000000000000000005f6b5fc5 Addrp : 1EhsxtSPjxqLvKtx1BEEYBrMVCxXTWoJvS AddrM : 1Q48eQtfsQrn11Tp81DjNU1Z2zUPQRGxr4
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/31 Phras : 1172 count : 601958 Found : 3 PrivM : 6b94140a10e01a787c14af14360867aca446e4e0cfa1ca7c0721af10b9ba1e1b MaskM : 0000000000000000000000000000000000000000000000000000000080000000 Maskp : 00000000000000000000000000000000000000000000000000000000b9ba1e1b Addrp : 1DYCzi2X7A6hCGhkbpghaZazdDa7UAxvFA AddrM : 16bJFyeCnxJn3SGT6c9CwFs8HgLgZJjA2z
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/32 Phras : 1172 count : 601960 Found : 3 PrivM : ad82af8bd169114499e049aa9d6d274fffe7d0437a6122691fb2f00fb8d97dcd MaskM : 0000000000000000000000000000000000000000000000000000000100000000 Maskp : 00000000000000000000000000000000000000000000000000000001b8d97dcd Addrp : 18b76HDEpzVyLtCeDTLzEToZ8R7szAarC7 AddrM : 1CHegCGF4VifYc4Lqd8uJBEBqncHiVfYKS
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/33 Phras : 1172 count : 601962 Found : 3 PrivM : 9a6bdc77d4851e1a49aa84ab6b6310a351096945eedc86a6da1bf878df981364 MaskM : 0000000000000000000000000000000000000000000000000000000200000000 Maskp : 00000000000000000000000000000000000000000000000000000002df981364 Addrp : 1DnV8qVLZ38XYXsQa9UzsHv3zfViz9RiUV AddrM : 1LgDETCVUUup1qPrNaDeSwGzfqT5A97fVx
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/34 Phras : 1172 count : 601964 Found : 3 PrivM : 197cdf482773cc4a89f2742917f646b340c38b29cc0464fe2336ca1f5034d70e MaskM : 0000000000000000000000000000000000000000000000000000000400000000 Maskp : 000000000000000000000000000000000000000000000000000000075034d70e Addrp : 14ynSigMRfQMFwsqjqKLTPTcyjhTcYYdQc AddrM : 1EhKDrB5DbyGF5KLkAq7eXaSPEUNQcuyVk
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/35 Phras : 1172 count : 601966 Found : 3 PrivM : 1ab1d3fd3093a3b4320dfc0171dfd4115a7c1cdd0a4f91a5bf4f82cc40e1de56 MaskM : 0000000000000000000000000000000000000000000000000000000800000000 Maskp : 0000000000000000000000000000000000000000000000000000000c40e1de56 Addrp : 1AqEzHLQboVFLwaTBmVUvR3zJj2LMMs2yF AddrM : 1KT8U1SzqrR55QeKNxBQhF8ETMV7KzGNWF
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/36 Phras : 1172 count : 601968 Found : 3 PrivM : 0c578b57f17b0409382690183e647562f9aafdf013ed2b2c326c505aaf337ca6 MaskM : 0000000000000000000000000000000000000000000000000000001000000000 Maskp : 0000000000000000000000000000000000000000000000000000001aaf337ca6 Addrp : 1DneCv8CMw1z3Uspi5NV5VSfL3nCTzWFyE AddrM : 18xXHV5h4JyuQz1FF3VccMLEoVQgjjzhEi
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/37 Phras : 1172 count : 601970 Found : 3 PrivM : bc442caf244c1a996fab0706f734c502a055fdaf7a201dfb47356e75a5d66042 MaskM : 0000000000000000000000000000000000000000000000000000002000000000 Maskp : 00000000000000000000000000000000000000000000000000000035a5d66042 Addrp : 18guLjQENqrVf6xANuyvAUgRMVu5PQ6yEU AddrM : 12aTonowCe6FurQFdPdZ28Bzx8tk6DEJJn
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/38 Phras : 1172 count : 601972 Found : 3 PrivM : c65167a0d86054214066acc9972dbe9da17d7b2b87d388590683f98fb179b0b5 MaskM : 0000000000000000000000000000000000000000000000000000004000000000 Maskp : 0000000000000000000000000000000000000000000000000000004fb179b0b5 Addrp : 1EPavXz7SWpxNA9Nz1fMiNvwHoZnHSLh32 AddrM : 1F99xxXavp39erezYdNLk8kzjZ6Kt4oumY
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/39 Phras : 1172 count : 601974 Found : 3 PrivM : 02bf1df4359e43b24736c3204778984c6758d515a102f5f52352b3fb80b872ad MaskM : 0000000000000000000000000000000000000000000000000000008000000000 Maskp : 000000000000000000000000000000000000000000000000000000fb80b872ad Addrp : 199DjHzK2YBYV8Uedaiwux1pgpsyuyMbpB AddrM : 17PQe3WqzsbrK24EQbA7pLApFzdLuzpwLo
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/40 Phras : 1172 count : 601976 Found : 3 PrivM : 305b2d7fcd861fc69284cf347cd818f22e5e49a3e44d1bcea31f102d06f734f6 MaskM : 0000000000000000000000000000000000000000000000000000010000000000 Maskp : 0000000000000000000000000000000000000000000000000000012d06f734f6 Addrp : 15j9JHQBC8LaN6roKW4sz3osZUnPdx3qkn AddrM : 15hTHuVmatiWATVBeLAtVNNYeWBmbGq2je
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/41 Phras : 1172 count : 601978 Found : 3 PrivM : 01319d5e98c30c8e2b1c1dbfa336f3eca931168be09637a269abc5e170f59b7c MaskM : 0000000000000000000000000000000000000000000000000000020000000000 Maskp : 000000000000000000000000000000000000000000000000000003e170f59b7c Addrp : 1D3WaZTvqZZvQXxhtSMfV2twtu1kP7t8i3 AddrM : 1CZVsEFHaRcbeSBot3vkZfCAospd7vBw2m
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/42 Phras : 1172 count : 601980 Found : 3 PrivM : 7d9494b2467ab7345ad930a9e95e542ee700cf766cc97c791c756d76a12c40d1 MaskM : 0000000000000000000000000000000000000000000000000000040000000000 Maskp : 00000000000000000000000000000000000000000000000000000576a12c40d1 Addrp : 13BskuNCU9kcwB4DPjoKKszyZZXhZCdTz8 AddrM : 1P1Gw3upJ8a4LeyM3Dg2LmBsMNjjQcedCx
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/43 Phras : 1172 count : 601982 Found : 3 PrivM : ca137e7b9f5f48bc1fcd30b32b788e453cde085f1617e238d418aba633277f30 MaskM : 0000000000000000000000000000000000000000000000000000080000000000 Maskp : 00000000000000000000000000000000000000000000000000000ba633277f30 Addrp : 12QrwYRmaRKJDrKhdMGVtrh4KvXC9GPyv3 AddrM : 1MXsGPkz7izm9xTvh52yQJf2dmjFMvc1mf
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/44 Phras : 1172 count : 601984 Found : 3 PrivM : db314ebd6cb069c7b22ccb1ac23760b5e235c06710bbb451af13b9b4406c2779 MaskM : 0000000000000000000000000000000000000000000000000000100000000000 Maskp : 000000000000000000000000000000000000000000000000000019b4406c2779 Addrp : 1AAVLCQ27dbRvXac4AvKvgU1a3yBKJF6Vf AddrM : 1KG9qHxHysiBJfob7wqpPokKFp3UAhwJWY
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/45 Phras : 1172 count : 601986 Found : 3 PrivM : 83ac1ff9c5f12ff3b3b205f851bd19242c81e50a05751128f86e2ee87c043d64 MaskM : 0000000000000000000000000000000000000000000000000000200000000000 Maskp : 00000000000000000000000000000000000000000000000000002ee87c043d64 Addrp : 1LyAwnmVQ2wUCZ25oLFDvNrDjJRqFDAMhZ AddrM : 18YZH8RKipgaxtB6yS4MARowSSCCokd7ts
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/46 Phras : 1172 count : 601988 Found : 3 PrivM : f999c699556ce3b72db5b3d3d541ab4e4da30637653de7d8d2d782bfa9b0ec6f MaskM : 0000000000000000000000000000000000000000000000000000400000000000 Maskp : 000000000000000000000000000000000000000000000000000042bfa9b0ec6f Addrp : 19WyyvjQ6s2YRFaJpPD45f6HcPAZcopetL AddrM : 1CZxp7rKM1CoLjJoos8826KXWTNzWuxSW3
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/47 Phras : 1172 count : 601990 Found : 3 PrivM : 0773a07941a9ce438b1b666242bfdf89827d2e58430db76d1e0a6aebe639b998 MaskM : 0000000000000000000000000000000000000000000000000000800000000000 Maskp : 0000000000000000000000000000000000000000000000000000eaebe639b998 Addrp : 1Pdzu2Bv3ucWj9pU51sEiNhct3Z6n6Uv3k AddrM : 1EKakjmG8WepaTbLZEB1Ye71PhHKvVV3Ng
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/48 Phras : 1172 count : 601992 Found : 3 PrivM : 06466a98ceac9e8ec2474b74e275bff8928965a8c83823039b7eb710dced43fe MaskM : 0000000000000000000000000000000000000000000000000001000000000000 Maskp : 0000000000000000000000000000000000000000000000000001b710dced43fe Addrp : 1ALBKXZzH2BgxUw2qvGVUH8DLnGhyGjjew AddrM : 1Mzyzs5fhcw3chNuzzDdXsUmtejhsrt686
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/49 Phras : 1172 count : 601994 Found : 3 PrivM : 9e9c5e6c1b1302c3339a19a1953b901e3c6884157e5e47986b157e5eaf4842f3 MaskM : 0000000000000000000000000000000000000000000000000002000000000000 Maskp : 00000000000000000000000000000000000000000000000000037e5eaf4842f3 Addrp : 19bS3YqwDszRXvZkFsitMrTVYzm91hSQqg AddrM : 1AUnm4nDtnoPLJeRTMMVSGxAVJM9N9GX4x
================================ Deterministic wallet masked with leading Zeros ==================================
Bip44 : alarm expand pond enough hub rabbit proud panther glance offer debris shock BipPH : m/44h/0h/0h/0/50 Phras : 1172 count : 601996 Found : 3 PrivM : 8d6d61101c25f1c50a7ef16be650db6da70bd32b77cd9a6a8a7d90a3a4c007c2 MaskM : 0000000000000000000000000000000000000000000000000004000000000000 Maskp : 000000000000000000000000000000000000000000000000000590a3a4c007c2 Addrp : 1HhhRdKPJyyMFmvVP8Bgo3LBQSjGAjw3Qp AddrM : 16JTWjdHxKvZm9ws9euLkaK9icK87scrNp ...................till 256.... then another seed phrase....... I've been trying to pick up this way for a long time. Here's what I found. I can give a hint the number corresponds to seed. I found it by accident. I'm still guessing. a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 00000000000000000000000000000000000000000000000000000009de820a7c
|
|
|
|
temka19036
Newbie
Offline
Activity: 5
Merit: 0
|
|
April 01, 2023, 10:14:34 AM |
|
and there are many such coincidences. and there is an order. And the word generator is the same. 5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e 28 000000000000000000000000000000000000000000000000000000000d916ce8
|
|
|
|
HedgeFx
|
|
April 01, 2023, 10:31:59 AM |
|
I've been trying to solve some puzzles for some time, but not having the right tools available so I had to give up. In any case there is a correlation between two consecutive puzzles, and in my opinion it is in this key that the solutions must be found.
|
|
|
|
temka19036
Newbie
Offline
Activity: 5
Merit: 0
|
|
April 01, 2023, 10:37:01 AM |
|
I've been trying to solve some puzzles for some time, but not having the right tools available so I had to give up. In any case there is a correlation between two consecutive puzzles, and in my opinion it is in this key that the solutions must be found.
Yes. With any change in the set of SEEd phrases. I went through millions of hex, but not one significant match. With only one algorithm.
|
|
|
|
citb0in
|
|
April 01, 2023, 11:14:20 AM |
|
I've been trying to pick up this way for a long time. Here's what I found. I can give a hint the number corresponds to seed. I found it by accident. I'm still guessing.
a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 00000000000000000000000000000000000000000000000000000009de820a7c
and there are many such coincidences. and there is an order. And the word generator is the same.
5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e 28 000000000000000000000000000000000000000000000000000000000d916ce8
Can you explain more detailled, please? Let's take the examples you mentioned: The line 00000000000000000000000000000000000000000000000000000009de820a7c represents the hex key, in short it is 9de820a7c. This is the private key of puzzle #36. But what does the hex string a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 represent? The line 000000000000000000000000000000000000000000000000000000000d916ce8 represents the hex key, in short it is d916ce8. This is the private key of puzzle #28. But what does the hex string 5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e represent? You said this is a salt. How do you calculate the salt, salt of what? Give us a step-by-step calculation for understanding this example and explain in detail what you mean. Thank you.
|
_ _ _ __ _ _ _ __ |_) | / \ / |/ (_ / \ | \ / |_ |_) (_ |_) |_ \_/ \_ |\ __) \_/ |_ \/ |_ | \ __) --> citb0in Solo-Mining Group <--- low stake of only 0.001 BTC. We regularly rent about 5 PH/s hash power and direct it to SoloCK pool. Wanna know more? Read through the link and JOIN NOW
|
|
|
temka19036
Newbie
Offline
Activity: 5
Merit: 0
|
|
April 01, 2023, 06:04:02 PM |
|
I've been trying to pick up this way for a long time. Here's what I found. I can give a hint the number corresponds to seed. I found it by accident. I'm still guessing.
a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 00000000000000000000000000000000000000000000000000000009de820a7c
and there are many such coincidences. and there is an order. And the word generator is the same.
5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e 28 000000000000000000000000000000000000000000000000000000000d916ce8
Can you explain more detailled, please? Let's take the examples you mentioned: The line 00000000000000000000000000000000000000000000000000000009de820a7c represents the hex key, in short it is 9de820a7c. This is the private key of puzzle #36. But what does the hex string a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 represent? The line 000000000000000000000000000000000000000000000000000000000d916ce8 represents the hex key, in short it is d916ce8. This is the private key of puzzle #28. But what does the hex string 5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e represent? You said this is a salt. How do you calculate the salt, salt of what? Give us a step-by-step calculation for understanding this example and explain in detail what you mean. Thank you. I was looking for the seed phrase via sha256. The creator said that he just replaced a part with 0 and left the rest. I have selected many possible phrases related to ordinal numbers and several phrases. (I won't say the phrases yet) and the program started to give out a lot of matches at addresses only with certain seed phrases. At first I thought it was a coincidence, but when I realized that there was a number in the seed phrase corresponding to the number in the position and the long numbers began to match, I began to search further. It remains to find an algorithm for changing several characters. But as soon as I add at least one comma to the seed, there is no match at all. (I don't count matches of less than 5 characters)
|
|
|
|
Evillo
Member
Offline
Activity: 185
Merit: 15
Two things you should never abandon: Family & BTC
|
|
April 01, 2023, 08:08:02 PM |
|
I've been trying to pick up this way for a long time. Here's what I found. I can give a hint the number corresponds to seed. I found it by accident. I'm still guessing.
a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 00000000000000000000000000000000000000000000000000000009de820a7c
and there are many such coincidences. and there is an order. And the word generator is the same.
5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e 28 000000000000000000000000000000000000000000000000000000000d916ce8
Can you explain more detailled, please? Let's take the examples you mentioned: The line 00000000000000000000000000000000000000000000000000000009de820a7c represents the hex key, in short it is 9de820a7c. This is the private key of puzzle #36. But what does the hex string a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 represent? The line 000000000000000000000000000000000000000000000000000000000d916ce8 represents the hex key, in short it is d916ce8. This is the private key of puzzle #28. But what does the hex string 5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e represent? You said this is a salt. How do you calculate the salt, salt of what? Give us a step-by-step calculation for understanding this example and explain in detail what you mean. Thank you. I was looking for the seed phrase via sha256. The creator said that he just replaced a part with 0 and left the rest. I have selected many possible phrases related to ordinal numbers and several phrases. (I won't say the phrases yet) and the program started to give out a lot of matches at addresses only with certain seed phrases. At first I thought it was a coincidence, but when I realized that there was a number in the seed phrase corresponding to the number in the position and the long numbers began to match, I began to search further. It remains to find an algorithm for changing several characters. But as soon as I add at least one comma to the seed, there is no match at all. (I don't count matches of less than 5 characters) Let's use your method to find the right phrase that opens all puzzle addresses. Assuming we are working with 2000 English words in a phrase consisting of 12 words. We are now trying to crack the puzzle through well over 2^131 attempts. Result: You have a higher chance of solving puzzle #125 using public key in kangaroo or BSGS than to go through 2^131 phrases in your entire lifetime. Conclusion: We need a better way.
|
Cool Story Bro. BTC: 1EviLLo1Y5VeNn2Lajv9tdZTkUuVgePVYN
|
|
|
temka19036
Newbie
Offline
Activity: 5
Merit: 0
|
|
April 01, 2023, 08:11:02 PM |
|
I've been trying to pick up this way for a long time. Here's what I found. I can give a hint the number corresponds to seed. I found it by accident. I'm still guessing.
a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 00000000000000000000000000000000000000000000000000000009de820a7c
and there are many such coincidences. and there is an order. And the word generator is the same.
5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e 28 000000000000000000000000000000000000000000000000000000000d916ce8
Can you explain more detailled, please? Let's take the examples you mentioned: The line 00000000000000000000000000000000000000000000000000000009de820a7c represents the hex key, in short it is 9de820a7c. This is the private key of puzzle #36. But what does the hex string a8d9a1996b5899de820a7cf540d6e2b2a9544323485ed8faae2f7de22d402150 represent? The line 000000000000000000000000000000000000000000000000000000000d916ce8 represents the hex key, in short it is d916ce8. This is the private key of puzzle #28. But what does the hex string 5b4cfff874dd916ce8c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e represent? You said this is a salt. How do you calculate the salt, salt of what? Give us a step-by-step calculation for understanding this example and explain in detail what you mean. Thank you. a8d9a1996b589 "9de820a7c" f540d6e2b2a9544323485ed8faae2f7de22d402150 5b4cfff874d "d916ce8" c05f0c11a34185d0442727ff6678d07af52a4d7d615d4e
|
|
|
|
VinIVaderr
Newbie
Offline
Activity: 17
Merit: 0
|
|
April 01, 2023, 11:13:54 PM |
|
Here is a link to my python .replace() code. https://github.com/VintVader/bitcoinedit: to clarify it does not print 4-7 unique "13zb" addresses. you may find the address replacing characters that are not the generated address. Thanks.
|
|
|
|
digaran
Copper Member
Hero Member
Offline
Activity: 1330
Merit: 900
🖤😏
|
|
April 02, 2023, 04:24:16 AM |
|
Here is a link to my python .replace() code. https://github.com/VintVader/bitcoinedit: to clarify it does not print 4-7 unique "13zb" addresses. you may find the address replacing characters that are not the generated address. Thanks. What does it do exactly and why should we use it?
I think satoshi used block hashes in little enddian format to generate keys, maybe?
|
🖤😏
|
|
|
VinIVaderr
Newbie
Offline
Activity: 17
Merit: 0
|
|
April 02, 2023, 11:05:48 PM |
|
The code can potentially find an address after replacing hexadecimal characters in the string generated from the secrets module. It may find the address or key in the 7th or 8th while loop, for example. Running the code with "1" as to generate output I got 0.065 execution time. Calculating the additional range that it searches is very small compared to the overall bits.
I have no good reply to "why should we use it?" I had mentioned the idea and felt I should share the code for example.
|
|
|
|
Evillo
Member
Offline
Activity: 185
Merit: 15
Two things you should never abandon: Family & BTC
|
|
April 02, 2023, 11:30:54 PM Last edit: April 03, 2023, 02:00:48 AM by Evillo |
|
The code can potentially find an address after replacing hexadecimal characters in the string generated from the secrets module. It may find the address or key in the 7th or 8th while loop, for example. Running the code with "1" as to generate output I got 0.065 execution time. Calculating the additional range that it searches is very small compared to the overall bits.
Me understood Zero of this. But it's okay, your efforts are appreciated.
|
Cool Story Bro. BTC: 1EviLLo1Y5VeNn2Lajv9tdZTkUuVgePVYN
|
|
|
|