# balance

```ts
function balance(client, options): Promise<ERC20BalanceResult>;
```

Defined in: [packages/synapse-core/src/erc20.ts:54](https://github.com/FilOzone/synapse-sdk/blob/1d6c4b9fe34534bf1087dfe41491b72be0b46858/packages/synapse-core/src/erc20.ts#L54)

Get the balance, decimals, symbol, and allowance of an ERC20 token.

## Parameters

| Parameter | Type | Description |
| ------ | ------ | ------ |
| `client` | `Client`\<`Transport`, `Chain`\> | The client to use. |
| `options` | [`ERC20BalanceOptions`](/reference/filoz/synapse-core/erc20/type-aliases/erc20balanceoptions/) | The props to use. |

## Returns

[`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)\<[`ERC20BalanceResult`](/reference/filoz/synapse-core/erc20/type-aliases/erc20balanceresult/)\>

The balance, decimals, symbol, and allowance.

## Throws

- MulticallErrorType if the multicall fails.