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

18 lines
298 B
TypeScript

interface Token {
name: string;
symbol: string;
address: string;
supply: string;
decimals: string;
reserves?: {
'0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {
weight: string;
balance: string;
};
};
reserveRatio?: string;
owner?: string;
}
export { Token };