@0x/contracts-exchange: Run contracts:gen
This commit is contained in:
committed by
Amir Bandeali
parent
f6d445b553
commit
4791c120fe
@@ -28,13 +28,13 @@
|
|||||||
"examples/Whitelist.sol",
|
"examples/Whitelist.sol",
|
||||||
"src/Exchange.sol",
|
"src/Exchange.sol",
|
||||||
"src/interfaces/IAssetProxyDispatcher.sol",
|
"src/interfaces/IAssetProxyDispatcher.sol",
|
||||||
|
"src/interfaces/IEIP1271Wallet.sol",
|
||||||
"src/interfaces/IExchange.sol",
|
"src/interfaces/IExchange.sol",
|
||||||
"src/interfaces/IExchangeCore.sol",
|
"src/interfaces/IExchangeCore.sol",
|
||||||
"src/interfaces/IMatchOrders.sol",
|
"src/interfaces/IMatchOrders.sol",
|
||||||
"src/interfaces/ISignatureValidator.sol",
|
"src/interfaces/ISignatureValidator.sol",
|
||||||
"src/interfaces/ITransactions.sol",
|
"src/interfaces/ITransactions.sol",
|
||||||
"src/interfaces/IWallet.sol",
|
"src/interfaces/IWallet.sol",
|
||||||
"src/interfaces/IEIP1271Wallet.sol",
|
|
||||||
"src/interfaces/IWrapperFunctions.sol",
|
"src/interfaces/IWrapperFunctions.sol",
|
||||||
"test/ReentrantERC20Token.sol",
|
"test/ReentrantERC20Token.sol",
|
||||||
"test/TestAssetProxyDispatcher.sol",
|
"test/TestAssetProxyDispatcher.sol",
|
||||||
|
|||||||
@@ -34,7 +34,7 @@
|
|||||||
"lint-contracts": "solhint -c ../.solhint.json contracts/**/**/**/**/*.sol"
|
"lint-contracts": "solhint -c ../.solhint.json contracts/**/**/**/**/*.sol"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"abis": "./generated-artifacts/@(Exchange|ExchangeWrapper|IAssetProxyDispatcher|IExchange|IExchangeCore|IMatchOrders|IOrderValidator|ISignatureValidator|ITransactions|IValidator|IWallet|IWrapperFunctions|ReentrantERC20Token|TestAssetProxyDispatcher|TestExchangeInternals|TestLibExchangeRichErrorDecoder|TestSignatureValidator|TestValidatorWallet|Whitelist).json",
|
"abis": "./generated-artifacts/@(Exchange|ExchangeWrapper|IAssetProxyDispatcher|IEIP1271Wallet|IExchange|IExchangeCore|IMatchOrders|ISignatureValidator|ITransactions|IWallet|IWrapperFunctions|ReentrantERC20Token|TestAssetProxyDispatcher|TestExchangeInternals|TestLibExchangeRichErrorDecoder|TestSignatureValidator|TestValidatorWallet|Whitelist).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": {
|
||||||
|
|||||||
@@ -8,13 +8,12 @@ import { ContractArtifact } from 'ethereum-types';
|
|||||||
import * as Exchange from '../generated-artifacts/Exchange.json';
|
import * as Exchange from '../generated-artifacts/Exchange.json';
|
||||||
import * as ExchangeWrapper from '../generated-artifacts/ExchangeWrapper.json';
|
import * as ExchangeWrapper from '../generated-artifacts/ExchangeWrapper.json';
|
||||||
import * as IAssetProxyDispatcher from '../generated-artifacts/IAssetProxyDispatcher.json';
|
import * as IAssetProxyDispatcher from '../generated-artifacts/IAssetProxyDispatcher.json';
|
||||||
|
import * as IEIP1271Wallet from '../generated-artifacts/IEIP1271Wallet.json';
|
||||||
import * as IExchange from '../generated-artifacts/IExchange.json';
|
import * as IExchange from '../generated-artifacts/IExchange.json';
|
||||||
import * as IExchangeCore from '../generated-artifacts/IExchangeCore.json';
|
import * as IExchangeCore from '../generated-artifacts/IExchangeCore.json';
|
||||||
import * as IMatchOrders from '../generated-artifacts/IMatchOrders.json';
|
import * as IMatchOrders from '../generated-artifacts/IMatchOrders.json';
|
||||||
import * as IOrderValidator from '../generated-artifacts/IOrderValidator.json';
|
|
||||||
import * as ISignatureValidator from '../generated-artifacts/ISignatureValidator.json';
|
import * as ISignatureValidator from '../generated-artifacts/ISignatureValidator.json';
|
||||||
import * as ITransactions from '../generated-artifacts/ITransactions.json';
|
import * as ITransactions from '../generated-artifacts/ITransactions.json';
|
||||||
import * as IValidator from '../generated-artifacts/IValidator.json';
|
|
||||||
import * as IWallet from '../generated-artifacts/IWallet.json';
|
import * as IWallet from '../generated-artifacts/IWallet.json';
|
||||||
import * as IWrapperFunctions from '../generated-artifacts/IWrapperFunctions.json';
|
import * as IWrapperFunctions from '../generated-artifacts/IWrapperFunctions.json';
|
||||||
import * as ReentrantERC20Token from '../generated-artifacts/ReentrantERC20Token.json';
|
import * as ReentrantERC20Token from '../generated-artifacts/ReentrantERC20Token.json';
|
||||||
@@ -32,11 +31,10 @@ export const artifacts = {
|
|||||||
IExchange: IExchange as ContractArtifact,
|
IExchange: IExchange as ContractArtifact,
|
||||||
IExchangeCore: IExchangeCore as ContractArtifact,
|
IExchangeCore: IExchangeCore as ContractArtifact,
|
||||||
IMatchOrders: IMatchOrders as ContractArtifact,
|
IMatchOrders: IMatchOrders as ContractArtifact,
|
||||||
IOrderValidator: IOrderValidator as ContractArtifact,
|
|
||||||
ISignatureValidator: ISignatureValidator as ContractArtifact,
|
ISignatureValidator: ISignatureValidator as ContractArtifact,
|
||||||
ITransactions: ITransactions as ContractArtifact,
|
ITransactions: ITransactions as ContractArtifact,
|
||||||
IValidator: IValidator as ContractArtifact,
|
|
||||||
IWallet: IWallet as ContractArtifact,
|
IWallet: IWallet as ContractArtifact,
|
||||||
|
IEIP1271Wallet: IEIP1271Wallet as ContractArtifact,
|
||||||
IWrapperFunctions: IWrapperFunctions as ContractArtifact,
|
IWrapperFunctions: IWrapperFunctions as ContractArtifact,
|
||||||
ReentrantERC20Token: ReentrantERC20Token as ContractArtifact,
|
ReentrantERC20Token: ReentrantERC20Token as ContractArtifact,
|
||||||
TestAssetProxyDispatcher: TestAssetProxyDispatcher as ContractArtifact,
|
TestAssetProxyDispatcher: TestAssetProxyDispatcher as ContractArtifact,
|
||||||
|
|||||||
@@ -6,13 +6,12 @@
|
|||||||
export * from '../generated-wrappers/exchange';
|
export * from '../generated-wrappers/exchange';
|
||||||
export * from '../generated-wrappers/exchange_wrapper';
|
export * from '../generated-wrappers/exchange_wrapper';
|
||||||
export * from '../generated-wrappers/i_asset_proxy_dispatcher';
|
export * from '../generated-wrappers/i_asset_proxy_dispatcher';
|
||||||
|
export * from '../generated-wrappers/i_e_i_p1271_wallet';
|
||||||
export * from '../generated-wrappers/i_exchange';
|
export * from '../generated-wrappers/i_exchange';
|
||||||
export * from '../generated-wrappers/i_exchange_core';
|
export * from '../generated-wrappers/i_exchange_core';
|
||||||
export * from '../generated-wrappers/i_match_orders';
|
export * from '../generated-wrappers/i_match_orders';
|
||||||
export * from '../generated-wrappers/i_order_validator';
|
|
||||||
export * from '../generated-wrappers/i_signature_validator';
|
export * from '../generated-wrappers/i_signature_validator';
|
||||||
export * from '../generated-wrappers/i_transactions';
|
export * from '../generated-wrappers/i_transactions';
|
||||||
export * from '../generated-wrappers/i_validator';
|
|
||||||
export * from '../generated-wrappers/i_wallet';
|
export * from '../generated-wrappers/i_wallet';
|
||||||
export * from '../generated-wrappers/i_wrapper_functions';
|
export * from '../generated-wrappers/i_wrapper_functions';
|
||||||
export * from '../generated-wrappers/reentrant_erc20_token';
|
export * from '../generated-wrappers/reentrant_erc20_token';
|
||||||
|
|||||||
@@ -6,13 +6,12 @@
|
|||||||
"generated-artifacts/Exchange.json",
|
"generated-artifacts/Exchange.json",
|
||||||
"generated-artifacts/ExchangeWrapper.json",
|
"generated-artifacts/ExchangeWrapper.json",
|
||||||
"generated-artifacts/IAssetProxyDispatcher.json",
|
"generated-artifacts/IAssetProxyDispatcher.json",
|
||||||
|
"generated-artifacts/IEIP1271Wallet.json",
|
||||||
"generated-artifacts/IExchange.json",
|
"generated-artifacts/IExchange.json",
|
||||||
"generated-artifacts/IExchangeCore.json",
|
"generated-artifacts/IExchangeCore.json",
|
||||||
"generated-artifacts/IMatchOrders.json",
|
"generated-artifacts/IMatchOrders.json",
|
||||||
"generated-artifacts/IOrderValidator.json",
|
|
||||||
"generated-artifacts/ISignatureValidator.json",
|
"generated-artifacts/ISignatureValidator.json",
|
||||||
"generated-artifacts/ITransactions.json",
|
"generated-artifacts/ITransactions.json",
|
||||||
"generated-artifacts/IValidator.json",
|
|
||||||
"generated-artifacts/IWallet.json",
|
"generated-artifacts/IWallet.json",
|
||||||
"generated-artifacts/IWrapperFunctions.json",
|
"generated-artifacts/IWrapperFunctions.json",
|
||||||
"generated-artifacts/ReentrantERC20Token.json",
|
"generated-artifacts/ReentrantERC20Token.json",
|
||||||
|
|||||||
Reference in New Issue
Block a user