aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2017-06-02 01:47:22 +0800
committerFabio Berger <me@fabioberger.com>2017-06-02 01:47:22 +0800
commita1be87058536f5ab10c68c570c1b9994defe52b1 (patch)
tree935878b66d6588e4614efe32ac7052dcdb0bb447 /src/types.ts
parentc42877327e59f983a83c7221f1bec5b31addf5a7 (diff)
downloaddexon-0x-contracts-a1be87058536f5ab10c68c570c1b9994defe52b1.tar
dexon-0x-contracts-a1be87058536f5ab10c68c570c1b9994defe52b1.tar.gz
dexon-0x-contracts-a1be87058536f5ab10c68c570c1b9994defe52b1.tar.bz2
dexon-0x-contracts-a1be87058536f5ab10c68c570c1b9994defe52b1.tar.lz
dexon-0x-contracts-a1be87058536f5ab10c68c570c1b9994defe52b1.tar.xz
dexon-0x-contracts-a1be87058536f5ab10c68c570c1b9994defe52b1.tar.zst
dexon-0x-contracts-a1be87058536f5ab10c68c570c1b9994defe52b1.zip
Create a FillsScenario utils module and use it in the fillOrder tests
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/types.ts b/src/types.ts
index ad5d8fb17..f80f98dc4 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -138,3 +138,7 @@ export interface TxOpts {
from: string;
gas?: number;
}
+
+export interface TokenAddressBySymbol {
+ [symbol: string]: string;
+}