Geth Proxy
For the full documentation of available parameters and descriptions, please visit the official Ethereum JSON-RPC docs.
For compatibility with Parity, please prefix all hex strings with " 0x ".
eth_blockNumber
Returns the number of most recent block
Try this endpoint in your browser 🔗
No parameters required.
eth_getBlockByNumber
Returns information about a block by block number.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
tag | the block number, in hex eg. |
boolean | the when |
eth_getBlockTransactionCountByNumber
Returns the number of transactions in a block.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
tag | the block number, in hex eg. |
eth_getTransactionByHash
Returns the information about a transaction requested by transaction hash.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
txhash | the |
eth_getTransactionByBlockNumberAndIndex
Returns information about a transaction by block number and transaction index position.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
tag | the block number, in hex eg. |
index | the position of the uncle's index in the block, in hex eg. |
eth_getTransactionCount
Returns the number of transactions performed by an address.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
address | the |
tag | the |
eth_sendRawTransaction
Submits a pre-signed transaction for broadcast to the Ethereum network.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
hex | the |
💡 Tip: Send a POST request if your hex string is particularly long.
🖋️ For more information on creating a signed raw transaction, visit this page.
eth_getTransactionReceipt
Returns the receipt of a transaction by transaction hash.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
txhash | the |
eth_call
Executes a new message call immediately without creating a transaction on the block chain.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
to | the |
data | the hash of the method signature and encoded parameters |
tag | the |
⛽ Note: The gas
parameter is capped at 2x the current block gas limit.
eth_getCode
Returns code at a given address.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
address | the |
tag | the |
eth_getStorageAt
Returns the value from a storage position at a given address.
This endpoint is still experimental and may have potential issues
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
address | the |
position | the hex code of the position in storage, eg |
tag | the |
eth_gasPrice
Returns the current price per gas in wei.
Try this endpoint in your browser 🔗
No parameters required.
eth_estimateGas
Makes a call or transaction, which won't be added to the blockchain and returns the used gas.
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
data | the hash of the method signature and encoded parameters |
to | the |
value | the value sent in this transaction, in hex eg. |
gas | the amount of gas provided for the transaction, in hex eg. |
gasPrice | the gas price paid for each unit of gas, in wei post EIP-1559, the |
⛽ Note: The gas
parameter is capped at 2x the current block gas limit.
Last updated