Артём Литвинович [ARCHIVE] on Nostr: 📅 Original date posted:2018-11-07 📝 Original message:Hi there. Been there, done ...
📅 Original date posted:2018-11-07
📝 Original message:Hi there.
Been there, done that.
-Don't try to set big goals at once.
Start small and aim for small steps, i.e. by connecting to nodes, then
getting some data from them, then downloading blocks, then parsing
blocks, then building an UTXO set, etc.
My first long term goal was to simply compute the balance of an address.
-Expect to work with huge and varied sets of data.
You'll have to build and use tens of Gb of indexes, for example.
Early transactions also have all sorts of non-standard scripts, and
testnet have all sorts of weird non-standard scripts, so plan
accordingly.
-Don't write off making a wallet or mining.
The latter is easy to do on CPU on testnet and learning to make valid
blocks helps a lot in understanding how things work.
A wallet, on the other hand, gives you good understanding of keys and
transactions, especially if you want to try doing all the EC math
yourself.
I also wrote things to be generic between several forks and chains,
like Litecoin, Doge, Zcash and a bunch of now-dead alts - there is so
little difference between many of them that all it takes is a
parameter or two. Helps with perspective.
Naturally, stay away from mainnets and real money if you do your own
wallet and crypto.
-Don't get too excited when you'd see exploitable signatures.
All of them were plundered years ago, and by now no one makes mistakes
like that.
Also, there are plenty of bots which are constantly scanning the chain
for weak keys and signatures, any new ones will be gone in a few
seconds.
-Expect cthulhus. There used to be plenty of artwork and puzzles in
the early blockchain.
Here is a short write up with a few of the things i found: https www
dot ribbonfarm dot
com/2017/07/20/the-ominouslier-roar-of-the-bitcoin-wave/
For references, good ones i found and used were:
https bitcoin dot org/en/developer-reference
https en dot bitcoin dot it/wiki/Protocol_documentation
Also, BIPs contain a lot of specific details: https github dot com/bitcoin/bips
That should get you started, and by the time you get into the devilish
details you'll have to look at the code for reference.
No idea about 3), haven't looked at it.
Good luck and have fun.
-Artem
ср, 7 нояб. 2018 г. в 15:01, <bitcoin-dev-request at lists.linuxfoundation.org>:
>
> Date: Tue, 6 Nov 2018 23:21:11 +0200
> From: rze <rzeqeu at gmail.com>
> To: bitcoin-dev at lists.linuxfoundation.org
> Subject: [bitcoin-dev] Considering starting a toy full-node implementation. Any advice?
>
> Hello,
>
> I'm considering to start developing a toy full validating node implementation (no wallet, no mining) for educational purposes.
>
> Some questions:
>
> 1) which resource do you suggest for as a reference for the protocol?
> 2) which part do you suggest to start with?
> 3) I was thinking to use btcd as a reference since I'm not familiar with C++ (bitcoind)
> 4) are there any other general advice or tips for such endeavours?
>
> Thanks in advance.
>
Published at
2023-06-07 18:15:08Event JSON
{
"id": "fa2d4a3364561a15e9c67ef26770fa68049c2c18426dc9c20d4408427ce7cb19",
"pubkey": "42a88be9ef829076184e5a392761d358bd5fb4ed9ca07181809f9b3b5711915f",
"created_at": 1686161708,
"kind": 1,
"tags": [
[
"e",
"ea05cac0e2e14d472813cba5e2a43f118f79e2cfacb8ebef0660aa6cea709736",
"",
"root"
],
[
"e",
"134bacfd9488ce59a071d43efd62916e00d2e6e27511602e4d524df8328b7ebb",
"",
"reply"
],
[
"p",
"b307ccdcb69d06b427fc411b9878dfcd22596fcbc9dad6105338148deb30ad94"
]
],
"content": "📅 Original date posted:2018-11-07\n📝 Original message:Hi there.\n\nBeen there, done that.\n\n-Don't try to set big goals at once.\nStart small and aim for small steps, i.e. by connecting to nodes, then\ngetting some data from them, then downloading blocks, then parsing\nblocks, then building an UTXO set, etc.\nMy first long term goal was to simply compute the balance of an address.\n\n-Expect to work with huge and varied sets of data.\nYou'll have to build and use tens of Gb of indexes, for example.\nEarly transactions also have all sorts of non-standard scripts, and\ntestnet have all sorts of weird non-standard scripts, so plan\naccordingly.\n\n-Don't write off making a wallet or mining.\nThe latter is easy to do on CPU on testnet and learning to make valid\nblocks helps a lot in understanding how things work.\nA wallet, on the other hand, gives you good understanding of keys and\ntransactions, especially if you want to try doing all the EC math\nyourself.\nI also wrote things to be generic between several forks and chains,\nlike Litecoin, Doge, Zcash and a bunch of now-dead alts - there is so\nlittle difference between many of them that all it takes is a\nparameter or two. Helps with perspective.\nNaturally, stay away from mainnets and real money if you do your own\nwallet and crypto.\n\n-Don't get too excited when you'd see exploitable signatures.\nAll of them were plundered years ago, and by now no one makes mistakes\nlike that.\nAlso, there are plenty of bots which are constantly scanning the chain\nfor weak keys and signatures, any new ones will be gone in a few\nseconds.\n\n-Expect cthulhus. There used to be plenty of artwork and puzzles in\nthe early blockchain.\nHere is a short write up with a few of the things i found: https www\ndot ribbonfarm dot\ncom/2017/07/20/the-ominouslier-roar-of-the-bitcoin-wave/\n\n\nFor references, good ones i found and used were:\nhttps bitcoin dot org/en/developer-reference\nhttps en dot bitcoin dot it/wiki/Protocol_documentation\nAlso, BIPs contain a lot of specific details: https github dot com/bitcoin/bips\nThat should get you started, and by the time you get into the devilish\ndetails you'll have to look at the code for reference.\n\nNo idea about 3), haven't looked at it.\n\nGood luck and have fun.\n-Artem\n\nср, 7 нояб. 2018 г. в 15:01, \u003cbitcoin-dev-request at lists.linuxfoundation.org\u003e:\n\u003e\n\u003e Date: Tue, 6 Nov 2018 23:21:11 +0200\n\u003e From: rze \u003crzeqeu at gmail.com\u003e\n\u003e To: bitcoin-dev at lists.linuxfoundation.org\n\u003e Subject: [bitcoin-dev] Considering starting a toy full-node implementation. Any advice?\n\u003e\n\u003e Hello,\n\u003e\n\u003e I'm considering to start developing a toy full validating node implementation (no wallet, no mining) for educational purposes.\n\u003e\n\u003e Some questions:\n\u003e\n\u003e 1) which resource do you suggest for as a reference for the protocol?\n\u003e 2) which part do you suggest to start with?\n\u003e 3) I was thinking to use btcd as a reference since I'm not familiar with C++ (bitcoind)\n\u003e 4) are there any other general advice or tips for such endeavours?\n\u003e\n\u003e Thanks in advance.\n\u003e",
"sig": "7d35c6324db3abbdc503eb48502c84e6a59077d29b294722fd204f4b251b42313147823d7e0b75e68d19eba348ed34184c2291151ae27f7a38eebb8d88e19aba"
}