cycles-quartz/docker/neutrond/Makefile
Dave 2ac5726463
feature(docker/neutrond): Setup a single node neutron testnet in docker (#131)
- Closes #112 

Co-authored-by: Dave Kaj <davidkajpust@informal.systems>
Co-authored-by: Thane Thomson <connect@thanethomson.com>
2024-08-01 18:31:52 -04:00

10 lines
709 B
Makefile

# Setup local accounts. This is only for local development and should not be used in production.
import-local-accounts:
neutrond keys add val1 --keyring-backend test > ./accounts/val1.txt 2>&1
neutrond keys add val2 --keyring-backend test > ./accounts/val2.txt 2>&1
neutrond keys add demowallet1 --keyring-backend test > ./accounts/demowallet1.txt 2>&1
neutrond keys add demowallet2 --keyring-backend test > ./accounts/demowallet2.txt 2>&1
neutrond keys add demowallet3 --keyring-backend test > ./accounts/demowallet3.txt 2>&1
neutrond keys add rly1 --keyring-backend test > ./accounts/rly1.txt 2>&1
neutrond keys add rly2 --keyring-backend test > ./accounts/rly2.txt 2>&1
.PHONY: create-local-accounts