@globiance/default-token-list-test
Version:
This is the module which contains the list of tokens which will be available by default for swapping on [GlobianceDEX](https://dex.globiance.com) for everyone. This module also enlists the default set of pool visible in the [pool list](http://dex.globianc
21 lines (16 loc) • 355 B
TypeScript
export interface Token {
logo: string;
name: string;
symbol: string;
address: string;
decimals: number;
feeOnTransfer?: boolean;
}
export const DEFAULT_TOKEN_LIST: Array<Token>
export const COMMON_BASES: Array<Token>
export interface Pool {
first: Token;
second: Token;
address: string;
}
export const DEFAULT_POOL_LIST: Array<Pool>