Skip to main content

Documentation Index

Fetch the complete documentation index at: https://goldrush.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

GoldRush JSON-RPC supports Base.

Endpoint

https://rpc.goldrushdata.com/v1/base-mainnet
PropertyValue
Chain slugbase-mainnet
Native gas tokenETH
Block time~2s
Block explorerhttps://basescan.org/
Network typeMainnet
Testnetsbase-sepolia-testnet

Quickstart

curl https://rpc.goldrushdata.com/v1/base-mainnet \
  -H "Authorization: Bearer $GOLDRUSH_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "eth_blockNumber",
    "params": []
  }'

Supported methods

Each method below has a dedicated reference page tuned for Base, with chain-specific examples.

Blocks info

Transactions info

Executing transactions

Accounts info

  • eth_getBalance: Returns the native token balance of an address at a given block.
  • eth_getCode: Returns the contract bytecode at a given address.
  • eth_getStorageAt: Returns the value of a storage slot for a given address.
  • eth_accounts: Returns the addresses owned by the connected node.
  • eth_getProof: Returns the Merkle proof for an account and storage slots.

Logs and events

Gas data

Chain info

Debug and trace

Client information

JSON-RPC Overview

Product overview and architecture.

Authentication

Header reference and per-library setup.