* feat: mStable * deploy and CHANGELOG * `@0x/contracts-utils`: Add more testnet addresses. * `@0x/contract-addresses`: Deply Mstable on testnets * `@0x/contract-addresses`: Remove testnet deployments of mStable :-) * move `erc20-bridge-sampler` into `asset-swapper` remove `DevUtils` dependency from sampler contract. * `@0x/asset-swapper`: Add ERC20BridgeSampler support for validating orders in maker fees denominated in non-maker assets. `@0x/asset-swapper`: Add tests for `NativeOrderSampler`. * `@0x/asset-swapper`: Return `0` sample if native order asset data is unsupported. * `@0x/asset-swapper`: Fix failing test. * feat: ExchangeProxy FQT fruit rollup (#2645) * feat: Optimize Bridges in ExchangeProxy * compile and most work * work around to trust the delecall contract * force allowances * Update Kyber/Eth2Dai bridges * Remove memory state where not required * cleanup * Combine Bridges into one adapter * mixins * refactor out ZeroExBridge * move out interface * comment out hacks * update migrations * remove simbot hacks * AdapterAddresses and mStable * Share constructor arg * fix migration * Remove whitespace * `@0x/contracts-zero-ex`: BridgeAdapter -- revert if bridge address is 0. * `@0x/contract-addresses`: Deploy FQT. Co-authored-by: Lawrence Forman <me@merklejerk.com> Co-authored-by: Lawrence Forman <lawrence@0xproject.com> * update ganache contract addresses * fix: asset-swapper empty batch call (#2669) * update ganache contract addresses * fix: asset-swapper prevent empty sampler batch call * add sampler to migrations * change migrations version * Use contract-wrappers and artifacts * remove extra data * remove deps, set sampler to NULL_ADDRESS * all the exports * noop sell rate too * update ganache contract addresses Co-authored-by: Lawrence Forman <me@merklejerk.com> Co-authored-by: Lawrence Forman <lawrence@0xproject.com>
71 lines
2.9 KiB
JSON
71 lines
2.9 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"lib": ["es2017", "dom", "esnext.asynciterable", "es2018.promise"],
|
|
"experimentalDecorators": true,
|
|
"downlevelIteration": true,
|
|
"noImplicitReturns": true,
|
|
"pretty": true,
|
|
"skipLibCheck": true,
|
|
"typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"],
|
|
"strict": true,
|
|
// These settings are required for TypeScript project references
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true
|
|
},
|
|
// These are not working right now
|
|
"exclude": ["./contracts/extensions/**/*"],
|
|
// The root of the project is just a list of references and does not contain
|
|
// any top-level TypeScript code.
|
|
"include": [],
|
|
"references": [
|
|
{ "path": "./contracts/asset-proxy" },
|
|
{ "path": "./contracts/erc20" },
|
|
{ "path": "./contracts/erc721" },
|
|
{ "path": "./contracts/exchange" },
|
|
{ "path": "./contracts/coordinator" },
|
|
{ "path": "./contracts/exchange-forwarder" },
|
|
{ "path": "./contracts/exchange-libs" },
|
|
// { "path": "./contracts/extensions" },
|
|
{ "path": "./contracts/multisig" },
|
|
{ "path": "./contracts/test-utils" },
|
|
{ "path": "./contracts/utils" },
|
|
{ "path": "./contracts/dev-utils" },
|
|
{ "path": "./contracts/integrations" },
|
|
{ "path": "./packages/0x.js" },
|
|
{ "path": "./packages/abi-gen" },
|
|
{ "path": "./packages/assert" },
|
|
{ "path": "./packages/asset-swapper" },
|
|
{ "path": "./packages/base-contract" },
|
|
{ "path": "./packages/connect" },
|
|
{ "path": "./packages/contract-addresses" },
|
|
{ "path": "./packages/contract-artifacts" },
|
|
{ "path": "./packages/contract-wrappers" },
|
|
{ "path": "./packages/contracts-gen" },
|
|
{ "path": "./packages/dev-utils" },
|
|
{ "path": "./packages/ethereum-types" },
|
|
{ "path": "./packages/json-schemas" },
|
|
{ "path": "./packages/migrations" },
|
|
{ "path": "./packages/monorepo-scripts" },
|
|
{ "path": "./packages/order-utils" },
|
|
{ "path": "./packages/sol-compiler" },
|
|
{ "path": "./packages/sol-coverage" },
|
|
{ "path": "./packages/sol-profiler" },
|
|
{ "path": "./packages/sol-trace" },
|
|
{ "path": "./packages/sol-tracing-utils" },
|
|
{ "path": "./packages/sol-resolver" },
|
|
{ "path": "./packages/sra-spec" },
|
|
{ "path": "./packages/subproviders" },
|
|
{ "path": "./packages/tslint-config" },
|
|
{ "path": "./packages/types" },
|
|
{ "path": "./packages/typescript-typings" },
|
|
{ "path": "./packages/utils" },
|
|
{ "path": "./packages/web3-wrapper" }
|
|
// Skipping instant because it only produces a UMD bundle
|
|
// which it uses webpack to create
|
|
// { "path": "./packages/instant" },
|
|
]
|
|
}
|