eth_getTransactionByBlockNumberAndIndex
ブロック番号とトランザクションのインデックス位置に基づき、トランザクションの情報を返します。
パラメータ
1. QUANTITY|TAG
ブロック番号の整数値
または、以下のいずれかの文字列
"latest"
"earliest"
"pending"
2. QUANTITY
トランザクションのインデックス位置
code:params.js
params: [
'0x29c', // 668
'0x0' // 0
]
戻り値
code:example.sh
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionByBlockNumberAndIndex","params":"0x29c", "0x0","id":1}' 参考