Generating and verifying keys
1. Installing
Installing packages
echo "deb [trusted=yes] http://packages.o1test.net $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/mina.list
sudo apt-get update
sudo apt-get install -y curl unzip mina-mainnet=1.3.0-9b0369cInstalling the key generator
sudo apt-get install mina-generate-keypair=1.3.0-9b0369c2. Generating keys
Option 1 with a package:
mina-generate-keypair -privkey-path ~/keys/my-walletOption 2 using docker:
sudo docker run --interactive --tty --rm --volume $(pwd)/keys:/keys minaprotocol/mina-generate-keypair:1.3.0-9b0369c --privkey-path /keys/my-walletSet the rights:
3. Key verification
Option 1 with a package:
Option 2 using docker:
4. Exporting keys
Last updated