@myclique/governance-sdk
Version:
The SDK is provides easy access to the high level interactions to be governance with an Clique DAO.
10 lines (9 loc) • 362 B
TypeScript
import { CurrencyAmount } from './currencyAmount';
import { Token } from '../token';
import { BigintIsh } from '../constants';
export declare class TokenAmount extends CurrencyAmount {
readonly token: Token;
constructor(token: Token, amount: BigintIsh);
add(other: TokenAmount): TokenAmount;
subtract(other: TokenAmount): TokenAmount;
}