aboutsummaryrefslogtreecommitdiffstats
path: root/src/artifacts.ts
diff options
context:
space:
mode:
authorLeonid <logvinov.leon@gmail.com>2017-09-06 16:35:19 +0800
committerGitHub <noreply@github.com>2017-09-06 16:35:19 +0800
commit35c133caeda613121d7d90f3f1347ebdc8087d66 (patch)
tree6156865472010078a9f27b905bcaec7782f6521c /src/artifacts.ts
parent18a52a1ea758ee5640680f1097eba1ce9a9e81fc (diff)
parentf0a5ad2d2063fe8ba4682147ec2f73e2763b0275 (diff)
downloaddexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar
dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.gz
dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.bz2
dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.lz
dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.xz
dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.tar.zst
dexon-sol-tools-35c133caeda613121d7d90f3f1347ebdc8087d66.zip
Merge branch 'development' into fix/signature-verification
Diffstat (limited to 'src/artifacts.ts')
-rw-r--r--src/artifacts.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/artifacts.ts b/src/artifacts.ts
new file mode 100644
index 000000000..0c4627337
--- /dev/null
+++ b/src/artifacts.ts
@@ -0,0 +1,13 @@
+import * as TokenArtifact from './artifacts/Token.json';
+import * as ExchangeArtifact from './artifacts/Exchange.json';
+import * as EtherTokenArtifact from './artifacts/EtherToken.json';
+import * as TokenRegistryArtifact from './artifacts/TokenRegistry.json';
+import * as TokenTransferProxyArtifact from './artifacts/TokenTransferProxy.json';
+
+export const artifacts = {
+ TokenArtifact: TokenArtifact as any as Artifact,
+ ExchangeArtifact: ExchangeArtifact as any as Artifact,
+ EtherTokenArtifact: EtherTokenArtifact as any as Artifact,
+ TokenRegistryArtifact: TokenRegistryArtifact as any as Artifact,
+ TokenTransferProxyArtifact: TokenTransferProxyArtifact as any as Artifact,
+};