diff --git a/src/common/ant-ao.ts b/src/common/ant-ao.ts index 7e62e6f3..adfefea9 100644 --- a/src/common/ant-ao.ts +++ b/src/common/ant-ao.ts @@ -156,9 +156,8 @@ export class AoANTReadable implements AoANTRead { return info.Ticker; } - // TODO: are balances needed to comply with Token spec /** - * @returns {Promise>} The balances of the ANT + * @returns {Promise>} The balances of the ANT * @example * The current balances of the ANT. * ```ts diff --git a/src/io.ts b/src/io.ts index e60ba309..8948fb5a 100644 --- a/src/io.ts +++ b/src/io.ts @@ -259,7 +259,8 @@ export interface AoANTRead { getControllers(): Promise; getTicker(): Promise; getName(): Promise; - // TODO: balance apis necessary? + getBalance({ address }: { address: WalletAddress }): Promise; + getBalances(): Promise>; } export interface AoANTWrite extends AoANTRead {