Skip to content

Commit

Permalink
FIN-809 #comment update types
Browse files Browse the repository at this point in the history
  • Loading branch information
cliff0412 committed Jan 28, 2019
1 parent 44085b1 commit 1808dd2
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,19 @@ export interface IEsplanadeStates {
}

export interface IEsplanadeAddresses {
[role: string]: {
moderator: {
address: string;
balance: number;
};
candidate: {
address: string;
balance: number;
};
poolAddrs: {
cold: Array<{address: string; balance: number}>;
hot: Array<{address: string; balance: number}>;
custodian: Array<{address: string; balance: number}>;
otherContract: Array<{address: string; balance: number}>;
}
}

Expand Down

0 comments on commit 1808dd2

Please sign in to comment.