getblockstats (26.0.0 RPC) blockchain dumptxoutset getbestblockhash getblock getblockchaininfo getblockcount getblockfilter getblockfrompeer getblockhash getblockheader getblockstats getchainstates getchaintips getchaintxstats getdeploymentinfo getdifficulty getmempoolancestors getmempooldescendants getmempoolentry getmempoolinfo getrawmempool gettxout gettxoutproof gettxoutsetinfo gettxspendingprevout importmempool loadtxoutset preciousblock pruneblockchain savemempool scanblocks scantxoutset verifychain verifytxoutproof control getmemoryinfo getrpcinfo help logging stop uptime mining getblocktemplate getmininginfo getnetworkhashps getprioritisedtransactions prioritisetransaction submitblock submitheader network addnode clearbanned disconnectnode getaddednodeinfo getaddrmaninfo getconnectioncount getnettotals getnetworkinfo getnodeaddresses getpeerinfo listbanned ping setban setnetworkactive rawtransactions analyzepsbt combinepsbt combinerawtransaction converttopsbt createpsbt createrawtransaction decodepsbt decoderawtransaction decodescript descriptorprocesspsbt finalizepsbt fundrawtransaction getrawtransaction joinpsbts sendrawtransaction signrawtransactionwithkey submitpackage testmempoolaccept utxoupdatepsbt signer enumeratesigners util createmultisig deriveaddresses estimatesmartfee getdescriptorinfo getindexinfo signmessagewithprivkey validateaddress verifymessage wallet abandontransaction abortrescan addmultisigaddress backupwallet bumpfee createwallet dumpprivkey dumpwallet encryptwallet getaddressesbylabel getaddressinfo getbalance getbalances getnewaddress getrawchangeaddress getreceivedbyaddress getreceivedbylabel gettransaction getunconfirmedbalance getwalletinfo importaddress importdescriptors importmulti importprivkey importprunedfunds importpubkey importwallet keypoolrefill listaddressgroupings listdescriptors listlabels listlockunspent listreceivedbyaddress listreceivedbylabel listsinceblock listtransactions listunspent listwalletdir listwallets loadwallet lockunspent migratewallet newkeypool psbtbumpfee removeprunedfunds rescanblockchain restorewallet send sendall sendmany sendtoaddress sethdseed setlabel settxfee setwalletflag signmessage signrawtransactionwithwallet simulaterawtransaction unloadwallet upgradewallet walletcreatefundedpsbt walletdisplayaddress walletlock walletpassphrase walletpassphrasechange walletprocesspsbt zmq getzmqnotifications getblockstats hash_or_height ( stats ) Compute per block statistics for a given window. All amounts are in satoshis. It won't work for some heights with pruning. Arguments: 1. hash_or_height (string or numeric, required) The block hash or height of the target block 2. stats (json array, optional, default=all values) Values to plot (see result below) [ "height", (string) Selected statistic "time", (string) Selected statistic ... ] Result: { (json object) "avgfee" : n, (numeric, optional) Average fee in the block "avgfeerate" : n, (numeric, optional) Average feerate (in satoshis per virtual byte) "avgtxsize" : n, (numeric, optional) Average transaction size "blockhash" : "hex", (string, optional) The block hash (to check for potential reorgs) "feerate_percentiles" : [ (json array, optional) Feerates at the 10th, 25th, 50th, 75th, and 90th percentile weight unit (in satoshis per virtual byte) n, (numeric) The 10th percentile feerate n, (numeric) The 25th percentile feerate n, (numeric) The 50th percentile feerate n, (numeric) The 75th percentile feerate n (numeric) The 90th percentile feerate ], "height" : n, (numeric, optional) The height of the block "ins" : n, (numeric, optional) The number of inputs (excluding coinbase) "maxfee" : n, (numeric, optional) Maximum fee in the block "maxfeerate" : n, (numeric, optional) Maximum feerate (in satoshis per virtual byte) "maxtxsize" : n, (numeric, optional) Maximum transaction size "medianfee" : n, (numeric, optional) Truncated median fee in the block "mediantime" : n, (numeric, optional) The block median time past "mediantxsize" : n, (numeric, optional) Truncated median transaction size "minfee" : n, (numeric, optional) Minimum fee in the block "minfeerate" : n, (numeric, optional) Minimum feerate (in satoshis per virtual byte) "mintxsize" : n, (numeric, optional) Minimum transaction size "outs" : n, (numeric, optional) The number of outputs "subsidy" : n, (numeric, optional) The block subsidy "swtotal_size" : n, (numeric, optional) Total size of all segwit transactions "swtotal_weight" : n, (numeric, optional) Total weight of all segwit transactions "swtxs" : n, (numeric, optional) The number of segwit transactions "time" : n, (numeric, optional) The block time "total_out" : n, (numeric, optional) Total amount in all outputs (excluding coinbase and thus reward [ie subsidy + totalfee]) "total_size" : n, (numeric, optional) Total size of all non-coinbase transactions "total_weight" : n, (numeric, optional) Total weight of all non-coinbase transactions "totalfee" : n, (numeric, optional) The fee total "txs" : n, (numeric, optional) The number of transactions (including coinbase) "utxo_increase" : n, (numeric, optional) The increase/decrease in the number of unspent outputs (not discounting op_return and similar) "utxo_size_inc" : n, (numeric, optional) The increase/decrease in size for the utxo index (not discounting op_return and similar) "utxo_increase_actual" : n, (numeric, optional) The increase/decrease in the number of unspent outputs, not counting unspendables "utxo_size_inc_actual" : n (numeric, optional) The increase/decrease in size for the utxo index, not counting unspendables } Examples: > bitcoin-cli getblockstats '"00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09"' '["minfeerate","avgfeerate"]' > bitcoin-cli getblockstats 1000 '["minfeerate","avgfeerate"]' > curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "getblockstats", "params": ["00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09", ["minfeerate","avgfeerate"]]}' -H 'content-type: text/plain;' http://127.0.0.1:8332/ > curl --user myusername --data-binary '{"jsonrpc": "1.0", "id": "curltest", "method": "getblockstats", "params": [1000, ["minfeerate","avgfeerate"]]}' -H 'content-type: text/plain;' http://127.0.0.1:8332/