Prepare Aptos Dev Environment
To kickstart your journey in the Aptos ecosystem, set up your environment as needed by your role. To interact with Aptos, you may simply install the Aptos command line interface (CLI). To develop Aptos itself, you will need to clone the Aptos-core repository.
See the Workflows for use cases associated with each path. See the Aptos developer resources for quick links to Aptos networks, SDKs, and other tools.
Then review the Aptos source code, found in the Aptos-core repository of GitHub, and continue your journey through this site. The source contains READMEs and code comments invaluable to developing on Aptos.
Use supported operating systems
Aptos can be built on various operating systems, including Linux, macOS. and Windows. Aptos is tested extensively on Linux and macOS, and less so on Windows. Here are the versions we use:
- Linux - Ubuntu version 20.04 and 22.04
- macOS - macOS Monterey and later
- Microsoft Windows - Windows 10, 11 and Windows Server 2022+
See Installing Aptos CLI for instructions by operating system.
Meet hardware requirements
Aptos requires no specific hardware to develop on the blockchain. To run one of our nodes, see the hardware requirements for:
Workflows
CLI only
Most Aptos users will want to have the Aptos CLI installed. Install and use the Aptos CLI if you will:
Source code and CLI
In addition to installing the CLI, clone and review the Aptos repository if you will:
- Run a fullnode.
- Run a validator node.
- Take the starter tutorials, many of which rely upon Aptos source code.
- Extend and contribute to the Aptos blockchain itself; pull requests welcome!
Although Docker options exist for many of these configurations, you should download the Aptos source to become familiar with the innerworkings of the blockchain once you are conducting this more advanced work.
The Aptos source files themselves also contain a wealth of information in docs comments worth reviewing.
Install the Aptos CLI
Install Aptos CLI to interact with the Aptos network. As a developer in the Aptos ecosystem, set up your development environment as described in the link.
Clone the Aptos-core repo
As described in Workflows, you may interact with Aptos using only the CLI. If you need the source, clone the aptos-core
GitHub repo from GitHub.
Clone the Aptos repo.
git clone https://github.com/aptos-labs/aptos-core.git
cd
intoaptos-core
directory.cd aptos-core
Update your current shell environment to run
cargo build
and other Aptos-related commands:source ~/.cargo/env
Optionally, check out a release branch to install an Aptos node:
- Devnet
- Testnet
- Mainnet
Check out the
devnet
branch using:git checkout --track origin/devnet
Check out the
testnet
branch using:git checkout --track origin/testnet
Check out the
mainnet
branch using:git checkout --track origin/mainnet
Prepare development environment
Prepare your developer environment by installing the dependencies needed to build, test and inspect Aptos Core. You can do this either via the Aptos dev_setup.sh
Bash script or by manually installing all dependencies. as shown below.
No matter your selected mechanism for installing these dependencies, it is imperative you keep your entire toolchain up-to-date. If you encounter issues later, update all packages and try again.
Use the script
The dev_setup.sh
script currently supports macOS and Ubuntu Linux with other Linux distributions working but untested. The script does not support Windows. Note, you may be prompted for your password:
./scripts/dev_setup.sh
You can see the available options for the script by running ./scripts/dev_setup.sh --help
Install packages manually
If the script doesn't work for your operating system, manually install these packages:
- Rust
- Git
- CMake
- LLVM
- Linux only - libssl-dev and libclang-dev
- Windows only - C++ build tools
See dev_setup.sh
for other potential packages needed in your environment.
Now your basic Aptos development environment is ready. Head over to our Developer Tutorials to get started in Aptos.
Understand the Aptos Token Standard
The Aptos Token Standard lays out the rules for creating and distributing digital assets on the Aptos blockchain.
Find Aptos developer resources
This section contains links to frequently referred Aptos developer resources.
Aptos Explorer
- Aptos Explorer: Use the top-right drop-down menu to select the network.
- Aptos Community: Links to discussion forum, Discord and AIT.
Aptos mainnet
- REST API Open API spec: https://fullnode.mainnet.aptoslabs.com/v1/spec#/
- REST service: https://fullnode.mainnet.aptoslabs.com/v1
- Genesis and waypoint: https://github.com/aptos-labs/aptos-networks/tree/main/mainnet
- ChainID: Click here to see it on the Aptos Explorer.
Aptos testnet
- REST API Open API spec: https://fullnode.testnet.aptoslabs.com/v1/spec#/
- REST service: https://fullnode.testnet.aptoslabs.com/v1
- Faucet dApp: https://aptoslabs.com/testnet-faucet
- Genesis and waypoint: https://github.com/aptos-labs/aptos-genesis-waypoint/tree/main/testnet
- ChainID: Click here to see it on the Aptos Explorer.
Aptos devnet
- REST API Open API spec: https://fullnode.devnet.aptoslabs.com/v1/spec#/
- REST service: https://fullnode.devnet.aptoslabs.com/v1
- Faucet service: https://faucet.devnet.aptoslabs.com
- Genesis and waypoint: https://github.com/aptos-labs/aptos-networks/tree/main/devnet
- ChainID: Click here to see it on the Aptos Explorer.
Aptos CLI
Aptos SDK
IDE plugins for Move language
- Syntax highlighting for Visual Studio Code
- Move analyzer for Visual Studio Code: Supports advanced code navigation and syntax highlighting.
- Move language plugin for Jetbrains IDEs: Supports syntax highlighting, code navigation, renames, formatting, type checks and code generation.