设置 #
安装 IDE 和环境设置。
安装 Move IDE
要安装它,你需要:
安装 Aptos 命令行界面(CLI)
你可以从这里获取。
使用 Aptos CLI 运行代码
首先你的文件夹结构应该是这样的:
move_project
|-sources
|-first.move
|Move.toml
first.move:
module my_addrx::Sample
{
use std::debug;
fun sample_function()
{
debug::print(&12345);
}
#[test]
fun testing()
{
sample_function();
}
}
Move.toml:
[package]
name = "move_project"
version = "0.0.0"
[dependencies]
AptosFramework = { git = "https://github.com/aptos-labs/aptos-core.git", subdir = "aptos-move/framework/aptos-framework", rev = "mainnet" }
[addresses]
my_addrx = "0x42"
std = "0x1"
编译模块:
在 VSCode 终端运行 aptos move compile
来编译模块。
测试模块:
在 VSCode 终端运行 aptos move test
来运行单元测试。
查看这里获取有关 Aptos CLI 的更多信息。