diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-07-04 07:37:15 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-04 07:37:15 +0800 |
commit | 6d234c09afca0efd37a7e4f27d7881e09465b86d (patch) | |
tree | 7d5091d68bc1d12194b24f7a5b940deaddfd4199 /src/types.ts | |
parent | 5a8eb77ff0a6b00e4df5d933426e451c8ef09f7b (diff) | |
parent | 2892f45ab7fd4b2b3d57a3ce7775a738a00026cb (diff) | |
download | dexon-0x-contracts-6d234c09afca0efd37a7e4f27d7881e09465b86d.tar.gz dexon-0x-contracts-6d234c09afca0efd37a7e4f27d7881e09465b86d.tar.zst dexon-0x-contracts-6d234c09afca0efd37a7e4f27d7881e09465b86d.zip |
Merge branch 'master' into subscribe-token
Diffstat (limited to 'src/types.ts')
-rw-r--r-- | src/types.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/types.ts b/src/types.ts index 21352648a..fbd450eeb 100644 --- a/src/types.ts +++ b/src/types.ts @@ -151,6 +151,9 @@ export interface EtherTokenContract extends ContractInstance { } export interface ProxyContract extends ContractInstance { + getAuthorizedAddresses: { + call: () => Promise<string[]>; + }; authorized: { call: (address: string) => Promise<boolean>; }; |