eth_getTransactionByBlockHashAndIndex,通过区块hash和交易index位置,获取交易信息。
参数
- DATA, 32 Bytes - 区块的hash。
- QUANTITY - 交易index位置(整型)
params: [ '0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331', '0x0' // 0 ]
返回
- 跟
eth_getBlockByHash
一样。
例子
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_getTransactionByBlockHashAndIndex","params":[0xc6ef2fc5426d6ad6fd9e2a26abeab0aa2411b7ab17f30a99d3cb96aed1d1055b, "0x0"],"id":1}'
跟`eth_getBlockByHash`一样。