diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-19 21:09:05 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-19 21:09:05 +0800 |
commit | 96d853fc4baecd0c10727539a32b04dadef73026 (patch) | |
tree | 1795d4713968d197965782d4f71960015e6f80ab | |
parent | 0f942f95f0e8bed3db1bf0bc44b2b7f98c478d6b (diff) | |
download | dexon-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
-rw-r--r-- | src/types.ts | 6 |
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; |