Update nft_guide.rst

typo fix
This commit is contained in:
NetWalker108 2025-03-30 19:28:44 -04:00 committed by GitHub
parent b319a4dceb
commit bdaca262fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,7 +46,7 @@ The following code snippet shows how to construct a basic ERC721 sell order in J
expiry: new utils.BigNumber(Math.floor(Date.now() / 1000 + 3600)),
});
An ERC721 sell order can be created similarly. Note that buy orders must use WETH instead of ether, because the ERC20 `transferFrom` functionality is needed to execute a buy order.
An ERC721 buy order can be created similarly. Note that buy orders must use WETH instead of ether, because the ERC20 `transferFrom` functionality is needed to execute a buy order.
.. code-block:: javascript
@ -463,4 +463,4 @@ To fetch collection-level NFT stats from 0x orders (e.g. floor price, total volu
- `https://module.readme.io/reference/retrieve-collection-floor <https://module.readme.io/reference/retrieve-collection-floor>`_
- `https://api.reservoir.tools/#/2.%20Aggregator/getEventsCollectionsFlooraskV1 <https://api.reservoir.tools/#/2.%20Aggregator/getEventsCollectionsFlooraskV1>`_
These tools are not 0x specific but NFT data is somewhat universal so these tools should do the trick.
These tools are not 0x specific but NFT data is somewhat universal so these tools should do the trick.