Skip to main content

0.01 credits per call

eth_call on Base: Executes a read-only contract call without creating a transaction.

Endpoint

https://rpc.goldrushdata.com/v1/base-mainnet
Authenticate with Authorization: Bearer <GOLDRUSH_API_KEY>. See authentication.

Parameters

NameTypeRequiredDescriptionExample
callObjectObjectyes{from?, to, gas?, gasPrice?, value?, data?}. to and data are typically the only required fields for read calls.{"to":"0xa0b86991...","data":"0x70a08231..."}
blockTagQUANTITY | TAGyesBlock number (hex) or block tag at which to evaluate the call."latest"

Returns

DATA: Hex-encoded ABI return data.
"0x0000000000000000000000000000000000000000000000056bc75e2d63100000"

Examples

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_call",
    "params": [{"to":"0xa0b86991...","data":"0x70a08231..."}, "latest"]
  }'
import { ethers } from "ethers";

const url = "https://rpc.goldrushdata.com/v1/base-mainnet";
const fetchReq = new ethers.FetchRequest(url);
fetchReq.setHeader("Authorization", `Bearer ${process.env.GOLDRUSH_API_KEY}`);

const provider = new ethers.JsonRpcProvider(fetchReq);
const result = await provider.send("eth_call", [{"to":"0xa0b86991...","data":"0x70a08231..."}, "latest"]);
console.log(result);
import { createPublicClient, http } from "viem";

const client = createPublicClient({
  transport: http("https://rpc.goldrushdata.com/v1/base-mainnet", {
    fetchOptions: {
      headers: {
        Authorization: `Bearer ${process.env.GOLDRUSH_API_KEY}`,
      },
    },
  }),
});

const result = await client.request({
  method: "eth_call",
  params: [{"to":"0xa0b86991...","data":"0x70a08231..."}, "latest"],
});
console.log(result);
import { Web3 } from "web3";

const provider = new Web3.providers.HttpProvider(
  "https://rpc.goldrushdata.com/v1/base-mainnet",
  {
    headers: [
      { name: "Authorization", value: `Bearer ${process.env.GOLDRUSH_API_KEY}` },
    ],
  }
);
const web3 = new Web3(provider);

const result = await web3.currentProvider.request({
  method: "eth_call",
  params: [{"to":"0xa0b86991...","data":"0x70a08231..."}, "latest"],
});
console.log(result);
from os import environ
from web3 import Web3

w3 = Web3(Web3.HTTPProvider(
    "https://rpc.goldrushdata.com/v1/base-mainnet",
    request_kwargs={
        "headers": {
            "Authorization": f"Bearer {environ['GOLDRUSH_API_KEY']}",
        },
    },
))
result = w3.manager.request_blocking("eth_call", [{"to":"0xa0b86991...","data":"0x70a08231..."}, "latest"])
print(result)

Errors

CodeMessage
-32000Execution reverted (with revert reason in data if available).
Plus standard JSON-RPC errors: -32600 invalid request, -32601 method not found, -32602 invalid params.

Also available on