@funded-labs/dab-js
Version:
JS adapter for DAB
73 lines (72 loc) • 2.47 kB
TypeScript
import type { Principal } from '@dfinity/principal';
export interface Metadata {
'fee': bigint;
'decimals': number;
'owner': Principal;
'logo': string;
'name': string;
'totalSupply': bigint;
'symbol': string;
}
export declare type Result = {
'Ok': bigint;
} | {
'Err': TxError;
};
export interface TokenInfo {
'holderNumber': bigint;
'deployTime': bigint;
'metadata': Metadata;
'historySize': bigint;
'cycles': bigint;
'feeTo': Principal;
}
export declare type TxError = {
'InsufficientAllowance': null;
} | {
'InsufficientBalance': null;
} | {
'ErrorOperationStyle': null;
} | {
'Unauthorized': null;
} | {
'LedgerTrap': null;
} | {
'ErrorTo': null;
} | {
'Other': null;
} | {
'BlockUsed': null;
} | {
'AmountTooSmall': null;
};
export default interface _SERVICE {
'allowance': (arg_0: Principal, arg_1: Principal) => Promise<bigint>;
'approve': (arg_0: Principal, arg_1: bigint) => Promise<Result>;
'balanceOf': (arg_0: Principal) => Promise<bigint>;
'decimals': () => Promise<number>;
'getAllowanceSize': () => Promise<bigint>;
'getBlockUsed': () => Promise<Array<bigint>>;
'getHolders': (arg_0: bigint, arg_1: bigint) => Promise<Array<[Principal, bigint]>>;
'getMetadata': () => Promise<Metadata>;
'getTokenInfo': () => Promise<TokenInfo>;
'getUserApprovals': (arg_0: Principal) => Promise<Array<[Principal, bigint]>>;
'historySize': () => Promise<bigint>;
'isBlockUsed': (arg_0: bigint) => Promise<boolean>;
'logo': () => Promise<string>;
'mint': (arg_0: [] | [Array<number>], arg_1: bigint) => Promise<Result>;
'mintFor': (arg_0: [] | [Array<number>], arg_1: bigint, arg_2: Principal) => Promise<Result>;
'name': () => Promise<string>;
'owner': () => Promise<Principal>;
'setFee': (arg_0: bigint) => Promise<undefined>;
'setFeeTo': (arg_0: Principal) => Promise<undefined>;
'setGenesis': () => Promise<Result>;
'setLogo': (arg_0: string) => Promise<undefined>;
'setName': (arg_0: string) => Promise<undefined>;
'setOwner': (arg_0: Principal) => Promise<undefined>;
'symbol': () => Promise<string>;
'totalSupply': () => Promise<bigint>;
'transfer': (arg_0: Principal, arg_1: bigint) => Promise<Result>;
'transferFrom': (arg_0: Principal, arg_1: Principal, arg_2: bigint) => Promise<Result>;
'withdraw': (arg_0: bigint, arg_1: string) => Promise<Result>;
}