ποΈ eth_accounts - Astar
Returns a list of addresses owned by client. Since SCS does not store keys, this will always return empty.
ποΈ eth_blockNumber - Astar
Returns the number of the most recent block.
ποΈ eth_call - Astar
Executes a new message call immediately without creating a transaction on the block chain.
ποΈ eth_chainId - Astar
Returns the currently configured chain ID, a value used in replay-protected transaction signing as introduced by EIP-155.
ποΈ eth_estimateGas - Astar
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_gasPrice - Astar
Returns the current price per gas in wei.
ποΈ eth_getBalance - Astar
Returns the balance of the account of a given address.
ποΈ eth_getBlockByHash - Astar
Returns information about a block by block hash.
ποΈ eth_getBlockByNumber - Astar
Returns information about a block by block number.
ποΈ eth_getBlockTransactionCountByHash - Astar
Returns the number of transactions in a block matching the given block hash.
ποΈ eth_getBlockTransactionCountByNumber - Astar
Returns the number of transactions in a block matching the given block number.
ποΈ eth_getCode - Astar
Returns code at a given address.
ποΈ eth_getFilterChanges - Astar
Polling method for a filter, which returns an array of logs which occurred since last poll.
ποΈ eth_getFilterLogs - Astar
Returns an array of all logs matching filter with given id. Can compute the same results with an eth_getLogs call.
ποΈ eth_getLogs - Astar
Returns an array of all logs matching a given filter object.
ποΈ eth_getStorageAt - Astar
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 - Astar
Returns information about a transaction by block hash and transaction index position.
ποΈ eth_getTransactionByBlockNumberAndIndex - Astar
Returns information about a transaction by block number and transaction index position.
ποΈ eth_getTransactionByHash - Astar
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 - Astar
Returns the number of transactions sent from an address.
ποΈ eth_getTransactionReceipt - Astar
Returns the receipt of a transaction by transaction hash.
ποΈ eth_getUncleByBlockNumberAndIndex - Astar
Returns information about an uncle of a block by number and uncle index position.
ποΈ eth_maxPriorityFeePerGas - Astar
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 - Astar
Creates a filter in the node, to notify when a new block arrives.
ποΈ eth_newFilter - Astar
Creates a filter object, based on filter options, to notify when the state changes (logs).
ποΈ eth_newPendingTransactionFilter - Astar
Creates a filter in the node, to notify when new pending transactions arrive. To check if the state has changed, call eth_getFilterChanges.
ποΈ eth_sendRawTransaction - Astar
Creates a new message call transaction or a contract creation for signed transactions.
ποΈ eth_uninstallFilter - Astar
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.