Skip to content

Instantly share code, notes, and snippets.

@Tlazypanda
Last active September 1, 2023 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Tlazypanda/6766ff585b96d2e03ef41ba79c423df8 to your computer and use it in GitHub Desktop.
Save Tlazypanda/6766ff585b96d2e03ef41ba79c423df8 to your computer and use it in GitHub Desktop.
Install Aptos CLI:
https://aptos.dev/tools/aptos-cli/install-cli/automated-install
Run command `aptos`
Setup new Aptos Move Project
aptos move init --name debug
Create our own profile
aptos init --network devnet
Open move.toml and add your address here as -
[addresses]
MyAddr ='<from your prev terminal response>'
Open sources and create a new file 'example.move'
Compile with `aptos move compile` check for any errors
Run test with `aptos move test`
Publish with `aptos move publish`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment