forked from Fankouzu/solana-basic-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'architecture' of https://github.com/brooke007/solana-ba…
…sic-ui into architecture
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Solana 命令行工具 | ||
|
||
在本节中,我们将讲解如何使用Solana命令行工具创建一个钱包,发送和接受SOL代币,并通过委托质押与集群交互。 | ||
|
||
为了与Solana集群交互,我们将使用命令行界面(也称CLI)。我们使用命令行,因为它是 Solana 核心团队更新部署功能的第一个地方。命令行界面不一定是最容易使用的,但它提供了对您的 Solana 账户最直接、最灵活和最安全的访问。 | ||
|
||
## 入门 | ||
|
||
要开始使用 Solana 命令行 (CLI) 工具,请执行以下操作: | ||
|
||
- [安装Solana CLI工具套件](https://docs.solanalabs.com/cli/install) | ||
- [CLI工具介绍](https://docs.solanalabs.com/cli/intro) | ||
- [使用CLI创建钱包](https://docs.solanalabs.com/cli/wallets/) | ||
- [使用CLI来选择要连接的集群](https://docs.solanalabs.com/cli/examples/choose-a-cluster) | ||
|