Link to this headingBitcoin
https://karpathy.github.io/2021/06/21/blockchain/
Link to this headingGenerating an Address
Download Addresses:
|
Sort List:
|
|
|
Check Address list against:
# Compress the Public Key
=
# Hash the Public Key with SHA-256 then hash that output with RIPEMD-160
=
#Version Information. \x00 for mainnet and \x6f for testnet
#version = b"\x00"
#Take the first 4 bytes of the double sha256 hashed publickey and version
=
# BASE58(Version || Hashed Output || Checksum)
return
#Generate Private Public Key pair
, =
#1Nn73LPMp8T1dJUixQYMZvEBcZpVNgHTCn
Link to this headingSending a Transaction
#Generate From Address
, =
=
#Generate To Address
, =
Link to this headingSignatures
[Schnorr_Signature](/Crypto/Signatures/Schorr Signature.md)