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

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_blockNumber
   &apikey=YourApiKeyToken

No parameters required.

eth_getBlockByNumber

Returns information about a block by block number.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getBlockByNumber
   &tag=0xc75b74
   &boolean=true
   &apikey=YourApiKeyToken

Query Parameters

eth_getBlockTransactionCountByNumber

Returns the number of transactions in a block.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getBlockTransactionCountByNumber
   &tag=0xDDA0
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionByHash

Returns the information about a transaction requested by transaction hash.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getTransactionByHash
   &txhash=0x9f79269dcc29fdea733a2f2b5cd77a20309969e2863d6d4f626608421d65a539
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionByBlockNumberAndIndex

Returns information about a transaction by block number and transaction index position.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getTransactionByBlockNumberAndIndex
   &tag=0xDDA0
   &index=0x0
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionCount

Returns the number of transactions performed by an address.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getTransactionCount
   &address=0x237ccc31bc076b3d515f60fbc81fdde0b0d553fe
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_sendRawTransaction

Submits a pre-signed transaction for broadcast to the Ethereum network.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_sendRawTransaction
   &hex=0xd764ad0b
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionReceipt

Returns the receipt of a transaction by transaction hash.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getTransactionReceipt
   &txhash=0x9f79269dcc29fdea733a2f2b5cd77a20309969e2863d6d4f626608421d65a539
   &apikey=YourApiKeyToken

Query Parameters

eth_call

Executes a new message call immediately without creating a transaction on the block chain.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_call
   &to=0x4200000000000000000000000000000000000015
   &data=0x015d8eb9
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Note: The gas parameter is capped at 2x the current block gas limit.

eth_getCode

Returns code at a given address.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getCode
   &address=0x60ae616a2155ee3d9a68541ba4544862310933d4
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_getStorageAt

Returns the value from a storage position at a given address.

This endpoint is still experimental and may have potential issues

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_getStorageAt
   &address=0xC0ad14889A5EfEC27760531439A8f6b109f046Bc
   &position=0x0
   &tag=latest
   &apikey=YourApiKeyToken

Try this endpoint in your browser

Query Parameters

eth_gasPrice

Returns the current price per gas in wei.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_gasPrice
   &apikey=YourApiKeyToken

No parameters required.

eth_estimateGas

Makes a call or transaction, which won't be added to the blockchain and returns the used gas.

https://api.fraxscan.com/api
   ?module=proxy
   &action=eth_estimateGas
   &data=0x90d25074000000000000000000000000b599c3590f42f8f995ecfa0f85d2980b76862fc10000000000000000000000000000000000000000000000000000000005b40404000000000000000000000000ca2837d3a0f51c699a3fb05c7aeac39994a02e7d00000000000000000000000000000000000000000000000000000000624d846c
   &to=0xb599c3590f42f8f995ecfa0f85d2980b76862fc1
   &value=0xff22
   &gasPrice=0x90970317514 
   &gas=0x5f5e0ff
   &apikey=YourApiKeyToken

Query Parameters

Last updated