You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rusty Russell 5475666b7e lightningd: simple wallet support. 8 years ago
..
libbase58@16c2527608 Add libbase58 as git submodule 8 years ago
test struct bitcoin_tx: remove explicit lengths, use tal_len()/tal_count() 8 years ago
Makefile bitcoin: fix building of submodules libbase58 submodule. 8 years ago
README Fix typo. 9 years ago
address.h Makefile: generalize whitespace check. 8 years ago
base58.c bitcoin/base58: don't segv if key_to_base58 / key_from_base58 called first. 8 years ago
base58.h Use global secp256k1_ctx instead of passing it around. 8 years ago
block.c bitcoin/pullpush.[ch]: expose bitcoin-style marshal/unmarshal. 8 years ago
block.h bitcoind: use correct endianness for block hashes. 9 years ago
locktime.c type_to_string: move formatting to appropriate files. 8 years ago
locktime.h header cleanup: sort include lines into alpha order, after config.h 9 years ago
preimage.h bitcoin/preimage: struct preimage. 8 years ago
privkey.h type_to_string: add privkey. 8 years ago
pubkey.c type_to_string: add privkey. 8 years ago
pubkey.h type_to_string: add secp256k1_pubkey 8 years ago
pullpush.c struct bitcoin_tx: remove explicit lengths, use tal_len()/tal_count() 8 years ago
pullpush.h struct bitcoin_tx: remove explicit lengths, use tal_len()/tal_count() 8 years ago
script.c lightningd: simple wallet support. 8 years ago
script.h lightningd: simple wallet support. 8 years ago
shadouble.c type_to_string: move formatting to appropriate files. 8 years ago
shadouble.h header cleanup: sort include lines into alpha order, after config.h 9 years ago
signature.c type_to_string: add secp256k1_ecdsa_signature. 8 years ago
signature.h struct bitcoin_tx: remove explicit lengths, use tal_len()/tal_count() 8 years ago
tx.c struct bitcoin_tx: remove explicit lengths, use tal_len()/tal_count() 8 years ago
tx.h struct bitcoin_tx: remove explicit lengths, use tal_len()/tal_count() 8 years ago
varint.c bitcoin/varint: fix varint reading for multibyte varints. 8 years ago
varint.h varint: new file. 9 years ago

README

These are standard bitcoin manipulation routines which should be
provided by any normal bitcoin library in whatever language you choose.

The ones here are standalone ones taken from bitcoin core and some I
wrote, many taken from bitcoin-iterate and pasted in here.