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 80c705d528 bitcoin/psbt: more const pointers. 4 years ago
..
test psbt: clean up interface for setting metadata on PSBT inputs 4 years ago
Makefile bitcoin/feerate: new exposure for feerate parsing outside lightningd. 4 years ago
README Fix typo. 9 years ago
address.h Makefile: generalize whitespace check. 8 years ago
base58.c wallet: Pass chainparams to address serialization 6 years ago
base58.h wallet: Pass chainparams to address serialization 6 years ago
block.c block: Compute the txids only once 4 years ago
block.h block: Compute the txids only once 4 years ago
chainparams.c common/wire: move bitcoin-specific marshalling functions into bitcoin files. 4 years ago
chainparams.h elements,pset: populate elements specific data for PSBTs 4 years ago
feerate.c feerate: add a 'common_weight' calculation for a tx 4 years ago
feerate.h feerate: add a 'common_weight' calculation for a tx 4 years ago
locktime.c Remove unused functions not covered by unit tests 7 years ago
locktime.h Remove unused functions not covered by unit tests 7 years ago
preimage.c wire: move towire/fromwire_preimage out to bitcoin/preimage.c. 4 years ago
preimage.h wire: move towire/fromwire_preimage out to bitcoin/preimage.c. 4 years ago
privkey.c wire: move remaining bitcoin functions out to bitcoin/ files. 4 years ago
privkey.h wire: move remaining bitcoin functions out to bitcoin/ files. 4 years ago
psbt.c bitcoin/psbt: more const pointers. 4 years ago
psbt.h bitcoin/psbt: more const pointers. 4 years ago
pubkey.c wire: move remaining bitcoin functions out to bitcoin/ files. 4 years ago
pubkey.h pubkey: update comment to reflect location 4 years ago
script.c bitcoin/script.c: Add scriptpubkey_opreturn_padded, which creates an OP_RETURN with a pointless random 20-byte padding. 4 years ago
script.h bitcoin/script.c: Add scriptpubkey_opreturn_padded, which creates an OP_RETURN with a pointless random 20-byte padding. 4 years ago
shadouble.c wire: move remaining bitcoin functions out to bitcoin/ files. 4 years ago
shadouble.h wire: move remaining bitcoin functions out to bitcoin/ files. 4 years ago
short_channel_id.c wire: move towire/fromwire_short_channel_id out to bitcoin/short_channel_id.c 4 years ago
short_channel_id.h wire: move towire/fromwire_short_channel_id out to bitcoin/short_channel_id.c 4 years ago
signature.c psbt: remove input_amounts from bitcoin tx 4 years ago
signature.h common/wire: move bitcoin-specific marshalling functions into bitcoin files. 4 years ago
tx.c bitcoin: pull up elements_fee calc to allow wtx passed in 4 years ago
tx.h bitcoin: pull up elements_fee calc to allow wtx passed in 4 years ago
tx_parts.c bugfix: tx_parts omits two byte counts in serialization 4 years ago
tx_parts.h bitcoin/tx_parts: infrastructure for partial bitcoin txs. 4 years ago
varint.c varint: Add helper function for getting varlen size 5 years ago
varint.h varint: Add helper function for getting varlen size 5 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.