From 4c1b2cbe7c9ee7793e747ecccee912c7dbcfbf58 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Tue, 12 Dec 2023 09:31:09 -0500 Subject: [PATCH] FA2 requires that tokens actually transfer (#191) * FA2 requires that tokens actually transfer * Incorrectly formatted date --- docs/architecture/tokens.md | 3 +-- docs/architecture/tokens/FA2.md | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/architecture/tokens.md b/docs/architecture/tokens.md index 8b4518a11..5ba3e6f94 100644 --- a/docs/architecture/tokens.md +++ b/docs/architecture/tokens.md @@ -2,7 +2,7 @@ title: Tokens authors: "Claude Barde, Aymeric Bethencourt, Tim McMackin" last_update: - date: 1 November 2023 + date: 28 November 2023 --- In a blockchain ecosystem, a digital asset that can be transferred between accounts is called a _token_. @@ -13,7 +13,6 @@ Tezos supports many types of tokens, including: - Non-fungible tokens (NFTs), which are unique digital assets that can represent ownership of something - Stablecoins, which are tied to the price of fiat currencies such as USD and EUR - Wrapped tokens, which represent tokens from another blockchain or another standard; see [Wrapped tokens](#wrapped-tokens) -- Non-transferable tokens, also known as soulbound tokens, which cannot be transferred to another account after they are created It's important to remember that in most cases, Tezos tokens are managed by smart contracts. Tokens are not stored directly in accounts; instead, smart contracts keep a ledger of how many tokens different accounts hold. diff --git a/docs/architecture/tokens/FA2.md b/docs/architecture/tokens/FA2.md index e48f56ad3..5731160d7 100644 --- a/docs/architecture/tokens/FA2.md +++ b/docs/architecture/tokens/FA2.md @@ -2,14 +2,13 @@ title: FA2 tokens authors: "Claude Barde, Aymeric Bethencourt, Tim McMackin" last_update: - date: 26 October 2023 + date: 28 November 2023 --- The FA2 standard supports several different token types, including: - Fungible tokens - Non-fungible tokens (NFTs) -- Non-transferable tokens, also known as soulbound tokens - Multiple types of tokens in the same contract FA2 gives developers freedom to create new types of tokens while following an interface standard that lets the tokens work with existing wallets and applications.