Geth/Parity 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.scrollscan.com/api
   ?module=proxy
   &action=eth_blockNumber
   &apikey=YourApiKeyToken

No parameters required.

eth_getBlockByNumber

Returns information about a block by block number.

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

Query Parameters

eth_getBlockTransactionCountByNumber

Returns the number of transactions in a block.

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

Query Parameters

eth_getTransactionByHash

Returns the information about a transaction requested by transaction hash.

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

Query Parameters

eth_getTransactionByBlockNumber

Returns information about a transaction by block number.

https://api.scrollscan.com/api
   ?module=proxy
   &action=eth_getTransactionByBlockNumberAndIndex
   &tag=0x9AC4D
   &apikey=YourApiKeyToken

Query Parameters

eth_getTransactionCount

Returns the number of transactions performed by an address.

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

Query Parameters

eth_sendRawTransaction

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

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

Query Parameters

eth_getTransactionReceipt

Returns the receipt of a transaction by transaction hash.

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

Query Parameters

eth_call

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

https://api.scrollscan.com/api
   ?module=proxy
   &action=eth_call
   &to=0xaf8aE6955d07776aB690e565Ba6Fbc79B8dE3a5d
   &data=0x70a08231000000000000000000000000e16359506c028e51f16be38986ec5746251e9724
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

eth_getCode

Returns code at a given address.

https://api.scrollscan.com/api
   ?module=proxy
   &action=eth_getCode
   &address=0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df
   &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.scrollscan.com/api
   ?module=proxy
   &action=eth_getStorageAt
   &address=0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df
   &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.scrollscan.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.scrollscan.com/api
   ?module=proxy
   &action=eth_estimateGas
   &data=0xe21fd0e9
   &to=0xf55BEC9cafDbE8730f096Aa55dad6D22d44099Df
   &value=0xff22
   &gasPrice=18148D00
   &gas=38D7EA4C67FFF
   &apikey=YourApiKeyToken

Query Parameters

Last updated