From 774ae8414548a7a9bcbbc5c13b42aa933a68dda1 Mon Sep 17 00:00:00 2001 From: Davirain Date: Tue, 29 Aug 2023 16:44:35 +0800 Subject: [PATCH] update --- docs/Solana-Co-Learn/module1/block-chain-basic/README.md | 3 +++ .../build-an-interaction-script/README.md | 4 ++++ .../read-data-from-the-solana-network/README.md | 7 ++++++- .../write-data-to-the-blockchain/README.md | 4 ++++ .../build-a-movie-review-app/README.md | 4 ++++ .../custom-instruction/custom-instructions/README.md | 4 ++++ .../run-it-back-deserialization/README.md | 4 ++++ .../local_program_development/anchor_program_hello.md | 4 ++++ .../local_program_development.md | 4 ++++ .../local_program_development/native_program_hello.md | 4 ++++ .../local_program_development/solang_program_hello.md | 4 ++++ .../build-an-nft-minter-front-end/README.md | 4 ++++ .../deploy-to-vercel/README.md | 4 ++++ docs/Solana-Co-Learn/module1/wallet-usage/README.md | 9 +++++++++ .../wallets-and-frontends/connecting-to-wallet/README.md | 3 +++ .../interact-with-a-program/README.md | 3 +++ .../displaying-nfts-from-a-candy-machine/README.md | 6 ++++++ .../displaying-nfts-from-a-wallet/README.md | 6 ++++++ .../displayings-nfts-in-a-ui/displaying-nfts/README.md | 5 +++++ .../create-candy-machine/README.md | 6 ++++++ .../create-reward-tokens/README.md | 6 ++++++ .../create-the-minting-ui/README.md | 6 ++++++ .../candy-machine-and-the-sugar-cli/README.md | 7 +++++++ .../nft-your-face/README.md | 4 ++++ .../nfts-one-solana/README.md | 4 ++++ .../spl-token/give-your-token-an-identity/README.md | 3 +++ .../module2/spl-token/mint-token-on-solana/README.md | 4 ++++ .../module2/spl-token/the-token-program/README.md | 4 ++++ .../module2/spl-token/token-metadata/README.md | 4 ++++ .../module3/introduction-to-rust/hello-world/README.md | 3 +++ .../interact-wit-your-deployed-program/README.md | 4 ++++ .../the-magic-internet-computer/README.md | 3 +++ .../build-a-movie-review-program/README.md | 5 +++++ .../the-rust-layer-cake/README.md | 6 ++++++ .../nft-staking/build-an-nft-staking-program/README.md | 5 +++++ .../module3/nft-staking/how-staking-works/README.md | 5 +++++ .../error-handling-and-data-validation/README.md | 5 +++++ .../security-and-validation/secure-our-program/README.md | 5 +++++ 38 files changed, 174 insertions(+), 1 deletion(-) diff --git a/docs/Solana-Co-Learn/module1/block-chain-basic/README.md b/docs/Solana-Co-Learn/module1/block-chain-basic/README.md index d45459579..64183a811 100644 --- a/docs/Solana-Co-Learn/module1/block-chain-basic/README.md +++ b/docs/Solana-Co-Learn/module1/block-chain-basic/README.md @@ -2,6 +2,9 @@ sidebar_position: 6 sidebar_label: 区块链基本概念介绍 sidebar_class_name: green +tags: + - blockchain + - basic --- # 区块链基本概念介绍 diff --git a/docs/Solana-Co-Learn/module1/client-side-development/build-an-interaction-script/README.md b/docs/Solana-Co-Learn/module1/client-side-development/build-an-interaction-script/README.md index 93735c3d3..ac3165644 100644 --- a/docs/Solana-Co-Learn/module1/client-side-development/build-an-interaction-script/README.md +++ b/docs/Solana-Co-Learn/module1/client-side-development/build-an-interaction-script/README.md @@ -2,6 +2,10 @@ sidebar_position: 15 sidebar_label: 📝 构建一个交互脚本 sidebar_class_name: green +tags: + - client-side-development + - solana + - rpc --- diff --git a/docs/Solana-Co-Learn/module1/client-side-development/read-data-from-the-solana-network/README.md b/docs/Solana-Co-Learn/module1/client-side-development/read-data-from-the-solana-network/README.md index cb4bc5ae0..86d8049f7 100644 --- a/docs/Solana-Co-Learn/module1/client-side-development/read-data-from-the-solana-network/README.md +++ b/docs/Solana-Co-Learn/module1/client-side-development/read-data-from-the-solana-network/README.md @@ -1,9 +1,14 @@ --- sidebar_position: 13 -sidebar_label: 从Solana 🤓 区块链中读取数据 sidebar_class_name: green +sidebar_label: 从Solana 🤓 区块链中读取数据 +tags: + - client-side-development + - solana + - rpc --- + # 从 Solana 🤓 区块链读取数据 作为`Solana`开发者,这正是你学习之旅的起点。我们将从基础开始——从区块链中读取数据。 diff --git a/docs/Solana-Co-Learn/module1/client-side-development/write-data-to-the-blockchain/README.md b/docs/Solana-Co-Learn/module1/client-side-development/write-data-to-the-blockchain/README.md index 69933ca6f..cce69eee2 100644 --- a/docs/Solana-Co-Learn/module1/client-side-development/write-data-to-the-blockchain/README.md +++ b/docs/Solana-Co-Learn/module1/client-side-development/write-data-to-the-blockchain/README.md @@ -2,6 +2,10 @@ sidebar_position: 14 sidebar_label: ✍将数据写入区块链 sidebar_class_name: green +tags: + - client-side-development + - solana + - rpc --- # ✍将数据写入区块链 diff --git a/docs/Solana-Co-Learn/module1/custom-instruction/build-a-movie-review-app/README.md b/docs/Solana-Co-Learn/module1/custom-instruction/build-a-movie-review-app/README.md index 188ae2cf4..1bd5a7c30 100644 --- a/docs/Solana-Co-Learn/module1/custom-instruction/build-a-movie-review-app/README.md +++ b/docs/Solana-Co-Learn/module1/custom-instruction/build-a-movie-review-app/README.md @@ -2,6 +2,10 @@ sidebar_position: 21 sidebar_label: 🎥 构建一个电影评论应用 sidebar_class_name: green +tags: + - custom-instruction + - solana + - rpc --- # 🎥 构建一个电影评论应用 diff --git a/docs/Solana-Co-Learn/module1/custom-instruction/custom-instructions/README.md b/docs/Solana-Co-Learn/module1/custom-instruction/custom-instructions/README.md index 0df9d9652..eebbc71dc 100644 --- a/docs/Solana-Co-Learn/module1/custom-instruction/custom-instructions/README.md +++ b/docs/Solana-Co-Learn/module1/custom-instruction/custom-instructions/README.md @@ -2,6 +2,10 @@ sidebar_position: 20 sidebar_label: 🤔 自定义指令 sidebar_class_name: green +tags: + - custom-instruction + - solana + - rpc --- # 🤔 自定义指令 diff --git a/docs/Solana-Co-Learn/module1/custom-instruction/run-it-back-deserialization/README.md b/docs/Solana-Co-Learn/module1/custom-instruction/run-it-back-deserialization/README.md index e1b1e6780..10e4154f6 100644 --- a/docs/Solana-Co-Learn/module1/custom-instruction/run-it-back-deserialization/README.md +++ b/docs/Solana-Co-Learn/module1/custom-instruction/run-it-back-deserialization/README.md @@ -2,6 +2,10 @@ sidebar_position: 22 sidebar_label: 📡 Run is back - 反序列化 sidebar_class_name: green +tags: + - custom-instruction + - solana + - rpc --- # 📡 Run is back - 反序列化 diff --git a/docs/Solana-Co-Learn/module1/local_program_development/anchor_program_hello.md b/docs/Solana-Co-Learn/module1/local_program_development/anchor_program_hello.md index 370bab655..3828423ea 100644 --- a/docs/Solana-Co-Learn/module1/local_program_development/anchor_program_hello.md +++ b/docs/Solana-Co-Learn/module1/local_program_development/anchor_program_hello.md @@ -2,6 +2,10 @@ sidebar_position: 9 sidebar_label: Anchor 合约框架实现 - hello, World 🌍 With PDA sidebar_class_name: green +tags: + - anchor-program-hello + - solana + - program --- # Anchor 合约框架实现 - hello, World 🌍 With PDA diff --git a/docs/Solana-Co-Learn/module1/local_program_development/local_program_development.md b/docs/Solana-Co-Learn/module1/local_program_development/local_program_development.md index 0357ff2fb..abbdf31d8 100644 --- a/docs/Solana-Co-Learn/module1/local_program_development/local_program_development.md +++ b/docs/Solana-Co-Learn/module1/local_program_development/local_program_development.md @@ -2,6 +2,10 @@ sidebar_position: 7 sidebar_label: 本地开发环境配置 sidebar_class_name: green +tags: + - local-development + - solana + - program --- # 本地开发环境配置 diff --git a/docs/Solana-Co-Learn/module1/local_program_development/native_program_hello.md b/docs/Solana-Co-Learn/module1/local_program_development/native_program_hello.md index 3d9eba035..4ae3f0422 100644 --- a/docs/Solana-Co-Learn/module1/local_program_development/native_program_hello.md +++ b/docs/Solana-Co-Learn/module1/local_program_development/native_program_hello.md @@ -2,6 +2,10 @@ sidebar_position: 8 sidebar_label: Native Solana合约实现 - hello, World sidebar_class_name: green +tags: + - native-program-hello + - solana + - program --- # Native Solana合约实现 - hello, World diff --git a/docs/Solana-Co-Learn/module1/local_program_development/solang_program_hello.md b/docs/Solana-Co-Learn/module1/local_program_development/solang_program_hello.md index 88c28a5c3..e20c659ff 100644 --- a/docs/Solana-Co-Learn/module1/local_program_development/solang_program_hello.md +++ b/docs/Solana-Co-Learn/module1/local_program_development/solang_program_hello.md @@ -2,6 +2,10 @@ sidebar_position: 10 sidebar_label: Solang solidity合约实现 - hello, World sidebar_class_name: green +tags: + - solang-program-hello + - solana + - program --- # Solang solidity合约实现 - hello, World diff --git a/docs/Solana-Co-Learn/module1/start-your-own-custom-project/build-an-nft-minter-front-end/README.md b/docs/Solana-Co-Learn/module1/start-your-own-custom-project/build-an-nft-minter-front-end/README.md index f8d43858c..cc939fd64 100644 --- a/docs/Solana-Co-Learn/module1/start-your-own-custom-project/build-an-nft-minter-front-end/README.md +++ b/docs/Solana-Co-Learn/module1/start-your-own-custom-project/build-an-nft-minter-front-end/README.md @@ -2,6 +2,10 @@ sidebar_position: 24 sidebar_label: 💻 构建 NFT 铸造者前端 sidebar_class_name: green +tags: + - start-your-own-custom-project + - solana + - frontend --- diff --git a/docs/Solana-Co-Learn/module1/start-your-own-custom-project/deploy-to-vercel/README.md b/docs/Solana-Co-Learn/module1/start-your-own-custom-project/deploy-to-vercel/README.md index 0e900ba93..3ed5f3681 100644 --- a/docs/Solana-Co-Learn/module1/start-your-own-custom-project/deploy-to-vercel/README.md +++ b/docs/Solana-Co-Learn/module1/start-your-own-custom-project/deploy-to-vercel/README.md @@ -2,6 +2,10 @@ sidebar_position: 25 sidebar_label: 🌐 部署到 Vercel sidebar_class_name: green +tags: + - start-your-own-custom-project + - solana + - deploy --- # 🌐 部署到 Vercel diff --git a/docs/Solana-Co-Learn/module1/wallet-usage/README.md b/docs/Solana-Co-Learn/module1/wallet-usage/README.md index 65f787457..b7aaca4a9 100644 --- a/docs/Solana-Co-Learn/module1/wallet-usage/README.md +++ b/docs/Solana-Co-Learn/module1/wallet-usage/README.md @@ -1,3 +1,12 @@ +--- +sidebar_label: Solana钱包使用 - Backpack 🎒 +sidebar_class_name: green +tags: + - wallet-usage + - solana + - backpack +--- + # Solana钱包使用 - Backpack 🎒 Solana的钱包种类繁多,如众所周知的`Phantom`钱包。然而,在此我并不推荐使用`Phantom`,因为对于开发者来说,它并不够友好。 diff --git a/docs/Solana-Co-Learn/module1/wallets-and-frontends/connecting-to-wallet/README.md b/docs/Solana-Co-Learn/module1/wallets-and-frontends/connecting-to-wallet/README.md index 0298911f3..f2fe66990 100644 --- a/docs/Solana-Co-Learn/module1/wallets-and-frontends/connecting-to-wallet/README.md +++ b/docs/Solana-Co-Learn/module1/wallets-and-frontends/connecting-to-wallet/README.md @@ -2,6 +2,9 @@ sidebar_position: 17 sidebar_label: 🔌 连接到钱包 sidebar_class_name: green +tags: + - wallet-and-frontend + - solana --- # 🔌 连接到钱包 diff --git a/docs/Solana-Co-Learn/module1/wallets-and-frontends/interact-with-a-program/README.md b/docs/Solana-Co-Learn/module1/wallets-and-frontends/interact-with-a-program/README.md index b894c090c..7ab0959c6 100644 --- a/docs/Solana-Co-Learn/module1/wallets-and-frontends/interact-with-a-program/README.md +++ b/docs/Solana-Co-Learn/module1/wallets-and-frontends/interact-with-a-program/README.md @@ -2,6 +2,9 @@ sidebar_position: 18 sidebar_label: 🦺 与程序进行交互 sidebar_class_name: green +tags: + - wallet-and-frontend + - solana --- # 🦺 与程序进行交互 diff --git a/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-candy-machine/README.md b/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-candy-machine/README.md index 7d7973bf7..60f17c958 100644 --- a/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-candy-machine/README.md +++ b/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-candy-machine/README.md @@ -2,6 +2,12 @@ sidebar_position: 39 sidebar_label: 🖼 从糖果机展示NFTs sidebar_class_name: green +tags: + - displayings-nfts + - solana + - nft + - metaplex + - candy --- # 🖼 从糖果机展示NFTs diff --git a/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-wallet/README.md b/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-wallet/README.md index e2d13bc00..3defd029f 100644 --- a/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-wallet/README.md +++ b/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts-from-a-wallet/README.md @@ -2,6 +2,12 @@ sidebar_position: 38 sidebar_label: 📱 在钱包中展示NFTs sidebar_class_name: green +tags: + - displayings-nfts + - solana + - nft + - metaplex + - wallet --- # 📱 在钱包中展示NFTs diff --git a/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts/README.md b/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts/README.md index 1792b9668..ba15cc84d 100644 --- a/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts/README.md +++ b/docs/Solana-Co-Learn/module2/displayings-nfts-in-a-ui/displaying-nfts/README.md @@ -2,6 +2,11 @@ sidebar_position: 37 sidebar_label: 💃 展示NFTs sidebar_class_name: green +tags: + - displayings-nfts + - solana + - nft + - metaplex --- # 💃 展示`NFTs` diff --git a/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-candy-machine/README.md b/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-candy-machine/README.md index 461fe2a12..21f43bac9 100644 --- a/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-candy-machine/README.md +++ b/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-candy-machine/README.md @@ -2,6 +2,12 @@ sidebar_position: 42 sidebar_label: 🍬 创造糖果机 sidebar_class_name: green +tags: + - displayings-nfts + - solana + - nft + - metaplex + - candy-machine --- # 🍬 创建糖果机 diff --git a/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-reward-tokens/README.md b/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-reward-tokens/README.md index 9b7374b92..2b6deb188 100644 --- a/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-reward-tokens/README.md +++ b/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-reward-tokens/README.md @@ -2,6 +2,12 @@ sidebar_position: 41 sidebar_label: 🎨 创建奖励代币 sidebar_class_name: green +tags: + - displayings-nfts + - solana + - nft + - metaplex + - spl-token --- # 🎨 创建奖励代币 diff --git a/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-the-minting-ui/README.md b/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-the-minting-ui/README.md index 2cd52cce8..cad4d8a76 100644 --- a/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-the-minting-ui/README.md +++ b/docs/Solana-Co-Learn/module2/make-magic-internet-money-and-sell-jepgs/create-the-minting-ui/README.md @@ -2,6 +2,12 @@ sidebar_position: 43 sidebar_label: 🎨 创建铸币用户界面 sidebar_class_name: green +tags: + - displayings-nfts + - solana + - nft + - metaplex + - frontend --- # 🎨 创建铸币用户界面 diff --git a/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/candy-machine-and-the-sugar-cli/README.md b/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/candy-machine-and-the-sugar-cli/README.md index a29d0a8ce..aec3cfb79 100644 --- a/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/candy-machine-and-the-sugar-cli/README.md +++ b/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/candy-machine-and-the-sugar-cli/README.md @@ -2,6 +2,13 @@ sidebar_position: 36 sidebar_label: 🍭 糖果机和Sugar CLI sidebar_class_name: green +tags: + - displayings-nfts + - solana + - nft + - metaplex + - candy-machine + - sugar-cli --- # 🍭 糖果机和Sugar CLI diff --git a/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nft-your-face/README.md b/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nft-your-face/README.md index eb3c0879e..7bf0a929b 100644 --- a/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nft-your-face/README.md +++ b/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nft-your-face/README.md @@ -2,6 +2,10 @@ sidebar_position: 35 sidebar_label: 🤨 NFT你的脸 sidebar_class_name: green +tags: + - nfts-and-minting-with-metaplex + - solana + - nft --- # 🤨 NFT你的脸 diff --git a/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nfts-one-solana/README.md b/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nfts-one-solana/README.md index 38a5c759c..36d67084d 100644 --- a/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nfts-one-solana/README.md +++ b/docs/Solana-Co-Learn/module2/nfts-and-minting-with-metaplex/nfts-one-solana/README.md @@ -2,6 +2,10 @@ sidebar_position: 34 sidebar_label: 🎨 Solana上的NFT sidebar_class_name: green +tags: + - nfts-and-minting-with-metaplex + - solana + - nft --- # 🎨 Solana上的NFT diff --git a/docs/Solana-Co-Learn/module2/spl-token/give-your-token-an-identity/README.md b/docs/Solana-Co-Learn/module2/spl-token/give-your-token-an-identity/README.md index 8d6fd7192..88632433e 100644 --- a/docs/Solana-Co-Learn/module2/spl-token/give-your-token-an-identity/README.md +++ b/docs/Solana-Co-Learn/module2/spl-token/give-your-token-an-identity/README.md @@ -2,6 +2,9 @@ sidebar_position: 32 sidebar_label: 🧬 为你的代币赋予身份 sidebar_class_name: green +tags: + - spl-token + - solana --- # 🧬 为你的代币赋予身份 diff --git a/docs/Solana-Co-Learn/module2/spl-token/mint-token-on-solana/README.md b/docs/Solana-Co-Learn/module2/spl-token/mint-token-on-solana/README.md index 9c805f6a3..35b8edbf5 100644 --- a/docs/Solana-Co-Learn/module2/spl-token/mint-token-on-solana/README.md +++ b/docs/Solana-Co-Learn/module2/spl-token/mint-token-on-solana/README.md @@ -2,6 +2,10 @@ sidebar_position: 29 sidebar_label: 🏧 在Solana上铸造代币 sidebar_class_name: green +tags: + - spl-token + - solana + - mint-spl-token --- # 🏧 在Solana上铸造代币 diff --git a/docs/Solana-Co-Learn/module2/spl-token/the-token-program/README.md b/docs/Solana-Co-Learn/module2/spl-token/the-token-program/README.md index f49e01c0a..8ca9ea559 100644 --- a/docs/Solana-Co-Learn/module2/spl-token/the-token-program/README.md +++ b/docs/Solana-Co-Learn/module2/spl-token/the-token-program/README.md @@ -2,6 +2,10 @@ sidebar_position: 28 sidebar_label: 💵 Token Program sidebar_class_name: green +tags: + - spl-token + - solana + - token-program --- # 💵 Token Program diff --git a/docs/Solana-Co-Learn/module2/spl-token/token-metadata/README.md b/docs/Solana-Co-Learn/module2/spl-token/token-metadata/README.md index 7e2eaa163..f7e109f59 100644 --- a/docs/Solana-Co-Learn/module2/spl-token/token-metadata/README.md +++ b/docs/Solana-Co-Learn/module2/spl-token/token-metadata/README.md @@ -2,6 +2,10 @@ sidebar_position: 31 sidebar_label: 🧮 令牌元数据 sidebar_class_name: green +tags: + - spl-token + - solana + - token-metadata --- # 🧮 令牌元数据 diff --git a/docs/Solana-Co-Learn/module3/introduction-to-rust/hello-world/README.md b/docs/Solana-Co-Learn/module3/introduction-to-rust/hello-world/README.md index 47d1c105b..9d309d241 100644 --- a/docs/Solana-Co-Learn/module3/introduction-to-rust/hello-world/README.md +++ b/docs/Solana-Co-Learn/module3/introduction-to-rust/hello-world/README.md @@ -2,6 +2,9 @@ sidebar_position: 52 sidebar_label: 📝 你好,世界 sidebar_class_name: green +tags: + - intro-rust + - solana --- # 📝 你好,世界 diff --git a/docs/Solana-Co-Learn/module3/introduction-to-rust/interact-wit-your-deployed-program/README.md b/docs/Solana-Co-Learn/module3/introduction-to-rust/interact-wit-your-deployed-program/README.md index c984ae8db..896a772cc 100644 --- a/docs/Solana-Co-Learn/module3/introduction-to-rust/interact-wit-your-deployed-program/README.md +++ b/docs/Solana-Co-Learn/module3/introduction-to-rust/interact-wit-your-deployed-program/README.md @@ -2,6 +2,10 @@ sidebar_position: 53 sidebar_label: 👋 与你部署的程序互动 sidebar_class_name: green +tags: + - intro-rust + - solana + - program --- # 👋 与你部署的程序互动 diff --git a/docs/Solana-Co-Learn/module3/introduction-to-rust/the-magic-internet-computer/README.md b/docs/Solana-Co-Learn/module3/introduction-to-rust/the-magic-internet-computer/README.md index bf6ecd9cb..e1253baba 100644 --- a/docs/Solana-Co-Learn/module3/introduction-to-rust/the-magic-internet-computer/README.md +++ b/docs/Solana-Co-Learn/module3/introduction-to-rust/the-magic-internet-computer/README.md @@ -2,6 +2,9 @@ sidebar_position: 51 sidebar_label: ✨ 魔法互联网计算机 sidebar_class_name: green +tags: + - intro-rust + - solana --- # ✨ 魔法互联网计算机 diff --git a/docs/Solana-Co-Learn/module3/native-solana-development/build-a-movie-review-program/README.md b/docs/Solana-Co-Learn/module3/native-solana-development/build-a-movie-review-program/README.md index 578a52005..be908913f 100644 --- a/docs/Solana-Co-Learn/module3/native-solana-development/build-a-movie-review-program/README.md +++ b/docs/Solana-Co-Learn/module3/native-solana-development/build-a-movie-review-program/README.md @@ -2,6 +2,11 @@ sidebar_position: 56 sidebar_label: 🎥 构建一个电影评论程序 sidebar_class_name: green +tags: + - native-solana-development + - solana + - native-solana-program + - program --- # 🎥 构建一个电影评论程序 diff --git a/docs/Solana-Co-Learn/module3/native-solana-development/the-rust-layer-cake/README.md b/docs/Solana-Co-Learn/module3/native-solana-development/the-rust-layer-cake/README.md index 729381ed9..390e63888 100644 --- a/docs/Solana-Co-Learn/module3/native-solana-development/the-rust-layer-cake/README.md +++ b/docs/Solana-Co-Learn/module3/native-solana-development/the-rust-layer-cake/README.md @@ -2,6 +2,12 @@ sidebar_position: 55 sidebar_label: 🎂 Rust的分层蛋糕 sidebar_class_name: green +tags: + - native-solana-development + - solana + - native-solana-program + - program + - rust-layer-cake --- # 🎂 Rust的分层蛋糕 diff --git a/docs/Solana-Co-Learn/module3/nft-staking/build-an-nft-staking-program/README.md b/docs/Solana-Co-Learn/module3/nft-staking/build-an-nft-staking-program/README.md index 50039a4bf..0cfc5d8e9 100644 --- a/docs/Solana-Co-Learn/module3/nft-staking/build-an-nft-staking-program/README.md +++ b/docs/Solana-Co-Learn/module3/nft-staking/build-an-nft-staking-program/README.md @@ -2,6 +2,11 @@ sidebar_position: 63 sidebar_label: 🛠️ 构建NFT质押程序 sidebar_class_name: green +tags: + - nft-staking + - solana + - native-solana-program + - program --- # 🛠️ 构建NFT质押程序 diff --git a/docs/Solana-Co-Learn/module3/nft-staking/how-staking-works/README.md b/docs/Solana-Co-Learn/module3/nft-staking/how-staking-works/README.md index a45b291cb..1f76a64da 100644 --- a/docs/Solana-Co-Learn/module3/nft-staking/how-staking-works/README.md +++ b/docs/Solana-Co-Learn/module3/nft-staking/how-staking-works/README.md @@ -2,6 +2,11 @@ sidebar_position: 62 sidebar_label: 🕒 质押工作机制详解 sidebar_class_name: green +tags: + - nft-staking + - solana + - native-solana-program + - how-staking-works --- # 🕒 质押工作机制详解 diff --git a/docs/Solana-Co-Learn/module3/security-and-validation/error-handling-and-data-validation/README.md b/docs/Solana-Co-Learn/module3/security-and-validation/error-handling-and-data-validation/README.md index f99159518..9560c4b41 100644 --- a/docs/Solana-Co-Learn/module3/security-and-validation/error-handling-and-data-validation/README.md +++ b/docs/Solana-Co-Learn/module3/security-and-validation/error-handling-and-data-validation/README.md @@ -2,6 +2,11 @@ sidebar_position: 59 sidebar_label: ❗ 错误处理和数据验证 sidebar_class_name: green +tags: + - security-and-validation + - solana + - native-solana-program + - error-handle-and-data-validation --- # ❗ 错误处理和数据验证 diff --git a/docs/Solana-Co-Learn/module3/security-and-validation/secure-our-program/README.md b/docs/Solana-Co-Learn/module3/security-and-validation/secure-our-program/README.md index 7a152d060..2171eacd8 100644 --- a/docs/Solana-Co-Learn/module3/security-and-validation/secure-our-program/README.md +++ b/docs/Solana-Co-Learn/module3/security-and-validation/secure-our-program/README.md @@ -2,6 +2,11 @@ sidebar_position: 60 sidebar_label: 🔑 保障我们程序的安全 sidebar_class_name: green +tags: + - security-and-validation + - solana + - native-solana-program + - srcure-our-program --- # 🔑 保障我们程序的安全