sepolia
eth_accounts
Returns array of all accounts owned by the client.
Method: POST
Example body (raw)
Example response: 200
eth_chainId
Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.
Method: POST
Example body (raw)
Example response: 200
eth_blockNumber
Returns the number of most recent block.
Method: POST
Example body (raw)
Example response: 200
eth_call
Executes a new message call immediately without creating a transaction on the block chain.
Method: POST
Example body (raw)
Example response: 200
eth_estimateGas
Generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain. Note that the estimate may be significantly more than the amount of gas actually used by the transaction, for a variety of reasons including EVM mechanics and node performance.
Method: POST
Example body (raw)
Example response: 200
eth_gasPrice
Returns the current gas price in the default EVM denomination parameter.
Method: POST
Example body (raw)
Example response: 200
eth_getBalance
Returns the balance of the account of given address.
Method: POST
Example body (raw)
Example response: 200
eth_getBlockByHash
Returns information about a block by hash.
Method: POST
Example body (raw)
Example response: 200
eth_getBlockByNumber
Returns information about a block by block number.
Method: POST
Example body (raw)
Example response: 200
eth_getBlockTransactionCountByHash
Returns the number of transactions in a block matching the given block hash.
Method: POST
Example body (raw)
Example response: 200
eth_getBlockTransactionCountByNumber
Returns the number of transactions in a block from a block matching the given block number.
Method: POST
Example body (raw)
Example response: 200
eth_getCode
Returns code at a given address.
Method: POST
Example body (raw)
Example response: 200
eth_getFilterChanges
Polling method for a filter, which returns an array of logs which occurred since last poll.
Method: POST
Example body (raw)
Example response: 200
eth_getFilterLogs
Returns an array of all logs matching filter with given id.
Method: POST
Example body (raw)
Example response: 200
eth_getLogs
Returns an array of all logs matching a given filter object.
Method: POST
Example body (raw)
Example response: 200
eth_getStorageAt
Returns the value from a storage position at a given address.
Method: POST
Example body (raw)
Example response: 200
eth_getTransactionByBlockHashAndIndex
Returns information about a transaction by block hash and transaction index position.
Method: POST
Example body (raw)
Example response: 200
eth_getTransactionByBlockNumberAndIndex
Returns information about a transaction by block number and transaction index position.
Method: POST
Example body (raw)
Example response: 200
eth_getTransactionByHash
Returns the information about a transaction requested by transaction hash.
Method: POST
Example body (raw)
Example response: 200
eth_getTransactionCount
Returns the number of transactions sent from an address.
Method: POST
Example body (raw)
Example response: 200
eth_getTransactionReceipt
Returns the receipt of a transaction by transaction hash.
Method: POST
Example body (raw)
Example response: 200
eth_getUncleByBlockHashAndIndex
Returns information about a uncle of a block by hash and uncle index position.
Method: POST
Example body (raw)
Example response: 200
eth_getUncleByBlockNumberAndIndex
Returns information about a uncle of a block by number and uncle index position.
Method: POST
Example body (raw)
Example response: 200
eth_getUncleCountByBlockHash
Returns the number of uncles in a block matching the given block hash.
Method: POST
Example body (raw)
Example response: 200
eth_getUncleCountByBlockNumber
Returns the number of uncles in a block from a block matching the given block number.
Method: POST
Example body (raw)
Example response: 200
eth_newBlockFilter
Creates a filter in the node, to notify when a new block arrives.
Method: POST
Example body (raw)
Example response: 200
eth_newFilter
Creates a filter object, based on filter options, to notify when the state changes (logs).
Method: POST
Example body (raw)
Example response: 200
eth_newPendingTransactionFilter
Creates a filter in the node, to notify when new pending transactions arrive.
Method: POST
Example body (raw)
Example response: 200
eth_pendingTransactions
Creates a filter in the node, to notify when new pending transactions arrive.
Method: POST
Example body (raw)
Example response: 200
eth_sendRawTransaction
Creates new message call transaction or a contract creation for signed transactions.
Method: POST
Example body (raw)
Example response: 200
eth_sendTransaction
Creates new message call transaction or a contract creation, if the data field contains code.
Method: POST
Example body (raw)
Example response: 200
eth_sign
The sign method calculates an Ethereum specific signature with: sign(keccak256("\x19Ethereum Signed Message:\n" + len(message) + message))).
Method: POST
Example body (raw)
Example response: 200
eth_syncing
The sync status object may need to be different depending on the details of Tendermint's sync protocol. However, the 'synced' result is simply a boolean, and can easily be derived from Tendermint's internal sync state.
Method: POST
Example body (raw)
Example response: 200
eth_uninstallFilter
Uninstalls a filter with given id. Should always be called when watch is no longer needed.
Method: POST
Example body (raw)
Example response: 200
eth_createAccessList
Returns list of addresses and storage keys that are read and written by the transaction (except the sender account and precompiles), plus the estimated gas consumed when the access list is added.
Method: POST
Example body (raw)
Example response: 200
eth_maxPriorityFeePerGas
Returns a fee per gas that is an estimate of how much you can pay as a priority fee, or 'tip', to get a transaction included in the current block.
Method: POST
Example body (raw)
Example response: 200
eth_feeHistory
Returns a collection of historical gas information.
Method: POST
Example body (raw)
Example response: 200
eth_getProof
Returns the account and storage values of the specified accoun.
Method: POST
Example body (raw)
Example response: 200
eth_mining
Method: POST
Example body (raw)
Example response: 200
eth_coinbase
Method: POST
Example body (raw)
Example response: 200
eth_signTransaction
Method: POST
Example body (raw)
Example response: 200
eth_sign
Method: POST
Example body (raw)
Example response: 200
eth_hashrate
Method: POST
Example body (raw)
Example response: 200
net_version
Returns the current network id.
Method: POST
Example body (raw)
Example response: 200
net_listening
Returns true if client is actively listening for network connections.
Method: POST
Example body (raw)
Example response: 200
net_peerCount
Returns the number of peers currently connected to the client.
Method: POST
Example body (raw)
Example response: 200
web3_clientVersion
Get the web3 client version.
Method: POST
Example body (raw)
Example response: 200
web3_sha3
Returns Keccak-256 (not the standardized SHA3-256) of the given data.
Method: POST
Example body (raw)
Example response: 200
Last updated