# Monad

- [eth\_chainId](/build/api-reference/meter-1/eth_chainid.md): Returns the currently configured chain id, a value used in replay-protected transaction signing as introduced by EIP-155.
- [eth\_syncing](/build/api-reference/meter-1/eth_syncing.md): Returns information about the sync status of the node
- [eth\_getBlockByNumber](/build/api-reference/meter-1/eth_getblockbynumber.md): Returns block information by number.
- [eth\_getBlockByHash](/build/api-reference/meter-1/eth_getblockbyhash.md): Returns block information by hash.
- [eth\_blockNumber](/build/api-reference/meter-1/eth_blocknumber.md): Returns the number of the most recent block.
- [eth\_gasPrice](/build/api-reference/meter-1/eth_gasprice.md): Returns the current price of gas in wei. If minimum gas price is enforced by setting the --price-limit flag, this endpoint will return the value defined by this flag as minimum gas price.
- [eth\_getBalance](/build/api-reference/meter-1/eth_getbalance.md): Returns the balance of the account of the given address.
- [eth\_sendRawTransaction](/build/api-reference/meter-1/eth_sendrawtransaction.md): Creates new message call transaction or a contract creation for signed transactions.
- [eth\_getTransactionByHash](/build/api-reference/meter-1/eth_gettransactionbyhash.md): Returns the information about a transaction requested by transaction hash.
- [eth\_getTransactionByBlockNumberAndIndex](/build/api-reference/meter-1/eth_gettransactionbyblocknumberandindex.md): Returns the information about a transaction requested by Block number and index.
- [eth\_getTransactionByBlockHashAndIndex](/build/api-reference/meter-1/eth_gettransactionbyblockhashandindex.md): Returns the information about a transaction requested by Block hash and index.
- [eth\_getTransactionReceipt](/build/api-reference/meter-1/eth_gettransactionreceipt.md): Returns the receipt of a transaction by transaction hash. Note That the receipt is not available for pending transactions.
- [eth\_getTransactionCount](/build/api-reference/meter-1/eth_gettransactioncount.md): Returns the number of transactions sent from an address.
- [eth\_getBlockTransactionCountByNumber](/build/api-reference/meter-1/eth_getblocktransactioncountbynumber.md): Returns the number of transactions in a block matching the given block number.
- [eth\_getLogs](/build/api-reference/meter-1/eth_getlogs.md): Returns an array of all logs matching a given filter object.
- [eth\_getCode](/build/api-reference/meter-1/eth_getcode.md): Returns code at a given address.
- [eth\_call](/build/api-reference/meter-1/eth_call.md): Executes a new message call immediately without creating a transaction on the blockchain.
- [eth\_getStorageAt](/build/api-reference/meter-1/eth_getstorageat.md): Returns the value from a storage position at a given address.
- [eth\_estimateGas](/build/api-reference/meter-1/eth_estimategas.md): 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.
- [net\_version](/build/api-reference/meter-1/net_version.md): Returns the current network id.
- [web3\_clientVersion](/build/api-reference/meter-1/web3_clientversion.md): Returns the current client version.
- [debug\_getRawBlock](/build/api-reference/meter-1/debug_tracetransaction.md): Returns an RLP-encoded block.
- [debug\_getRawHeader](/build/api-reference/meter-1/debug_tracetransaction-1.md): Returns an RLP-encoded header.
- [debug\_getRawReceipts](/build/api-reference/meter-1/debug_tracetransaction-2.md): Returns an array of EIP-2718 binary-encoded receipts.
- [debug\_getRawTransaction](/build/api-reference/meter-1/debug_tracetransaction-3.md): Returns an array of EIP-2718 binary-encoded transactions.
- [debug\_traceBlockByNumber](/build/api-reference/meter-1/debug_traceblockbynumber.md): It accepts a block number and will replay the block that is already present in the database.
- [debug\_traceBlockByHash](/build/api-reference/meter-1/debug_traceblockbyhash.md): It accepts a block hash and will replay the block that is already present in the database.
- [debug\_traceTransaction](/build/api-reference/meter-1/debug_tracetransaction-4.md): It will attempt to run the transaction in the exact same manner as it was executed on the network.
