比特币(Bitcoin) RPC Blockchain API中getblockheader的用法及代码示例。
用法:
getblockheader "blockhash" ( verbose )
如果verbose为false,则返回一个已序列化的字符串,即块头‘hash’的hex-encoded数据。
如果verbose为true,则返回一个对象,该对象包含有关块头‘hash’的信息。
参数1 - blockhash
类型:字符串,必填
区块哈希
参数2 - verbose
类型:布尔值,可选,默认= true
对于json对象为true,对于hex-encoded数据为false
返回结果(对于 verbose = true)
{
"hash" : "hash", (string) the block hash (same as provided)
"confirmations" : n, (numeric) The number of confirmations, or -1 if the block is not on the main chain
"height" : n, (numeric) The block height or index
"version" : n, (numeric) The block version
"versionHex" : "00000000", (string) The block version formatted in hexadecimal
"merkleroot" : "xxxx", (string) The merkle root
"time" : ttt, (numeric) The block time in seconds since epoch (Jan 1 1970 GMT)
"mediantime" : ttt, (numeric) The median block time in seconds since epoch (Jan 1 1970 GMT)
"nonce" : n, (numeric) The nonce
"bits" : "1d00ffff", (string) The bits
"difficulty" : x.xxx, (numeric) The difficulty
"chainwork" : "0000...1f3" (string) Expected number of hashes required to produce the current chain (in hex)
"nTx" : n, (numeric) The number of transactions in the block.
"previousblockhash" : "hash", (string) The hash of the previous block
"nextblockhash" : "hash", (string) The hash of the next block
}
返回结果(对于 verbose=false)
名称 |
类型 |
描述 |
---|---|---|
data |
string |
块‘hash’的已序列化字符串hex-encoded数据。 |
示例
bitcoin-cli getblockheader "00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09"
curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "getblockheader", "params": ["00000000c937983704a73af28acdec37b049d214adbda81d7e2a3dd146f6ed09"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
相关用法
- Bitcoin getbestblockhash用法及代码示例
- Bitcoin getblock用法及代码示例
- Bitcoin getblockchaininfo用法及代码示例
- Bitcoin getblockcount用法及代码示例
- Bitcoin getblockhash用法及代码示例
- Bitcoin getblockstats用法及代码示例
- Bitcoin getchaintips用法及代码示例
- Bitcoin getchaintxstats用法及代码示例
- Bitcoin getdifficulty用法及代码示例
- Bitcoin getmempoolancestors用法及代码示例
- Bitcoin getmempooldescendants用法及代码示例
- Bitcoin getmempoolentry用法及代码示例
- Bitcoin getmempoolinfo用法及代码示例
- Bitcoin getrawmempool用法及代码示例
- Bitcoin gettxout用法及代码示例
- Bitcoin gettxoutproof用法及代码示例
- Bitcoin gettxoutsetinfo用法及代码示例
- Bitcoin preciousblock用法及代码示例
- Bitcoin pruneblockchain用法及代码示例
- Bitcoin savemempool用法及代码示例
- Bitcoin scantxoutset用法及代码示例
- Bitcoin verifychain用法及代码示例
注:本文由纯净天空筛选整理自bitcoin.org大神的英文原创作品 Bitcoin getblockheader。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。