File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
spl-token-with-anchor/introduction
spl-token-with-web3js/introduction Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import { ArticleSection } from "../../../../components/ArticleSection/ArticleSec
22
33# The Token Program
44
5+ ![ SPL Token with Anchor] ( /graphics/course-banners/spl-token-with-anchor.png )
6+
57在 Solana 上,所有与代币相关的操作都由 [ SPL Token Program] ( https://github.com/solana-program/token ) 和 [ Token2022 Program] ( /zh-cn/courses/token-2022-program ) 处理:这是 Solana 的原生代币框架,定义了所有代币的创建、管理和转移方式。
68
79这是一个单一的统一程序,处理整个网络中的所有代币操作,确保一致性和互操作性。
@@ -10,7 +12,7 @@ import { ArticleSection } from "../../../../components/ArticleSection/ArticleSec
1012
1113对于 Anchor,所有与代币相关的内容都可以在 ` anchor-spl ` crate 中找到。因此,在初始化了一个 ` Anchor ` 工作区后,我们可以这样做:
1214
13- ```
15+ ``` bash
1416cargo add anchor-spl
1517```
1618
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import { ArticleSection } from "../../../../components/ArticleSection/ArticleSec
22
33# The Token Program
44
5+ ![ SPL Token with Web3JS] ( /graphics/course-banners/spl-token-with-web3js.png )
6+
57在 Solana 上,所有与代币相关的操作都由 [ SPL Token Program] ( https://github.com/solana-program/token ) 和 [ Token2022 Program] ( /zh-cn/courses/token-2022-program ) 处理:这是 Solana 的原生代币框架,定义了所有代币的创建、管理和转移方式。
68
79这是一个统一的程序,处理网络中的所有代币操作,确保一致性和互操作性。
You can’t perform that action at this time.
0 commit comments