eth_getTransactionByHash RPC Method
To use the eth_getTransactionByHash method on the C-Chain, ensure that the end of your URL includes ext/bc/C/rpc.
Parameters
hash
string
REQUIRED
The hash of a transaction
Returns
object
string
The transaction response object, or null if no transaction is found:
blockHash
string
The hash of the block where this transaction was in. Null when it's a pending log
blockNumber
string
The block number where this transaction was in. Null when it's a pending log
from
string
The address of the sender
gas
string
The gas provided by the sender, encoded as hexadecimal
gasPrice
string
The gas price provided by the sender in wei encoded as hexadecimal
maxFeePerGas
string
The maximum fee per gas set in the transaction
input
string
The data sent along with the transaction
nonce
string
The number of transactions made by the sender prior to this one encoded as hexadecimal
to
string
The address of the receiver. Null when its a contract creation transaction
transactionIndex
string
The integer of the transaction's index position that the log was created from. Null when it's a pending log
value
string
The value transferred in wei encoded as hexadecimal
type
string
The transaction type
accessList
string
A list of addresses and storage keys that the transaction plans to access
chainId
string
The chain id of the transaction, if any
v
string
The standardized V field of the signature
r
string
The R field of the signature
s
string
The S field of the signature
Request
1curl https://docs-demo.flare-mainnet.quiknode.pro/ext/bc/C/rpc \2-X POST \3-H "Content-Type: application/json" \4--data '{"method":"eth_getTransactionByHash","params":["0x4ccfe86772a2af6036829bb7893d86d9822ab8dc187d7e58ef92309660a02c4d"],"id":1,"jsonrpc":"2.0"}'5
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free