Balances

Query native token balances (ubwick) for any address, or check the total circulating supply on bwickchain.

Get All Balances

Returns all native token balances for an address.
curl https://rest.bwick.fun/cosmos/bank/v1beta1/balances/bwick1abc123...
{
  "balances": [
    {
      "denom": "ubwick",
      "amount": "5000000000"
    }
  ],
  "pagination": {
    "next_key": null,
    "total": "1"
  }
}

Understanding Denominations

DenominationMeaningConversion
ubwickMicro-BWICK (base unit)1 BWICK = 1,000,000 ubwick
All amounts are returned in ubwick. To convert to human-readable BWICK, divide by 1,000,000.
5000000000 ubwick = 5,000 BWICK

Get Balance for Specific Denom

Query balance for a single denomination (faster if you only need ubwick).
curl https://rest.bwick.fun/cosmos/bank/v1beta1/balances/bwick1abc123.../by_denom?denom=ubwick
{
  "balance": {
    "denom": "ubwick",
    "amount": "5000000000"
  }
}

Get Spendable Balances

Returns balances that are available to spend (excludes locked, vesting, or delegated tokens).
curl https://rest.bwick.fun/cosmos/bank/v1beta1/spendable_balances/bwick1abc123...
This is useful when you need to know how much a user can actually transfer or use for gas fees.

Total Supply

Get the total supply of all denominations on the chain.
curl https://rest.bwick.fun/cosmos/bank/v1beta1/supply
{
  "supply": [
    {
      "denom": "ubwick",
      "amount": "150000000000000"
    }
  ],
  "pagination": {
    "next_key": null,
    "total": "1"
  }
}

Supply of a Specific Denom

curl https://rest.bwick.fun/cosmos/bank/v1beta1/supply/by_denom?denom=ubwick
{
  "amount": {
    "denom": "ubwick",
    "amount": "150000000000000"
  }
}
The total supply on bwickchain reflects only the tokens that have been bridged from Solana. Since the chain has zero inflation, supply only changes through bridge mint/burn operations.