-
Notifications
You must be signed in to change notification settings - Fork 96
/
settings.conf.bitcoin
28 lines (28 loc) · 2.35 KB
/
settings.conf.bitcoin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
protocol_version="70016" // Typically you can find the protocol version in your coins version.h file
init_proto_version="209" // Typically you can find the init protocol version in your coins version.h file
min_peer_proto_version="31800" // Typically you can find the minimum peer protocol version in your coins version.h file. Leave this value blank or set it to the same value as protocol_version if this setting does not exist in your blockchain
caddr_time_version="" // No longer used by bitcoin and some other modern cryptocurrencies. Set to blank "" or 0 if not used for your blockchain. Typically you can find the caddr_time_version in your coins version.h file if it exists
pchMessageStart_0 = "0xf9" // Typically you can find the 4 pchMessageStart values in your coins main.cpp or chainparams.cpp file
pchMessageStart_1 = "0xbe"
pchMessageStart_2 = "0xb4"
pchMessageStart_3 = "0xd9"
wallet_port="8333" // Your coins main port #
explorer_url="https://blockchain.info/q/getblockcount" // Set to a block explorer url that returns the current block height. Leave blank to default to the block_count value below
second_explorer_url="https://blockstream.info/api/blocks/tip/height" // A 2nd block explorer url to be used as a backup in the event that the 1st block explorer is unreachable
explorer_requery_seconds="600" // Used in conjunction with the explorer_url and second_explorer_url parameters. This represents the total amount of time to wait in seconds before re-getting the current block height value from the block explorer api url(s). Typically it is recommended to set this value to the average amount of seconds that your blockchain takes to find a new block.
block_count="0" // A node cannot be considered "good" unless it has a block height equal to or greater than this value. This value is only used if both explorer_url and second_explorer_url are left blank or when the explorer(s) cannot be contacted
seed_1="seed.bitcoin.sipa.be" // At least one valid seed ip address is required to begin crawling the network
seed_2="dnsseed.bluematt.me"
seed_3="dnsseed.bitcoin.dashjr.org"
seed_4="seed.bitcoinstats.com"
seed_5="seed.bitcoin.jonasschnelli.ch"
seed_6="seed.btc.petertodd.org"
seed_7="seed.bitcoin.sprovoost.nl"
seed_8="dnsseed.emzy.de"
seed_9="seed.bitcoin.wiz.biz"
seed_10=""
cf_domain=""
cf_domain_prefix=""
cf_username="[email protected]"
cf_api_key=""
cf_seed_dump="dnsseed.dump"