Implement ERC20Wrapper and it's first method getBalanceAsync

This commit is contained in:
Fabio Berger
2017-05-30 09:52:31 +02:00
parent f3d5690d56
commit 6686443317
3 changed files with 37 additions and 0 deletions

View File

@@ -30,6 +30,12 @@ export interface ExchangeContract {
isValidSignature: any;
}
export interface ERC20Contract {
balanceOf: {
call: (address: string) => Promise<BigNumber.BigNumber>;
};
}
export interface TokenRegistryContract {
getTokenMetaData: any;
getTokenAddresses: any;