aboutsummaryrefslogtreecommitdiffstats
path: root/src/types.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-09-19 21:09:05 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-09-19 21:09:05 +0800
commit96d853fc4baecd0c10727539a32b04dadef73026 (patch)
tree1795d4713968d197965782d4f71960015e6f80ab /src/types.ts
parent0f942f95f0e8bed3db1bf0bc44b2b7f98c478d6b (diff)
downloaddexon-sol-tools-96d853fc4baecd0c10727539a32b04dadef73026.tar
dexon-sol-tools-96d853fc4baecd0c10727539a32b04dadef73026.tar.gz
dexon-sol-tools-96d853fc4baecd0c10727539a32b04dadef73026.tar.bz2
dexon-sol-tools-96d853fc4baecd0c10727539a32b04dadef73026.tar.lz
dexon-sol-tools-96d853fc4baecd0c10727539a32b04dadef73026.tar.xz
dexon-sol-tools-96d853fc4baecd0c10727539a32b04dadef73026.tar.zst
dexon-sol-tools-96d853fc4baecd0c10727539a32b04dadef73026.zip
Add a comment for ZeroExConfig type
Diffstat (limited to 'src/types.ts')
-rw-r--r--src/types.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/types.ts b/src/types.ts
index 9583d5bd4..b10d95adc 100644
--- a/src/types.ts
+++ b/src/types.ts
@@ -389,6 +389,12 @@ export interface JSONRPCPayload {
method: string;
}
+/*
+ * gasPirce: Gas price to use with every transaction
+ * exchangeContractAddress: The address of an exchange contract to use
+ * tokenRegistryContractAddress: The address of a token registry contract to use
+ * etherTokenContractAddress: The address of an ether token contract to use
+ */
export interface ZeroExConfig {
gasPrice?: BigNumber.BigNumber; // Gas price to use with every transaction
exchangeContractAddress?: string;