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
| Property | Value |
|---|
| Chain Name | covalent-internal-network-v1 |
| Chain ID | 1131378225 |
| Network Type | Community Chain |
| Support Level | community |
| Block Explorer | Explorer |
| Official Website | Covalent Website |
| Native Gas Token | ETH |
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