diff --git a/contracts/exchange-forwarder/package.json b/contracts/exchange-forwarder/package.json index 67b6ba6fa7..1852d1451a 100644 --- a/contracts/exchange-forwarder/package.json +++ b/contracts/exchange-forwarder/package.json @@ -39,7 +39,7 @@ }, "config": { "publicInterfaceContracts": "Forwarder", - "abis": "./test/generated-artifacts/@(Forwarder|IAssets|IForwarder|IForwarderCore|LibConstants|LibForwarderRichErrors|MixinAssets|MixinExchangeWrapper|MixinForwarderCore|MixinWeth|TestForwarder).json", + "abis": "./test/generated-artifacts/@(Forwarder|IAssets|IExchangeV2|IForwarder|IForwarderCore|LibConstants|LibForwarderRichErrors|MixinAssets|MixinExchangeWrapper|MixinForwarderCore|MixinWeth|TestForwarder).json", "abis:comment": "This list is auto-generated by contracts-gen. Don't edit manually." }, "repository": { diff --git a/contracts/exchange-forwarder/test/artifacts.ts b/contracts/exchange-forwarder/test/artifacts.ts index 4aee7980bd..f1ca2b9d64 100644 --- a/contracts/exchange-forwarder/test/artifacts.ts +++ b/contracts/exchange-forwarder/test/artifacts.ts @@ -7,6 +7,7 @@ import { ContractArtifact } from 'ethereum-types'; import * as Forwarder from '../test/generated-artifacts/Forwarder.json'; import * as IAssets from '../test/generated-artifacts/IAssets.json'; +import * as IExchangeV2 from '../test/generated-artifacts/IExchangeV2.json'; import * as IForwarder from '../test/generated-artifacts/IForwarder.json'; import * as IForwarderCore from '../test/generated-artifacts/IForwarderCore.json'; import * as LibConstants from '../test/generated-artifacts/LibConstants.json'; @@ -23,6 +24,7 @@ export const artifacts = { MixinForwarderCore: MixinForwarderCore as ContractArtifact, MixinWeth: MixinWeth as ContractArtifact, IAssets: IAssets as ContractArtifact, + IExchangeV2: IExchangeV2 as ContractArtifact, IForwarder: IForwarder as ContractArtifact, IForwarderCore: IForwarderCore as ContractArtifact, LibConstants: LibConstants as ContractArtifact, diff --git a/contracts/exchange-forwarder/test/wrappers.ts b/contracts/exchange-forwarder/test/wrappers.ts index 22b048ce75..68dfe360b0 100644 --- a/contracts/exchange-forwarder/test/wrappers.ts +++ b/contracts/exchange-forwarder/test/wrappers.ts @@ -5,6 +5,7 @@ */ export * from '../test/generated-wrappers/forwarder'; export * from '../test/generated-wrappers/i_assets'; +export * from '../test/generated-wrappers/i_exchange_v2'; export * from '../test/generated-wrappers/i_forwarder'; export * from '../test/generated-wrappers/i_forwarder_core'; export * from '../test/generated-wrappers/lib_constants'; diff --git a/contracts/exchange-forwarder/tsconfig.json b/contracts/exchange-forwarder/tsconfig.json index 94a8af37fc..9ebde3a67c 100644 --- a/contracts/exchange-forwarder/tsconfig.json +++ b/contracts/exchange-forwarder/tsconfig.json @@ -6,6 +6,7 @@ "generated-artifacts/Forwarder.json", "test/generated-artifacts/Forwarder.json", "test/generated-artifacts/IAssets.json", + "test/generated-artifacts/IExchangeV2.json", "test/generated-artifacts/IForwarder.json", "test/generated-artifacts/IForwarderCore.json", "test/generated-artifacts/LibConstants.json",