Regenerate boilerplate
This commit is contained in:
parent
b15a6290a7
commit
f371e3c8d3
@ -38,7 +38,7 @@
|
|||||||
"docs:json": "typedoc --excludePrivate --excludeExternals --excludeProtected --ignoreCompilerErrors --target ES5 --tsconfig typedoc-tsconfig.json --json $JSON_FILE_PATH $PROJECT_FILES"
|
"docs:json": "typedoc --excludePrivate --excludeExternals --excludeProtected --ignoreCompilerErrors --target ES5 --tsconfig typedoc-tsconfig.json --json $JSON_FILE_PATH $PROJECT_FILES"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"publicInterfaceContracts": "Forwarder",
|
"publicInterfaceContracts": "Forwarder,IExchangeV2",
|
||||||
"abis": "./test/generated-artifacts/@(Forwarder|IAssets|IExchangeV2|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."
|
||||||
},
|
},
|
||||||
|
@ -6,4 +6,5 @@
|
|||||||
import { ContractArtifact } from 'ethereum-types';
|
import { ContractArtifact } from 'ethereum-types';
|
||||||
|
|
||||||
import * as Forwarder from '../generated-artifacts/Forwarder.json';
|
import * as Forwarder from '../generated-artifacts/Forwarder.json';
|
||||||
export const artifacts = { Forwarder: Forwarder as ContractArtifact };
|
import * as IExchangeV2 from '../generated-artifacts/IExchangeV2.json';
|
||||||
|
export const artifacts = { Forwarder: Forwarder as ContractArtifact, IExchangeV2: IExchangeV2 as ContractArtifact };
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
export { artifacts } from './artifacts';
|
export { artifacts } from './artifacts';
|
||||||
export { ForwarderContract } from './wrappers';
|
export { ForwarderContract, IExchangeV2Contract } from './wrappers';
|
||||||
export { ExchangeForwarderRevertErrors } from '@0x/utils';
|
export { ExchangeForwarderRevertErrors } from '@0x/utils';
|
||||||
export {
|
export {
|
||||||
ContractArtifact,
|
ContractArtifact,
|
||||||
|
@ -4,3 +4,4 @@
|
|||||||
* -----------------------------------------------------------------------------
|
* -----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
export * from '../generated-wrappers/forwarder';
|
export * from '../generated-wrappers/forwarder';
|
||||||
|
export * from '../generated-wrappers/i_exchange_v2';
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
"include": ["./src/**/*", "./test/**/*", "./generated-wrappers/**/*"],
|
"include": ["./src/**/*", "./test/**/*", "./generated-wrappers/**/*"],
|
||||||
"files": [
|
"files": [
|
||||||
"generated-artifacts/Forwarder.json",
|
"generated-artifacts/Forwarder.json",
|
||||||
|
"generated-artifacts/IExchangeV2.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/IExchangeV2.json",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user