Skip to main content

Overview

The Covalent Network serves as the universal data model for multi-chain indexing and querying. The Covalent Network represents the progressive decentralization of Covalent toward a community-owned and community-run protocol. Read more to understand the supply side, demand side, and roles of network operators in the network section of our docs.
GoldRush offers the most comprehensive Covalent Data API suite for developers, analysts, and enterprises. Whether you’re building a DeFi dashboard, a wallet, a trading bot, an AI agent or a compliance platform, our Covalent Data APIs provide fast, accurate, and developer-friendly access to the essential onchain data you need.

Supported APIs

Mainnet

PropertyValue
Chain Namecovalent-internal-network-v1
Chain ID1131378225
Network TypeCommunity Chain
Support Levelcommunity
Block ExplorerExplorer
Official WebsiteCovalent Website
Native Gas TokenETH

API Usage

To use this blockchain network in GoldRush API calls, use:

Chain Name

  • covalent-internal-network-v1 (mainnet)

Example API Calls

curl -X GET "https://api.covalenthq.com/v1/covalent-internal-network-v1/address/0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045/balances_v2/?key=API_KEY"

SDK Usage

import { GoldRushClient } from "@covalenthq/client-sdk";

const client = new GoldRushClient("API_KEY");
const resp = await client.BalanceService.getTokenBalancesForWalletAddress({
    chainName: "covalent-internal-network-v1",
    walletAddress: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
});

Additional Resources