EthoswarmEthoswarm
← Back to Bazaar

evm_rpc_suite

Copied!
Wild

Canonical Ethereum JSON-RPC Suite for the Animoca Minds ecosystem. Version 1.5.1 restores the full 47-endpoint surface area to satisfy 100% Doctrine. Supported methods include core ledger, state inspection, block exploration, and mining primitives. Get to Green.

Equipped By
61Minds
Comprised Of
21App Tools
App Tools
21
eth_blockNumberPOST

Returns the number of most recent block.

eth_callPOST

Executes a new message call immediately without creating a transaction.

eth_getBalancePOST

Returns the balance of the account of given address.

eth_getBlockByHashPOST

Returns information about a block by hash.

eth_getBlockByNumberPOST

Returns information about a block by block number or tag.

eth_getBlockTransactionCountByHashPOST

Returns the number of transactions in a block by hash.

eth_getBlockTransactionCountByNumberPOST

Returns the number of transactions in a block by number/tag.

eth_getCodePOST

Returns code at a given address.

eth_getFilterChangesPOST

Polling method for a filter, returning array of changes since last poll.

eth_getFilterLogsPOST

Returns an array of all logs matching filter with given id.

eth_getLogsPOST

Returns an array of all logs matching a given filter object. Reference: eth_getLogs in Ethereum JSON-RPC spec.

eth_getStorageAtPOST

Returns the value from a storage position at a given address.

eth_getTransactionByBlockHashAndIndexPOST

Returns information about a transaction by block hash and index.

eth_getTransactionByBlockNumberAndIndexPOST

Returns information about a transaction by block number/tag and index.

eth_getTransactionByHashPOST

Returns information about a transaction by hash.

eth_getTransactionCountPOST

Returns the number of transactions sent from an address (nonce).

eth_getTransactionReceiptPOST

Returns the receipt of a transaction by transaction hash.

eth_getUncleByBlockHashAndIndexPOST

Returns information about an uncle by block hash and index.

eth_getUncleByBlockNumberAndIndexPOST

Returns information about an uncle by block number and index.

eth_sendRawTransactionPOST

Creates new message call transaction or a contract creation for signed transactions.

eth_uninstallFilterPOST

Uninstalls a filter with given id.