@perk.money/perk-swap-core
Version:
This npm package contains core logic of Perk Aggregator build on top of NEAR blockchain
13 lines (12 loc) • 390 B
TypeScript
import { TokenInfo } from '@tonic-foundation/token-list';
export * from './jsonrpc/types';
export * from './amms/types';
export interface AccountStorageBalance {
total: string;
available: string;
}
export declare type UserTokensMap = Map<string, {
existing: boolean;
data: AccountStorageBalance | null;
}>;
export declare type TokenMap = Map<string, TokenInfo>;