Ecosystem & Providers
Indexers
Goldrush

GoldRush - powered by Covalent

GoldRush (opens in a new tab) is a set foundational multichain data APIs and toolkits for easy web3 development across 100+ supported blockchains (opens in a new tab), including Sei mainnet (EVM only). GoldRush offers structured onchain data, including token balances, transactions and event logs through powerful APIs, SDKs and UI Kits for building dapps.

Sign up to start building on Sei (opens in a new tab)

APIs

The GoldRush APIs enable 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

Transactions API

Cross-Chain Activity API

Security API

Blockchain API

Developer Tools

There are 4 primary developer tools for using the APIs:

  1. GoldRush APIs (opens in a new tab) - enteprise-grade REST APIs to use with any programming language. Switch blockchains with one path parameter.

    curl -X GET https://api.covalenthq.com/v1/sei-mainnet/address/0x6d68A318D0632f7B9Ce9d6757Dea0e9dE19D7CCA/balances_v2/ \
        -H 'Content-Type: application/json' \
        -u YOUR_API_KEY:
  2. GoldRush SDKs (opens in a new tab) - official client libraries including TypeScript and Python.

    npm install @covalenthq/client-sdk
    import { GoldRushClient } from "@covalenthq/client-sdk";
     
    (async () => {
    try {
        const client = new GoldRushClient("YOUR_API_KEY");
        const transactions = client.TransactionService.getAllTransactionsForAddress("sei-mainnet", "0x6d68A318D0632f7B9Ce9d6757Dea0e9dE19D7CCA");
     
        for await (const tx of transactions) {
        console.log("tx", tx);
        }
    } catch (error) {
        console.log(error.message);
    }
    })();
  3. GoldRush UI Kit (opens in a new tab) - beautifully designed React components for your dApp frontend.

GoldRush UI Kit Wallet Component

Example of a Wallet Component using the GoldRush UI Kit

  1. GoldRush Decoder (opens in a new tab) - decode any raw event logs into human-readable structured data.

Get started