Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
DaviRain-Su committed Aug 3, 2023
1 parent 9aedeb9 commit 6026b5d
Show file tree
Hide file tree
Showing 14 changed files with 35 additions and 35 deletions.
32 changes: 16 additions & 16 deletions docs/Solana-Co-Learn/week1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ sidebar_class_name: green

# Solana Core1

## Client side Development
## 客户端开发

- 📹Reading & writing data on Solana with Gage
- [Reading data from the blockchain](./client-side-development/read-data-from-the-solana-network/README.md)
- [Writing data to the blockchain](./client-side-development/write-data-to-the-blockchain/README.md)
- [Build an interaction script](./client-side-development/build-an-interaction-script/README.md)
- 📹使用Gage在Solana上读取和写入数据
- [从区块链中读取数据](./client-side-development/read-data-from-the-solana-network/README.md)
- [将数据写入区块链](./client-side-development/write-data-to-the-blockchain/README.md)
- [构建一个交互脚本](./client-side-development/build-an-interaction-script/README.md)

## Wallets and frontends
## 钱包和前端

- [Connecting to a wallet](./connecting-to-wallet/README.md)
- [Interact with a program](./interact-with-a-program/README.md)
- [连接到钱包](./connecting-to-wallet/README.md)
- [与程序进行交互](./interact-with-a-program/README.md)

## Custom instructions
## 自定义指令

- 📹Custom instructions with Gage
- [Custom instructions](./custom-instruction/custom-instructions/README.md)
- [Build a movie review app](./custom-instruction/build-a-movie-review-app/README.md)
- [Run is back - deserialization](./custom-instruction/run-it-back-deserialization/README.md)
- 📹使用Gage自定义指令
- [自定义指令](./custom-instruction/custom-instructions/README.md)
- [构建一个电影评论应用](./custom-instruction/build-a-movie-review-app/README.md)
- [Run is back - 反序列化](./custom-instruction/run-it-back-deserialization/README.md)

## Start your own custom project
## 开始你自己的定制项目

- [Build an NFT minter front-end](./start-your-own-custom-project/build-an-nft-minter-front-end/README.md)
- [Deploy to Vercel](./start-your-own-custom-project/deplpy-to-vercel/README.md)
- [构建一个NFT铸造器前端](./start-your-own-custom-project/build-an-nft-minter-front-end/README.md)
- [部署到 Vercel](./start-your-own-custom-project/deplpy-to-vercel/README.md)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 12
sidebar_label: Client Side Development
sidebar_label: 客户端开发
sidebar_class_name: green
---
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 15
sidebar_label: 📝 构建交互脚本
sidebar_label: 📝 构建一个交互脚本
sidebar_class_name: green
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 13
sidebar_label: 从 Solana 🤓 区块链读取数据
sidebar_label: 从Solana 🤓区块链中读取数据
sidebar_class_name: green
---

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
sidebar_position: 14
sidebar_label: 将数据写入区块链
sidebar_label: ✍将数据写入区块链
sidebar_class_name: green
---

# 将数据写入区块链
# ✍将数据写入区块链

幼儿园毕业的时间到了。我们了解有关阅读的一切 - 您只需对 JSON RPC 端点进行 API 调用即可。让我们写入区块链吧!

Expand Down
2 changes: 1 addition & 1 deletion docs/Solana-Co-Learn/week1/custom-instruction/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 19
sidebar_label: Custom Instructions
sidebar_label: 自定义指令
sidebar_class_name: green
---
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
sidebar_position: 21
sidebar_label: 🎥 构建一个电影评论应用程序
sidebar_label: 🎥 构建一个电影评论应用
sidebar_class_name: green
---

# 🎥 构建一个电影评论应用程序
# 🎥 构建一个电影评论应用

现在我们已经完成了钱包连接,让我们的 ping 按钮真正执行一些操作!为了将所有这些结合在一起,我们将构建一个链上电影评论应用程序 - 它可以让任何人提交对他们最喜欢的电影的评论,有点像烂番茄。

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
sidebar_position: 20
sidebar_label: 🤔 定制说明
sidebar_label: 🤔 自定义指令
sidebar_class_name: green
---


# 🤔 定制说明
# 🤔 自定义指令

现在我们已经设置了钱包连接,让我们的 ping 按钮实际执行一些操作!您现在知道如何通过简单的交易读取数据并写入网络。几乎立刻,您就会发现自己希望通过交易发送数据。那么让我们看看如何向 Solana 区块链讲述您的故事。

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
sidebar_position: 22
sidebar_label: 📡 运行回来 - 反序列化
sidebar_label: 📡 Run is back - 反序列化
sidebar_class_name: green
---

# 📡 运行回来 - 反序列化
# 📡 Run is back - 反序列化

现在我们已经设置了钱包连接,让我们的 ping 按钮实际执行一些操作!将数据写入网络帐户只是成功的一半,另一半是读取数据。在第一部分中,我们使用 Web3.js 库中内置的函数来读取内容。这仅适用于绝对重要的数据,例如余额和交易详细信息。正如我们在上一节中看到的,所有好东西都在 PDA 中。

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 23
sidebar_label: Start Your Own Custom Prokject
sidebar_label: 开始你自己的定制项目
sidebar_class_name: green
---
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 24
sidebar_label: 💻 构建 NFT 铸币者前端
sidebar_label: 💻 构建一个NFT铸造器前端
sidebar_class_name: green
---

Expand Down
2 changes: 1 addition & 1 deletion docs/Solana-Co-Learn/week1/wallets-and-frontends/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 16
sidebar_label: Wallets and Frontends
sidebar_label: 钱包和前端
sidebar_class_name: green
---
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
sidebar_position: 17
sidebar_label: 🔌 连接钱包
sidebar_label: 🔌 连接到钱包
sidebar_class_name: green
---


# 🔌 连接钱包
# 🔌 连接到钱包

我们现在了解了很多有关通过代码与网络交互的知识。为了进行交易,我们使用私钥。这对用户不起作用,哈哈。为了让人们用真钱从我们这里购买 jpeg,我们需要与钱包合作。

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
sidebar_position: 18
sidebar_label: 🦺 与程序交互
sidebar_label: 🦺 与程序进行交互
sidebar_class_name: green
---

# 🦺 与程序交互
# 🦺 与程序进行交互

现在我们已经设置了钱包连接,让我们的 ping 按钮实际执行一些操作!

Expand Down

0 comments on commit 6026b5d

Please sign in to comment.