6
Is there a way, by using bitcoin-cli using RPC querying, if the node I'm querying is running on MainNet or TestNet?
Thanks
6
Is there a way, by using bitcoin-cli using RPC querying, if the node I'm querying is running on MainNet or TestNet?
Thanks
8
Simplest API, doh!:
$ bitcoin-cli getinfo
{
"version": 120100,
"protocolversion": 70012,
"walletversion": 60000,
"balance": 0.00000000,
"blocks": 414105,
"timeoffset": -165,
"connections": 9,
"proxy": "",
"difficulty": 199312067531.243,
"testnet": false,
"keypoololdest": 1466689642,
"keypoolsize": 101,
"paytxfee": 0.00000000,
"relayfee": 0.00001000,
"errors": ""
}
4
Since version 0.16.0
$ bitcoind-cli getblockchaininfo
{
"chain": "main",
"blocks": 525663,
"headers": 525663,
.
.
.
}
the
getinfocommand deprecated in Bitcoin Core 0.16 onwards. you'll get the messagethe method not foundon later versions. – inherithandle – 2019-11-11T06:37:09.143good to know, any replacement? – knocte – 2019-11-11T08:16:30.927
as @Kerem atam said, you can use
getblockchaininfoas well asgetnetworkinfoandgetwalletinfofor some more information. – inherithandle – 2019-11-12T11:29:33.047