Skip to main content

Indexer SDK

Native Unity Implementation of Sequence Indexer

Installation

Tokens API

Fetch token IDs, balances and metadata of ERC721 and ERC1155 collections.

Sequence Indexer GetTokenBalances Method:

  • Request: POST /rpc/Indexer/GetTokenBalances
  • Content-Type: application/json
  • Body (in JSON):
    • accountAddress (string) -- the wallet account address
    • contractAddress (string) -- the contract address of the ERC721 / ERC1155 collection
    • includeMetadata (boolean - optional - default: false) -- toggle token metadata to be included in the response

Example: GetTokenBalances of a contract + account address on Polygon

GetTokenBalancesArgs tokenBalancesArgs = new GetTokenBalancesArgs(accountAddress, contractAddress, true);
var tokenBalances = await Indexer.GetTokenBalances(blockChain, tokenBalancesArgs);
if (tokenBalances.balances.Length > 0)
{
//Display the balances :)
}

Fetch the transaction history for any wallet address

Fetches the transaction / token history for any wallet address of any ERC20, ERC721 and ERC1155 token. The response includes decoded transaction details for easy consumption / rendering.

Sequence Indexer GetTransactionHistory Method:

  • Request: POST /rpc/Indexer/GetTransactionHistory
  • Content-Type: application/json
  • Body (in JSON):
    • filter (object)
      • accountAddress (string) -- the wallet account address
      • contractAddress (string) -- optionally specify a contract address to filter
    • includeMetadata (boolean - optional - default: false) -- toggle token metadata to be included in the response

Example: GetTransactionHistory of a wallet account address on Polygon

GetTransactionHistoryArgs transactionHistoryArgs = new GetTransactionHistoryArgs();
var txHistory = await Indexer.GetTransactionHistory(blockChain, transactionHistoryArgs);
//Display tx history :)

Fetch all unique tokens in a particular ERC20/721/1155 contract, including total supplies

Fetches token supplies and metadata for any ERC20, ERC721, ERC1155 contract.

This query is helpful to render all tokens in a token contract, or to query the total token supplies. In this example, we use the Skyweaver token contract address 0x631998e91476DA5B870D741192fc5Cbc55F5a52E on the Polygon network. You may query any contract address on any of the supported networks (but make sure to query the indexer of the corresponding network).

Sequence Indexer GetTokenSupplies Method:

  • Request: POST /rpc/Indexer/GetTokenSupplies
  • Content-Type: application/json
  • Body (in JSON):
    • contractAddress (string) -- a ERC20 / ERC721 / ERC1155 contract address
    • includeMetadata (boolean - optional - default: false) -- toggle token metadata to be included in the response

Example: GetTokenSupplies of Skyweaver contract on Polygon

GetTokenSuppliesArgs tokenSuppliesArgs = new GetTokenSuppliesArgs(contractAddress, includeMetadata);
var supplies = await Indexer.GetTokenSupplies(blockChain, tokenSuppliesArgs);
if (supplies != null)
{
//Display supplies :)
}


Fetch the transaction history for any token contract address

Fetch / listen to the transaction history for any ERC20, ERC721, ERC1155 contract.

This query is helpful to track transaction history of a particular token contract. In this example, we use the Skyweaver token contract address 0x631998e91476DA5B870D741192fc5Cbc55F5a52E on the Polygon network. You may query any contract address on any of the supported networks (but make sure to query the indexer of the corresponding network).

Sequence Indexer GetBalanceUpdates Method:

  • Request: POST /rpc/Indexer/GetBalanceUpdates
  • Content-Type: application/json
  • Body (in JSON):
    • contractAddress (string) -- a ERC20 / ERC721 / ERC1155 contract address

Example: GetBalanceUpdates of Skyweaver contract on Polygon

GetBalanceUpdatesArgs balanceUpdatesArgs = new GetBalanceUpdateArgs(contractAddress);
var updates = await Indexer.GetBalanceUpdates(blockChain, balanceUpdatesArgs);
if (updates != null)
{
//Display balance updates :)
}


Fetch native network balance (aka ETH on Ethereum, MATIC on Polygon, AVAX on Avalanche, BNB on BSC, etc.)

Sequence Indexer GetEtherBalance Method:

  • Request: POST /rpc/Indexer/GetEtherBalance
  • Content-Type: application/json
  • Body (in JSON):
    • accountAddress (string) -- the wallet account address

Example: GetEtherBalance MATIC balance of a wallet account address on Polygon

GetEtherBalanceArgs etherBalanceArgs = new GetEtherBalanceArgs(accountAddress);
var etherBalance = await Indexer.GetEtherBalance(blockChain, etherBalanceArgs);
if (etherBalance != null)
{
//Display ether balance :)
}


Fetch the chain ID

Sequence Indexer GetChainID Method:

  • Request: POST /rpc/Indexer/GetChainID
  • Content-Type: application/json


var chainId = await Indexer.GetChainID(BlockChainType.Polygon);
if (getChainIDReturn != null)
{
//Display
}