aboutsummaryrefslogtreecommitdiffstats
path: root/src/contract_wrappers/proxy_wrapper.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/contract_wrappers/proxy_wrapper.ts')
-rw-r--r--src/contract_wrappers/proxy_wrapper.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/contract_wrappers/proxy_wrapper.ts b/src/contract_wrappers/proxy_wrapper.ts
index 9deed5231..c69ca7017 100644
--- a/src/contract_wrappers/proxy_wrapper.ts
+++ b/src/contract_wrappers/proxy_wrapper.ts
@@ -1,6 +1,6 @@
import * as _ from 'lodash';
import {ContractWrapper} from './contract_wrapper';
-import * as ProxyArtifacts from '../artifacts/Proxy.json';
+import * as TokenTransferProxyArtifacts from '../artifacts/TokenTransferProxy.json';
import {ProxyContract} from '../types';
/**
@@ -34,7 +34,7 @@ export class ProxyWrapper extends ContractWrapper {
if (!_.isUndefined(this._proxyContractIfExists)) {
return this._proxyContractIfExists;
}
- const contractInstance = await this._instantiateContractIfExistsAsync((ProxyArtifacts as any));
+ const contractInstance = await this._instantiateContractIfExistsAsync((TokenTransferProxyArtifacts as any));
this._proxyContractIfExists = contractInstance as ProxyContract;
return this._proxyContractIfExists;
}