aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/src/artifacts.ts
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2017-11-23 06:19:06 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2017-11-24 05:13:37 +0800
commit010e6f8d7f7403cb91c020fc501fdb4f59861c58 (patch)
tree7f854bbf95efed9688f144943df7a8c326c3c65e /packages/0x.js/src/artifacts.ts
parent3d5b6ec110e32f670920a88939a250479651bb5a (diff)
downloaddexon-sol-tools-010e6f8d7f7403cb91c020fc501fdb4f59861c58.tar
dexon-sol-tools-010e6f8d7f7403cb91c020fc501fdb4f59861c58.tar.gz
dexon-sol-tools-010e6f8d7f7403cb91c020fc501fdb4f59861c58.tar.bz2
dexon-sol-tools-010e6f8d7f7403cb91c020fc501fdb4f59861c58.tar.lz
dexon-sol-tools-010e6f8d7f7403cb91c020fc501fdb4f59861c58.tar.xz
dexon-sol-tools-010e6f8d7f7403cb91c020fc501fdb4f59861c58.tar.zst
dexon-sol-tools-010e6f8d7f7403cb91c020fc501fdb4f59861c58.zip
Fix the imports order
Diffstat (limited to 'packages/0x.js/src/artifacts.ts')
-rw-r--r--packages/0x.js/src/artifacts.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/0x.js/src/artifacts.ts b/packages/0x.js/src/artifacts.ts
index 93b11a959..de2030812 100644
--- a/packages/0x.js/src/artifacts.ts
+++ b/packages/0x.js/src/artifacts.ts
@@ -1,10 +1,10 @@
-import {Artifact} from './types';
-import * as ZRXArtifact from './artifacts/ZRX.json';
-import * as TokenArtifact from './artifacts/Token.json';
-import * as ExchangeArtifact from './artifacts/Exchange.json';
import * as EtherTokenArtifact from './artifacts/EtherToken.json';
+import * as ExchangeArtifact from './artifacts/Exchange.json';
+import * as TokenArtifact from './artifacts/Token.json';
import * as TokenRegistryArtifact from './artifacts/TokenRegistry.json';
import * as TokenTransferProxyArtifact from './artifacts/TokenTransferProxy.json';
+import * as ZRXArtifact from './artifacts/ZRX.json';
+import {Artifact} from './types';
export const artifacts = {
ZRXArtifact: ZRXArtifact as any as Artifact,