Live data from Hacker News

Understanding Bitcoin Transactions

jonathanotto.com

1–10 of 16 posts

Re: Understanding Bitcoin Transactions

#4
post #3

I would love to see a tutorial on how to create a bitcoin address (a private + public key pair) with nothing but command line tools that are available in a standard Linux distribution.

If you want to read about something really interesting, check out hierarchical deterministic wallets:

https://github.com/bitcoin/bips/blob/master/bip-0032.mediawi...

Re: Understanding Bitcoin Transactions

#5
post #3

I would love to see a tutorial on how to create a bitcoin address (a private + public key pair) with nothing but command line tools that are available in a standard Linux distribution.

The book "Mastering Bitcoin" by Andreas Antonopoulos steps through this. You can find the code here https://github.com/bitcoinbook/bitcoinbook/blob/develop/code...

Re: Understanding Bitcoin Transactions

#6
post #3

I would love to see a tutorial on how to create a bitcoin address (a private + public key pair) with nothing but command line tools that are available in a standard Linux distribution.

Here you go: Bitcoin the Hard way http://www.righto.com/2014/02/bitcoins-hard-way-using-raw-bi...

This shows you how to do everything yourself from scratch. There’s no such tutorial for ethereum, unfortunately, and it might be too complex a protocol to allow that.

Re: Understanding Bitcoin Transactions

#7
post #3

I would love to see a tutorial on how to create a bitcoin address (a private + public key pair) with nothing but command line tools that are available in a standard Linux distribution.

The book "Mastering Bitcoin" by Andreas Antonopoulos steps through this. You can find the code here https://github.com/bitcoinbook/bitcoinbook/blob/develop/code...

I'm not too hot on Python, where do I find the imported libraries so as to interpret eg `bitcoin.encode_privkey(decoded_private_key, 'wif')`.

Re: Understanding Bitcoin Transactions

#8
post #3

I would love to see a tutorial on how to create a bitcoin address (a private + public key pair) with nothing but command line tools that are available in a standard Linux distribution.

Christopher Allen got you covered (almost): https://github.com/ChristopherA/Learning-Bitcoin-from-the-Co... "Learning Bitcoin from the CLI"

Re: Understanding Bitcoin Transactions

#9
post #7

Earlier quoted context omitted.

The book "Mastering Bitcoin" by Andreas Antonopoulos steps through this. You can find the code here https://github.com/bitcoinbook/bitcoinbook/blob/develop/code...

I'm not too hot on Python, where do I find the imported libraries so as to interpret eg `bitcoin.encode_privkey(decoded_private_key, 'wif')`.

Based on the `import bitcoin`, it looks like it is using this library: https://github.com/vbuterin/pybitcointools

Re: Understanding Bitcoin Transactions

#10
post #3

I would love to see a tutorial on how to create a bitcoin address (a private + public key pair) with nothing but command line tools that are available in a standard Linux distribution.

You are in luck - this is simple enough to fit in two (2) tweets ( plus one more tweet for the decoder ):

https://twitter.com/ribasushi/status/939954274569785344

Post reply on HN