web3.eth.getBlock
code:getBlock.js
web3.eth.getBlock(blockHashOrBlockNumber returnTransactionObjects callback)
ブロック番号またはブロックハッシュに対応するブロックを返します。
パラメータ
1. String|Number
ブロック番号またはブロックハッシュ
"genesis"
"latest"
"pending"
2. Boolean
オプショナル
デフォルト値: false
true をセットした場合、返されるブロックはすべてのトランザクションをオブジェクトとして含みます。
false をセットした場合、トランザクションハッシュのみを含みます。
3. Function
オプショナル
コールバック
第一引数に error オブジェクト、第二引数に result オブジェクトが渡されます。
戻り値
Object を返す Promise : ブロックオブジェクト
number - Number
ブロック番号
pending ブロックの場合は null
hash 32 Bytes - String
ブロックのハッシュ
pending ブロックの場合は null
parentHash 32 Bytes - String
親ブロックのハッシュ
nonce 8 Bytes - String
生成された proof-of-work のハッシュ
pending ブロックの場合は null
sha3Uncles 32 Bytes - String
ブロックの uncle データの SHA3
logsBloom 256 Bytes - String
ブロックのログの bloom フィルタ
pending ブロックの場合は null
transactionsRoot 32 Bytes - String
ブロックのトランザクションツリーのルート
stateRoot 32 Bytes - String
ブロックの最終状態ツリーのルート
miner - String
マイニング報酬が与えられるアドレス
difficulty - String
ブロック難易度の数値
totalDifficulty - String
このブロックまでの合計難易度の数値
extraData - String
このブロックの extra data フィールド
size - Number
このブロックのサイズ(バイト)
gasLimit - Number
このブロックで許可される最大のガス
gasUsed - Number
このブロックの全てのトランザクションで使用されたガスの合計値
timestamp - Number
このブロックが照合された際の UNIX タイムスタンプ
transactions - Array
トランザクションオブジェクトの配列
または 32バイトのトランザクションハッシュ
returnTransactionObjects の値によって変化します。
uncles - Array:
uncle ハッシュの配列
サンプル
code:example.js
web3.eth.getBlock(3150)
.then(console.log);
{
"number": 3,
"hash": "0xef95f2f1ed3ca60b048b4bf67cde2195961e0bba6f70bcbea9a2c4e133e34b46",
"parentHash": "0x2302e1c0b972d00932deb5dab9eb2982f570597d9d42504c05d9c2147eaf9c88",
"nonce": "0xfb6e1a62d119228b",
"sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"transactionsRoot": "0x3a1b03875115b79539e5bd33fb00d8f7b7cd61929d5a3c574f507b8acf415bee",
"stateRoot": "0xf1133199d44695dfa8fd1bcfe424d82854b5cebef75bddd7e40ea94cda515bcb",
"miner": "0x8888f1f195afa192cfee860698584c030f4c9db1",
"difficulty": '21345678965432',
"totalDifficulty": '324567845321',
"size": 616,
"extraData": "0x",
"gasLimit": 3141592,
"gasUsed": 21662,
"timestamp": 1429287689,
"transactions": [
"0x9fc76417374aa880d4449a1f7f31ec597f00b1f6f3dd2d66f4c9c6c445836d8b"
],
"uncles": []
}
原文