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