3cc639c8d0
* WrappedFillFeature
* Address internal feedback
* create features/interfaces/ directory
* Split NativeOrdersFeature into mixins
* Rename mixins to use NativeOrders namespace
* Add BatchFillNativeOrdersFeature
* Rename WrapperFillFeature => MultiplexFeature and add natspec comments
* Emit LiquidityProviderSwap event
* post-rebase fixes
* Multiplex mainnet fork tests
* lint
* Add tests for batch fill functions
* Remove market functions
* Addres PR feedback
* Remove nested _batchFill calls from _multiHopFill
* Add BatchFillIncompleteRevertError type
* Use call{value: amount}() instead of transfer(amount)
* Remove outdated comment
* Update some comments
* Add events
* Address spot-check recommendations
* Remove-top level events, add ExpiredRfqOrder event
* Update changelog
* Change ExpiredRfqOrder event
* Update IZeroEx artifact and contract wrapper
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
export {
|
|
DummyERC20TokenContract,
|
|
DummyMultipleReturnERC20TokenContract,
|
|
DummyNoReturnERC20TokenContract,
|
|
WETH9Contract,
|
|
WETH9Events,
|
|
WETH9DepositEventArgs,
|
|
WETH9TransferEventArgs,
|
|
WETH9WithdrawalEventArgs,
|
|
ZRXTokenContract,
|
|
DummyERC20TokenTransferEventArgs,
|
|
ERC20TokenEventArgs,
|
|
ERC20TokenEvents,
|
|
ERC20TokenTransferEventArgs,
|
|
ERC20TokenApprovalEventArgs,
|
|
ERC20TokenContract,
|
|
} from './wrappers';
|
|
export { artifacts } from './artifacts';
|
|
export {
|
|
ContractArtifact,
|
|
ContractChains,
|
|
CompilerOpts,
|
|
StandardContractOutput,
|
|
CompilerSettings,
|
|
ContractChainData,
|
|
ContractAbi,
|
|
DevdocOutput,
|
|
EvmOutput,
|
|
CompilerSettingsMetadata,
|
|
OptimizerSettings,
|
|
OutputField,
|
|
ParamDescription,
|
|
EvmBytecodeOutput,
|
|
EvmBytecodeOutputLinkReferences,
|
|
AbiDefinition,
|
|
FunctionAbi,
|
|
EventAbi,
|
|
RevertErrorAbi,
|
|
EventParameter,
|
|
DataItem,
|
|
MethodAbi,
|
|
ConstructorAbi,
|
|
FallbackAbi,
|
|
ConstructorStateMutability,
|
|
TupleDataItem,
|
|
StateMutability,
|
|
} from 'ethereum-types';
|