aboutsummaryrefslogtreecommitdiffstats
path: root/packages/fill-scenarios
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-05-11 21:23:50 +0800
committerFabio Berger <me@fabioberger.com>2018-05-11 21:23:50 +0800
commit657dc785ea0d0010f3186a820604441d12f91808 (patch)
tree8f7e149686df3f741a81cfc549c2b4ee502a2fa1 /packages/fill-scenarios
parent461e74d8be17b0a1582e7c11de01b43a45399fcc (diff)
downloaddexon-sol-tools-657dc785ea0d0010f3186a820604441d12f91808.tar
dexon-sol-tools-657dc785ea0d0010f3186a820604441d12f91808.tar.gz
dexon-sol-tools-657dc785ea0d0010f3186a820604441d12f91808.tar.bz2
dexon-sol-tools-657dc785ea0d0010f3186a820604441d12f91808.tar.lz
dexon-sol-tools-657dc785ea0d0010f3186a820604441d12f91808.tar.xz
dexon-sol-tools-657dc785ea0d0010f3186a820604441d12f91808.tar.zst
dexon-sol-tools-657dc785ea0d0010f3186a820604441d12f91808.zip
Get networkId from web3Wrapper
Diffstat (limited to 'packages/fill-scenarios')
-rw-r--r--packages/fill-scenarios/src/constants.ts1
-rw-r--r--packages/fill-scenarios/src/index.ts5
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/fill-scenarios/src/constants.ts b/packages/fill-scenarios/src/constants.ts
index 0cd3d607a..ec2fe744a 100644
--- a/packages/fill-scenarios/src/constants.ts
+++ b/packages/fill-scenarios/src/constants.ts
@@ -1,4 +1,3 @@
export const constants = {
NULL_ADDRESS: '0x0000000000000000000000000000000000000000',
- TEST_RPC_NETWORK_ID: 50,
};
diff --git a/packages/fill-scenarios/src/index.ts b/packages/fill-scenarios/src/index.ts
index 0c62ef410..8c7fa500e 100644
--- a/packages/fill-scenarios/src/index.ts
+++ b/packages/fill-scenarios/src/index.ts
@@ -234,9 +234,10 @@ export class FillScenarios {
this._web3Wrapper.getProvider(),
this._web3Wrapper.getContractDefaults(),
);
- const networkArtifactsIfExists = artifacts.TokenTransferProxy.networks[constants.TEST_RPC_NETWORK_ID];
+ const networkId = await this._web3Wrapper.getNetworkIdAsync();
+ const networkArtifactsIfExists = artifacts.TokenTransferProxy.networks[networkId];
if (_.isUndefined(networkArtifactsIfExists)) {
- throw new Error(`Did not find network artifacts for networkId: ${constants.TEST_RPC_NETWORK_ID}`);
+ throw new Error(`Did not find network artifacts for networkId: ${networkId}`);
}
const proxyAddress = networkArtifactsIfExists.address;
const oldMakerAllowance = await tokenInstance.allowance.callAsync(address, proxyAddress);