Add support for account index.
This commit is contained in:
2
src/app/_models/staff.ts
Normal file
2
src/app/_models/staff.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export interface Staff {
|
||||
}
|
||||
15
src/app/_models/token.ts
Normal file
15
src/app/_models/token.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
export interface Token {
|
||||
name: string;
|
||||
symbol: string;
|
||||
address: string;
|
||||
supply: string;
|
||||
decimals: string;
|
||||
reserves: {
|
||||
'0xa686005CE37Dce7738436256982C3903f2E4ea8E'?: {
|
||||
weight: string;
|
||||
balance: string;
|
||||
}
|
||||
};
|
||||
reserveRatio?: string;
|
||||
owner?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user