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

18 lines
298 B
TypeScript
Raw Normal View History

interface Token {
2021-01-15 05:30:19 +01:00
name: string;
symbol: string;
address: string;
supply: string;
decimals: string;
reserves?: {
2021-01-15 05:30:19 +01:00
'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-10 18:15:25 +02:00
export { Token };