ποΈ eth_accounts - Soneium
Returns a list of addresses owned by client. Since SCS does not store keys, this will always return empty.
ποΈ eth_blockNumber - Soneium
Returns the number of the most recent block.
ποΈ eth_call - Soneium
Executes a new message call immediately without creating a transaction on the block chain.
ποΈ eth_chainId - Soneium
Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.
ποΈ eth_estimateGas - Soneium
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.
ποΈ eth_feeHistory - Soneium
Returns a collection of historical gas information.
ποΈ eth_gasPrice - Soneium
Returns the current price per gas in wei.
ποΈ eth_getBalance - Soneium
Returns the balance of the account of a given address.
ποΈ eth_getBlockByHash - Soneium
Returns information about a block by block hash.
ποΈ eth_getBlockByNumber - Soneium
Returns information about a block by block number.
ποΈ eth_getBlockReceipts - Soneium
Get all transaction receipts for a given block on Soneium.
ποΈ eth_getBlockTransactionCountByHash - Soneium
Returns the number of transactions in a block matching the given block hash.
ποΈ eth_getBlockTransactionCountByNumber - Soneium
Returns the number of transactions in a block matching the given block number.
ποΈ eth_getCode - Soneium
Returns code at a given address.
ποΈ eth_getFilterChanges - Soneium
Polling method for a filter, which returns an array of logs which occurred since last poll.
ποΈ eth_getFilterLogs - Soneium
Returns an array of all logs matching filter with given id. Can compute the same results with an eth_getLogs call.
ποΈ eth_getLogs - Soneium
Returns an array of all logs matching a given filter object.
ποΈ eth_getProof - Soneium
Returns the account and storage values of the specified account including the Merkle-proof on Soneium. This call can be used to verify that the data you are pulling from is not tampered with.
ποΈ eth_getStorageAt - Soneium
Returns the value from a storage position at a given address, or in other words, returns the state of the contract's storage, which may not be exposed via the contract's methods.
ποΈ eth_getTransactionByBlockHashAndIndex - Soneium
Returns information about a transaction by block hash and transaction index position.
ποΈ eth_getTransactionByBlockNumberAndIndex - Soneium
Returns information about a transaction by block number and transaction index position.
ποΈ eth_getTransactionByHash - Soneium
Returns the information about a transaction requested by transaction hash. In the response object, `blockHash`, `blockNumber`, and `transactionIndex` are `null` when the transaction is pending.
ποΈ eth_getTransactionCount - Soneium
Returns the number of transactions sent from an address.
ποΈ eth_getTransactionReceipt - Soneium
Returns the receipt of a transaction by transaction hash.
ποΈ eth_getUncleByBlockHashAndIndex - Soneium
Returns information about an uncle of a block by hash and uncle index position.
ποΈ eth_getUncleByBlockNumberAndIndex - Soneium
Returns information about an uncle of a block by number and uncle index position.
ποΈ eth_getUncleCountByBlockHash - Soneium
Returns the number of uncles in a block matching the given block hash.
ποΈ eth_getUncleCountByBlockNumber - Soneium
Returns the number of uncles in a block matching the given block number.
ποΈ eth_maxPriorityFeePerGas - Soneium
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.
ποΈ eth_newBlockFilter - Soneium
Creates a filter in the node, to notify when a new block arrives.
ποΈ eth_newFilter - Soneium
Creates a filter object, based on filter options, to notify when the state changes (logs).
ποΈ eth_newPendingTransactionFilter - Soneium
Creates a filter in the node, to notify when new pending transactions arrive. To check if the state has changed, call eth_getFilterChanges.
ποΈ eth_protocolVersion - Soneium
Returns the current ethereum protocol version.
ποΈ eth_sendRawTransaction - Soneium
Creates a new message call transaction or a contract creation for signed transactions.
ποΈ eth_syncing - Soneium
Returns a list of addresses owned by client.
ποΈ eth_uninstallFilter - Soneium
Uninstalls a filter with given id. Should always be called when watch is no longer needed. Additionally, Filters timeout when they arenβt requested with eth_getFilterChangesfor a period of time.