18 lines
297 B
TypeScript
18 lines
297 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 };
|