Geth/Parity Proxy
Last updated
Last updated
For compatibility with Parity, please prefix all hex strings with " 0x ".
Returns the number of most recent block
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_blockNumber
&apikey=YourApiKeyToken
Try this endpoint in your
Returns information about a block by block number.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getBlockByNumber
&tag=0x52B06
&boolean=true
&apikey=YourApiKeyToken
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",
"id": 1,
"result": {
"baseFeePerGas": "0x5f5e100",
"difficulty": "0x1",
"extraData": "0xc5f837f1244a4cc6874451614d385aa0dca89737da6db614622efe8939ee72c1",
"gasLimit": "0x4000000000000",
"gasUsed": "0x11f00",
"hash": "0xc278e7b6134a7f206cbf70f90b8610855e9652a1374aa238cdf9a79fb80f279e",
"l1BlockNumber": "0x1243fa8",
"logsBloom": "0x00000000000000000000000400000000000000000000000000000000040000100000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000000000000000000000000000000000000020000000100200000000a00004000000000000000020010000000000000000004000000000000000000000000000000000000000000000000000000000400000000000000000000000000080000000000000000000000000000000000000002000000000000040000000002000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000000",
"miner": "0xa4b000000000000000000073657175656e636572",
"mixHash": "0x00000000000001740000000001243fa8000000000000000b0000000000000000",
"nonce": "0x0000000000001062",
"number": "0x52b06",
"parentHash": "0x3d96d6632e79709fa411d0e21af8c6402640dd16f2a4cc08e74362b0fb04e8a7",
"receiptsRoot": "0x0e2484689904ffaaea9ce23c64c2eb7c9754c8defeb1b988169be7cb032e8628",
"sendCount": "0x174",
"sendRoot": "0xc5f837f1244a4cc6874451614d385aa0dca89737da6db614622efe8939ee72c1",
"sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
"size": "0x355",
"stateRoot": "0xe535d9d5ad9315b09e2ff42e6912d2c699cf53e36697e2582afd0226407f01b0",
"timestamp": "0x65bf1d5a",
"totalDifficulty": "0x52b07",
"transactions": [
{
"blockHash": "0xc278e7b6134a7f206cbf70f90b8610855e9652a1374aa238cdf9a79fb80f279e",
"blockNumber": "0x52b06",
"from": "0x00000000000000000000000000000000000a4b05",
"gas": "0x0",
"gasPrice": "0x0",
"hash": "0x8257bae2ce936c0c1df8383490dee74289cdf78f0b1588f46456e3b939eaa224",
"input": "0x6bf6a42d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001243fa80000000000000000000000000000000000000000000000000000000000052b060000000000000000000000000000000000000000000000000000000000000001",
"nonce": "0x0",
"to": "0x00000000000000000000000000000000000a4b05",
"transactionIndex": "0x0",
"value": "0x0",
"type": "0x6a",
"chainId": "0xa1337",
"v": "0x0",
"r": "0x0",
"s": "0x0"
},
{
"blockHash": "0xc278e7b6134a7f206cbf70f90b8610855e9652a1374aa238cdf9a79fb80f279e",
"blockNumber": "0x52b06",
"from": "0xdd26b1fd3019e7079edc0cacd2879de2b1d5dcba",
"gas": "0x12558",
"gasPrice": "0x5f5e100",
"maxFeePerGas": "0x5f5e100",
"maxPriorityFeePerGas": "0x5f5e100",
"hash": "0xaf30ae1485d8be7eafce6efeebf6ea8a0c1d40da4cbddd24703e548847941afb",
"input": "0xe4ba15180000000000000000000000000000000000000000000000000000000000000e10",
"nonce": "0x158",
"to": "0x391cc20b5eb47a776bc59f7af7743bf26ef91df6",
"transactionIndex": "0x1",
"value": "0x0",
"type": "0x2",
"accessList": [],
"chainId": "0xa1337",
"v": "0x0",
"r": "0x1965bc6d92b9de59568d33e572eed6a4db89674576bc20d3ded9f781a0c01345",
"s": "0x5f90080a0e342fd38375e28017ce5449e9a820a1a91820b60681eac6845b021f",
"yParity": "0x0"
}
],
"transactionsRoot": "0x93ad5f0cbddc13f679b5015b4527a4b4cd335a630ae1ef7e5fdb06e2ba66e559",
"uncles": []
}
}
Returns the number of transactions in a block.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getBlockTransactionCountByNumber
&tag=0x52B06
&apikey=YourApiKeyToken
Query Parameters
tag
the block number, in hex eg. 0x10FB78
Sample response
{
"jsonrpc":"2.0",
"result":"0x2",
"id":1
}
Returns the information about a transaction requested by transaction hash.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getTransactionByHash
&txhash=0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4
&apikey=YourApiKeyToken
Query Parameters
txhash
the string
representing the hash of the transaction
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"blockHash": "0x4cbbbd9cda2bbb16922bc0bb45db8f15825cb5790723a625a2480c23b3c92ae3",
"blockNumber": "0x1c0356",
"from": "0x81acc319a1a50c0faebd6882643a0cc8b6da5a18",
"gas": "0x903e",
"gasPrice": "0x5f5e1000",
"maxFeePerGas": "0x608f3d00",
"maxPriorityFeePerGas": "0x59682f00",
"hash": "0xfde1a894f0532396a7aa5d9b3d2e9b4a96b68138c3ea614733068c2e61705438",
"input": "0x2e1a7d4d000000000000000000000000000000000000000000000005f68af3b348318000",
"nonce": "0x64",
"to": "0x36be1fd6ff2a6beb34b500a04f89103a524516d8",
"transactionIndex": "0x1",
"value": "0x0",
"type": "0x2",
"accessList": [],
"chainId": "0xa1337",
"v": "0x1",
"r": "0x79c22f9b21f4cebfbf5e7c2f2d709c2db274ca97633779f97bb0be8d52698117",
"s": "0xd43e2a21036f9b84e96e192c99f70e3f8a348dee2889ff816396f1e5f4b74a9",
"yParity": "0x1"
}
}
Returns information about a transaction by block number and transaction index position.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getTransactionByBlockNumberAndIndex
&tag=0x5858
&index=0x0
&apikey=YourApiKeyToken
Query Parameters
tag
the block number, in hex eg. 0x10FB78
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"blockHash": "0x778d9c77e797b7ab5a2bf905605d1c118951d76e8f8ebbd9af461c4428396b18",
"blockNumber": "0x5858",
"from": "0x00000000000000000000000000000000000a4b05",
"gas": "0x0",
"gasPrice": "0x0",
"hash": "0x851f5ba11f0b9b7a96a26e566455ae7d3493bb3aa9a42449f1e1538ad0fab5cd",
"input": "0x6bf6a42d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000049b8820000000000000000000000000000000000000000000000000000000000005858000000000000000000000000000000000000000000000000000000000000001f",
"nonce": "0x0",
"to": "0x00000000000000000000000000000000000a4b05",
"transactionIndex": "0x0",
"value": "0x0",
"type": "0x6a",
"chainId": "0x8c7f67225",
"v": "0x0",
"r": "0x0",
"s": "0x0"
}
}
Returns the number of transactions performed by an address.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getTransactionCount
&address=0xD60CdA2eFdFD1a88EDb81f60D0c07edbFFBbd6a9
&tag=latest
&apikey=YourApiKeyToken
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",
"result":"0x1",
"id":1
}
Submits a pre-signed transaction for broadcast to the Xai network.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_sendRawTransaction
&hex=0x02f874030185012a05f200852e90edd00082520894eeee7341f206302f2216e39d715b96d8c6901a1c880de0b6b3a764000080c001a0bf61ea5419c7856be4ea2221b721b849d50fec738d10a714e7aaa809d9ad8838a01e59353aa8e567cc0661fb58b047361998df234df6593bf424839bc5ea214a2c
&apikey=YourApiKeyToken
Query Parameters
hex
the string
representing the signed raw transaction data to broadcast.
Sample Response
{
"id":1,
"jsonrpc": "2.0",
"result": "0x84c81fc1e23474e13be0114f94f99b43696830f33292fd1d642f37e87e95acd6"
}
Use eth_getTransactionReceipt to retrieve full details.
Returns the receipt of a transaction by transaction hash.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getTransactionReceipt
&txhash=0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4
&apikey=YourApiKeyToken
Query Parameters
txhash
the string
representing the hash of the transaction
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"blockNumber": "0x3f711e",
"contractAddress": null,
"cumulativeGasUsed": "0x1eb35b",
"effectiveGasPrice": "0x5f5e100",
"from": "0x1ee376c8f533c592271e6a6dd4c9e031a4a08553",
"gasUsed": "0x1eb35b",
"gasUsedForL1": "0xd91",
"l1BlockNumber": "0x625f1e",
"logs": [
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000001ab3"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x0",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x0000000000000000000000000000000000000000000000000000000000001ab3"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x1",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x000000000000000000000000000000000000000000000000000000000000027b",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000001ab30000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x2",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x00000000000000000000000000000000000000000000000000000000000019ef"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x3",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x00000000000000000000000000000000000000000000000000000000000019ef"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x4",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x000000000000000000000000000000000000000000000000000000000000027d",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x00000000000000000000000000000000000000000000000000000000000019ef0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x5",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000001a43"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x6",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x0000000000000000000000000000000000000000000000000000000000001a43"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x7",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x000000000000000000000000000000000000000000000000000000000000027f",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000001a430000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x8",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000001aaf"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x9",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x0000000000000000000000000000000000000000000000000000000000001aaf"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0xa",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x000000000000000000000000000000000000000000000000000000000000027a",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000001aaf0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0xb",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x00000000000000000000000000000000000000000000000000000000000019d3"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0xc",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x00000000000000000000000000000000000000000000000000000000000019d3"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0xd",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x000000000000000000000000000000000000000000000000000000000000027c",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x00000000000000000000000000000000000000000000000000000000000019d30000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0xe",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000001a93"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0xf",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x0000000000000000000000000000000000000000000000000000000000001a93"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x10",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000278",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000001a930000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x11",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000246fc90676b78935e305b84c8e7c4c57ab889167",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000000799"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x12",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000246fc90676b78935e305b84c8e7c4c57ab889167",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x0000000000000000000000000000000000000000000000000000000000000799"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x13",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000246fc90676b78935e305b84c8e7c4c57ab889167",
"0x000000000000000000000000000000000000000000000000000000000000010c",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x00000000000000000000000000000000000000000000000000000000000007990000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x14",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x00000000000000000000000000000000000000000000000000000000000019f7"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x15",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x00000000000000000000000000000000000000000000000000000000000019f7"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x16",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x000000000000000000000000000000000000000000000000000000000000027e",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x00000000000000000000000000000000000000000000000000000000000019f70000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x17",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000001aa7"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x18",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x0000000000000000000000000000000000000000000000000000000000001aa7"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x19",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000279",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000001aa70000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x1a",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x0000000000000000000000000000000000000000000000000000000000001ae3"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x1b",
"removed": false
},
{
"address": "0xd60cda2efdfd1a88edb81f60d0c07edbffbbd6a9",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x0000000000000000000000000000000000000000000000000000000000001ae3"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x1c",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000281",
"0x000000000000000000000000d60cda2efdfd1a88edb81f60d0c07edbffbbd6a9"
],
"data": "0x0000000000000000000000000000000000000000000000000000000000001ae30000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x1d",
"removed": false
},
{
"address": "0x9c0588df65bb9799244e6d920d0c84f0fe4093fe",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x00000000000000000000000000000000000000000000000000000000000f4691"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x1e",
"removed": false
},
{
"address": "0x9c0588df65bb9799244e6d920d0c84f0fe4093fe",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x00000000000000000000000000000000000000000000000000000000000f4691"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x1f",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000282",
"0x0000000000000000000000009c0588df65bb9799244e6d920d0c84f0fe4093fe"
],
"data": "0x00000000000000000000000000000000000000000000000000000000000f46910000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x20",
"removed": false
},
{
"address": "0x9c0588df65bb9799244e6d920d0c84f0fe4093fe",
"topics": [
"0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000000",
"0x00000000000000000000000000000000000000000000000000000000000f4637"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x21",
"removed": false
},
{
"address": "0x9c0588df65bb9799244e6d920d0c84f0fe4093fe",
"topics": [
"0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553",
"0x00000000000000000000000000000000000000000000000000000000000f4637"
],
"data": "0x",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x22",
"removed": false
},
{
"address": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"topics": [
"0xf6e03f1c408cfd2d118397c912a4b576683c43b41b015e3d7c212bac0cd0e7c7",
"0x000000000000000000000000a771665196c732fccf3a2ee4d351c05d748322f6",
"0x0000000000000000000000000000000000000000000000000000000000000283",
"0x0000000000000000000000009c0588df65bb9799244e6d920d0c84f0fe4093fe"
],
"data": "0x00000000000000000000000000000000000000000000000000000000000f46370000000000000000000000001ee376c8f533c592271e6a6dd4c9e031a4a08553000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000005af3107a4000",
"blockNumber": "0x3f711e",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"blockHash": "0x859f4eb69273ea677807ba814edc5fc548a35bebd4d353c64f67ac43c35a94ae",
"logIndex": "0x23",
"removed": false
}
],
"logsBloom": "0x0c00000400020010000100000000080000000000010000080020002400000008010000004000000000000200000000005010800021001000000000000020000000000000400000000000000800400000800002400000000002020000010040100000000002008040004800000000080404004000010008040000411001080200002000000008000020900000400000020040002040800010000002000000000022000000000000000000002000000000000008000008200100008100890202100000000200000000000040000c00080004000000002801000000000002002400041004000000000c000001042000000008080200000000000000000000500080",
"status": "0x1",
"to": "0xa8c4940a15cb66305337f5dd09d6c8e29894a109",
"transactionHash": "0xb860b64773fb7431ec1c288b651595045bf1ed30d8fea613b60a63c5310061f4",
"transactionIndex": "0x1",
"type": "0x2"
}
}
Executes a new message call immediately without creating a transaction on the block chain.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_call
&to=0xD60CdA2eFdFD1a88EDb81f60D0c07edbFFBbd6a9
&data=0x
&tag=latest
&apikey=YourApiKeyToken
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
Sample Response
{
"jsonrpc":"2.0",
"result":"0x",
"id":1
}
Returns code at a given address.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getCode
&address=0x40Cb6360a3f79cAb1cD3033AbF3b22b579187a10
&tag=latest
&apikey=YourApiKeyToken
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",
"id": 1,
"result": "0x608060405234801561001057600080fd5b50600436106100415760003560e01c8063313ce567146100465780633fb5c1cb146100645780638381f58a14610080575b600080fd5b61004e61009e565b60405161005b91906100df565b60405180910390f35b61007e6004803603810190610079919061012b565b6100a8565b005b6100886100c0565b60405161009591906100df565b60405180910390f35b6000600154905090565b621e84d9816100b79190610187565b60018190555050565b60015481565b6000819050919050565b6100d9816100c6565b82525050565b60006020820190506100f460008301846100d0565b92915050565b600080fd5b610108816100c6565b811461011357600080fd5b50565b600081359050610125816100ff565b92915050565b600060208284031215610141576101406100fa565b5b600061014f84828501610116565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610192826100c6565b915061019d836100c6565b92508282026101ab816100c6565b915082820484148315176101c2576101c1610158565b5b509291505056fea2646970667358221220cc3170835bf62ff58d76edfbd8b8813041a81be8634a505959c73803c5e89b2a64736f6c63430008120033"
}
Returns the value from a storage position at a given address.
This endpoint is still experimental and may have potential issues
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_getStorageAt
&address=0x40Cb6360a3f79cAb1cD3033AbF3b22b579187a10
&position=0x0
&tag=latest
&apikey=YourApiKeyToken
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"
}
Returns the current price per gas in wei.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_gasPrice
&apikey=YourApiKeyToken
Makes a call or transaction, which won't be added to the blockchain and returns the used gas.
https://api-sepolia.xaiscan.io/api
?module=proxy
&action=eth_estimateGas
&data=0x
&to=0xe84d601e5d945031129a83e5602be0cc7f182cf3
&value=0x1
&gasPrice=0x51da038cc
&gas=0x186A0
&apikey=YourApiKeyToken
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
Sample Response
{
"jsonrpc":"2.0",
"result":"0x5208",
"id":1
}
Try this endpoint in your
Try this endpoint in your
Try this endpoint in your
Try this endpoint in your
Try this endpoint in your
Try this endpoint in your
Tip: Send a POST request if your hex string is particularly long.
For more information on creating a signed raw transaction, visit this
Note: The result
represents the transaction hash of the submitted raw transaction.
Try this endpoint in your
Try this endpoint in your
Note: The gas
parameter is capped at 2x the current block gas limit.
Try this endpoint in your
Try this endpoint in your
Try this endpoint in your
Tip: The result
is returned in wei.
Easily convert Ethereum units using our
Try this endpoint in your
Note: The gas
parameter is capped at 2x the current block gas limit.