From 9e9ec1326ecbccc9d83f3474b3a61435708d62cb Mon Sep 17 00:00:00 2001 From: John <75003086+ZYJLiu@users.noreply.github.com> Date: Mon, 11 Dec 2023 13:18:48 -0600 Subject: [PATCH] proofread --- content/guides/token-2022/non-transferable.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/guides/token-2022/non-transferable.md b/content/guides/token-2022/non-transferable.md index b1d0c7644..cf75733ec 100644 --- a/content/guides/token-2022/non-transferable.md +++ b/content/guides/token-2022/non-transferable.md @@ -17,9 +17,9 @@ altRoutes: - /developers/guides/non-transferable-tokens --- -The "soul-bound" token concept involves creating digital assets that are -intrinsically linked to an individual. The `NonTransferable` extension makes it -possible to create tokens that cannot be transferred. While tokens cannot be +The `NonTransferable` extension makes it possible to create tokens that cannot +be transferred. This enables the creation of "soul-bound" tokens, where digital +assets are intrinsically linked to an individual. While tokens cannot be transferred, the owner can still burn tokens and close the Token Account. This prevents users from being "stuck" with an unwanted asset. @@ -118,7 +118,7 @@ const mintLen = getMintLen([ExtensionType.NonTransferable]); const lamports = await connection.getMinimumBalanceForRentExemption(mintLen); ``` -With Token Extensions, the size of the mint account will vary based on the +With Token Extensions, the size of the Mint Account will vary based on the extensions enabled. ## Build Instructions