mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 18:11:28 +01:00
92c08cd861
We set the version BIP32_VER_TEST_PRIVATE for testnet/regtest BIP32 privkey generation with libwally-core, and set BIP32_VER_MAIN_PRIVATE for mainnet. For litecoin, we also set it like bitcoin else.
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
#ifndef LIGHTNING_BITCOIN_CHAINPARAMS_H
|
|
#define LIGHTNING_BITCOIN_CHAINPARAMS_H
|
|
|
|
#include "config.h"
|
|
#include <bitcoin/block.h>
|
|
#include <ccan/short_types/short_types.h>
|
|
#include <common/amount.h>
|
|
#include <stdbool.h>
|
|
|
|
struct bip32_key_version {
|
|
u32 bip32_pubkey_version;
|
|
u32 bip32_privkey_version;
|
|
};
|
|
|
|
struct chainparams {
|
|
const char *network_name;
|
|
const char *bip173_name;
|
|
const struct bitcoin_blkid genesis_blockhash;
|
|
const int rpc_port;
|
|
const char *cli;
|
|
const char *cli_args;
|
|
const struct amount_sat dust_limit;
|
|
const struct amount_sat max_funding;
|
|
const struct amount_msat max_payment;
|
|
const u32 when_lightning_became_cool;
|
|
|
|
/* Whether this is a test network or not */
|
|
const bool testnet;
|
|
|
|
/* Version codes for BIP32 extended keys in libwally-core*/
|
|
const struct bip32_key_version bip32_key_version;
|
|
};
|
|
|
|
/**
|
|
* chainparams_for_network - Look up blockchain parameters by its name
|
|
*/
|
|
const struct chainparams *chainparams_for_network(const char *network_name);
|
|
|
|
/**
|
|
* chainparams_by_bip173 - Helper to get a network by its bip173 name
|
|
*
|
|
* This lets us decode BOLT11 addresses.
|
|
*/
|
|
const struct chainparams *chainparams_by_bip173(const char *bip173_name);
|
|
|
|
/**
|
|
* chainparams_by_chainhash - Helper to get a network by its genesis blockhash
|
|
*/
|
|
const struct chainparams *chainparams_by_chainhash(const struct bitcoin_blkid *chain_hash);
|
|
|
|
#endif /* LIGHTNING_BITCOIN_CHAINPARAMS_H */
|