> ## Documentation Index
> Fetch the complete documentation index at: https://docs.moralis.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Overview

> Explore Ethereum JSON-RPC methods

## Introduction

Ethereum is the pioneering smart contract platform that enables developers to build decentralized applications (dApps) on a permissionless blockchain. It supports smart contracts, decentralized finance (DeFi), and a broad array of token standards, including ERC-20 and ERC-721. Ethereum’s consensus mechanism transitioned from Proof of Work (PoW) to Proof of Stake (PoS) with the Ethereum 2.0 upgrade, making it more energy-efficient. As the largest smart contract platform by market capitalization and developer activity, Ethereum remains a leader in the blockchain space.

## Supported Networks

The Ethereum RPC API is available for the following networks:

1. **Ethereum Mainnet**
2. **Ethereum Sepolia Testnet**

## Network Details

| **Network**          | **Chain ID**        | **Path Parameter** |
| :------------------- | :------------------ | :----------------- |
| **Ethereum Mainnet** | 0x1 (1)             | `eth`              |
| **Ethereum Sepolia** | 0xaa36a7 (11155111) | `sepolia`          |

## Supported RPC Methods

* [eth\_blockNumber](/rpc-nodes/ethereum/eth-blockNumber)
* [eth\_call](/rpc-nodes/ethereum/eth-call)
* [eth\_chainId](/rpc-nodes/ethereum/eth-chain-id)
* [eth\_createAccessList](/rpc-nodes/ethereum/eth-create-access-list)
* [eth\_estimateGas](/rpc-nodes/ethereum/eth-estimate-gas)
* [eth\_feeHistory](/rpc-nodes/ethereum/eth-fee-history)
* [eth\_gasPrice](/rpc-nodes/ethereum/eth-gas-price)
* [eth\_getBalance](/rpc-nodes/ethereum/eth-get-balance)
* [eth\_getBlockByHash](/rpc-nodes/ethereum/eth-get-block-by-hash)
* [eth\_getBlockByNumber](/rpc-nodes/ethereum/eth-get-block-by-number)
* [eth\_getBlockTransactionCountByHash](/rpc-nodes/ethereum/eth-get-block-transaction-count-by-hash)
* [eth\_getBlockTransactionCountByNumber](/rpc-nodes/ethereum/eth-get-block-transaction-count-by-number)
* [eth\_getBlockReceipts](/rpc-nodes/ethereum/eth-get-block-receipts)
* [eth\_getCode](/rpc-nodes/ethereum/eth-get-code)
* [eth\_getLogs](/streams/api-reference/history/get-logs)
* [eth\_getProof](/rpc-nodes/ethereum/eth-get-proof)
* [eth\_getStorageAt](/rpc-nodes/ethereum/eth-get-storage-at)
* [eth\_getTransactionByHash](/rpc-nodes/ethereum/eth-get-transaction-by-hash)
* [eth\_getTransactionByBlockHashAndIndex](/rpc-nodes/ethereum/eth-get-transaction-by-block-hash-and-index)
* [eth\_getTransactionByBlockNumberAndIndex](/rpc-nodes/ethereum/eth-get-transaction-by-block-number-and-index)
* [eth\_getTransactionCount](/rpc-nodes/ethereum/eth-get-transaction-count)
* [eth\_getTransactionReceipt](/rpc-nodes/ethereum/eth-get-transaction-receipt)
* [eth\_getUncleByBlockHashAndIndex](/rpc-nodes/ethereum/eth-get-uncle-by-block-hash-and-index)
* [eth\_getUncleByBlockNumberAndIndex](/rpc-nodes/ethereum/eth-get-uncle-by-block-number-and-index)
* [eth\_getUncleCountByBlockHash](/rpc-nodes/ethereum/eth-get-uncle-count-by-block-hash)
* [eth\_getUncleCountByBlockNumber](/rpc-nodes/ethereum/eth-get-uncle-count-by-block-number)
* [eth\_maxPriorityFeePerGas](/rpc-nodes/ethereum/eth-max-priority-fee-per-gas)
* [eth\_sendRawTransaction](/rpc-nodes/ethereum/eth-send-raw-transaction)
