aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/asset-proxy/src/artifacts/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'contracts/asset-proxy/src/artifacts/index.ts')
-rw-r--r--contracts/asset-proxy/src/artifacts/index.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/contracts/asset-proxy/src/artifacts/index.ts b/contracts/asset-proxy/src/artifacts/index.ts
index 3ed8a453d..7f3060815 100644
--- a/contracts/asset-proxy/src/artifacts/index.ts
+++ b/contracts/asset-proxy/src/artifacts/index.ts
@@ -2,10 +2,16 @@ import { ContractArtifact } from 'ethereum-types';
import * as ERC20Proxy from '../../generated-artifacts/ERC20Proxy.json';
import * as ERC721Proxy from '../../generated-artifacts/ERC721Proxy.json';
+import * as IAssetData from '../../generated-artifacts/IAssetData.json';
+import * as IAssetProxy from '../../generated-artifacts/IAssetProxy.json';
+import * as IAuthorizable from '../../generated-artifacts/IAuthorizable.json';
import * as MixinAuthorizable from '../../generated-artifacts/MixinAuthorizable.json';
import * as MultiAssetProxy from '../../generated-artifacts/MultiAssetProxy.json';
export const artifacts = {
+ IAuthorizable: IAuthorizable as ContractArtifact,
+ IAssetData: IAssetData as ContractArtifact,
+ IAssetProxy: IAssetProxy as ContractArtifact,
ERC20Proxy: ERC20Proxy as ContractArtifact,
ERC721Proxy: ERC721Proxy as ContractArtifact,
MixinAuthorizable: MixinAuthorizable as ContractArtifact,