############################### Basic Functionality ############################### Below is a catalog of basic Exchange functionality. For more advanced usage, like meta-transactions and dex aggregation, see the Advanced section. +-----------------------------------------+--------------------------------------------------------------------------+ | **Limit Orders** | **Overview** | +-----------------------------------------+--------------------------------------------------------------------------+ | `fillLimitOrder`_ | Fills a Limit Order up to the amount requested. | +-----------------------------------------+--------------------------------------------------------------------------+ | `fillOrKillLimitOrder`_ | Fills exactly the amount requested or reverts. | +-----------------------------------------+--------------------------------------------------------------------------+ | `cancelLimitOrder`_ | Cancels an order so that it can no longer be filled. | +-----------------------------------------+--------------------------------------------------------------------------+ | `batchCancelLimitOrders`_ | A batch call to `cancelLimitOrder`. | +-----------------------------------------+--------------------------------------------------------------------------+ | `cancelPairLimitOrders`_ | Cancels Limit orders in a specific market pair. | | | Ex: Cancel all Limit Orders selling WETH for USDC. | +-----------------------------------------+--------------------------------------------------------------------------+ | `cancelPairLimitOrdersWithSigner`_ | Same functionality to ``cancelPairLimitOrders`` but called by a | | | registered order signer instead of the maker itself. | +-----------------------------------------+--------------------------------------------------------------------------+ | `batchCancelPairLimitOrders`_ | A batch call to `cancelPairLimitOrders`. | +-----------------------------------------+--------------------------------------------------------------------------+ | `batchCancelPairLimitOrdersWithSigner`_ | Same functionality to ``cancelPairLimitOrders`` but called by a | | | registered order signer instead of the maker itself. | +-----------------------------------------+--------------------------------------------------------------------------+ | `getLimitOrderInfo`_ | Returns the state of a given order. | +-----------------------------------------+--------------------------------------------------------------------------+ | `getLimitOrderHash`_ | Returns the EIP-712 hash for an order. | +-----------------------------------------+--------------------------------------------------------------------------+ | **RFQ Orders** | **Overview** | +-----------------------------------------+--------------------------------------------------------------------------+ | `fillRfqOrder`_ | These are analogous to the above LimitOrder functions. | +-----------------------------------------+ | | `fillOrKillRfqOrder`_ | | +-----------------------------------------+ | | `cancelRfqOrder`_ | | +-----------------------------------------+ | | `batchCancelRfqOrders`_ | | +-----------------------------------------+ | | `cancelPairRfqOrders`_ | | +-----------------------------------------+ | | `cancelPairRfqOrdersWithSigner`_ | | +-----------------------------------------+ | | `batchCancelPairRfqOrders`_ | | +-----------------------------------------+ | | `batchCancelPairRfqOrdersWithSigner`_ | | +-----------------------------------------+ | | `getRfqOrderInfo`_ | | +-----------------------------------------+ | | `getRfqOrderHash`_ | | +-----------------------------------------+--------------------------------------------------------------------------+ | `registerAllowedRfqOrigins`_ | Register tx.origin addresses that are allowed to fill an RFQ order. | +-----------------------------------------+--------------------------------------------------------------------------+ | `registerAllowedOrderSigner`_ | Register addresses that can sign orders on behalf of ``msg.sender``. | +-----------------------------------------+--------------------------------------------------------------------------+ | `isValidOrderSigner`_ | Returns whether a given address is allowed to sign orders for a given | | | maker address. | +-----------------------------------------+--------------------------------------------------------------------------+ | **Protocol Fees** | **Overview** | +-----------------------------------------+--------------------------------------------------------------------------+ | `getProtocolFeeMultiplier`_ | Takers of limit orders pay a protocol fee of `Multiplier * tx.gasprice`. | | | This returns the `Multiplier`. | +-----------------------------------------+--------------------------------------------------------------------------+ | `transferProtocolFeesForPools`_ | Transfers protocol fees from escrow to the 0x Staking System. | | | This should be called near the end of each epoch. | +-----------------------------------------+--------------------------------------------------------------------------+ | **NFT Orders** | **Overview** | +-----------------------------------------+--------------------------------------------------------------------------+ | `sellERC721`_ | These are specialised orders for NFT trading | +-----------------------------------------+ | | `buyERC721`_ | | +-----------------------------------------+ | | `batchBuyERC721s`_ | | +-----------------------------------------+ | | `matchERC721Orders`_ | | +-----------------------------------------+ | | `batchMatchERC721Orders`_ | | +-----------------------------------------+ | | `preSignERC721Order`_ | | +-----------------------------------------+ | | `validateERC721OrderSignature`_ | | +-----------------------------------------+ | | `validateERC721OrderProperties`_ | | +-----------------------------------------+ | | `getERC721OrderStatus`_ | | +-----------------------------------------+ | | `getERC721OrderHash`_ | | +-----------------------------------------+ + | `sellERC1155`_ | | +-----------------------------------------+ + | `buyERC1155`_ | | +-----------------------------------------+ + | `batchCancelERC1155Orders`_ | | +-----------------------------------------+ + | `batchBuyERC1155s`_ | | +-----------------------------------------+ + | `preSignERC1155Order`_ | | +-----------------------------------------+ + | `validateERC1155OrderSignature`_ | | +-----------------------------------------+ + | `validateERC1155OrderProperties`_ | | +-----------------------------------------+ + | `getERC1155OrderInfo`_ | | +-----------------------------------------+ + | `getERC1155OrderHash`_ | | +-----------------------------------------+--------------------------------------------------------------------------+ Limit Orders ============ These are the basic functions for using a `Limit Order <../basics/orders.html#limit-orders>`__. fillLimitOrder -------------- Limit orders can be filled with the ``fillLimitOrder()`` or ``fillOrKillLimitOrder()`` functions on the Exchange Proxy. The address calling these function will be considered the "taker" of the order. ``fillLimitOrder()`` fills a single limit order for **up to** ``takerTokenFillAmount``: .. code-block:: solidity function fillLimitOrder( // The order LimitOrder calldata order, // The signature Signature calldata signature, // How much taker token to fill the order with uint128 takerTokenFillAmount ) external payable // How much maker token from the order the taker received. returns (uint128 takerTokenFillAmount, uint128 makerTokenFillAmount); If the trade is successful a `LimitOrderFilled <../basics/events.html#limitorderfilled>`_ will be emitted. This function reverts under any of the following conditions: - The order is fully filled: taker amount sold greater or equal to ``order.takerAmount``. - The order has expired. - The order was cancelled. - The market pair (Ex, ``WETH/USDT``) was cancelled (``order.salt`` is less than the value passed to ``cancelPairLimitOrders``. - Either the maker or taker has an insufficient allowance/balance. - The order's ``taker`` field is non-zero and does not match the actual taker. This is ``msg.sender``, unless used with `meta-transactions <../advanced/mtx.rst>`_ in which case it is the signer. - The order's ``sender`` field is non-zero and does not match ``msg.sender``. - The maker's signature is invalid. - The order's ``takerTokenFeeAmount`` is non-zero but the fee cannot be paid due to insufficient allowance/balance. - Not enough ETH was sent with the transaction to cover the `Protocol Fee <../basics/protocol_fees.html>`_. fillOrKillLimitOrder -------------------- ``fillOrKillLimitOrder()`` fills a single limit order for **exactly** ``takerTokenFillAmount``: .. code-block:: solidity function fillOrKillLimitOrder( // The order LimitOrder calldata order, // The signature Signature calldata signature, // How much taker token to fill the order with uint128 takerTokenFillAmount ) external payable // How much maker token from the order the taker received. returns (uint128 makerTokenFillAmount); If the trade is successful a `LimitOrderFilled <../basics/events.html#limitorderfilled>`_ will be emitted. This function reverts under any of the conditions outlined above for ``fillLimitOrder``. Additionally, it will revert if the amount filled is less than ``takerTokenFillAmount``. cancelLimitOrder ---------------- This function cancels a single limit order created by the caller: .. code-block:: solidity function cancelLimitOrder( // The order LimitOrder calldata order ) external; This function emits an `OrderCancelled <../basics/events.html#ordercancelled>`_ event if the cancellation is successful. The call will revert if ``msg.sender != order.maker`` or ``!isValidOrderSigner(maker, msg.sender)``. batchCancelLimitOrders ---------------------- This function cancels multiple limit orders created by the caller: .. code-block:: solidity function batchCancelLimitOrders( // The orders LimitOrder[] calldata orders ) external; This function emits an `OrderCancelled <../basics/events.html#ordercancelled>`_ event for each order it cancels. The call will revert if ``msg.sender != order.maker`` or ``!isValidOrderSigner(maker, msg.sender)`` for any of the orders. cancelPairLimitOrders --------------------- This function cancels all limit orders created by the caller with with a maker and taker token pair and a ``salt`` field < the ``salt`` provided. Subsequent calls to this function with the same tokens must provide a ``salt`` >= the last call to succeed. .. code-block:: solidity function cancelPairLimitOrders( address makerToken, address takerToken, uint256 salt; ) external; This function emits a `PairCancelledLimitOrders <../basics/events.html#paircancelledlimitorders>`_ event, or reverts if the ``salt`` parameter is ≤ to a previous ``salt``. cancelPairLimitOrdersWithSigner ------------------------------- Same functionality as ``cancelPairLimitOrders`` but ``msg.sender`` is a registered order signer instead of the maker itself. .. code-block:: solidity /// @dev Cancel all limit orders for a given maker and pair with a salt less /// than the value provided. The caller must be a signer registered to the maker. /// Subsequent calls to this function with the same maker and pair require the /// new salt to be >= the old salt. /// @param maker The maker for which to cancel. /// @param makerToken The maker token. /// @param takerToken The taker token. /// @param minValidSalt The new minimum valid salt. function cancelPairLimitOrdersWithSigner( address maker, IERC20Token makerToken, IERC20Token takerToken, uint256 minValidSalt ) external; Reverts if ``!isValidOrderSigner(maker, msg.sender)``. batchCancelPairLimitOrders -------------------------- This function performs multiple ``cancelPairLimitOrders()`` at once. Each respective index across arrays is equivalent to a single call. .. code-block:: solidity function batchCancelPairLimitOrders( address[] makerTokens, address[] takerTokens, uint256[] salts; ) external; This function emits a `PairCancelledLimitOrders <../basics/events.html#paircancelledlimitorders>`_ event for each market pair it cancels. It reverts if any of the individual cancellations revert. batchCancelPairLimitOrdersWithSigner ------------------------------------ Same functionality as ``batchCancelPairLimitOrders`` but ``msg.sender`` is a registered order signer instead of the maker itself. .. code-block:: solidity /// @dev Cancel all limit orders for a given maker and pairs with salts less /// than the values provided. The caller must be a signer registered to the maker. /// Subsequent calls to this function with the same maker and pair require the /// new salt to be >= the old salt. /// @param maker The maker for which to cancel. /// @param makerTokens The maker tokens. /// @param takerTokens The taker tokens. /// @param minValidSalts The new minimum valid salts. function batchCancelPairLimitOrdersWithSigner( address maker, IERC20Token[] memory makerTokens, IERC20Token[] memory takerTokens, uint256[] memory minValidSalts ) external; Reverts if ``!isValidOrderSigner(maker, msg.sender)``. getLimitOrderInfo ----------------- The Exchange Proxy exposes a function ``getLimitOrderInfo()`` to query information about a limit order, such as its fillable state and how much it has been filled by. .. code-block:: solidity enum OrderStatus { INVALID, FILLABLE, FILLED, CANCELLED, EXPIRED } struct OrderInfo { // The order hash. bytes32 orderHash; // Current state of the order. OrderStatus status; // How much taker token has been filled in the order. uint128 takerTokenFilledAmount; } function getLimitOrderInfo( // The order LimitOrder calldata order ) external view returns (OrderInfo memory orderInfo); getLimitOrderHash ----------------- The hash of the order is used to uniquely identify an order inside the protocol. It is computed following the `EIP712 spec `_ standard. In solidity, the hash is computed as: .. code-block:: solidity /// @dev Get the canonical hash of a limit order. /// @param order The limit order. /// @return orderHash The order hash. function getLimitOrderHash(LibNativeOrder.LimitOrder calldata order) external view returns (bytes32 orderHash); The simplest way to generate an order hash is by calling this function, ex: .. code-block:: solidity bytes32 orderHash = IZeroEx(0xDef1C0ded9bec7F1a1670819833240f027b25EfF).getLimitOrderHash(order); The hash can be manually generated using the following code: .. code-block:: solidity bytes32 orderHash = keccak256(abi.encodePacked( '\x19\x01', // The domain separator. keccak256(abi.encode( // The EIP712 domain separator type hash. keccak256(abi.encodePacked( 'EIP712Domain(', 'string name,', 'string version,', 'uint256 chainId,', 'address verifyingContract)' )), // The EIP712 domain separator values. keccak256('ZeroEx'), keccak256('1.0.0'), 1, // For mainnet 0xDef1C0ded9bec7F1a1670819833240f027b25EfF, // Address of the Exchange Proxy )), // The struct hash. keccak256(abi.encode( // The EIP712 type hash. keccak256(abi.encodePacked( 'LimitOrder(', 'address makerToken,', 'address takerToken,', 'uint128 makerAmount,', 'uint128 takerAmount,', 'uint128 takerTokenFeeAmount,', 'address maker,', 'address taker,', 'address sender,', 'address feeRecipient,', 'bytes32 pool,', 'uint64 expiry,', 'uint256 salt)' )), // The struct values. order.makerToken, order.takerToken, order.makerAmount, order.takerAmount, order.takerTokenFeeAmount, order.maker, order.taker, order.sender, order.feeRecipient, order.pool, order.expiry, order.salt )) )); RFQ Orders ========== These are the basic functions for using an `RFQ Order <../basics/orders.html#rfq-orders>`_. fillRfqOrder ------------ RFQ orders can be filled with the ``fillRfqOrder()`` or ``fillOrKillRfqOrder()`` functions on the Exchange Proxy. The address calling this function will be considered the "taker" of the order. ``fillRfqOrder()`` fills a single RFQ order for **up to** ``takerTokenFillAmount``: .. code-block:: solidity function fillRfqOrder( // The order RfqOrder calldata order, // The signature Signature calldata signature, // How much taker token to fill the order with uint128 takerTokenFillAmount ) external payable // How much maker token from the order the taker received. returns (uint128 takerTokenFillAmount, uint128 makerTokenFillAmount); If the trade is successful a `RfqOrderFilled <../basics/events.html#rfqorderfilled>`_ will be emitted. This function reverts under any of the following conditions: - The order is fully filled: taker amount sold greater or equal to ``order.takerAmount``. - The order has expired. - The order was cancelled. - The market pair (Ex, ``WETH/USDT``) was cancelled (``order.salt`` is less than the value passed to ``cancelPairLimitOrders``. - Either the maker or taker has an insufficient allowance/balance. - The order's ``taker`` field is non-zero and does not match the actual taker. This is ``msg.sender``, unless used with `meta-transactions <../advanced/mtx.rst>`_ in which case it is the signer. - The order's ``origin`` field is non-zero and does not match ``tx.origin`` or a valid origin (see `registerAllowedRfqOrigins`_). - The maker's signature is invalid. fillOrKillRfqOrder ------------------ ``fillOrKillRfqOrder()`` fills a single RFQ order for **exactly** ``takerTokenFillAmount``: .. code-block:: solidity function fillOrKillRfqOrder( // The order RfqOrder calldata order, // The signature Signature calldata signature, // How much taker token to fill the order with uint128 takerTokenFillAmount ) external payable // How much maker token from the order the taker received. returns (uint128 makerTokenFillAmount); If the trade is successful a `RfqOrderFilled <../basics/events.html#rfqorderfilled>`_ will be emitted. This function reverts under any of the conditions outlined above for ``fillRfqOrder``. Additionally, it will revert if the amount filled is less than ``takerTokenFillAmount``. cancelRfqOrder -------------- Similar to limit orders, RFQ orders can be cancelled on-chain through a variety of functions, which can only be called by the order's maker. ``cancelRfqOrder()`` cancels a single RFQ order created by the caller: .. code-block:: solidity function cancelRfqOrder( // The order RfqOrder calldata order ) external; This function emits an `OrderCancelled <../basics/events.html#ordercancelled>`_ event if the cancellation is successful. The call will revert if ``msg.sender != order.maker`` or ``!isValidOrderSigner(maker, msg.sender)``. batchCancelRfqOrders -------------------- This function cancels multiple RFQ orders created by the caller: .. code-block:: solidity function batchCancelRfqOrders( // The orders RfqOrder[] calldata orders ) external; This function emits an `OrderCancelled <../basics/events.html#ordercancelled>`_ event for each order it cancels. The call will revert if ``msg.sender != order.maker`` or ``!isValidOrderSigner(maker, msg.sender)`` for any orders for any of the orders. cancelPairRfqOrders ------------------- This function cancels all RFQ orders created by the caller with with a maker and taker token pair and a ``salt`` field < the ``salt`` provided. Subsequent calls to this function with the same tokens must provide a ``salt`` >= the last call to succeed. .. code-block:: solidity function cancelPairRfqOrders( address makerToken, address takerToken, uint256 salt; ) external; This function emits a `PairCancelledRfqOrders <../basics/events.html#paircancelledrfqorders>`_ event, or reverts if the ``salt`` parameter is ≤ to a previous ``salt``. cancelPairRfqOrdersWithSigner ----------------------------- Same functionality as ``cancelPairRfqOrders`` but ``msg.sender`` is a registered order signer instead of the maker itself. .. code-block:: solidity /// @dev Cancel all RFQ orders for a given maker and pair with a salt less /// than the value provided. The caller must be a signer registered to the maker. /// Subsequent calls to this function with the same maker and pair require the /// new salt to be >= the old salt. /// @param maker The maker for which to cancel. /// @param makerToken The maker token. /// @param takerToken The taker token. /// @param minValidSalt The new minimum valid salt. function cancelPairRfqOrdersWithSigner( address maker, IERC20Token makerToken, IERC20Token takerToken, uint256 minValidSalt ) external; Reverts if ``!isValidOrderSigner(maker, msg.sender)``. batchCancelPairRfqOrders ------------------------ ``batchCancelPairRfqOrders()`` performs multiple ``cancelPairRfqOrders()`` at once. Each respective index across arrays is equivalent to a single call. .. code-block:: solidity function batchCancelPairRfqOrders( address[] makerTokens, address[] takerTokens, uint256[] salts; ) external; This function emits a `PairCancelledRfqOrders <../basics/events.html#paircancelledrfqorders>`_ event for each market pair it cancels. It reverts if any of the individual cancellations revert. batchCancelPairRfqOrdersWithSigner ---------------------------------- Same functionality as ``batchCancelPairRfqOrders`` but ``msg.sender`` is a registered order signer instead of the maker itself. .. code-block:: solidity /// @dev Cancel all RFQ orders for a given maker and pairs with salts less /// than the values provided. The caller must be a signer registered to the maker. /// Subsequent calls to this function with the same maker and pair require the /// new salt to be >= the old salt. /// @param maker The maker for which to cancel. /// @param makerTokens The maker tokens. /// @param takerTokens The taker tokens. /// @param minValidSalts The new minimum valid salts. function batchCancelPairRfqOrdersWithSigner( address maker, IERC20Token[] memory makerTokens, IERC20Token[] memory takerTokens, uint256[] memory minValidSalts ) external; Reverts if ``!isValidOrderSigner(maker, msg.sender)``. getRfqOrderInfo --------------- The Exchange Proxy exposes a function ``getRfqOrderInfo()`` to query information about an RFQ order, such as its fillable state and how much it has been filled by. .. code-block:: solidity enum OrderStatus { INVALID, FILLABLE, FILLED, CANCELLED, EXPIRED } struct OrderInfo { // The order hash. bytes32 orderHash; // Current state of the order. OrderStatus status; // How much taker token has been filled in the order. uint128 takerTokenFilledAmount; } function getRfqOrderInfo( // The order RfqOrder calldata order ) external view returns (OrderInfo memory orderInfo); getRfqOrderHash --------------- The hash of the order is used to uniquely identify an order inside the protocol. It is computed following the `EIP712 spec `_ standard. In solidity, the hash is computed using: .. code-block:: solidity /// @dev Get the canonical hash of an RFQ order. /// @param order The RFQ order. /// @return orderHash The order hash. function getRfqOrderHash(LibNativeOrder.RfqOrder calldata order) external view returns (bytes32 orderHash); The simplest way to generate an order hash is by calling this function, ex: .. code-block:: solidity bytes32 orderHash = IZeroEx(0xDef1C0ded9bec7F1a1670819833240f027b25EfF).getRfqOrderHash(order); The hash can be manually generated using the following code: .. code-block:: solidity bytes32 orderHash = keccak256(abi.encodePacked( '\x19\x01', // The domain separator. keccak256(abi.encode( // The EIP712 domain separator type hash. keccak256(abi.encodePacked( 'EIP712Domain(', 'string name,', 'string version,', 'uint256 chainId,', 'address verifyingContract)' )), // The EIP712 domain separator values. keccak256('ZeroEx'), keccak256('1.0.0'), 1, // For mainnet 0xDef1C0ded9bec7F1a1670819833240f027b25EfF, // Address of the Exchange Proxy )), // The struct hash. keccak256(abi.encode( // The EIP712 type hash. keccak256(abi.encodePacked( 'RfqOrder(', 'address makerToken,', 'address takerToken,', 'uint128 makerAmount,', 'uint128 takerAmount,', 'address maker,' 'address taker,' 'address txOrigin,' 'bytes32 pool,', 'uint64 expiry,', 'uint256 salt)' )), // The struct values. order.makerToken, order.takerToken, order.makerAmount, order.takerAmount, order.maker, order.taker, order.txOrigin, order.pool, order.expiry, order.salt )) )); registerAllowedRfqOrigins -------------------------- The RFQ order includes a ``txOrigin`` field, which a maker can use to restrict which EOA's can submit the Ethereum transaction that fills their order. There are two ways a maker can use this field. 1. Set to the EOA that will submit the transaction (ex, the Taker or a Meta-Transaction relayer). 2. Set to an EOA owned by the maker, which acts as a registry key to lookup valid tx origins. Looking at the 2nd use case, a maker can register valid tx origins using this function. They would then set ``order.origin`` to be the address they used to call ``registerAllowedRfqOrigins``. .. code-block:: solidity /// @dev Mark what tx.origin addresses are allowed to fill an order that /// specifies the message sender as its txOrigin. /// @param origins An array of origin addresses to update. /// @param allowed True to register, false to unregister. function registerAllowedRfqOrigins(address[] memory origins, bool allowed) external; This function emits a `RfqOrderOriginsAllowed <../basics/events.html#rfqorderoriginsallowed>`_ event. registerAllowedOrderSigner -------------------------- Calls to fill functions require a signature provided by the maker. In cases where the signer can't be the maker itself (e.g. a contract wallet), the maker can delegate signing to another address. To register a new delegated order signer, the maker can call ``registerAllowedOrderSigner`` with ``allowed == true``. To revoke permission to a signer, the maker can call ``registerAllowedOrderSigner`` with ``allowed == false``. .. code-block:: solidity /// @dev Register a signer who can sign on behalf of msg.sender /// This allows one to sign on behalf of a contract that calls this function /// @param signer The address from which you plan to generate signatures /// @param allowed True to register, false to unregister. function registerAllowedOrderSigner( address signer, bool allowed ) external; This function emits an `OrderSignerRegistered <../basics/events.html#ordersignerregistered>`_ event. isValidOrderSigner ------------------ Returns whether the ``signer`` is allowed to sign orders on behalf of the ``maker``. .. code-block:: solidity /// @dev checks if a given address is registered to sign on behalf of a maker address /// @param maker The maker address encoded in an order (can be a contract) /// @param signer The address that is providing a signature function isValidOrderSigner( address maker, address signer ) external view returns (bool isAllowed); Protocol Fees ============= There is a fixed protocol fee paid by the Taker each time they fill a `Limit Order `__. Learn more in the `Protocol Fees Section <./protocol_fees.html>`_. Also check out our research in the `Tokenomics Section <../tokenomics/research.html>`_. getProtocolFeeMultiplier ------------------------ Takers of limit orders pay a protocol fee of Multiplier * tx.gasprice. This returns the Multiplier. .. code-block:: solidity /// @dev Get the protocol fee multiplier. This should be multiplied by the /// gas price to arrive at the required protocol fee to fill a native order. /// @return multiplier The protocol fee multiplier. function getProtocolFeeMultiplier() external view returns (uint32 multiplier); transferProtocolFeesForPools ---------------------------- This function transfers protocol fees from `Fee Collectors <../architecture/fee_collectors.html>`_ to the `Staking System <../tokenomics/staking.html>`_. .. code-block:: solidity /// @dev Transfers protocol fees from the `FeeCollector` pools into /// the staking contract. /// @param poolIds Staking pool IDs function transferProtocolFeesForPools(bytes32[] calldata poolIds) external; NFT Orders ========== sellERC721 ---------------------------- This function sells an ERC721 token given a buy order. .. code-block:: solidity /// @dev Sells an ERC721 asset to fill the given order. /// @param buyOrder The ERC721 buy order. /// @param signature The order signature from the maker. /// @param erc721TokenId The ID of the ERC721 asset being /// sold. If the given order specifies properties, /// the asset must satisfy those properties. Otherwise, /// it must equal the tokenId in the order. /// @param unwrapNativeToken If this parameter is true and the /// ERC20 token of the order is e.g. WETH, unwraps the /// token before transferring it to the taker. /// @param callbackData If this parameter is non-zero, invokes /// `zeroExERC721OrderCallback` on `msg.sender` after /// the ERC20 tokens have been transferred to `msg.sender` /// but before transferring the ERC721 asset to the buyer. function sellERC721( LibNFTOrder.ERC721Order _calldata_ buyOrder, LibSignature.Signature _calldata_ signature, uint256 erc721TokenId, bool unwrapNativeToken, bytes _calldata_ callbackData ) _external_; buyERC721 ---------------------------- This function buys an ERC721 token given a sell order. .. code-block:: solidity /// @dev Buys an ERC721 asset by filling the given order. /// @param sellOrder The ERC721 sell order. /// @param signature The order signature. /// @param callbackData If this parameter is non-zero, invokes /// `zeroExERC721OrderCallback` on `msg.sender` after /// the ERC721 asset has been transferred to `msg.sender` /// but before transferring the ERC20 tokens to the seller. /// Native tokens acquired during the callback can be used /// to fill the order. function buyERC721( LibNFTOrder.ERC721Order _calldata_ sellOrder, LibSignature.Signature _calldata_ signature, bytes _calldata_ callbackData ) _external_ _payable_; cancelERC721Order ---------------------------- This function cancels an ERC721 order using the order `nonce` field. .. code-block:: solidity /// @dev Cancel a single ERC721 order by its nonce. The caller /// should be the maker of the order. Silently succeeds if /// an order with the same nonce has already been filled or /// cancelled. /// @param orderNonce The order nonce. function cancelERC721Order(uint256 orderNonce) _external_; batchCancelERC721Orders ---------------------------- This function cancels an number of ERC721 order using the order `nonce` field. .. code-block:: solidity /// @dev Cancel multiple ERC721 orders by their nonces. The caller /// should be the maker of the orders. Silently succeeds if /// an order with the same nonce has already been filled or /// cancelled. /// @param orderNonces The order nonces. function batchCancelERC721Orders(uint256[] _calldata_ orderNonces) _external_; batchBuyERC721s ---------------------------- This function buys a number of ERC721's. If you wish the transaction to revert unless ALL NFT's are purchased, set `revertIfIncomplete` to true. .. code-block:: solidity /// @dev Buys multiple ERC721 assets by filling the /// given orders. /// @param sellOrders The ERC721 sell orders. /// @param signatures The order signatures. /// @param revertIfIncomplete If true, reverts if this /// function fails to fill any individual order. /// @return successes An array of booleans corresponding to whether /// each order in `orders` was successfully filled. function batchBuyERC721s( LibNFTOrder.ERC721Order[] _calldata_ sellOrders, LibSignature.Signature[] _calldata_ signatures, bool revertIfIncomplete ) _external_ _payable_ returns (bool[] _memory_ successes); matchERC721Orders ---------------------------- This function matches a buy order and a sell order together. The matcher receives any spread in price. .. code-block:: solidity /// @dev Matches a pair of complementary orders that have /// a non-negative spread. Each order is filled at /// their respective price, and the matcher receives /// a profit denominated in the ERC20 token. /// @param sellOrder Order selling an ERC721 asset. /// @param buyOrder Order buying an ERC721 asset. /// @param sellOrderSignature Signature for the sell order. /// @param buyOrderSignature Signature for the buy order. /// @return profit The amount of profit earned by the caller /// of this function (denominated in the ERC20 token /// of the matched orders). function matchERC721Orders( LibNFTOrder.ERC721Order _calldata_ sellOrder, LibNFTOrder.ERC721Order _calldata_ buyOrder, LibSignature.Signature _calldata_ sellOrderSignature, LibSignature.Signature _calldata_ buyOrderSignature ) _external_ returns (uint256 profit); batchMatchERC721Orders ---------------------------- This function matches a buy orders and a sell orders together. The matcher receives any spread in price. .. code-block:: solidity /// @dev Matches pairs of complementary orders that have /// non-negative spreads. Each order is filled at /// their respective price, and the matcher receives /// a profit denominated in the ERC20 token. /// @param sellOrders Orders selling ERC721 assets. /// @param buyOrders Orders buying ERC721 assets. /// @param sellOrderSignatures Signatures for the sell orders. /// @param buyOrderSignatures Signatures for the buy orders. /// @return profits The amount of profit earned by the caller /// of this function for each pair of matched orders /// (denominated in the ERC20 token of the order pair). /// @return successes An array of booleans corresponding to /// whether each pair of orders was successfully matched. function batchMatchERC721Orders( LibNFTOrder.ERC721Order[] _calldata_ sellOrders, LibNFTOrder.ERC721Order[] _calldata_ buyOrders, LibSignature.Signature[] _calldata_ sellOrderSignatures, LibSignature.Signature[] _calldata_ buyOrderSignatures ) _external_ returns (uint256[] _memory_ profits, bool[] _memory_ successes); preSignERC721Order ---------------------------- This function pre-signs an order. Useful for contracts that wish to buy or sell an NFT. .. code-block:: solidity /// @dev Approves an ERC721 order on-chain. After pre-signing /// the order, the `PRESIGNED` signature type will become /// valid for that order and signer. /// @param order An ERC721 order. function preSignERC721Order(LibNFTOrder.ERC721Order _calldata_ order) _external_; validateERC721OrderSignature ---------------------------- A read function to validate an ERC721 order signature. .. code-block:: solidity /// @dev Checks whether the given signature is valid for the /// the given ERC721 order. Reverts if not. /// @param order The ERC721 order. /// @param signature The signature to validate. function validateERC721OrderSignature( LibNFTOrder.ERC721Order _calldata_ order, LibSignature.Signature _calldata_ signature ) _external_ _view_; validateERC721OrderProperties --------------------------------- A read function to validate a property based order with a particular token id. .. code-block:: solidity /// @dev If the given order is buying an ERC721 asset, checks /// whether or not the given token ID satisfies the required /// properties specified in the order. If the order does not /// specify any properties, this function instead checks /// whether the given token ID matches the ID in the order. /// Reverts if any checks fail, or if the order is selling /// an ERC721 asset. /// @param order The ERC721 order. /// @param erc721TokenId The ID of the ERC721 asset. function validateERC721OrderProperties( LibNFTOrder.ERC721Order _calldata_ order, uint256 erc721TokenId ) _external_ _view_; getERC721OrderStatus ---------------------------- A read function to return the order status. E.g whether it is filled, cancelled or expired. .. code-block:: solidity /// @dev Get the current status of an ERC721 order. /// @param order The ERC721 order. /// @return status The status of the order. function getERC721OrderStatus(LibNFTOrder.ERC721Order _calldata_ order) _external_ _view_ returns (LibNFTOrder.OrderStatus status); getERC721OrderHash ---------------------------- A read function to return the uniquie order hash. .. code-block:: solidity /// @dev Get the canonical hash of an ERC721 order. /// @param order The ERC721 order. /// @return orderHash The order hash. function getERC721OrderHash(LibNFTOrder.ERC721Order _calldata_ order) _external_ _view_ returns (bytes32 orderHash); getERC721OrderStatusBitVector --------------------------------- .. code-block:: solidity /// @dev Get the order status bit vector for the given /// maker address and nonce range. /// @param maker The maker of the order. /// @param nonceRange Order status bit vectors are indexed /// by maker address and the upper 248 bits of the /// order nonce. We define `nonceRange` to be these /// 248 bits. /// @return bitVector The order status bit vector for the /// given maker and nonce range. function getERC721OrderStatusBitVector(address maker, uint248 nonceRange) _external_ _view_ returns (uint256 bitVector); sellERC1155 ---------------------------- Sells an ERC115 token given a buy order. .. code-block:: solidity /// @dev Sells an ERC1155 asset to fill the given order. /// @param buyOrder The ERC1155 buy order. /// @param signature The order signature from the maker. /// @param erc1155TokenId The ID of the ERC1155 asset being /// sold. If the given order specifies properties, /// the asset must satisfy those properties. Otherwise, /// it must equal the tokenId in the order. /// @param erc1155SellAmount The amount of the ERC1155 asset /// to sell. /// @param unwrapNativeToken If this parameter is true and the /// ERC20 token of the order is e.g. WETH, unwraps the /// token before transferring it to the taker. /// @param callbackData If this parameter is non-zero, invokes /// `zeroExERC1155OrderCallback` on `msg.sender` after /// the ERC20 tokens have been transferred to `msg.sender` /// but before transferring the ERC1155 asset to the buyer. function sellERC1155( LibNFTOrder.ERC1155Order _calldata_ buyOrder, LibSignature.Signature _calldata_ signature, uint256 erc1155TokenId, uint128 erc1155SellAmount, bool unwrapNativeToken, bytes _calldata_ callbackData ) _external_; buyERC1155 ---------------------------- Buys an ERC115 token given a sell order. .. code-block:: solidity /// @dev Buys an ERC1155 asset by filling the given order. /// @param sellOrder The ERC1155 sell order. /// @param signature The order signature. /// @param erc1155BuyAmount The amount of the ERC1155 asset /// to buy. /// @param callbackData If this parameter is non-zero, invokes /// `zeroExERC1155OrderCallback` on `msg.sender` after /// the ERC1155 asset has been transferred to `msg.sender` /// but before transferring the ERC20 tokens to the seller. /// Native tokens acquired during the callback can be used /// to fill the order. function buyERC1155( LibNFTOrder.ERC1155Order _calldata_ sellOrder, LibSignature.Signature _calldata_ signature, uint128 erc1155BuyAmount, bytes _calldata_ callbackData ) _external_ _payable_; cancelERC1155Order ---------------------------- Cancels an ERC115 order given the order struct. .. code-block:: solidity /// @dev Cancel a single ERC1155 order. The caller should be the /// maker of the order. Silently succeeds if the order has /// already been filled or cancelled. /// @param order The order to cancel. function cancelERC1155Order(LibNFTOrder.ERC1155Order _calldata_ order) _external_; batchCancelERC1155Orders ---------------------------- Cancels a number of ERC115 orders. .. code-block:: solidity /// @dev Cancel multiple ERC1155 orders. The caller should be the /// maker of the orders. Silently succeeds if an order has /// already been filled or cancelled. /// @param orders The orders to cancel. function batchCancelERC1155Orders(LibNFTOrder.ERC1155Order[] _calldata_ orders) _external_; batchBuyERC1155s ---------------------------- Buys multiple ERC1155 assets given the sell orders. .. code-block:: solidity /// @dev Buys multiple ERC1155 assets by filling the /// given orders. /// @param sellOrders The ERC1155 sell orders. /// @param signatures The order signatures. /// @param erc1155TokenAmounts The amounts of the ERC1155 assets /// to buy for each order. /// @param revertIfIncomplete If true, reverts if this /// function fails to fill any individual order. /// @return successes An array of booleans corresponding to whether /// each order in `orders` was successfully filled. function batchBuyERC1155s( LibNFTOrder.ERC1155Order[] _calldata_ sellOrders, LibSignature.Signature[] _calldata_ signatures, uint128[] _calldata_ erc1155TokenAmounts, bool revertIfIncomplete ) _external_ _payable_ returns (bool[] _memory_ successes); preSignERC1155Order ---------------------------- Pre-signs the order on-chain. This is useful for smart contracts. .. code-block:: solidity /// @dev Approves an ERC1155 order on-chain. After pre-signing /// the order, the `PRESIGNED` signature type will become /// valid for that order and signer. /// @param order An ERC1155 order. function preSignERC1155Order(LibNFTOrder.ERC1155Order _calldata_ order) _external_; validateERC1155OrderSignature --------------------------------- A read function to validate the ERC1155 order signatures. .. code-block:: solidity /// @dev Checks whether the given signature is valid for the /// the given ERC1155 order. Reverts if not. /// @param order The ERC1155 order. /// @param signature The signature to validate. function validateERC1155OrderSignature( LibNFTOrder.ERC1155Order calldata order, LibSignature.Signature calldata signature ) external view; validateERC1155OrderProperties --------------------------------- A read function to validate the specific ERC1155 asset against a property based order. .. code-block:: solidity /// @dev If the given order is buying an ERC1155 asset, checks /// whether or not the given token ID satisfies the required /// properties specified in the order. If the order does not /// specify any properties, this function instead checks /// whether the given token ID matches the ID in the order. /// Reverts if any checks fail, or if the order is selling /// an ERC1155 asset. /// @param order The ERC1155 order. /// @param erc1155TokenId The ID of the ERC1155 asset. function validateERC1155OrderProperties( LibNFTOrder.ERC1155Order calldata order, uint256 erc1155TokenId ) external view; getERC1155OrderInfo ---------------------------- A read function to get the ERC1155 order info. Such as whether it has been cancelled, expired or filled. .. code-block:: solidity /// @dev Get the order info for an ERC1155 order. /// @param order The ERC1155 order. /// @return orderInfo Infor about the order. function getERC1155OrderInfo(LibNFTOrder.ERC1155Order calldata order) external view returns (LibNFTOrder.OrderInfo memory orderInfo); getERC1155OrderHash ---------------------------- A read function to calculate the unique order hash. .. code-block:: solidity /// @dev Get the canonical hash of an ERC1155 order. /// @param order The ERC1155 order. /// @return orderHash The order hash. function getERC1155OrderHash(LibNFTOrder.ERC1155Order calldata order) external view returns (bytes32 orderHash);