Update TS boilerplate
This commit is contained in:
parent
fe9fc6b459
commit
c7c8a4891f
@ -39,7 +39,7 @@
|
|||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"publicInterfaceContracts": "Forwarder",
|
"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."
|
"abis:comment": "This list is auto-generated by contracts-gen. Don't edit manually."
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -7,6 +7,7 @@ import { ContractArtifact } from 'ethereum-types';
|
|||||||
|
|
||||||
import * as Forwarder from '../test/generated-artifacts/Forwarder.json';
|
import * as Forwarder from '../test/generated-artifacts/Forwarder.json';
|
||||||
import * as IAssets from '../test/generated-artifacts/IAssets.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 IForwarder from '../test/generated-artifacts/IForwarder.json';
|
||||||
import * as IForwarderCore from '../test/generated-artifacts/IForwarderCore.json';
|
import * as IForwarderCore from '../test/generated-artifacts/IForwarderCore.json';
|
||||||
import * as LibConstants from '../test/generated-artifacts/LibConstants.json';
|
import * as LibConstants from '../test/generated-artifacts/LibConstants.json';
|
||||||
@ -23,6 +24,7 @@ export const artifacts = {
|
|||||||
MixinForwarderCore: MixinForwarderCore as ContractArtifact,
|
MixinForwarderCore: MixinForwarderCore as ContractArtifact,
|
||||||
MixinWeth: MixinWeth as ContractArtifact,
|
MixinWeth: MixinWeth as ContractArtifact,
|
||||||
IAssets: IAssets as ContractArtifact,
|
IAssets: IAssets as ContractArtifact,
|
||||||
|
IExchangeV2: IExchangeV2 as ContractArtifact,
|
||||||
IForwarder: IForwarder as ContractArtifact,
|
IForwarder: IForwarder as ContractArtifact,
|
||||||
IForwarderCore: IForwarderCore as ContractArtifact,
|
IForwarderCore: IForwarderCore as ContractArtifact,
|
||||||
LibConstants: LibConstants as ContractArtifact,
|
LibConstants: LibConstants as ContractArtifact,
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
*/
|
*/
|
||||||
export * from '../test/generated-wrappers/forwarder';
|
export * from '../test/generated-wrappers/forwarder';
|
||||||
export * from '../test/generated-wrappers/i_assets';
|
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';
|
||||||
export * from '../test/generated-wrappers/i_forwarder_core';
|
export * from '../test/generated-wrappers/i_forwarder_core';
|
||||||
export * from '../test/generated-wrappers/lib_constants';
|
export * from '../test/generated-wrappers/lib_constants';
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
"generated-artifacts/Forwarder.json",
|
"generated-artifacts/Forwarder.json",
|
||||||
"test/generated-artifacts/Forwarder.json",
|
"test/generated-artifacts/Forwarder.json",
|
||||||
"test/generated-artifacts/IAssets.json",
|
"test/generated-artifacts/IAssets.json",
|
||||||
|
"test/generated-artifacts/IExchangeV2.json",
|
||||||
"test/generated-artifacts/IForwarder.json",
|
"test/generated-artifacts/IForwarder.json",
|
||||||
"test/generated-artifacts/IForwarderCore.json",
|
"test/generated-artifacts/IForwarderCore.json",
|
||||||
"test/generated-artifacts/LibConstants.json",
|
"test/generated-artifacts/LibConstants.json",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user