The token account returned by the SDKs is changing sometimes. ```python token_accounts = client2.resolve_token_accounts(PublicKey.from_string(public_key_address)) token_account = token_accounts[0] balance = client2.get_balance(token_account) ``` Most of the time, the correct account is returned, but on some edge cases, the zero balance account is returned.
The token account returned by the SDKs is changing sometimes.
Most of the time, the correct account is returned, but on some edge cases, the zero balance account is returned.