¡El código fuente de este contrato está verificado!
Metadatos del Contrato
Compilador
0.8.9+commit.e5eed63a
Idioma
Solidity
Código Fuente del Contrato
Archivo 1 de 16: Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)pragmasolidity ^0.8.0;/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (address) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytescalldata) {
returnmsg.data;
}
}
Código Fuente del Contrato
Archivo 2 de 16: IERC1155.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/interfaceIERC1155isIERC165{
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/eventTransferSingle(addressindexed operator, addressindexedfrom, addressindexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/eventTransferBatch(addressindexed operator,
addressindexedfrom,
addressindexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/eventApprovalForAll(addressindexed account, addressindexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/eventURI(string value, uint256indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/functionbalanceOf(address account, uint256 id) externalviewreturns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/functionbalanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
externalviewreturns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/functionsetApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/functionisApprovedForAll(address account, address operator) externalviewreturns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 id,
uint256 amount,
bytescalldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/functionsafeBatchTransferFrom(addressfrom,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytescalldata data
) external;
}
Código Fuente del Contrato
Archivo 3 de 16: IERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)pragmasolidity ^0.8.0;/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/interfaceIERC165{
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/functionsupportsInterface(bytes4 interfaceId) externalviewreturns (bool);
}
Código Fuente del Contrato
Archivo 4 de 16: IERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)pragmasolidity ^0.8.0;/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/interfaceIERC20{
/**
* @dev Returns the amount of tokens in existence.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/functionbalanceOf(address account) externalviewreturns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/functiontransfer(address recipient, uint256 amount) externalreturns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/functionallowance(address owner, address spender) externalviewreturns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/functionapprove(address spender, uint256 amount) externalreturns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/functiontransferFrom(address sender,
address recipient,
uint256 amount
) externalreturns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/eventApproval(addressindexed owner, addressindexed spender, uint256 value);
}
Código Fuente del Contrato
Archivo 5 de 16: IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/interfaceIERC721isIERC165{
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/eventApproval(addressindexed owner, addressindexed approved, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/eventApprovalForAll(addressindexed owner, addressindexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/functionbalanceOf(address owner) externalviewreturns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functionownerOf(uint256 tokenId) externalviewreturns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/functiontransferFrom(addressfrom,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/functionapprove(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functiongetApproved(uint256 tokenId) externalviewreturns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/functionsetApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/functionisApprovedForAll(address owner, address operator) externalviewreturns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytescalldata data
) external;
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)pragmasolidity ^0.8.0;import"../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/abstractcontractOwnableisContext{
addressprivate _owner;
eventOwnershipTransferred(addressindexed previousOwner, addressindexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/functionowner() publicviewvirtualreturns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/modifieronlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/functionrenounceOwnership() publicvirtualonlyOwner{
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/functiontransferOwnership(address newOwner) publicvirtualonlyOwner{
require(newOwner !=address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/function_transferOwnership(address newOwner) internalvirtual{
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
Código Fuente del Contrato
Archivo 15 de 16: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol)pragmasolidity ^0.8.0;/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/abstractcontractReentrancyGuard{
// Booleans are more expensive than uint256 or any type that takes up a full// word because each write operation emits an extra SLOAD to first read the// slot's contents, replace the bits taken up by the boolean, and then write// back. This is the compiler's defense against contract upgrades and// pointer aliasing, and it cannot be disabled.// The values being non-zero value makes deployment a bit more expensive,// but in exchange the refund on every call to nonReentrant will be lower in// amount. Since refunds are capped to a percentage of the total// transaction's gas, it is best to keep them low in cases like this one, to// increase the likelihood of the full refund coming into effect.uint256privateconstant _NOT_ENTERED =1;
uint256privateconstant _ENTERED =2;
uint256private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/modifiernonReentrant() {
// On the first call to nonReentrant, _notEntered will be truerequire(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
Código Fuente del Contrato
Archivo 16 de 16: ReservoirV5_0_0.sol
// SPDX-License-Identifier: MITpragmasolidity ^0.8.9;import {Ownable} from"@openzeppelin/contracts/access/Ownable.sol";
import {ReentrancyGuard} from"@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {IERC20} from"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IERC721} from"@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {IERC1155} from"@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import {ExchangeKind} from"./interfaces/IExchangeKind.sol";
import {IWETH} from"./interfaces/IWETH.sol";
import {IFoundation} from"./interfaces/IFoundation.sol";
import {ILooksRare, ILooksRareTransferSelectorNFT} from"./interfaces/ILooksRare.sol";
import {ISeaport} from"./interfaces/ISeaport.sol";
import {IWyvernV23, IWyvernV23ProxyRegistry} from"./interfaces/IWyvernV23.sol";
import {IX2Y2} from"./interfaces/IX2Y2.sol";
import {IZeroExV4} from"./interfaces/IZeroExV4.sol";
contractReservoirV5_0_0isOwnable, ReentrancyGuard{
addresspublicimmutable weth;
addresspublicimmutable looksRare;
addresspublicimmutable looksRareTransferManagerERC721;
addresspublicimmutable looksRareTransferManagerERC1155;
addresspublicimmutable wyvernV23;
addresspublicimmutable wyvernV23Proxy;
addresspublicimmutable zeroExV4;
addresspublicimmutable foundation;
addresspublicimmutable x2y2;
addresspublicimmutable x2y2ERC721Delegate;
addresspublicimmutable seaport;
errorUnexpectedOwnerOrBalance();
errorUnexpectedSelector();
errorUnsuccessfulCall();
errorUnsuccessfulFill();
errorUnsuccessfulPayment();
errorUnsupportedExchange();
constructor(address wethAddress,
address looksRareAddress,
address wyvernV23Address,
address zeroExV4Address,
address foundationAddress,
address x2y2Address,
address x2y2ERC721DelegateAddress,
address seaportAddress
) {
weth = wethAddress;
// --- LooksRare setup ---
looksRare = looksRareAddress;
// Cache the transfer manager contractsaddress transferSelectorNFT = ILooksRare(looksRare)
.transferSelectorNFT();
looksRareTransferManagerERC721 = ILooksRareTransferSelectorNFT(
transferSelectorNFT
).TRANSFER_MANAGER_ERC721();
looksRareTransferManagerERC1155 = ILooksRareTransferSelectorNFT(
transferSelectorNFT
).TRANSFER_MANAGER_ERC1155();
// --- WyvernV23 setup ---
wyvernV23 = wyvernV23Address;
// Create a user proxyaddress proxyRegistry = IWyvernV23(wyvernV23).registry();
IWyvernV23ProxyRegistry(proxyRegistry).registerProxy();
wyvernV23Proxy = IWyvernV23ProxyRegistry(proxyRegistry).proxies(
address(this)
);
// Approve the token transfer proxy
IERC20(weth).approve(
IWyvernV23(wyvernV23).tokenTransferProxy(),
type(uint256).max
);
// --- ZeroExV4 setup ---
zeroExV4 = zeroExV4Address;
// --- Foundation setup ---
foundation = foundationAddress;
// --- X2Y2 setup ---
x2y2 = x2y2Address;
x2y2ERC721Delegate = x2y2ERC721DelegateAddress;
// --- Seaport setup ---
seaport = seaportAddress;
// Approve the exchange
IERC20(weth).approve(seaport, type(uint256).max);
}
receive() externalpayable{
// For unwrapping WETH
}
functionmakeCalls(address[] calldata targets,
bytes[] calldata data,
uint256[] calldata values
) externalpayableonlyOwnernonReentrant{
bool success;
uint256 length = targets.length;
for (uint256 i =0; i < length; ) {
(success, ) =payable(targets[i]).call{value: values[i]}(data[i]);
if (!success) {
revert UnsuccessfulCall();
}
unchecked {
++i;
}
}
}
// Terminology:// - "single" -> buy single token// - "batch" -> buy multiple tokens (natively, only 0xv4, Seaport and X2Y2 support this)// - "multi" -> buy multiple tokens (via the router)functionsingleERC721ListingFill(bytescalldata data,
ExchangeKind exchangeKind,
address collection,
uint256 tokenId,
address receiver,
address feeRecipient,
uint16 feeBps
) externalpayablenonReentrant{
bytes4 selector =bytes4(data[:4]);
address target;
if (exchangeKind == ExchangeKind.SEAPORT) {
target = seaport;
if (
selector != ISeaport.fulfillAdvancedOrder.selector&&
selector != ISeaport.matchAdvancedOrders.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.WYVERN_V23) {
target = wyvernV23;
if (selector != IWyvernV23.atomicMatch_.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.LOOKS_RARE) {
target = looksRare;
if (
selector !=
ILooksRare.matchAskWithTakerBidUsingETHAndWETH.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.ZEROEX_V4) {
target = zeroExV4;
if (selector != IZeroExV4.buyERC721.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.X2Y2) {
target = x2y2;
if (selector != IX2Y2.run.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.FOUNDATION) {
target = foundation;
if (selector != IFoundation.buyV2.selector) {
revert UnexpectedSelector();
}
} else {
revert UnsupportedExchange();
}
uint256 payment = (10000*msg.value) / (10000+ feeBps);
(bool success, ) = target.call{value: payment}(data);
if (!success) {
revert UnsuccessfulFill();
}
if (
exchangeKind != ExchangeKind.SEAPORT &&
exchangeKind != ExchangeKind.WYVERN_V23
) {
// When filling anything other than Wyvern or Seaport we need to send// the NFT to the taker's wallet after the fill (since we cannot have// a recipient other than the taker)
IERC721(collection).safeTransferFrom(
address(this),
receiver,
tokenId
);
}
uint256 fee =msg.value- payment;
if (fee >0) {
(success, ) =payable(feeRecipient).call{value: fee}("");
if (!success) {
revert UnsuccessfulPayment();
}
}
}
functionsingleERC721ListingFillWithPrecheck(bytescalldata data,
ExchangeKind exchangeKind,
address collection,
uint256 tokenId,
address receiver,
address expectedOwner,
address feeRecipient,
uint16 feeBps
) externalpayablenonReentrant{
if (
expectedOwner !=address(0) &&
IERC721(collection).ownerOf(tokenId) != expectedOwner
) {
revert UnexpectedOwnerOrBalance();
}
bytes4 selector =bytes4(data[:4]);
address target;
if (exchangeKind == ExchangeKind.SEAPORT) {
target = seaport;
if (
selector != ISeaport.fulfillAdvancedOrder.selector&&
selector != ISeaport.matchAdvancedOrders.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.WYVERN_V23) {
target = wyvernV23;
if (selector != IWyvernV23.atomicMatch_.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.LOOKS_RARE) {
target = looksRare;
if (
selector !=
ILooksRare.matchAskWithTakerBidUsingETHAndWETH.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.ZEROEX_V4) {
target = zeroExV4;
if (selector != IZeroExV4.buyERC721.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.X2Y2) {
target = x2y2;
if (selector != IX2Y2.run.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.FOUNDATION) {
target = foundation;
if (selector != IFoundation.buyV2.selector) {
revert UnexpectedSelector();
}
} else {
revert UnsupportedExchange();
}
uint256 payment = (10000*msg.value) / (10000+ feeBps);
(bool success, ) = target.call{value: payment}(data);
if (!success) {
revert UnsuccessfulFill();
}
if (
exchangeKind != ExchangeKind.SEAPORT &&
exchangeKind != ExchangeKind.WYVERN_V23
) {
// When filling anything other than Wyvern or Seaport we need to send// the NFT to the taker's wallet after the fill (since we cannot have// a recipient other than the taker)
IERC721(collection).safeTransferFrom(
address(this),
receiver,
tokenId
);
}
uint256 fee =msg.value- payment;
if (fee >0) {
(success, ) =payable(feeRecipient).call{value: fee}("");
if (!success) {
revert UnsuccessfulPayment();
}
}
}
functionbatchERC721ListingFill(bytescalldata data,
address[] calldata collections,
uint256[] calldata tokenIds,
address receiver,
address feeRecipient,
uint16 feeBps
) externalpayablenonReentrant{
// Only `zeroExV4` is supportedif (bytes4(data[:4]) != IZeroExV4.batchBuyERC721s.selector) {
revert UnexpectedSelector();
}
uint256 payment = (10000*msg.value) / (10000+ feeBps);
(bool success, ) = zeroExV4.call{value: payment}(data);
if (!success) {
revert UnsuccessfulFill();
}
// When filling anything other than Wyvern or Seaport we need to send// the NFT to the taker's wallet after the fill (since we cannot have// a recipient other than the taker)uint256 length = collections.length;
for (uint256 i =0; i < length; ) {
IERC721(collections[i]).safeTransferFrom(
address(this),
receiver,
tokenIds[i]
);
unchecked {
++i;
}
}
uint256 fee =msg.value- payment;
if (fee >0) {
(success, ) =payable(feeRecipient).call{value: fee}("");
if (!success) {
revert UnsuccessfulPayment();
}
}
}
functionsingleERC721BidFill(bytescalldata data,
ExchangeKind exchangeKind,
address collection,
address receiver,
bool unwrapWeth
) externalpayablenonReentrant{
bytes4 selector =bytes4(data[:4]);
address target;
address operator;
if (exchangeKind == ExchangeKind.SEAPORT) {
target = seaport;
operator = seaport;
if (
selector != ISeaport.fulfillAdvancedOrder.selector&&
selector != ISeaport.matchAdvancedOrders.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.WYVERN_V23) {
target = wyvernV23;
operator = wyvernV23Proxy;
if (selector != IWyvernV23.atomicMatch_.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.LOOKS_RARE) {
target = looksRare;
operator = looksRareTransferManagerERC721;
if (selector != ILooksRare.matchBidWithTakerAsk.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.ZEROEX_V4) {
target = zeroExV4;
operator = zeroExV4;
if (selector != IZeroExV4.sellERC721.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.X2Y2) {
target = x2y2;
operator = x2y2ERC721Delegate;
if (selector != IX2Y2.run.selector) {
revert UnexpectedSelector();
}
} else {
revert UnsupportedExchange();
}
// Approve the exchange to transfer the NFT out of the routerbool isApproved = IERC721(collection).isApprovedForAll(
address(this),
operator
);
if (!isApproved) {
IERC721(collection).setApprovalForAll(operator, true);
}
// Get the WETH balance before fillinguint256 wethBalanceBefore = IERC20(weth).balanceOf(address(this));
(bool success, ) = target.call{value: msg.value}(data);
if (!success) {
revert UnsuccessfulPayment();
}
// Send the payment to the actual takeruint256 balance = IERC20(weth).balanceOf(address(this)) -
wethBalanceBefore;
if (unwrapWeth) {
IWETH(weth).withdraw(balance);
(success, ) =payable(receiver).call{value: balance}("");
if (!success) {
revert UnsuccessfulPayment();
}
} else {
IERC20(weth).transfer(receiver, balance);
}
}
functionsingleERC1155ListingFill(bytescalldata data,
ExchangeKind exchangeKind,
address collection,
uint256 tokenId,
uint256 amount,
address receiver,
address feeRecipient,
uint16 feeBps
) externalpayablenonReentrant{
bytes4 selector =bytes4(data[:4]);
address target;
if (exchangeKind == ExchangeKind.SEAPORT) {
target = seaport;
if (
selector != ISeaport.fulfillAdvancedOrder.selector&&
selector != ISeaport.matchAdvancedOrders.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.WYVERN_V23) {
target = wyvernV23;
if (selector != IWyvernV23.atomicMatch_.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.LOOKS_RARE) {
target = looksRare;
if (
selector !=
ILooksRare.matchAskWithTakerBidUsingETHAndWETH.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.ZEROEX_V4) {
target = zeroExV4;
if (selector != IZeroExV4.buyERC1155.selector) {
revert UnexpectedSelector();
}
} else {
revert UnsupportedExchange();
}
uint256 payment = (10000*msg.value) / (10000+ feeBps);
(bool success, ) = target.call{value: payment}(data);
if (!success) {
revert UnsuccessfulFill();
}
if (
exchangeKind != ExchangeKind.SEAPORT &&
exchangeKind != ExchangeKind.WYVERN_V23
) {
// When filling anything other than Wyvern or Seaport we need to send// the NFT to the taker's wallet after the fill (since we cannot have// a recipient other than the taker)
IERC1155(collection).safeTransferFrom(
address(this),
receiver,
tokenId,
amount,
""
);
}
uint256 fee =msg.value- payment;
if (fee >0) {
(success, ) =payable(feeRecipient).call{value: fee}("");
if (!success) {
revert UnsuccessfulPayment();
}
}
}
functionsingleERC1155ListingFillWithPrecheck(bytescalldata data,
ExchangeKind exchangeKind,
address collection,
uint256 tokenId,
uint256 amount,
address receiver,
address expectedOwner,
address feeRecipient,
uint16 feeBps
) externalpayablenonReentrant{
if (
expectedOwner !=address(0) &&
IERC1155(collection).balanceOf(expectedOwner, tokenId) < amount
) {
revert UnexpectedOwnerOrBalance();
}
bytes4 selector =bytes4(data[:4]);
address target;
if (exchangeKind == ExchangeKind.SEAPORT) {
target = seaport;
if (
selector != ISeaport.fulfillAdvancedOrder.selector&&
selector != ISeaport.matchAdvancedOrders.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.WYVERN_V23) {
target = wyvernV23;
if (selector != IWyvernV23.atomicMatch_.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.LOOKS_RARE) {
target = looksRare;
if (
selector !=
ILooksRare.matchAskWithTakerBidUsingETHAndWETH.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.ZEROEX_V4) {
target = zeroExV4;
if (selector != IZeroExV4.buyERC1155.selector) {
revert UnexpectedSelector();
}
} else {
revert UnsupportedExchange();
}
uint256 payment = (10000*msg.value) / (10000+ feeBps);
(bool success, ) = target.call{value: payment}(data);
if (!success) {
revert UnsuccessfulFill();
}
if (
exchangeKind != ExchangeKind.SEAPORT &&
exchangeKind != ExchangeKind.WYVERN_V23
) {
// When filling anything other than Wyvern or Seaport we need to send// the NFT to the taker's wallet after the fill (since we cannot have// a recipient other than the taker)
IERC1155(collection).safeTransferFrom(
address(this),
receiver,
tokenId,
amount,
""
);
}
uint256 fee =msg.value- payment;
if (fee >0) {
(success, ) =payable(feeRecipient).call{value: fee}("");
if (!success) {
revert UnsuccessfulPayment();
}
}
}
functionbatchERC1155ListingFill(bytescalldata data,
address[] calldata collections,
uint256[] calldata tokenIds,
uint256[] calldata amounts,
address receiver,
address feeRecipient,
uint16 feeBps
) externalpayablenonReentrant{
// Only `zeroExV4` is supportedif (bytes4(data[:4]) != IZeroExV4.batchBuyERC1155s.selector) {
revert UnexpectedSelector();
}
uint256 payment = (10000*msg.value) / (10000+ feeBps);
(bool success, ) = zeroExV4.call{value: payment}(data);
if (!success) {
revert UnsuccessfulFill();
}
// Avoid "Stack too deep" errors
{
// When filling anything other than Wyvern or Seaport we need to send// the NFT to the taker's wallet after the fill (since we cannot have// a recipient other than the taker)uint256 length = collections.length;
for (uint256 i =0; i < length; ) {
IERC1155(collections[i]).safeTransferFrom(
address(this),
receiver,
tokenIds[i],
amounts[i],
""
);
unchecked {
++i;
}
}
}
uint256 fee =msg.value- payment;
if (fee >0) {
(success, ) =payable(feeRecipient).call{value: fee}("");
if (!success) {
revert UnsuccessfulPayment();
}
}
}
functionsingleERC1155BidFill(bytescalldata data,
ExchangeKind exchangeKind,
address collection,
address receiver,
bool unwrapWeth
) externalpayablenonReentrant{
bytes4 selector =bytes4(data[:4]);
address target;
address operator;
if (exchangeKind == ExchangeKind.SEAPORT) {
target = seaport;
operator = seaport;
if (
selector != ISeaport.fulfillAdvancedOrder.selector&&
selector != ISeaport.matchAdvancedOrders.selector
) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.WYVERN_V23) {
target = wyvernV23;
operator = wyvernV23Proxy;
if (selector != IWyvernV23.atomicMatch_.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.LOOKS_RARE) {
target = looksRare;
operator = looksRareTransferManagerERC1155;
if (selector != ILooksRare.matchBidWithTakerAsk.selector) {
revert UnexpectedSelector();
}
} elseif (exchangeKind == ExchangeKind.ZEROEX_V4) {
target = zeroExV4;
operator = zeroExV4;
if (selector != IZeroExV4.sellERC1155.selector) {
revert UnexpectedSelector();
}
} else {
revert UnsupportedExchange();
}
// Approve the exchange to transfer the NFT out of the routerbool isApproved = IERC1155(collection).isApprovedForAll(
address(this),
operator
);
if (!isApproved) {
IERC1155(collection).setApprovalForAll(operator, true);
}
// Get the WETH balance before fillinguint256 wethBalanceBefore = IERC20(weth).balanceOf(address(this));
(bool success, ) = target.call{value: msg.value}(data);
if (!success) {
revert UnsuccessfulFill();
}
// Send the payment to the actual takeruint256 balance = IERC20(weth).balanceOf(address(this)) -
wethBalanceBefore;
if (unwrapWeth) {
IWETH(weth).withdraw(balance);
(success, ) =payable(receiver).call{value: balance}("");
if (!success) {
revert UnsuccessfulPayment();
}
} else {
IERC20(weth).transfer(receiver, balance);
}
}
functionmultiListingFill(bytes[] calldata data,
uint256[] calldata values,
bool revertIfIncomplete
) externalpayable{
bool success;
uint256 balanceBefore =address(this).balance-msg.value;
uint256 length = data.length;
for (uint256 i =0; i < length; ) {
(success, ) =address(this).call{value: values[i]}(data[i]);
if (revertIfIncomplete &&!success) {
revert UnsuccessfulFill();
}
unchecked {
++i;
}
}
uint256 balanceAfter =address(this).balance;
if (balanceAfter > balanceBefore) {
(success, ) =msg.sender.call{value: balanceAfter - balanceBefore}(
""
);
if (!success) {
revert UnsuccessfulPayment();
}
}
}
// ERC721 / ERC1155 overridesfunctiononERC721Received(address, // operator,address, // fromuint256, // tokenId,bytescalldata data
) externalreturns (bytes4) {
if (data.length==0) {
returnthis.onERC721Received.selector;
}
bytes4 selector =bytes4(data[:4]);
if (selector !=this.singleERC721BidFill.selector) {
revert UnexpectedSelector();
}
(bool success, ) =address(this).call(data);
if (!success) {
revert UnsuccessfulFill();
}
returnthis.onERC721Received.selector;
}
functiononERC1155Received(address, // operatoraddress, // fromuint256, // tokenIduint256, // amountbytescalldata data
) externalreturns (bytes4) {
if (data.length==0) {
returnthis.onERC1155Received.selector;
}
bytes4 selector =bytes4(data[:4]);
if (selector !=this.singleERC1155BidFill.selector) {
revert UnexpectedSelector();
}
(bool success, ) =address(this).call(data);
if (!success) {
revert UnsuccessfulFill();
}
returnthis.onERC1155Received.selector;
}
}