Avalanche · Schema

ListErc1155BalancesResponse

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
nextPageToken string A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages.
nativeTokenBalance object The native token balance for the address.
erc1155TokenBalances array The list of ERC-1155 token balances for the address.
View JSON Schema on GitHub

JSON Schema

ListErc1155BalancesResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/ListErc1155BalancesResponse.json",
  "title": "ListErc1155BalancesResponse",
  "type": "object",
  "properties": {
    "nextPageToken": {
      "type": "string",
      "description": "A token, which can be sent as `pageToken` to retrieve the next page. If this field is omitted or empty, there are no subsequent pages."
    },
    "nativeTokenBalance": {
      "description": "The native token balance for the address.",
      "allOf": [
        {
          "$ref": "#/components/schemas/NativeTokenBalance"
        }
      ]
    },
    "erc1155TokenBalances": {
      "description": "The list of ERC-1155 token balances for the address.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Erc1155TokenBalance"
      }
    }
  },
  "required": [
    "nativeTokenBalance",
    "erc1155TokenBalances"
  ]
}