eth_getBlockByHash,通过hash,返回一个区块的信息。
参数
- DATA, 32 Bytes - 区块hash。
- Boolean - 如果为true,则返回完整的交易对象,如果为false,则仅返回交易的散列。
params: [ '0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331', true ]
返回
Object - 块对象,或者当没有找到块时为null:
number: QUANTITY - 块号。 当处于pending时为null。
- hash: DATA, 32 Bytes - 区块的hash. 当处于pending时为null。
- parentHash: DATA, 32 Bytes - 父类块的hash。
- nonce: DATA, 8 Bytes - 生成的工作证明的hash。当处于pending时为null。
- sha3Uncles: DATA, 32 Bytes - 块中的uncle数据的SHA3。
- logsBloom: DATA, 256 Bytes - 块的日志的bloom过滤器。当pending时为空。
- transactionsRoot: DATA, 32 Bytes - 块的交易trie的根。
- stateRoot: DATA, 32 Bytes - 该块的最终状态树的根。
- receiptsRoot: DATA, 32 Bytes - 块接受的trie的根。
- miner: DATA, 20 Bytes - 获得挖矿奖励的受益人的地址。
- difficulty: QUANTITY - 该块的难度整数。
- totalDifficulty: QUANTITY - 直到此块的链的总难度整数。
- extraData: DATA - 该块的“额外数据”字段。
- size: QUANTITY - 以字节为单位该块的大小。
- gasLimit: QUANTITY - 此区块允许的最大gas数量。
- gasUsed: QUANTITY - 在此区块中所有交易使用的总gas。
- timestamp: QUANTITY - 整理块时的unix时间戳。
- transactions: Array - 取决于最后给定的参数,事务对象数组或32字节交易散列。
- uncles: Array - uncle散列数组。
例子
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getBlockByHash","params":["0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331", true],"id":1}'
// Result
{
"id":1,
"jsonrpc":"2.0",
"result": {
"number": "0x1b4", // 436
"hash": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331",
"parentHash": "0x9646252be9520f6e71339a8df9c55e4d7619deeb018d2a3f2d21fc165dde5eb5",
"nonce": "0xe04d296d2460cfb8472af2c5fd05b5a214109c25688d3704aed5484f9a7792f2",
"sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"logsBloom": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331",
"transactionsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
"stateRoot": "0xd5855eb08b3387c0af375e9cdb6acfc05eb8f519e419b874b6ff2ffda7ed1dff",
"miner": "0x4e65fda2159562a496f9f3522f89122a3088497a",
"difficulty": "0x027f07", // 163591
"totalDifficulty": "0x027f07", // 163591
"extraData": "0x0000000000000000000000000000000000000000000000000000000000000000",
"size": "0x027f07", // 163591
"gasLimit": "0x9f759", // 653145
"minGasPrice": "0x9f759", // 653145
"gasUsed": "0x9f759", // 653145
"timestamp": "0x54e34e8e" // 1424182926
"transactions": [{...},{ ... }]
"uncles": ["0x1606e5...", "0xd5145a9..."]
}
}