Movement Testnet Coins

This a package for bootstrapping multiple coins at once for testing purposes.

Dependency

Aptos CLI

How to use

  1. Initialize your aptos account
$ aptos init

you will get a ".aptos" folder in your current folder.

config.yaml
profiles:
  default:
    private_key: "0x0000000000000000000000000000000000000000000000000000000000000000"
    public_key: "0x0000000000000000000000000000000000000000000000000000000000000000"
    account: "0x1234"   # your_original_account
    rest_url: "https://fullnode.devnet.aptoslabs.com/v1"
    faucet_url: "https://faucet.devnet.aptoslabs.com/"
  1. Get test MOVE
$ aptos account fund-with-faucet --account your_original_account --amount 100000000
  1. Compile code
$ aptos move compile
  1. Publish package
$ aptos move publish