From 69c7018f2a4e3bcf58f7c9a014967b94f6484412 Mon Sep 17 00:00:00 2001 From: umba <95478197+oxbau@users.noreply.github.com> Date: Sat, 25 Nov 2023 16:33:24 +0300 Subject: [PATCH] Update erc721-nft-bridge.mdx In the L2ERC721Gateway API section, the withdrawERC721 function description, the parameter list, mentions "deposit" instead of "withdraw." So I changed it to 'withdraw'. --- .../docs/en/developers/l1-and-l2-bridging/erc721-nft-bridge.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/developers/l1-and-l2-bridging/erc721-nft-bridge.mdx b/src/content/docs/en/developers/l1-and-l2-bridging/erc721-nft-bridge.mdx index a92bca857..749dd987b 100644 --- a/src/content/docs/en/developers/l1-and-l2-bridging/erc721-nft-bridge.mdx +++ b/src/content/docs/en/developers/l1-and-l2-bridging/erc721-nft-bridge.mdx @@ -106,7 +106,7 @@ Update the mapping that connects an NFT contract from L1 to L2. ### withdrawERC721 ```solidity -function depositERC721(address _token, address _to, uint256 _tokenId, uint256 _gasLimit) external payable; +function withdrawERC721(address _token, address _to, uint256 _tokenId, uint256 _gasLimit) external payable; ``` Send an ERC721 NFT from L2 to a recipient's account on L1.