From 09ff6605657e3c8c7adfc9419ef33c951cb43c0d Mon Sep 17 00:00:00 2001 From: Danilo Tuler Date: Thu, 24 Oct 2024 23:40:29 -0400 Subject: [PATCH] Fix docs --- apps/docs/pages/wallet.mdx | 2 +- apps/docs/pages/wallet/transfer-erc721.mdx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/docs/pages/wallet.mdx b/apps/docs/pages/wallet.mdx index 85f4d2d..339698b 100644 --- a/apps/docs/pages/wallet.mdx +++ b/apps/docs/pages/wallet.mdx @@ -11,7 +11,7 @@ This notification includes what asset was transferred and who transferred it, al ## Deposit -The `@deroll/wallet` module provides an in-memory implementation of a wallet management that automatically takes care of receiving asset notification from portals, and providing a simple API for querying, trasferring inside the application, and creating vouchers to withdraw back to the base layer. +The `@deroll/wallet` module provides an in-memory implementation of a wallet management that automatically takes care of receiving asset notification from portals, and providing a simple API for querying, transferring inside the application, and creating vouchers to withdraw back to the base layer. :::code-group ```bash [pnpm] diff --git a/apps/docs/pages/wallet/transfer-erc721.mdx b/apps/docs/pages/wallet/transfer-erc721.mdx index b55e64b..66306bf 100644 --- a/apps/docs/pages/wallet/transfer-erc721.mdx +++ b/apps/docs/pages/wallet/transfer-erc721.mdx @@ -22,7 +22,6 @@ app.addAdvanceHandler(wallet.handler); const token = "0xc6582A9b48F211Fa8c2B5b16CB615eC39bcA653B"; // NFT address app.addAdvanceHandler(async ({ metadata, payload }) => { wallet.transferERC721(token, metadata.msg_sender, payload, 1n); // [!code focus] - wallet.trasfer return "accept"; }); ```