diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-02 17:23:39 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-06-02 17:23:39 +0800 |
commit | a740498c8061bc7a3dafae82929b358e61bac2d4 (patch) | |
tree | abf66a0df929cee19b356bde959fcb7ff3b92b79 /src/0x.js.ts | |
parent | f663a15c9b000d639bd0d58d0c177e6de9d47346 (diff) | |
download | dexon-sol-tools-a740498c8061bc7a3dafae82929b358e61bac2d4.tar dexon-sol-tools-a740498c8061bc7a3dafae82929b358e61bac2d4.tar.gz dexon-sol-tools-a740498c8061bc7a3dafae82929b358e61bac2d4.tar.bz2 dexon-sol-tools-a740498c8061bc7a3dafae82929b358e61bac2d4.tar.lz dexon-sol-tools-a740498c8061bc7a3dafae82929b358e61bac2d4.tar.xz dexon-sol-tools-a740498c8061bc7a3dafae82929b358e61bac2d4.tar.zst dexon-sol-tools-a740498c8061bc7a3dafae82929b358e61bac2d4.zip |
Introduce coinBase account
Add makerAccount parameter
Adjust tests
Add more assertions to success test
Diffstat (limited to 'src/0x.js.ts')
-rw-r--r-- | src/0x.js.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/0x.js.ts b/src/0x.js.ts index a613d5f48..6713ec885 100644 --- a/src/0x.js.ts +++ b/src/0x.js.ts @@ -124,6 +124,12 @@ export class ZeroEx { this.web3Wrapper.setDefaultAccount(account); } /** + * Gets default account for sending transactions. + */ + public getTransactionSenderAccount(): string { + return this.web3Wrapper.getDefaultAccount(); + } + /** * Computes the orderHash given the order parameters and returns it as a hex encoded string. */ public async getOrderHashHexAsync(order: Order): Promise<string> { |