cic-staff-client/src/app/_models/token.ts

20 lines
343 B
TypeScript
Raw Normal View History

2021-05-12 08:40:21 +02:00
/** Token object interface */
interface Token {
2021-01-15 05:30:19 +01:00
name: string;
symbol: string;
address: string;
supply: string;
decimals: string;
reserves: {
'0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {
weight: string;
balance: string;
2021-05-10 18:15:25 +02:00
};
2021-01-15 05:30:19 +01:00
};
reserveRatio?: string;
owner?: string;
}
2021-05-12 08:40:21 +02:00
/** @exports */
2021-05-10 18:15:25 +02:00
export { Token };