src/app/_models/token.ts
Properties |
address |
address:
|
Type : string
|
decimals |
decimals:
|
Type : string
|
name |
name:
|
Type : string
|
owner |
owner:
|
Type : string
|
Optional |
reserveRatio |
reserveRatio:
|
Type : string
|
Optional |
reserves |
reserves:
|
Type : literal type
|
supply |
supply:
|
Type : string
|
symbol |
symbol:
|
Type : string
|
interface Token {
name: string;
symbol: string;
address: string;
supply: string;
decimals: string;
reserves: {
'0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {
weight: string;
balance: string;
}
};
reserveRatio?: string;
owner?: string;
}
export {
Token
};