* fix bug in OrderTransferSimulationUtils causing failures for 721 assets * Patched the regression and added tests * Added regression test for fillable order * Created a test for in and out of process ganache * Split up DevUtils into two contracts * Updated migration * Remove the in and out of process ganache test * Fixed contract addresses * Appease linter * Addressed review comments and updated artifacts, wrappers, and snapshots * Fixed regression after refactor * Update DevUtils and libTransactionDecoder contracts on mainnet and testnets * Addressed @mzhu's review feedback * Addressed @hysz's review feedback * Updated devUtils address on testnets and mainnet after deployment Co-authored-by: mzhu25 <mchl.zhu.96@gmail.com> Co-authored-by: Fabio B <kandinsky454@protonmail.ch>
41 lines
1.4 KiB
JSON
41 lines
1.4 KiB
JSON
{
|
|
"extends": "../../tsconfig",
|
|
"compilerOptions": {
|
|
"outDir": "lib",
|
|
"rootDir": ".",
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["./src/**/*", "./test/**/*"],
|
|
"files": [
|
|
"./artifacts/AssetProxyOwner.json",
|
|
"./artifacts/DevUtils.json",
|
|
"./artifacts/DutchAuction.json",
|
|
"./artifacts/DummyERC20Token.json",
|
|
"./artifacts/DummyERC721Token.json",
|
|
"./artifacts/ERC1155Mintable.json",
|
|
"./artifacts/ERC20Proxy.json",
|
|
"./artifacts/ERC20Token.json",
|
|
"./artifacts/ERC721Proxy.json",
|
|
"./artifacts/ERC721Token.json",
|
|
"./artifacts/Exchange.json",
|
|
"./artifacts/Forwarder.json",
|
|
"./artifacts/LibTransactionDecoder.json",
|
|
"./artifacts/IAssetProxy.json",
|
|
"./artifacts/IValidator.json",
|
|
"./artifacts/IWallet.json",
|
|
"./artifacts/MultiAssetProxy.json",
|
|
"./artifacts/OrderValidator.json",
|
|
"./artifacts/WETH9.json",
|
|
"./artifacts/ZRXToken.json",
|
|
"./artifacts/CoordinatorRegistry.json",
|
|
"./artifacts/Coordinator.json",
|
|
"./artifacts/ERC1155Proxy.json",
|
|
"./artifacts/StaticCallProxy.json",
|
|
"./artifacts/Staking.json",
|
|
"./artifacts/StakingProxy.json",
|
|
"./artifacts/ZrxVault.json",
|
|
"./artifacts/ERC20BridgeProxy.json",
|
|
"./artifacts/IERC20BridgeSampler.json"
|
|
]
|
|
}
|