aboutsummaryrefslogtreecommitdiffstats
path: root/src/web3_wrapper.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-06-02 17:23:39 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-06-02 17:23:39 +0800
commita740498c8061bc7a3dafae82929b358e61bac2d4 (patch)
treeabf66a0df929cee19b356bde959fcb7ff3b92b79 /src/web3_wrapper.ts
parentf663a15c9b000d639bd0d58d0c177e6de9d47346 (diff)
downloaddexon-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/web3_wrapper.ts')
-rw-r--r--src/web3_wrapper.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/web3_wrapper.ts b/src/web3_wrapper.ts
index c1263222a..900c127d5 100644
--- a/src/web3_wrapper.ts
+++ b/src/web3_wrapper.ts
@@ -17,6 +17,9 @@ export class Web3Wrapper {
public isAddress(address: string): boolean {
return this.web3.isAddress(address);
}
+ public getDefaultAccount(): string {
+ return this.web3.eth.defaultAccount;
+ }
public setDefaultAccount(address: string): void {
this.web3.eth.defaultAccount = address;
}