Custom hook to fetch the ERC20 token balance for a given Token address.

  • Parameters

    • params: {
          address?: `0x${string}`;
          token?: {
              address: string;
              chainId: number;
              decimals: number;
              extensions?: Record<string,
                  | undefined
                  | null
                  | string
                  | number
                  | bigint
                  | boolean
                  | Record<string,
                      | undefined
                      | null
                      | string
                      | number
                      | bigint
                      | boolean
                      | Record<string,
                          | undefined
                          | null
                          | string
                          | number
                          | bigint
                          | boolean>>>;
              logoURI?: string;
              name: string;
              symbol: string;
          };
      }

      The params object.

      • Optionaladdress?: `0x${string}`

        The address for which to fetch the balance.

      • Optionaltoken?: {
            address: string;
            chainId: number;
            decimals: number;
            extensions?: Record<string,
                | undefined
                | null
                | string
                | number
                | bigint
                | boolean
                | Record<string,
                    | undefined
                    | null
                    | string
                    | number
                    | bigint
                    | boolean
                    | Record<string,
                        | undefined
                        | null
                        | string
                        | number
                        | bigint
                        | boolean>>>;
            logoURI?: string;
            name: string;
            symbol: string;
        }

        The ERC20 token object.

        • address: string
        • chainId: number
        • decimals: number
        • Optionalextensions?: Record<string,
              | undefined
              | null
              | string
              | number
              | bigint
              | boolean
              | Record<string,
                  | undefined
                  | null
                  | string
                  | number
                  | bigint
                  | boolean
                  | Record<string,
                      | undefined
                      | null
                      | string
                      | number
                      | bigint
                      | boolean>>>
        • OptionallogoURI?: string
        • name: string
        • symbol: string

    Returns Erc20Balance

    The ERC20 token balance, error, and loading state.