diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-12 01:38:22 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-12 01:44:39 +0800 |
commit | 36736f82d4cb2dcaef550ea593ed38a12fcf213a (patch) | |
tree | 570b09086bf93218304cc4275f6506e48885693b /contracts/protocol/src | |
parent | 7b72b0c7625af66e4d0ef302f6cb078eccf998f2 (diff) | |
download | dexon-sol-tools-36736f82d4cb2dcaef550ea593ed38a12fcf213a.tar dexon-sol-tools-36736f82d4cb2dcaef550ea593ed38a12fcf213a.tar.gz dexon-sol-tools-36736f82d4cb2dcaef550ea593ed38a12fcf213a.tar.bz2 dexon-sol-tools-36736f82d4cb2dcaef550ea593ed38a12fcf213a.tar.lz dexon-sol-tools-36736f82d4cb2dcaef550ea593ed38a12fcf213a.tar.xz dexon-sol-tools-36736f82d4cb2dcaef550ea593ed38a12fcf213a.tar.zst dexon-sol-tools-36736f82d4cb2dcaef550ea593ed38a12fcf213a.zip |
Move OrderValidator to the protocol package
Diffstat (limited to 'contracts/protocol/src')
-rw-r--r-- | contracts/protocol/src/artifacts/index.ts | 2 | ||||
-rw-r--r-- | contracts/protocol/src/wrappers/index.ts | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/contracts/protocol/src/artifacts/index.ts b/contracts/protocol/src/artifacts/index.ts index c5d12f10b..1d53ceb04 100644 --- a/contracts/protocol/src/artifacts/index.ts +++ b/contracts/protocol/src/artifacts/index.ts @@ -6,6 +6,7 @@ import * as ERC721Proxy from '../../generated-artifacts/ERC721Proxy.json'; import * as Exchange from '../../generated-artifacts/Exchange.json'; import * as MixinAuthorizable from '../../generated-artifacts/MixinAuthorizable.json'; import * as MultiAssetProxy from '../../generated-artifacts/MultiAssetProxy.json'; +import * as OrderValidator from '../../generated-artifacts/OrderValidator.json'; import * as TestAssetProxyDispatcher from '../../generated-artifacts/TestAssetProxyDispatcher.json'; import * as TestAssetProxyOwner from '../../generated-artifacts/TestAssetProxyOwner.json'; import * as TestExchangeInternals from '../../generated-artifacts/TestExchangeInternals.json'; @@ -19,6 +20,7 @@ export const artifacts = { Exchange: Exchange as ContractArtifact, MixinAuthorizable: MixinAuthorizable as ContractArtifact, MultiAssetProxy: MultiAssetProxy as ContractArtifact, + OrderValidator: OrderValidator as ContractArtifact, TestAssetProxyDispatcher: TestAssetProxyDispatcher as ContractArtifact, TestAssetProxyOwner: TestAssetProxyOwner as ContractArtifact, TestExchangeInternals: TestExchangeInternals as ContractArtifact, diff --git a/contracts/protocol/src/wrappers/index.ts b/contracts/protocol/src/wrappers/index.ts index 01b121054..ac951d269 100644 --- a/contracts/protocol/src/wrappers/index.ts +++ b/contracts/protocol/src/wrappers/index.ts @@ -3,6 +3,7 @@ export * from '../../generated-wrappers/erc20_proxy'; export * from '../../generated-wrappers/erc721_proxy'; export * from '../../generated-wrappers/exchange'; export * from '../../generated-wrappers/mixin_authorizable'; +export * from '../../generated-wrappers/order_validator'; export * from '../../generated-wrappers/test_asset_proxy_dispatcher'; export * from '../../generated-wrappers/test_asset_proxy_owner'; export * from '../../generated-wrappers/test_exchange_internals'; |