robin_getBalance
Returns the balance of an account at a given block.
Account
robin_getTransactionCount
Returns the number of transactions sent from an address - its nonce.
Account
robin_getCode
Returns the bytecode deployed at an address, if any.
Account
robin_getStorageAt
Reads a single storage slot from a contract account.
Account
robin_accounts
Lists accounts the connected node currently manages.
Account
robin_getProof
Returns a Merkle proof for an account and selected storage keys.
Account
robin_call - balanceOf
Reads a token's balanceOf(address) without sending a transaction.
Token
robin_call - totalSupply
Reads a token's total supply directly from its contract.
Token
robin_call - decimals
Returns the decimal precision a token contract reports.
Token
robin_call - symbol
Returns a token's ticker symbol as stored on-chain.
Token
robin_call - allowance
Checks how much a spender is approved to move on an owner's behalf.
Token
robin_blockNumber
Returns the number of the most recent block.
Block
robin_getBlockByNumber
Returns full details for a block, given its number.
Block
robin_getBlockByHash
Returns full details for a block, given its hash.
Block
robin_getBlockTransactionCountByNumber
Returns how many transactions sit inside a given block.
Block
robin_getUncleCountByBlockNumber
Returns the number of uncle blocks for a given block.
Block
robin_getTransactionByHash
Returns full details for a transaction, given its hash.
Transaction
robin_getTransactionReceipt
Returns the receipt for a mined transaction, including logs and status.
Transaction
robin_getTransactionByBlockNumberAndIndex
Returns a transaction by its position inside a specific block.
Transaction
robin_sendRawTransaction
Broadcasts a signed, raw transaction to the network.
Transaction
robin_estimateGas
Estimates the gas a transaction would consume, without sending it.
Transaction
robin_chainId
Returns the chain ID the connected node is serving.
Network
robin_version
Returns the current network ID as a string.
Network
robin_peerCount
Returns how many peers the node is currently connected to.
Network
robin_listening
Returns whether the node is actively listening for network connections.
Network
robin_clientVersion
Returns the client software and version string the node is running.
Network
robin_syncing
Returns sync progress, or false if the node is fully synced.
Network
robin_gasPrice
Returns the node's current estimate of gas price, in wei.
Network
robin_getLogs
Returns event logs matching a filter across a block range.
Network