开发环境准备

为了开始您在 Aptos 生态系统中的开发之旅,请按照本节内容所述,设置您的开发环境。

克隆(git clone)Aptos-core 代码仓库

我们从克隆 aptos-coreGithub 仓库 开始:

  1. 克隆 aptos-core 的代码仓库

    git clone <https://github.com/aptos-labs/aptos-core.git>
  2. cd 到 aptos-core 的仓库路径下:

    cd aptos-core
  3. 按照如下指令运行 scripts/dev_setup.sh 的 Bash 脚本,这将为你的开发环境做好准备。

    ./scripts/dev_setup.sh
  4. 更新当前的 Shell 环境变量

    source ~/.cargo/env
  5. 如果你不打算安装 Aptos 节点,那么跳过以下步骤。

    以下是 Aptos 其中两个测试网:

    • Devnet

      使用以下命令切换到 devnet 分支

      git checkout --track origin/devnet
    • Testnet

      使用以下命令切换到 testnet 分支

      git checkout --track origin/testnet

现在基本的 Aptos 开发环境就已就绪。

Aptos devnet

Move 的 IDE 插件

Aptos CLI

Aptos SDK

Aptos explorer

  • Aptos Exporer. Use the top-right drop-down menu to select the network.

Last updated