eth_getTransactionByHash
Returns information about a transaction from a given hash.
Example
curl https://bsc-<network>.web3api.com/v1/YOUR-API-KEY
-X POST
-H "Content-Type: application/json"
-d "{\"jsonrpc\":\"2.0\",\"method\":\"eth_getTransactionByHash\",\"params\": [\"0x5508f1e4304cdc7d1f601e8e0322629ddcfb4ad1b1858d09e6c0b78bc097e863\", \"latest\"],\"id\":1}"
curl -X POST 'https://bsc-<network>.web3api.com/v1/YOUR-API-KEY' \
-H 'Content-Type: application/json' \
--data-raw '{"jsonrpc":"2.0","method":"eth_getTransactionByHash","params": ["0x5508f1e4304cdc7d1f601e8e0322629ddcfb4ad1b1858d09e6c0b78bc097e863"],"id":1}'
TRANSACTION HASH
- A string representing the hash (32 bytes) of a transaction.
Result Fields
TRANSACTION
- A transaction object, or null when no transaction was found
Within the transaction object, the following information are available.
blockHash
: 32 Bytes - hash of the block where this transaction was in, null when its pending.blockNumber
: block number where this transaction was in, null when its pending.from
: 20 Bytes - address of the sender.gas
: gas provided by the sender.gasPrice
: gas price provided by the sender in Wei.hash
: 32 Bytes - hash of the transaction.input
: the data send along with the transaction.nonce
: the number of transactions made by the sender prior to this one.to
: 20 Bytes - address of the receiver. null when its a contract creation transaction.transactionIndex
: integer of the transactions index position in the block. null when its pending.value
: value transferred in Wei.
Body
{
"jsonrpc":"2.0",
"id":1,
"result":{
"blockHash":"0xde6533bd819945cbee552728721a8bef25279ead24de58fe17f34e7c063abed3",
"blockNumber":"0x6ef8d5",
"from":"0xa525121b54c473e3071ce15dba622d5e23970ed3",
"gas":"0x5208",
"gasPrice":"0x12a05f200",
"hash":"0x5508f1e4304cdc7d1f601e8e0322629ddcfb4ad1b1858d09e6c0b78bc097e863",
"input":"0x",
"nonce":"0x1",
"to":"0x71c7656ec7ab88b098defb751b7401b5f6d8976f",
"transactionIndex":"0x1b7",
"value":"0x54e0048173400",
"v":"0x1b",
"r":"0x437b3bef6de3da5b079448134f3813f34901a2473ecdcb7712f5b138c5ca33c3",
"s":"0x35d08bdcf368764d753c3825b2d99d082efca1402313ec48d9e301ff0e355e09"
}
}
Last updated