diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-18 21:55:26 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-09-18 21:55:26 +0800 |
commit | 504e7a25a5ee138941ca35d4aad1b63444e47033 (patch) | |
tree | c60208acd76a53cae30050ebd768d9fa0562f88e /src/contract_wrappers/exchange_wrapper.ts | |
parent | 8db90538a17a0458fba6d2ed8a8b51bf9edf0fa4 (diff) | |
download | dexon-sol-tools-504e7a25a5ee138941ca35d4aad1b63444e47033.tar dexon-sol-tools-504e7a25a5ee138941ca35d4aad1b63444e47033.tar.gz dexon-sol-tools-504e7a25a5ee138941ca35d4aad1b63444e47033.tar.bz2 dexon-sol-tools-504e7a25a5ee138941ca35d4aad1b63444e47033.tar.lz dexon-sol-tools-504e7a25a5ee138941ca35d4aad1b63444e47033.tar.xz dexon-sol-tools-504e7a25a5ee138941ca35d4aad1b63444e47033.tar.zst dexon-sol-tools-504e7a25a5ee138941ca35d4aad1b63444e47033.zip |
Make contract addresses configurable
Diffstat (limited to 'src/contract_wrappers/exchange_wrapper.ts')
-rw-r--r-- | src/contract_wrappers/exchange_wrapper.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/contract_wrappers/exchange_wrapper.ts b/src/contract_wrappers/exchange_wrapper.ts index 17e8095a4..2360f639d 100644 --- a/src/contract_wrappers/exchange_wrapper.ts +++ b/src/contract_wrappers/exchange_wrapper.ts @@ -56,6 +56,7 @@ export class ExchangeWrapper extends ContractWrapper { [ExchangeContractErrCodes.ERROR_FILL_TRUNCATION]: ExchangeContractErrs.OrderFillRoundingError, [ExchangeContractErrCodes.ERROR_FILL_BALANCE_ALLOWANCE]: ExchangeContractErrs.FillBalanceAllowanceError, }; + private _contractAddress?: string; private static _getOrderAddressesAndValues(order: Order): [OrderAddresses, OrderValues] { const orderAddresses: OrderAddresses = [ order.maker, @@ -74,11 +75,12 @@ export class ExchangeWrapper extends ContractWrapper { ]; return [orderAddresses, orderValues]; } - constructor(web3Wrapper: Web3Wrapper, tokenWrapper: TokenWrapper) { + constructor(web3Wrapper: Web3Wrapper, tokenWrapper: TokenWrapper, contractAddress?: string) { super(web3Wrapper); this._tokenWrapper = tokenWrapper; this._orderValidationUtils = new OrderValidationUtils(tokenWrapper, this); this._exchangeLogEventEmitters = []; + this._contractAddress = contractAddress; } /** * Returns the unavailable takerAmount of an order. Unavailable amount is defined as the total @@ -738,7 +740,7 @@ export class ExchangeWrapper extends ContractWrapper { return this._exchangeContractIfExists; } const contractInstance = await this._instantiateContractIfExistsAsync<ExchangeContract>( - artifacts.ExchangeArtifact, + artifacts.ExchangeArtifact, this._contractAddress, ); this._exchangeContractIfExists = contractInstance as ExchangeContract; return this._exchangeContractIfExists; |