* 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>
54 lines
3.3 KiB
TypeScript
54 lines
3.3 KiB
TypeScript
/*
|
|
* -----------------------------------------------------------------------------
|
|
* Warning: This file is auto-generated by contracts-gen. Don't edit manually.
|
|
* -----------------------------------------------------------------------------
|
|
*/
|
|
import { ContractArtifact } from 'ethereum-types';
|
|
|
|
import * as AffiliateFeeTransformer from '../generated-artifacts/AffiliateFeeTransformer.json';
|
|
import * as BridgeAdapter from '../generated-artifacts/BridgeAdapter.json';
|
|
import * as FillQuoteTransformer from '../generated-artifacts/FillQuoteTransformer.json';
|
|
import * as FullMigration from '../generated-artifacts/FullMigration.json';
|
|
import * as IAllowanceTarget from '../generated-artifacts/IAllowanceTarget.json';
|
|
import * as IERC20Transformer from '../generated-artifacts/IERC20Transformer.json';
|
|
import * as IFlashWallet from '../generated-artifacts/IFlashWallet.json';
|
|
import * as InitialMigration from '../generated-artifacts/InitialMigration.json';
|
|
import * as IOwnable from '../generated-artifacts/IOwnable.json';
|
|
import * as ISimpleFunctionRegistry from '../generated-artifacts/ISimpleFunctionRegistry.json';
|
|
import * as ITokenSpender from '../generated-artifacts/ITokenSpender.json';
|
|
import * as ITransformERC20 from '../generated-artifacts/ITransformERC20.json';
|
|
import * as IZeroEx from '../generated-artifacts/IZeroEx.json';
|
|
import * as MetaTransactions from '../generated-artifacts/MetaTransactions.json';
|
|
import * as Ownable from '../generated-artifacts/Ownable.json';
|
|
import * as PayTakerTransformer from '../generated-artifacts/PayTakerTransformer.json';
|
|
import * as SignatureValidator from '../generated-artifacts/SignatureValidator.json';
|
|
import * as SimpleFunctionRegistry from '../generated-artifacts/SimpleFunctionRegistry.json';
|
|
import * as TokenSpender from '../generated-artifacts/TokenSpender.json';
|
|
import * as TransformERC20 from '../generated-artifacts/TransformERC20.json';
|
|
import * as WethTransformer from '../generated-artifacts/WethTransformer.json';
|
|
import * as ZeroEx from '../generated-artifacts/ZeroEx.json';
|
|
export const artifacts = {
|
|
IZeroEx: IZeroEx as ContractArtifact,
|
|
ZeroEx: ZeroEx as ContractArtifact,
|
|
FullMigration: FullMigration as ContractArtifact,
|
|
InitialMigration: InitialMigration as ContractArtifact,
|
|
IFlashWallet: IFlashWallet as ContractArtifact,
|
|
IAllowanceTarget: IAllowanceTarget as ContractArtifact,
|
|
IERC20Transformer: IERC20Transformer as ContractArtifact,
|
|
IOwnable: IOwnable as ContractArtifact,
|
|
ISimpleFunctionRegistry: ISimpleFunctionRegistry as ContractArtifact,
|
|
ITokenSpender: ITokenSpender as ContractArtifact,
|
|
ITransformERC20: ITransformERC20 as ContractArtifact,
|
|
FillQuoteTransformer: FillQuoteTransformer as ContractArtifact,
|
|
PayTakerTransformer: PayTakerTransformer as ContractArtifact,
|
|
WethTransformer: WethTransformer as ContractArtifact,
|
|
Ownable: Ownable as ContractArtifact,
|
|
SimpleFunctionRegistry: SimpleFunctionRegistry as ContractArtifact,
|
|
TransformERC20: TransformERC20 as ContractArtifact,
|
|
TokenSpender: TokenSpender as ContractArtifact,
|
|
AffiliateFeeTransformer: AffiliateFeeTransformer as ContractArtifact,
|
|
SignatureValidator: SignatureValidator as ContractArtifact,
|
|
MetaTransactions: MetaTransactions as ContractArtifact,
|
|
BridgeAdapter: BridgeAdapter as ContractArtifact,
|
|
};
|