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-nova.arbiscan.io/api
?module=proxy
&action=eth_blockNumber
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
No parameters required.
Sample response
{
"jsonrpc": "2.0",
"id": 83,
"result": "0x1c256e"
}
eth_getBlockByNumber
Returns information about a block by block number.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_getBlockByNumber
&tag=1BA637
&boolean=true
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
tag | the block number, in hex eg. |
boolean | the when |
Sample response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"baseFeePerGas": "0x989680",
"difficulty": "0x1",
"extraData": "0x63e87ae6fec928297d2f2a682ebefe2457226ec38021c5b9b26415bf538c50ce",
"gasLimit": "0x4000000000000",
"gasUsed": "0x243af",
"hash": "0x953341d51b359ac3946b95a66010a8409b041c42043bab31a6e590868692cdbb",
"l1BlockNumber": "0xfa71ab",
"logsBloom": "0x002000000000000000040000800000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000010000080040002000800000000000000000000000000000000000000000000000000000000000000000000000000000000000100100000000000000000000000002000a0000040000000000000000080000004000000000020000000000000000008000000000000020000000000000000000000000000000000002000000000000008000000000200000000400001000000000000000000010000020000000000000000400000020000000000000000000000000000000",
"miner": "0xa4b000000000000000000073657175656e636572",
"mixHash": "0x0000000000002ee90000000000fa71ab000000000000000a0000000000000000",
"nonce": "0x000000000001d99f",
"number": "0x1ba637",
"parentHash": "0xf2155b1d24b3f9beef840572a49a0baaaa02e41ee18f074e6c52e05047fe6e12",
"receiptsRoot": "0x1efe4a7351c1dbef75ad400af2773756d4b9626eac939435250428eca1afabae",
"sendCount": "0x2ee9",
"sendRoot": "0x63e87ae6fec928297d2f2a682ebefe2457226ec38021c5b9b26415bf538c50ce",
"sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"size": "0x436",
"stateRoot": "0xf14d10319240d4029f96ae005922e2d57ad6b9056c90e5d7cd3d73ab99e40e99",
"timestamp": "0x63c41bd3",
"totalDifficulty": "0x1ba638",
"transactions": [
{
"blockHash": "0x953341d51b359ac3946b95a66010a8409b041c42043bab31a6e590868692cdbb",
"blockNumber": "0x1ba637",
"from": "0x00000000000000000000000000000000000a4b05",
"gas": "0x0",
"gasPrice": "0x0",
"hash": "0xa283c15937643f04ce267326886be605ec73ef5a8e5d175fcacc493272089954",
"input": "0x6bf6a42d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa71ab00000000000000000000000000000000000000000000000000000000001ba6370000000000000000000000000000000000000000000000000000000000000004",
"nonce": "0x0",
"to": "0x00000000000000000000000000000000000a4b05",
"transactionIndex": "0x0",
"value": "0x0",
"type": "0x6a",
"chainId": "0xa4ba",
"v": "0x0",
"r": "0x0",
"s": "0x0"
},
{
"blockHash": "0x953341d51b359ac3946b95a66010a8409b041c42043bab31a6e590868692cdbb",
"blockNumber": "0x1ba637",
"from": "0xcc917ab28544c80e2f0e8effbd22551a3cb096be",
"gas": "0x2a325",
"gasPrice": "0x12a05f200",
"maxFeePerGas": "0x12a05f200",
"maxPriorityFeePerGas": "0x12a05f200",
"hash": "0x7583032d29f1d59bd3284ff269c1850c15039b4ee3d6e4a6c2c399da30492c02",
"input": "0x38ed1739000000000000000000000000000000000000000000000000000000000098968000000000000000000000000000000000000000000000000088df0f7c73975ca000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000cc917ab28544c80e2f0e8effbd22551a3cb096be0000000000000000000000000000000000000000000000000000000063c420750000000000000000000000000000000000000000000000000000000000000002000000000000000000000000750ba8b76187092b0d1e87e28daaf484d1b5273b000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1",
"nonce": "0x7",
"to": "0xee01c0cd76354c383b8c7b4e65ea88d00b06f36f",
"transactionIndex": "0x1",
"value": "0x0",
"type": "0x2",
"accessList": [],
"chainId": "0xa4ba",
"v": "0x1",
"r": "0x1eeaa322a0ed43bd1c38f874d449af85d5a78d8e1549ea8c3cff158cdf699155",
"s": "0x25a37cd66f0e220d8fa06e12d8a67c3f0921f755d7e2611a681e2a9cab7bf02c"
}
],
"transactionsRoot": "0x503aab4dcad86dac6a87a345720d62771188e85c18dc26576adc85f5145a4ed2",
"uncles": []
}
}
eth_getBlockTransactionCountByNumber
Returns the number of transactions in a block.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_getBlockTransactionCountByNumber
&tag=0x15795dd
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
tag | the block number, in hex eg. |
Sample response
{
"jsonrpc":"2.0",
"id":1,
"result":"0x2"
}
eth_getTransactionByHash
Returns the information about a transaction requested by transaction hash.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_getTransactionByHash
&txhash=0x621406db0f89280025405f6aa6a7f5c71f469693bb1f12d726da73af1bff6595
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
txhash | the |
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"blockHash": "0x66a0eecbbaaf23c909b3b868133995a689af1d9ef7bb9c45c19f7239999bd6f4",
"blockNumber": "0x1b94",
"from": "0xa3a6f4f98197b2f5ae2382c2183906ad2d3a8522",
"gas": "0x0",
"gasPrice": "0x0",
"hash": "0x621406db0f89280025405f6aa6a7f5c71f469693bb1f12d726da73af1bff6595",
"input": "0x",
"nonce": "0x0",
"to": "0x9295f4f98197b2f5ae2382c2183906ad2d3a7411",
"transactionIndex": "0x1",
"value": "0x5af3107a4000",
"type": "0x64",
"chainId": "0xa4ba",
"v": "0x0",
"r": "0x0",
"s": "0x0",
"requestId": "0x000000000000000000000000000000000000000000000000000000000000052e"
}
}
eth_getTransactionByBlockNumberAndIndex
Returns information about a transaction by block number and transaction index position.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_getTransactionByBlockNumberAndIndex
&tag=0x15795dd
&index=0x1
&apikey=YourApiKeyToken
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. |
Sample Response
{
"jsonrpc":"2.0",
"result":{
"accessList":[
],
"blockHash":"0xdce94191f861842c2786e3594da0c0109707fd78409cab5f38e10eb87d0f301c",
"blockNumber":"0xa36e44",
"chainId":"0x3",
"condition":null,
"creates":null,
"from":"0xb910ae1db14a9fbc64ce175bdca6d3a743f690ab",
"gas":"0x186a0",
"gasPrice":"0x3b9aca09",
"hash":"0xf96ff62ba5aaf46cd824b6766f7fa6f6b9595b1dd4ef1d31bcf1f765047c2835",
"input":"0xd0e30db0",
"maxFeePerGas":"0x3b9aca12",
"maxPriorityFeePerGas":"0x3b9aca00",
"nonce":"0xc6",
"publicKey":"0x6dbf7068e19de8457c426a758a92ea54827ebd5b8467c3a1a5c4ac19bc7570457738fe496a40ea4e1f59d39d89636a430afdec0bf2a8060c6bf7d612bfe90ad3",
"r":"0xdecdc48821a06bf116e82b355d520dc5a44d6df98234e5344c16565b0b3dfdba",
"raw":"0x02f8750381c6843b9aca00843b9aca12830186a094c778417e063141139fce010982780140aa0cd5ab8502540be40084d0e30db0c001a0decdc48821a06bf116e82b355d520dc5a44d6df98234e5344c16565b0b3dfdbaa06b85bb6fd8153e86b50f0011787585e8c709a2a25e7ee3c2579572f07acfd42e",
"s":"0x6b85bb6fd8153e86b50f0011787585e8c709a2a25e7ee3c2579572f07acfd42e",
"to":"0xc778417e063141139fce010982780140aa0cd5ab",
"transactionIndex":"0xd",
"type":"0x2",
"v":"0x1",
"value":"0x2540be400"
},
"id":1
}
eth_getTransactionCount
Returns the number of transactions performed by an address.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_getTransactionCount
&address=0xa3a6F4f98197B2F5AE2382c2183906AD2d3A8522
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
address | the |
tag | the |
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x0"
}
eth_sendRawTransaction
Submits a pre-signed transaction for broadcast to the Ethereum network.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_sendRawTransaction
&hex=0xf904808000831cfde080
&apikey=YourApiKeyToken
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.
Sample Response
{
"id":1,
"jsonrpc": "2.0",
"result": "0xe670ec64341771606e55d6b4ca35a1a6b75ee3d5145a99d05921026d1527331"
}
⛏️ 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-nova.arbiscan.io/api
?module=proxy
&action=eth_getTransactionReceipt
&txhash=0x0f97571c1a7629d5261e21300f023a1ba4c2ab3907aee576f1cfca992bf7b803
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
txhash | the |
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"blockHash": "0x8854b2c2308db2e7c035b2f2be321672e046f2a43aba526504ba1a8470ceec7c",
"blockNumber": "0x1c24b0",
"contractAddress": null,
"cumulativeGasUsed": "0x1c549",
"effectiveGasPrice": "0x989680",
"from": "0xd7f286f04f8dc750d8553665a031eb70ec6921d7",
"gasUsed": "0x1c549",
"gasUsedForL1": "0x9591",
"l1BlockNumber": "0xfab78c",
"logs": [
{
"address": "0x6475d267a691de86be94cebf798447c63f93d2e4",
"topics": [
"0x1ca47bacd454c26163f84eff4aa514e291ba9fa67ad6029e39567c122bbed30f",
"0x2aaab99124dfb65153cca5ac4c4948ca34201122d61beacf7fb5c2b521d951c0"
],
"data": "0x3d9bad10dff8ce4fdee02cc1019467c313a8ce886951528e403f4f46e89edea4",
"blockNumber": "0x1c24b0",
"transactionHash": "0x0f97571c1a7629d5261e21300f023a1ba4c2ab3907aee576f1cfca992bf7b803",
"transactionIndex": "0x1",
"blockHash": "0x8854b2c2308db2e7c035b2f2be321672e046f2a43aba526504ba1a8470ceec7c",
"logIndex": "0x0",
"removed": false
},
{
"address": "0xd864a45334c7a632ca9149993682354d7f967f28",
"topics": [
"0xc0977dab79883641ece94bb6a932ca83049f561ffff8d8daaeafdbc1acce9e0a",
"0x000000000000000000000000224e030f03cd3440d88bd78c9bf5ed36458a1a25",
"0x2aaab99124dfb65153cca5ac4c4948ca34201122d61beacf7fb5c2b521d951c0"
],
"data": "0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000203d9bad10dff8ce4fdee02cc1019467c313a8ce886951528e403f4f46e89edea4",
"blockNumber": "0x1c24b0",
"transactionHash": "0x0f97571c1a7629d5261e21300f023a1ba4c2ab3907aee576f1cfca992bf7b803",
"transactionIndex": "0x1",
"blockHash": "0x8854b2c2308db2e7c035b2f2be321672e046f2a43aba526504ba1a8470ceec7c",
"logIndex": "0x1",
"removed": false
}
],
"logsBloom": "0x00000000000000000000000000000000000000000000000200000000000000000000080000000000000000000000000000000000000000010000000000000000000002000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000004080000000000000000002001000000000000020100000000000000000000000000000000000000020000000000000000020000000000000000000000000000000000000000000000000000800000000000000400000000000000000000000000000000000000001000000000000000000002000000000000000000000000000000100000000000000000000",
"status": "0x1",
"to": "0xd864a45334c7a632ca9149993682354d7f967f28",
"transactionHash": "0x0f97571c1a7629d5261e21300f023a1ba4c2ab3907aee576f1cfca992bf7b803",
"transactionIndex": "0x1",
"type": "0x0"
}
}
eth_call
Executes a new message call immediately without creating a transaction on the block chain.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_call
&to=0xd864a45334c7a632ca9149993682354d7f967f28
&data=0x1decbf182aaab99124dfb65153cca5ac4c4948ca34201122d61beacf7fb5c2b521d951c0000000000000000000000000224e030f03cd3440d88bd78c9bf5ed36458a1a250000000000000000000000006475d267a691de86be94cebf798447c63f93d2e43718d90a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000203d9bad10dff8ce4fdee02cc1019467c313a8ce886951528e403f4f46e89edea40000000000000000000000000000000000000000000000000000000000000041145508138a5f5d113119a0bee5289991602011f5a528fa085de3b94db884a9ce658a48333826423f0ed7bbcc2ef13d2561f54dacea4b8fe52a34ed58f2256ab21b00000000000000000000000000000000000000000000000000000000000000
&tag=latest
&apikey=YourApiKeyToken
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.
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"error": {
"code": 3,
"message": "execution reverted: Invalid request fulfillment",
"data": "0x08c379a00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001b496e76616c696420726571756573742066756c66696c6c6d656e740000000000"
}
}
eth_getCode
Returns code at a given address.
https://api-nova.arbiscan.io/api
?module=proxy
&action=eth_getCode
&address=0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser 🔗
Query Parameters
Parameter | Description |
---|---|
address | the |
tag | the |
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x608060405234801561001057600080fd5b506004361061025c5760003560e01c806387689e2811610146578063c3081240116100c3578063d93f244511610087578063d93f244514610544578063dd62ed3e1461054c578063ec126c7714610577578063f75c266414610455578063fbfa77cf1461058a578063fca3b5aa1461059d57600080fd5b8063c308124014610505578063c4b740f51461050e578063cfbd488514610521578063d0e30db014610534578063d6c797511461053c57600080fd5b8063a045442c1161010a578063a045442c14610494578063a9059cbb146104a9578063aa271e1a146104bc578063b6b55f25146104df578063bebbf4d0146104f257600080fd5b806387689e281461044c5780638da5cb5b1461045557806391c5df491461046657806395d89b41146104795780639dc29fac1461048157600080fd5b80633ccfd60b116101df5780636817031b116101a35780636817031b146103c257806369b41170146103d55780636e553f65146103df5780636f307dc3146103f257806370a08231146104195780638623ec7b1461043957600080fd5b80633ccfd60b1461035657806340c10f191461035e57806352113ba71461037157806360e232a91461039c578063628d6cba146103af57600080fd5b806318160ddd1161022657806318160ddd146102dc57806323b872dd146102e45780632e1a7d4d146102f75780632ebe3fbb1461030a578063313ce5671461031d57600080fd5b806239d6ec14610261578062f714ce1461028757806306fdde031461029a578063095ea7b3146102af5780630d707df8146102d2575b600080fd5b61027461026f366004611977565b6105b0565b6040519081526020015b60405180910390f35b6102746102953660046119b3565b6105f9565b6102a261060d565b60405161027e9190611a0b565b6102c26102bd366004611a3e565b61069b565b604051901515815260200161027e565b6102da610707565b005b600354610274565b6102c26102f2366004611a68565b6107d6565b610274610305366004611aa4565b6109d4565b6102da610318366004611abd565b6109e7565b6103447f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161027e565b610274610aa1565b6102c261036c366004611a3e565b610ac2565b600a54610384906001600160a01b031681565b6040516001600160a01b03909116815260200161027e565b6102c26103aa366004611abd565b610b04565b6102c26103bd3660046119b3565b610bc9565b6102da6103d0366004611abd565b610d16565b6102746202a30081565b6102746103ed3660046119b3565b610d94565b6103847f000000000000000000000000000000000000000000000000000000000000000081565b610274610427366004611abd565b60026020526000908152604090205481565b610384610447366004611aa4565b610dd5565b610274600b5481565b6007546001600160a01b0316610384565b600854610384906001600160a01b031681565b6102a2610dff565b6102c261048f366004611a3e565b610e0c565b61049c610e45565b60405161027e9190611ad8565b6102c26104b7366004611a3e565b610ea7565b6102c26104ca366004611abd565b60056020526000908152604090205460ff1681565b6102746104ed366004611aa4565b610f7e565b6102746105003660046119b3565b610fbf565b61027460095481565b6102da61051c366004611b36565b610fec565b6102da61052f366004611abd565b611030565b61027461107b565b6102c2600081565b6102da61114f565b61027461055a366004611b53565b600c60209081526000928352604080842090915290825290205481565b6102c2610585366004611b7d565b6111ca565b600754610384906001600160a01b031681565b6102da6105ab366004611abd565b61133d565b6007546000906001600160a01b031633146105e65760405162461bcd60e51b81526004016105dd90611ba2565b60405180910390fd5b6105f18484846113bb565b949350505050565b60006106063384846113bb565b9392505050565b6000805461061a90611bd9565b80601f016020809104026020016040519081016040528092919081815260200182805461064690611bd9565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b505050505081565b336000818152600c602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906106f69086815260200190565b60405180910390a350600192915050565b6007546001600160a01b031633146107315760405162461bcd60e51b81526004016105dd90611ba2565b6008546001600160a01b03161580159061074d57506009544210155b61075657600080fd5b600880546001600160a01b0390811660009081526005602052604081208054600160ff199091168117909155835460068054928301815583527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f9091018054919093166001600160a01b0319918216179092558254909116909155600955565b60006001600160a01b038316158015906107f957506001600160a01b0383163014155b61080257600080fd5b6001600160a01b038416331461090e576001600160a01b0384166000908152600c60209081526040808320338452909152902054600019811461090c57828110156108a15760405162461bcd60e51b815260206004820152602960248201527f416e7973776170563645524332303a2072657175657374206578636565647320604482015268616c6c6f77616e636560b81b60648201526084016105dd565b60006108ad8483611c29565b6001600160a01b0387166000818152600c6020908152604080832033808552908352928190208590555184815293945090927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505b505b6001600160a01b038416600090815260026020526040902054828110156109475760405162461bcd60e51b81526004016105dd90611c40565b6109518382611c29565b6001600160a01b038087166000908152600260205260408082209390935590861681529081208054859290610987908490611c8f565b92505081905550836001600160a01b0316856001600160a01b0316600080516020611d31833981519152856040516109c191815260200190565b60405180910390a3506001949350505050565b60006109e13383336113bb565b92915050565b6007546001600160a01b03163314610a115760405162461bcd60e51b81526004016105dd90611ba2565b60045460ff16610a2057600080fd5b6004805460ff19908116909155600780546001600160a01b039093166001600160a01b0319938416811790915560008181526005602052604081208054909316600190811790935560068054938401815590527ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f9091018054909216179055565b336000818152600260205260408120549091610abd91816113bb565b905090565b3360009081526005602052604081205460ff16610af15760405162461bcd60e51b81526004016105dd90611ba2565b610afb838361146d565b50600192915050565b6007546000906001600160a01b03163314610b315760405162461bcd60e51b81526004016105dd90611ba2565b6001600160a01b038216610b575760405162461bcd60e51b81526004016105dd90611ca7565b60075460405142916001600160a01b03808616929116907f5c364079e7102c27c608f9b237c735a1b7bfa0b67f27c2ad26bad447bf965cac90600090a450600780546001600160a01b0383166001600160a01b031991821617909155600a805490911690556000600b5560015b919050565b600454600090610100900460ff1615610c245760405162461bcd60e51b815260206004820152601960248201527f416e7973776170563645524332303a207661756c744f6e6c790000000000000060448201526064016105dd565b6001600160a01b038216610c4a5760405162461bcd60e51b81526004016105dd90611ca7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615801590610c9057503360009081526002602052604090205483115b15610ccf57610cca6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308661153a565b610cd9565b610cd933846115ab565b6040518381526001600160a01b0383169033907f6b616089d04950dc06c45c6dd787d657980543f89651aec47924752c7d16c888906020016106f6565b6007546001600160a01b03163314610d405760405162461bcd60e51b81526004016105dd90611ba2565b6001600160a01b038116610d665760405162461bcd60e51b81526004016105dd90611ca7565b600a80546001600160a01b0319166001600160a01b038316179055610d8e6202a30042611c8f565b600b5550565b6000610dcb6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308661153a565b61060683836116f0565b60068181548110610de557600080fd5b6000918252602090912001546001600160a01b0316905081565b6001805461061a90611bd9565b3360009081526005602052604081205460ff16610e3b5760405162461bcd60e51b81526004016105dd90611ba2565b610afb83836115ab565b60606006805480602002602001604051908101604052809291908181526020018280548015610e9d57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610e7f575b5050505050905090565b60006001600160a01b03831615801590610eca57506001600160a01b0383163014155b610ed357600080fd5b3360009081526002602052604090205482811015610f035760405162461bcd60e51b81526004016105dd90611c40565b610f0d8382611c29565b33600090815260026020526040808220929092556001600160a01b03861681529081208054859290610f40908490611c8f565b90915550506040518381526001600160a01b038516903390600080516020611d31833981519152906020015b60405180910390a35060019392505050565b6000610fb56001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308561153a565b6109e182336116f0565b6007546000906001600160a01b03163314610dcb5760405162461bcd60e51b81526004016105dd90611ba2565b6007546001600160a01b031633146110165760405162461bcd60e51b81526004016105dd90611ba2565b600480549115156101000261ff0019909216919091179055565b6007546001600160a01b0316331461105a5760405162461bcd60e51b81526004016105dd90611ba2565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6040516370a0823160e01b815233600482015260009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa1580156110e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111089190611cde565b905061113f6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308461153a565b61114981336116f0565b91505090565b6007546001600160a01b031633146111795760405162461bcd60e51b81526004016105dd90611ba2565b600a546001600160a01b0316158015906111955750600b544210155b61119e57600080fd5b600a8054600780546001600160a01b03199081166001600160a01b038416179091551690556000600b55565b3360009081526005602052604081205460ff166111f95760405162461bcd60e51b81526004016105dd90611ba2565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316158015906112b957506040516370a0823160e01b815230600482015282907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015611292573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112b69190611cde565b10155b156112f7576112f26001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016848461176d565b611301565b611301838361146d565b826001600160a01b0316847f05d0634fe981be85c22e2942a880821b70095d84e152c3ea3c17a4e4250d9d6184604051610f6c91815260200190565b6007546001600160a01b031633146113675760405162461bcd60e51b81526004016105dd90611ba2565b6001600160a01b03811661138d5760405162461bcd60e51b81526004016105dd90611ca7565b600880546001600160a01b0319166001600160a01b0383161790556113b56202a30042611c8f565b60095550565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161580159061141e57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163014155b61142757600080fd5b61143184846115ab565b6114656001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016838561176d565b509092915050565b6001600160a01b0382166114c35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105dd565b80600360008282546114d59190611c8f565b90915550506001600160a01b03821660009081526002602052604081208054839290611502908490611c8f565b90915550506040518181526001600160a01b03831690600090600080516020611d318339815191529060200160405180910390a35050565b6040516001600160a01b03808516602483015283166044820152606481018290526115a59085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526117a2565b50505050565b6001600160a01b03821661160b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105dd565b6001600160a01b0382166000908152600260205260409020548181101561167f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105dd565b6116898282611c29565b6001600160a01b038416600090815260026020526040812091909155600380548492906116b7908490611c29565b90915550506040518281526000906001600160a01b03851690600080516020611d318339815191529060200160405180910390a3505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161580159061175357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03163014155b61175c57600080fd5b611766828461146d565b5090919050565b6040516001600160a01b03831660248201526044810182905261179d90849063a9059cbb60e01b9060640161156e565b505050565b6117b4826001600160a01b0316611929565b6118005760405162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e74726163740060448201526064016105dd565b600080836001600160a01b03168360405161181b9190611cf7565b6000604051808303816000865af19150503d8060008114611858576040519150601f19603f3d011682016040523d82523d6000602084013e61185d565b606091505b5091509150816118af5760405162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460448201526064016105dd565b8051156115a557808060200190518101906118ca9190611d13565b6115a55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016105dd565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081158015906105f15750141592915050565b80356001600160a01b0381168114610bc457600080fd5b60008060006060848603121561198c57600080fd5b61199584611960565b9250602084013591506119aa60408501611960565b90509250925092565b600080604083850312156119c657600080fd5b823591506119d660208401611960565b90509250929050565b60005b838110156119fa5781810151838201526020016119e2565b838111156115a55750506000910152565b6020815260008251806020840152611a2a8160408501602087016119df565b601f01601f19169190910160400192915050565b60008060408385031215611a5157600080fd5b611a5a83611960565b946020939093013593505050565b600080600060608486031215611a7d57600080fd5b611a8684611960565b9250611a9460208501611960565b9150604084013590509250925092565b600060208284031215611ab657600080fd5b5035919050565b600060208284031215611acf57600080fd5b61060682611960565b6020808252825182820181905260009190848201906040850190845b81811015611b195783516001600160a01b031683529284019291840191600101611af4565b50909695505050505050565b8015158114611b3357600080fd5b50565b600060208284031215611b4857600080fd5b813561060681611b25565b60008060408385031215611b6657600080fd5b611b6f83611960565b91506119d660208401611960565b600080600060608486031215611b9257600080fd5b83359250611a9460208501611960565b60208082526019908201527f416e7973776170563645524332303a20464f5242494444454e00000000000000604082015260600190565b600181811c90821680611bed57607f821691505b602082108103611c0d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015611c3b57611c3b611c13565b500390565b6020808252602f908201527f416e7973776170563645524332303a207472616e7366657220616d6f756e742060408201526e657863656564732062616c616e636560881b606082015260800190565b60008219821115611ca257611ca2611c13565b500190565b6020808252601a908201527f416e7973776170563645524332303a2061646472657373283029000000000000604082015260600190565b600060208284031215611cf057600080fd5b5051919050565b60008251611d098184602087016119df565b9190910192915050565b600060208284031215611d2557600080fd5b815161060681611b2556feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212201c49dbeb9d894f8c455ac820ce5781647d0eeb515f3c243bb3e39e4954821e0564736f6c634300080e0033"
}
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-nova.arbiscan.io/api
?module=proxy
&action=eth_getStorageAt
&address=0xeFAeeE334F0Fd1712f9a8cc375f427D9Cdd40d73
&position=0x0
&tag=latest
&apikey=YourApiKeyToken
Try this endpoint in your browser
Query Parameters
Parameter | Description |
---|---|
address | the |
position | the hex code of the position in storage, eg |
tag | the |
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x445053446f75626c6f6f6e000000000000000000000000000000000000000016"
}
eth_gasPrice
Returns the current price per gas in wei.
https://api-nova.arbiscan.io/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":"0x5f5e100"
}
📖 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-nova.arbiscan.io/api
?module=proxy
&action=eth_estimateGas
&data=0x
&to=0x9295f4f98197b2f5ae2382c2183906ad2d3a7411
&value=0xff22
&gasPrice=6FC23AC00
&gas=1C9C380
&apikey=YourApiKeyToken
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.
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": "0x7f9f"
}
Last updated