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-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_blockNumber
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Sample response
{
"jsonrpc":"2.0",
"result":"0x10a79f",
"id":83
}
eth_getBlockByNumber
Returns information about a block by block number.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getBlockByNumber
&tag=0x91b
&boolean=true
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
tag
the block number, in hex eg. 0xC36B3C
boolean
the boolean
value to show full transaction objects.
when true
, returns full transaction objects and their information, when false
only returns a list of transactions.
Sample response
{
"jsonrpc": "2.0",
"result": {
"hash": "0x53e33796ec2b88443468119629c613ad1e6e74b2b2860c0af307e0e0e2df69f1",
"parentHash": "0xda519eebd4737cc233ebcec4008de8a8f1bfcfdf54c949755ed031d634526fe0",
"sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"miner": "0x0000000000000000000000000000000000000000",
"stateRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"transactionsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"receiptsRoot": "0x0000000000000000000000000000000000000000000000000000000000000000",
"number": "0x91b",
"l1BatchNumber": "0x303",
"gasUsed": "0x0",
"gasLimit": "0x4000000000000",
"baseFeePerGas": "0x5f5e100",
"extraData": "0x",
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"timestamp": "0x6695d6e5",
"l1BatchTimestamp": "0x6695d5b8",
"difficulty": "0x0",
"totalDifficulty": "0x0",
"sealFields": [],
"uncles": [],
"transactions": [],
"size": "0x0",
"mixHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"nonce": "0x0000000000000000"
},
"id": 1
}
eth_getUncleByBlockNumberAndIndex
Returns information about a uncle by block number.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getUncleByBlockNumberAndIndex
&tag=0x91b
&index=0x0
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
tag
the block number, in hex eg. 0xC36B3C
index
the position of the uncle's index in the block, in hex eg. 0x5
Sample response
{
"jsonrpc":"2.0",
"id":1,
"result":{
"baseFeePerGas":"0x7",
"difficulty":"0x133cb6ea4",
"extraData":"0xd883010a10846765746888676f312e31372e37856c696e7578",
"gasLimit":"0x7a1200",
"gasUsed":"0x0",
"hash":"0xd5aabf16a6cd972bf33b7656143d1305f24273ca44a47908e2c36d8eb69a2d80",
"logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"miner":"0xd87def8bbd2c4d59494611ab259a2005c154212a",
"mixHash":"0x4c2d04e4f691306fcca2f2623cdac968bc1dc90170a1c7104815cebe424c6411",
"nonce":"0x4c0da4978732561b",
"number":"0x10a7a5",
"parentHash":"0xa92a3d6c31cdbed8d40067930f364291063e01946ca40db7cf4e95866bfcd7f1",
"receiptsRoot":"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
"sha3Uncles":"0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"size":"0x21e",
"stateRoot":"0x5c5ca1001e5f6b383a0bcab31823097146aa364158b12888de02bbff707da299",
"timestamp":"0x627e7da6",
"transactionsRoot":"0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
"uncles":[
]
}
}
eth_getBlockTransactionCountByNumber
Returns the number of transactions in a block.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getBlockTransactionCountByNumber
&tag=0x91be
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
tag
the block number, in hex eg. 0x10FB78
Sample response
{
"jsonrpc":"2.0",
"id":1,
"result":"0x1"
}
eth_getTransactionByHash
Returns the information about a transaction requested by transaction hash.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getTransactionByHash
&txhash=0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
txhash
the string
representing the hash of the transaction
Sample Response
{
"jsonrpc": "2.0",
"result": {
"hash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"nonce": "0x5cef",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"transactionIndex": "0x0",
"from": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"to": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"value": "0x0",
"gasPrice": "0x11c76c630bc",
"gas": "0x27a28",
"input": "0x",
"v": "0x1",
"r": "0x6b31f3c8c9f237c1de971340950ad3d1e2036f0daf00cb6921f25547acb0467c",
"s": "0x6a59dcdacc1984b127805787c0ad3c71558415638ebbac3ab36a84f7ee3d82b5",
"type": "0x71",
"maxFeePerGas": "0x121b4b52133",
"maxPriorityFeePerGas": "0x0",
"chainId": "0x1fa72e78"
},
"id": 1
}
eth_getTransactionByBlockNumberAndIndex
Returns information about a transaction by block number and transaction index position.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getTransactionByBlockNumberAndIndex
&tag=0xb7be
&index=0x0
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
tag
the block number, in hex eg. 0x10FB78
index
the position of the uncle's index in the block, in hex eg. 0x0
Sample Response
{
"jsonrpc": "2.0",
"result": {
"hash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"nonce": "0x5cef",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"transactionIndex": "0x0",
"from": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"to": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"value": "0x0",
"gasPrice": "0x11c76c630bc",
"gas": "0x27a28",
"input": "0x",
"v": "0x1",
"r": "0x6b31f3c8c9f237c1de971340950ad3d1e2036f0daf00cb6921f25547acb0467c",
"s": "0x6a59dcdacc1984b127805787c0ad3c71558415638ebbac3ab36a84f7ee3d82b5",
"type": "0x71",
"maxFeePerGas": "0x121b4b52133",
"maxPriorityFeePerGas": "0x0",
"chainId": "0x1fa72e78",
"l1BatchNumber": "0x1195",
"l1BatchTxIndex": "0x42"
},
"id": 1
}
eth_getTransactionCount
Returns the number of transactions performed by an address.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getTransactionCount
&address=0xe85b66fca403bc35bcae17ce7758e942aea65dc0
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
address
the string
representing the address to get transaction count
tag
the string
pre-defined block parameter, either earliest
, pending
or latest
Sample Response
{
"jsonrpc":"2.0",
"id":1,
"result":"0x5cf1"
}
eth_sendRawTransaction
Submits a pre-signed transaction for broadcast to the Ethereum network.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_sendRawTransaction
&hex=0x02f874030185012a05f200852e90edd00082520894eeee7341f206302f2216e39d715b96d8c6901a1c880de0b6b3a764000080c001a0bf61ea5419c7856be4ea2221b721b849d50fec738d10a714e7aaa809d9ad8838a01e59353aa8e567cc0661fb58b047361998df234df6593bf424839bc5ea214a2c
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
hex
the string
representing the signed raw transaction data to broadcast.
💡 Tip: Send a POST request if your hex string is particularly long.
🖋️ For more information on creating a signed raw transaction, visit this page.
Sample Response
{
"id":1,
"jsonrpc": "2.0",
"result": "0x84c81fc1e23474e13be0114f94f99b43696830f33292fd1d642f37e87e95acd6"
}
⛏️ Note: The result
represents the transaction hash of the submitted raw transaction.
Use eth_getTransactionReceipt to retrieve full details.
eth_getTransactionReceipt
Returns the receipt of a transaction by transaction hash.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getTransactionReceipt
&txhash=0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
txhash
the string
representing the hash of the transaction
Sample Response
{
"jsonrpc": "2.0",
"result": {
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchTxIndex": "0x42",
"l1BatchNumber": "0x1195",
"from": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"to": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"cumulativeGasUsed": "0x0",
"gasUsed": "0x15cd3",
"contractAddress": null,
"logs": [
{
"address": "0x000000000000000000000000000000000000800a",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000950e3bb8c6bab20b56a70550ec037e22032a413e",
"0x0000000000000000000000000000000000000000000000000000000000008001"
],
"data": "0x00000000000000000000000000000000000000000000000002cda6ccd0857df8",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x0",
"transactionLogIndex": "0x0",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
},
{
"address": "0x000000000000000000000000000000000000800a",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x0000000000000000000000000000000000000000000000000000000000008001",
"0x000000000000000000000000950e3bb8c6bab20b56a70550ec037e22032a413e"
],
"data": "0x000000000000000000000000000000000000000000000000000cfc336cdc4898",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x1",
"transactionLogIndex": "0x1",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
},
{
"address": "0x950e3bb8c6bab20b56a70550ec037e22032a413e",
"topics": [
"0x215d0377e445a5d2a61e1f03ac60ae018d5c95089511a4ecabcb402d0f957fde"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e85b66fca403bc35bcae17ce7758e942aea65dc0000000000000000000000000e85b66fca403bc35bcae17ce7758e942aea65dc000000000000000000000000000000000000000000000000002cda6ccd0857df8",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x2",
"transactionLogIndex": "0x2",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
},
{
"address": "0x000000000000000000000000000000000000800a",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x0000000000000000000000000000000000000000000000000000000000008001",
"0x000000000000000000000000950e3bb8c6bab20b56a70550ec037e22032a413e"
],
"data": "0x000000000000000000000000000000000000000000000000013d0eae140f7a6c",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x3",
"transactionLogIndex": "0x3",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
}
],
"l2ToL1Logs": [],
"status": "0x1",
"root": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"type": "0x71",
"effectiveGasPrice": "0x11c76c630bc"
},
"id": 1
}{
"jsonrpc": "2.0",
"result": {
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchTxIndex": "0x42",
"l1BatchNumber": "0x1195",
"from": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"to": "0xe85b66fca403bc35bcae17ce7758e942aea65dc0",
"cumulativeGasUsed": "0x0",
"gasUsed": "0x15cd3",
"contractAddress": null,
"logs": [
{
"address": "0x000000000000000000000000000000000000800a",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000950e3bb8c6bab20b56a70550ec037e22032a413e",
"0x0000000000000000000000000000000000000000000000000000000000008001"
],
"data": "0x00000000000000000000000000000000000000000000000002cda6ccd0857df8",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x0",
"transactionLogIndex": "0x0",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
},
{
"address": "0x000000000000000000000000000000000000800a",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x0000000000000000000000000000000000000000000000000000000000008001",
"0x000000000000000000000000950e3bb8c6bab20b56a70550ec037e22032a413e"
],
"data": "0x000000000000000000000000000000000000000000000000000cfc336cdc4898",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x1",
"transactionLogIndex": "0x1",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
},
{
"address": "0x950e3bb8c6bab20b56a70550ec037e22032a413e",
"topics": [
"0x215d0377e445a5d2a61e1f03ac60ae018d5c95089511a4ecabcb402d0f957fde"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000e85b66fca403bc35bcae17ce7758e942aea65dc0000000000000000000000000e85b66fca403bc35bcae17ce7758e942aea65dc000000000000000000000000000000000000000000000000002cda6ccd0857df8",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x2",
"transactionLogIndex": "0x2",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
},
{
"address": "0x000000000000000000000000000000000000800a",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x0000000000000000000000000000000000000000000000000000000000008001",
"0x000000000000000000000000950e3bb8c6bab20b56a70550ec037e22032a413e"
],
"data": "0x000000000000000000000000000000000000000000000000013d0eae140f7a6c",
"blockHash": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"blockNumber": "0xb7be",
"l1BatchNumber": "0x1195",
"transactionHash": "0xf519fe3ba83e9583964e4ce542ae1196fbf157f27d5d2065dfdff1da0de5585e",
"transactionIndex": "0x0",
"logIndex": "0x3",
"transactionLogIndex": "0x3",
"logType": null,
"removed": false,
"blockTimestamp": "0x6704b2b3"
}
],
"l2ToL1Logs": [],
"status": "0x1",
"root": "0x490b03a279b0b863044f855d068521bf07d03a9287b7af874d4bd8568b4402ba",
"logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"type": "0x71",
"effectiveGasPrice": "0x11c76c630bc"
},
"id": 1
}
eth_call
Executes a new message call immediately without creating a transaction on the block chain.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_call
&to=0x272c31fc25e4e609cbcc9e7a9e6171b4b39feaca
&data=0x60fe47b10000000000000000000000000000000000000000000000000000000000010f2c
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
to
the string
representing the address to interact with
data
the hash of the method signature and encoded parameters
tag
the string
pre-defined block parameter, either earliest
, pending
or latest
⛽ Note: The gas
parameter is capped at 2x the current block gas limit.
Sample Response
{
"jsonrpc":"2.0",
"id":1,
"result":"0x"
}
eth_getCode
Returns code at a given address.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getCode
&address=0x000000000000000000000000000000000000800A
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
address
the string
representing the address to get code
tag
the string
pre-defined block parameter, either earliest
, pending
or latest
Sample Response
{
"jsonrpc": "2.0",
"result": "0x00050000000000020000008003000039000000400030043f00000000030100190000006003300270000000d8033001970000000102200190000000240000c13d000000040230008c0000030b0000413d000000000201043b000000e002200270000000da0420009c0000002c0000a13d000000db0420009c000000380000a13d000000dc0420009c000000b20000613d000000dd0420009c000002040000613d000000de0220009c0000030b0000c13d0000000002000416000000000202004b0000030b0000c13d000000040230008a000000200220008c0000030b0000413d0000000401100370000000000101043b000000e6011001970000000000100435000000200000043f00000000010000190359033d0000040f000000360000013d0000000001000416000000000101004b0000030b0000c13d000000200100003900000100001004430000012000000443000000d9010000410000035a0001042e000000e10420009c0000007a0000213d000000e40120009c000001c20000613d000000e50120009c0000030b0000c13d0000000001000416000000000101004b0000030b0000c13d0000000101000039000000000101041a000002010000013d000000df0420009c000001cb0000613d000000e00220009c0000030b0000c13d0000000002000416000000000202004b0000030b0000c13d000000040230008a000000600220008c0000030b0000413d0000000402100370000000000402043b000000e60240009c0000030b0000213d0000002402100370000000000202043b000000e605200197000000e60220009c0000030b0000213d0000004401100370000000000101043b000400000001001d0000000001000411000080010210008c000000550000613d000080060210008c000000550000613d000080090110008c000002940000c13d0000000000400435000000200000043f000000d8010000410000000002000414000000d80320009c0000000002018019000000c001200210000000ec011001c70000801002000039000500000004001d000300000005001d035903540000040f000000050300002900000001022001900000030b0000613d000000000101043b000000000201041a000000040120006c000002c30000813d000000400100043d0000004402100039000000f303000041000000000032043500000024021000390000001f030000390000000000320435000000f4020000410000000000210435000000040210003900000020030000390000000000320435000000d802000041000000d80310009c00000000010280190000004001100210000000f5011001c70000035b00010430000000e20420009c000001fd0000613d000000e30220009c0000030b0000c13d0000000002000416000000000202004b0000030b0000c13d000000040230008a000000400220008c0000030b0000413d0000000402100370000000000402043b000000e60240009c0000030b0000213d0000002401100370000000000501043b0000000001000411000080010110008c000002190000c13d0000000101000039000000000301041a0000000002530019000000000332004b000000000300001900000001030040390000000103300190000000ae0000c13d000400000005001d000000000021041b0000000000400435000000200000043f000000d8010000410000000002000414000000d80320009c0000000002018019000000c001200210000000ec011001c70000801002000039000500000004001d035903540000040f000000050500002900000001022001900000030b0000613d000000000101043b000000000301041a00000004040000290000000002430019000000000332004b000000000300001900000001030040390000000103300190000002f60000613d000000fb0100004100000000001004350000001101000039000001fa0000013d000000040230008a000000400220008c0000030b0000413d0000000402100370000000000802043b000000e60280009c0000030b0000213d0000002402100370000000000402043b000000ea0240009c0000030b0000213d0000002302400039000000eb05000041000000000632004b00000000060000190000000006058019000000eb02200197000000000702004b0000000005008019000000eb0220009c000000000506c019000000000205004b0000030b0000c13d0000000405400039000000000251034f000000000202043b000000ea0620009c000001f70000213d000000bf06200039000000200900008a000000000696016f000000ea0760009c000001f70000213d000000400060043f000000800020043f00000000042400190000002404400039000000000334004b0000030b0000213d0000002003500039000000000131034f0000001f0320018f0000000504200272000000e70000613d00000000050000190000000506500210000000000761034f000000000707043b000000a00660003900000000007604350000000105500039000000000645004b000000df0000413d000400000009001d000500000008001d000000000503004b000000f80000613d0000000504400210000000000141034f0000000303300210000000a004400039000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f0000000000140435000000a001200039000000000001043500000000010004100000000000100435000000200000043f000000d8010000410000000002000414000000d80320009c0000000002018019000000c001200210000000ec011001c70000801002000039035903540000040f0000000102200190000000050400002900000004070000290000030b0000613d000000000101043b000000000201041a00000000090004160000000002920049000000000021041b0000000101000039000000000201041a0000000002920049000000000021041b000000ed02000041000000400100043d000000200310003900000000002304350000006002400210000000240310003900000000002304350000000008000411000000600280021000000058031000390000000000230435000000380210003900000000009204350000006c03100039000000800200043d000000000402004b0000012b0000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000524004b000001240000413d000000000332001900000000000304350000004c0320003900000000003104350000008b02200039000000000272016f000000000a12001900000000022a004b00000000020000190000000102004039000000ea03a0009c000001f70000213d0000000102200190000001f70000c13d000100000009001d000200000008001d0000004000a0043f000000ee0200004100000000002a04350000000402a000390000002003000039000000000032043500000000020104330000002403a0003900000000002304350000004403a00039000000000402004b0000014f0000613d000000000400001900000000053400190000002004400039000000000614001900000000060604330000000000650435000000000524004b000001480000413d000000000132001900000000000104350000001f01200039000000000171016f000000d802000041000000d803a0009c000000000302001900000000030a401900000040033002100000004401100039000000d80410009c00000000010280190000006001100210000000000131019f0000000003000414000000d80430009c0000000003028019000000c002300210000000000112019f000080080200003900030000000a001d0359034f0000040f000000030a00002900000000030100190000006003300270000000d803300197000000200430008c000000000403001900000020040080390000001f0540018f0000000506400272000001780000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b000001700000413d000000000705004b000001870000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f000000000056043500000001022001900000030d0000613d0000001f01400039000000600210018f0000000001a20019000000000221004b00000000020000190000000102004039000000ea0410009c0000000504000029000001f70000213d0000000102200190000001f70000c13d000000400010043f000000200230008c0000030b0000413d000000200210003900000040030000390000000000320435000000010200002900000000002104350000004003100039000000800200043d00000000002304350000006003100039000000e606400197000000000402004b000001ab0000613d00000000040000190000000005340019000000a007400039000000000707043300000000007504350000002004400039000000000524004b000001a40000413d000000000332001900000000000304350000007f02200039000000040220017f000000d803000041000000d80410009c00000000010380190000004001100210000000d80420009c00000000020380190000006002200210000000000112019f0000000002000414000000d80420009c0000000002038019000000c002200210000000000112019f000000ef011001c70000800d020000390000000303000039000000f0040000410000000205000029000003060000013d0000000001000416000000000101004b0000030b0000c13d000000c001000039000000400010043f0000000501000039000000800010043f00000100010000410000020c0000013d000000040230008a000000200220008c0000030b0000413d0000000401100370000000000401043b000000e60140009c0000030b0000213d00000000010004100000000000100435000000200000043f000000d8010000410000000002000414000000d80320009c0000000002018019000000c001200210000000ec011001c70000801002000039000500000004001d035903540000040f000000050400002900000001022001900000030b0000613d000000000101043b000000000201041a00000000050004160000000002520049000000000021041b0000000101000039000000000201041a0000000002520049000000000021041b000000ed02000041000000400100043d000000200310003900000000002304350000006002400210000000240310003900000000002304350000003802000039000000000021043500000038021000390000000000520435000000f90210009c000002230000413d000000fb0100004100000000001004350000004101000039000000040010043f000000fc010000410000035b000104300000000001000416000000000101004b0000030b0000c13d0000001201000039000000800010043f000000e7010000410000035a0001042e0000000001000416000000000101004b0000030b0000c13d000000c001000039000000400010043f0000000301000039000000800010043f000000e801000041000000a00010043f0000002001000039000000c00010043f0000008001000039000000e0020000390359032a0000040f000000c00110008a000000d802000041000000d80310009c00000000010280190000006001100210000000e9011001c70000035a0001042e000000f401000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000000fd01000041000000c40010043f000000fe010000410000035b00010430000300000005001d0000006007100039000000400070043f000000ee020000410000000000270435000000640210003900000020030000390000000000320435000000840310003900000000020104330000000000230435000000a403100039000000000402004b000002390000613d000000000400001900000000053400190000002004400039000000000614001900000000060604330000000000650435000000000524004b000002320000413d000000000132001900000000000104350000001f01200039000000200200008a000000000121016f000000d802000041000000d80370009c0000000003020019000000000307401900000040033002100000004401100039000000d80410009c00000000010280190000006001100210000000000131019f0000000003000414000000d80430009c0000000003028019000000c002300210000000000112019f0000800802000039000400000007001d0359034f0000040f000000040a00002900000000030100190000006003300270000000d803300197000000200430008c000000000403001900000020040080390000001f0540018f0000000506400272000002630000613d0000000007000019000000050870021000000000098a0019000000000881034f000000000808043b00000000008904350000000107700039000000000867004b0000025b0000413d000000000705004b000002720000613d0000000506600210000000000761034f00000000066a00190000000305500210000000000806043300000000085801cf000000000858022f000000000707043b0000010005500089000000000757022f00000000055701cf000000000585019f00000000005604350000000102200190000002a00000613d0000001f01400039000000600210018f0000000001a20019000000000221004b00000000020000190000000102004039000000ea0410009c00000005050000290000000304000029000001f70000213d0000000102200190000001f70000c13d000000400010043f000000200230008c0000030b0000413d0000000000410435000000d8020000410000000003000414000000d80430009c0000000003028019000000d80410009c00000000010280190000004001100210000000c002300210000000000112019f000000f1011001c7000000e6065001970000800d0200003900000003030000390000000005000411000000fa04000041000003060000013d000000f401000041000000800010043f0000002001000039000000840010043f0000003e01000039000000a40010043f000000f601000041000000c40010043f000000f701000041000000e40010043f000000f8010000410000035b00010430000000400200043d0000001f0430018f0000000505300272000002ad0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000002a50000413d000000000604004b000002bc0000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000000d801000041000000d80420009c000000000201801900000040012002100000006002300210000000000121019f0000035b00010430000200000002001d0000000000300435000000200000043f000000d8030000410000000001000414000000d80210009c0000000001038019000000c001100210000000ec011001c70000801002000039035903540000040f000000030300002900000001022001900000030b0000613d0000000204000029000000040240006a000000000101043b000000000021041b00000000003004350000000001000414000000d80210009c000000d801008041000000c001100210000000ec011001c70000801002000039035903540000040f0000000306000029000000050500002900000001022001900000030b0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000000d8020000410000000003000414000000d80430009c0000000003028019000000d80410009c00000000010280190000004001100210000000c002300210000000000112019f000000f1011001c70000800d020000390000000303000039000000f204000041000003060000013d000000000021041b000000400100043d0000000000410435000000d8020000410000000003000414000000d80430009c0000000003028019000000d80410009c00000000010280190000004001100210000000c002300210000000000112019f000000f1011001c70000800d020000390000000203000039000000ff040000410359034f0000040f00000001012001900000030b0000613d00000000010000190000035a0001042e00000000010000190000035b00010430000000400200043d0000001f0430018f00000005053002720000031a0000613d000000000600001900000005076002100000000008720019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000003120000413d000000000604004b000003290000613d0000000505500210000000000151034f00000000055200190000000304400210000000000605043300000000064601cf000000000646022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000161019f0000000000150435000002bc0000013d00000000030104330000000002320436000000000403004b000003360000613d000000000400001900000000052400190000002004400039000000000614001900000000060604330000000000650435000000000534004b0000032f0000413d000000000123001900000000000104350000001f01300039000000200300008a000000000131016f0000000001120019000000000001042d000000d802000041000000d80310009c00000000010280190000000003000414000000d80430009c0000000003028019000000c0023002100000004001100210000000000121019f000000ec011001c70000801002000039035903540000040f00000001022001900000034d0000613d000000000101043b000000000001042d00000000010000190000035b0001043000000352002104210000000102000039000000000001042d0000000002000019000000000001042d00000357002104230000000102000039000000000001042d0000000002000019000000000001042d00000359000004320000035a0001042e0000035b00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000002000000000000000000000000000000400000010000000000000000000000000000000000000000000000000000000000000000000000000051cff8d80000000000000000000000000000000000000000000000000000000084bc3eaf0000000000000000000000000000000000000000000000000000000084bc3eb00000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009cc7f7080000000000000000000000000000000000000000000000000000000051cff8d900000000000000000000000000000000000000000000000000000000579952fc00000000000000000000000000000000000000000000000000000000313ce56600000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000000000000000000000018160ddd000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000002000000080000000000000000045544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff800000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000400000000000000000000000006c0960f90000000000000000000000000000000000000000000000000000000062f84b24000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000c405fe8958410bbaf0c73b7a0c3e20859e86ca168a4c9b0def9c54d2555a306b0200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5472616e7366657220616d6f756e7420657863656564732062616c616e63650008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000004f6e6c792073797374656d20636f6e7472616374732077697468207370656369616c206163636573732063616e2063616c6c2074686973206d6574686f6400000000000000000000000000000000000000000084000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa02717ead6b9200dd235aad468c9809ea400fe33ac69b5bfaa6d3e90fc922b63984e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000043616c6c61626c65206f6e6c792062792074686520626f6f746c6f616465720000000000000000000000000000000000000000640000008000000000000000000f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885457468657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006d79792f4d4f92f90ab0ff8bbcb67a80b934901da8bdb472a2f5e444e360de04",
"id": 1
}
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-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_getStorageAt
&address=0x000000000000000000000000000000000000800A
&position=0x0
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
address
the string
representing the address to get code
position
the hex code of the position in storage, eg 0x0
tag
the string
pre-defined block parameter, either earliest
, pending
or latest
Sample Response
{
"jsonrpc":"2.0",
"id":1,
"result":"0x0000000000000000000000000000000000000000000000000000000000000000"
}
eth_gasPrice
Returns the current price per gas in wei.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_gasPrice
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Sample Response
{
"jsonrpc":"2.0",
"id":73,
"result":"0x3b9aca07"
}
📖 Tip: The result
is returned in wei.
Easily convert Ethereum units using our unit converter.
eth_estimateGas
Makes a call or transaction, which won't be added to the blockchain and returns the used gas.
https://api-sepolia.sophscan.xyz/api
?module=proxy
&action=eth_estimateGas
&data=0x60fe47b10000000000000000000000000000000000000000000000000000000000000004
&to=0x272c31fC25E4e609CbCC9E7a9e6171b4B39feAca
&value=0x0
&gasPrice=0x51da038cc
&gas=0x186A0
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
data
the hash of the method signature and encoded parameters
to
the string
representing the address to interact with
value
the value sent in this transaction, in hex eg. 0xff22
gas
the amount of gas provided for the transaction, in hex eg. 0x5f5e0ff
gasPrice
the gas price paid for each unit of gas, in wei
post EIP-1559, the gasPrice
has to be higher than the block's baseFeePerGas
⛽ Note: The gas
parameter is capped at 2x the current block gas limit.
Sample Response
{
"jsonrpc":"2.0",
"id":1,
"result":"0x67ea"
}
Last updated