From 10a6e6a4aa950f589c39d566143f180790618d6c Mon Sep 17 00:00:00 2001 From: liang Date: Mon, 22 Aug 2022 17:27:42 +0800 Subject: [PATCH] added reference table to metaplex --- solana/caip19.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/solana/caip19.md b/solana/caip19.md index 76b281f465f23..e663748bf1718 100644 --- a/solana/caip19.md +++ b/solana/caip19.md @@ -27,7 +27,12 @@ But both asset type can be identified by their "mint" account. ## Syntax -After the CAIP-2 namespace+chainID, a slash defines an `asset_namespace` and an `asset_reference`. And since both fungible and non-fungible tokens can be identified using the mint account, we could use `token` as the namespace and the address of the mint account as the reference. +After the CAIP-2 namespace+chainID, a slash defines an `asset_namespace` and an `asset_reference`. And since both fungible and non-fungible tokens can be identified using the mint account, we could use `token`, `nft` as the namespace and the address of the `mint` account as the reference. + +| Reference | Equivalent to | See also | +| :--- | :---- | :--- | +| token | ERC20 Token | [Metaplex](https://docs.metaplex.com/programs/token-metadata/token-standard) Fungible | +| nft | ERC721 | [Metaplex](https://docs.metaplex.com/programs/token-metadata/token-standard) NonFungible| ## Examples