diff options
author | Fabio Berger <me@fabioberger.com> | 2017-05-26 01:47:11 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2017-05-26 01:47:11 +0800 |
commit | bc8fc534332b5ea82f881bdd3a75773384714f4d (patch) | |
tree | 2e50db69032c0c5e8817db34f5a3db34ee088589 /src/ts/utils/utils.ts | |
parent | 74e7dc46b4ba8b3931a1cdf4dc7f55670219e324 (diff) | |
download | dexon-sol-tools-bc8fc534332b5ea82f881bdd3a75773384714f4d.tar dexon-sol-tools-bc8fc534332b5ea82f881bdd3a75773384714f4d.tar.gz dexon-sol-tools-bc8fc534332b5ea82f881bdd3a75773384714f4d.tar.bz2 dexon-sol-tools-bc8fc534332b5ea82f881bdd3a75773384714f4d.tar.lz dexon-sol-tools-bc8fc534332b5ea82f881bdd3a75773384714f4d.tar.xz dexon-sol-tools-bc8fc534332b5ea82f881bdd3a75773384714f4d.tar.zst dexon-sol-tools-bc8fc534332b5ea82f881bdd3a75773384714f4d.zip |
Add initial exchange contract function, set up web3Wrapper, added types and utils
Diffstat (limited to 'src/ts/utils/utils.ts')
-rw-r--r-- | src/ts/utils/utils.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ts/utils/utils.ts b/src/ts/utils/utils.ts new file mode 100644 index 000000000..893f82ca3 --- /dev/null +++ b/src/ts/utils/utils.ts @@ -0,0 +1,7 @@ +export const utils = { + consoleLog(message: string) { + /* tslint:disable */ + console.log(message); + /* tslint:enable */ + }, +}; |