Skip to main content

GoldRush - powered by Covalent

GoldRush is a set of data tools that enable easy web3 development across 200+ supported blockchains, including Gnosis Chain. The mission of GoldRush is to improve the lives of developers by providing structured onchain data for dapps.

Developers can utilize GoldRush via SDKs, APIs, UI Kits, human-readable transactions and pre-built templates for a number of web3 use cases. The GoldRush suite is powered by Covalent, which is decentralized and cryptographically secure. Whether you are fetching NFTs, DeFi transactions, or other onchain data, GoldRush helps scale hundreds of projects from crypto native teams to Fortune 500 companies.

With GoldRush, you have access to:

  • Every wallet's token balances
  • Full transaction histories
  • Every contract log event
  • All NFTs including assets and metadata

Use GoldRush if you need:

  • Wallet, Transactions, NFT, DEX, Staking or core blockchain data (i.e. log events, blocks, gas)
  • Normalized, aggregated and enhanced multichain data, well beyond what you get from RPC providers
  • Enterprise-grade performance

Sign up to start building on Gnosis Chain

APIs

The GoldRush APIs enables developers to quickly and easily access structured onchain data. This means consistent response schemas that are blockchain agnostic. Available APIs and corresponding use cases include:

Wallet API

  • Features: All token balances (ERC20, 721, 1155, native), token transfers and prices (spot and historical) for a wallet.
  • Use cases: Wallets, portfolio trackers, token gating, airdrop snapshots.

Transactions API

NFT API

  • Features: Media assets, metadata, sales, owners, trait & attribute filters, thumbnails, and previews.
  • Use cases: NFT galleries and marketplaces, real world asset (RWA) tracking, token gating.

Cross-Chain Activity API

  • Features: Single API call to fetch a list of active chains and the latest transaction date on each for an address.
  • Use cases: App onboarding.

Security API

  • Features: NFT and ERC20 token allowances, including value-at-risk.
  • Use cases: Revoke features in wallets, security applications.

Blockchain API

  • Features: Block details, log events by contract address or topic hash, gas prices, token prices and holders.
  • Use cases: Custom block explorers.

Developer Tools

There are 4 primary developer tools for using the APIs:

  1. GoldRush API - REST API with enterprise-grade endpoints to use with any programming language. Switch blockchains with one path parameter.

    curl -X GET https://api.covalenthq.com/v1/gnosis-mainnet/address/0x2C6900b24221dE2B4A45c8c89482fFF96FFB7E55/balances_v2/ \
    -H 'Content-Type: application/json' \
    -u YOUR_API_KEY:
  2. GoldRush SDKs - official client libraries including TypeScript, Python, Go and Viem.

    npm install @covalenthq/client-sdk
    import { CovalentClient } from "@covalenthq/client-sdk";

    (async () => {
    try {
    const client = new CovalentClient("YOUR_API_KEY");
    const transactions = client.TransactionService.getAllTransactionsForAddress("gnosis-mainnet", "0x2C6900b24221dE2B4A45c8c89482fFF96FFB7E55");

    for await (const tx of transactions) {
    console.log("tx", tx);
    }
    } catch (error) {
    console.log(error.message);
    }
    })();
  3. GoldRush UI Kit - beautifully designed React components for your dApp frontend.

    GoldRush Component Example

  4. GoldRush Decoder - decode any raw event logs into human-readable structured data.

    Request:

    curl -X POST http://localhost:8080/api/v1/tx/decode \
    -H 'Content-Type: application/json' \
    -d '{
    "chain_name": "gnosis-mainnet",
    "tx_hash": "0xe9e807d78673ad214ce51d0c13d13cf15f2ddf8e85498db64e6ffad75e12733f"
    }'

    Custom decoded response:

    {
    "success": true,
    "events": [
    {
    "action": "Account Abstraction Transaction",
    "category": "Others",
    "name": "User Operation Event",
    "protocol": {
    "logo": "https://logos.covalenthq.com/tokens/100/0x5ff137d4b0fdcd49dca30c7cf57e578a026d2789.png",
    "name": "4337 Entry Point"
    },
    "details": [
    {
    "heading": "Gas Cost",
    "value": "2504932000000000",
    "type": "text"
    },
    {
    "heading": "Gas Used",
    "value": "1252466",
    "type": "text"
    },
    {
    "heading": "Paymaster",
    "value": "0x00000f79B7FaF42EEBAdbA19aCc07cD08Af44789",
    "type": "address"
    },
    {
    "heading": "Sender",
    "value": "0x1B19D70F192bEb4E1fc4FCf72219E742b0B3661c",
    "type": "address"
    },
    {
    "heading": "User Operation Hash",
    "value": "0x31ec6a8084b4f3677120313986f0f2dc9dffdb5c15d4eccf2094603a690efcb6",
    "type": "address"
    }
    ]
    }
    ],
    "tx_metadata": {
    ...
    },
    "explorers": [
    {
    "label": null,
    "url": "https://gnosis.blockscout.com/tx/0xe9e807d78673ad214ce51d0c13d13cf15f2ddf8e85498db64e6ffad75e12733f"
    }
    ]
    }
    }

Get started

  • API Key - sign up for free
  • Docs - comprehensive knowledge base for all things GoldRush
  • Guides - learn how to build for various use cases and expand your onchain knowledge