Node RPC
  • Introduction
  • Ethereum API endpoints
    • eth_getBlockByHash
    • eth_blocknumber
    • eth_getBlockByNumber
    • eth_getBlockTransactionCountByHash
    • eth_getBlockTransactionCountByNumber
    • eth_getTransactionByHash
    • eth_getTransactionByBlockHashAndIndex
    • eth_getTransactionByBlockNumberAndIndex
    • eth_getTransactionReceipt
    • eth_getTransactionCount
    • eth_sendRawTransaction
    • eth_call
    • eth_getCode
    • eth_getBalance
    • eth_accounts
    • eth_getStorageAt
    • eth_getProof
    • eth_getLogs
    • eth_newFilter
    • eth_newPendingTransactionFilter
    • eth_newBlockFilter
    • eth_getFilterChanges
    • eth_getFilterLogs
    • eth_uninstallFilter
    • eth_chainId
    • eth_protocolVersion
    • net_listening
    • net_version
    • eth_getUncleCountByBlockHash
    • eth_getUncleByBlockNumberAndIndex
    • eth_getUncleByBlockHashAndIndex
    • eth_getUncleCountByBlockNumber
    • eth_estimateGas
    • eth_gasPrice
    • eth_feeHistory
    • eth_maxPriorityFeePerGas
    • eth_createAccessList
    • web3_clientVersion
    • web3_sha3
Powered by GitBook
On this page

Introduction

NextEthereum API endpoints

Last updated 7 months ago

This is the documentation for Node RPC provider. Node RPC is Cost-effective and reliable Ethereum and Polygon JSON-RPC provider, offering a competitive solution for developers seeking an affordable alternative. Currently we are supporting all standard Ethereum API methods.

Examples in this documentation use public endpoints. Ideally, for your own projects, you should use your own API endpoint, which you can generate for free when connecting with your wallet .

Our public endpoints are:

  • url: https://api.noderpc.xyz/rpc-mainnet/public

    Public endpoint for Ethereum mainnet

  • url: https://api.noderpc.xyz/rpc-polygon-pos/public

    Public endpoint for Polygon mainnet

  • url: https://api.noderpc.xyz/rpc-sepolia/public

    Public endpoint for Sepolia testnet

For demonstration purposes, we are using well-known web3 library in our examples.

here
ethers