diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-12-05 18:19:10 +0800 |
---|---|---|
committer | Fred Carlsen <fred@sjelfull.no> | 2018-12-13 01:19:06 +0800 |
commit | 9365a3bc753a4351ead3159cdecc431096529a2b (patch) | |
tree | 451277b10db79a8ebb3f0263f8007822896997b9 /contracts/core/src/artifacts | |
parent | 363095f2fe3db4caad63790fb4b5c9ec8d64043f (diff) | |
download | dexon-0x-contracts-9365a3bc753a4351ead3159cdecc431096529a2b.tar.gz dexon-0x-contracts-9365a3bc753a4351ead3159cdecc431096529a2b.tar.zst dexon-0x-contracts-9365a3bc753a4351ead3159cdecc431096529a2b.zip |
Refactor our protocol interfaces into @0x/contracts-interfaces
Diffstat (limited to 'contracts/core/src/artifacts')
-rw-r--r-- | contracts/core/src/artifacts/index.ts | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/contracts/core/src/artifacts/index.ts b/contracts/core/src/artifacts/index.ts index d578c36fe..1d868bae2 100644 --- a/contracts/core/src/artifacts/index.ts +++ b/contracts/core/src/artifacts/index.ts @@ -14,11 +14,7 @@ import * as ERC721Token from '../../generated-artifacts/ERC721Token.json'; import * as Exchange from '../../generated-artifacts/Exchange.json'; import * as ExchangeWrapper from '../../generated-artifacts/ExchangeWrapper.json'; import * as Forwarder from '../../generated-artifacts/Forwarder.json'; -import * as IAssetData from '../../generated-artifacts/IAssetData.json'; -import * as IAssetProxy from '../../generated-artifacts/IAssetProxy.json'; import * as InvalidERC721Receiver from '../../generated-artifacts/InvalidERC721Receiver.json'; -import * as IValidator from '../../generated-artifacts/IValidator.json'; -import * as IWallet from '../../generated-artifacts/IWallet.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'; @@ -49,10 +45,6 @@ export const artifacts = { Exchange: Exchange as ContractArtifact, ExchangeWrapper: ExchangeWrapper as ContractArtifact, Forwarder: Forwarder as ContractArtifact, - IAssetData: IAssetData as ContractArtifact, - IAssetProxy: IAssetProxy as ContractArtifact, - IValidator: IValidator as ContractArtifact, - IWallet: IWallet as ContractArtifact, InvalidERC721Receiver: InvalidERC721Receiver as ContractArtifact, MixinAuthorizable: MixinAuthorizable as ContractArtifact, MultiAssetProxy: MultiAssetProxy as ContractArtifact, |