type GetWalletBalanceOptions = { address: string; chain: Chain; client: ThirdwebClient; tokenAddress?: string;};
type address = string;
type chain = Chain;
type client = ThirdwebClient;
(Optional) The address of the token to retrieve the balance for. If not provided, the balance of the native token will be retrieved.
type tokenAddress = string;