This a package for bootstrapping multiple coins at once for testing purposes.
Aptos CLI
- 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/"
- Get test MOVE
$ aptos account fund-with-faucet --account your_original_account --amount 100000000
- Compile code
$ aptos move compile
- Publish package
$ aptos move publish