Generate Payment and Stake Keys
Dingo - Generate Payment and Stake Keys
Section titled “Dingo - Generate Payment and Stake Keys”✅ This guide assumes your files are in the $HOME/dingo folder. Adjust paths below if necessary.
Step 1 - Obtain the protocol-parameters
Section titled “Step 1 - Obtain the protocol-parameters”cd ~/dingocardano-cli conway query protocol-parameters \--testnet-magic 2 \--out-file params.jsonStep 2 - Generate a new payment key pair
Section titled “Step 2 - Generate a new payment key pair”Generate a new payment key pair: payment.skey and payment.vkey
⚠️ On Air Gapped
cd ~/dingocardano-cli conway address key-gen \--verification-key-file payment.vkey \--signing-key-file payment.skeyStep 3 - Generate a new stake address key pair
Section titled “Step 3 - Generate a new stake address key pair”Generate a new stake address key pair: stake.skey and stake.vkey
⚠️ On Air Gapped
cardano-cli conway stake-address key-gen \--verification-key-file stake.vkey \--signing-key-file stake.skeyStep 4 - Generate your stake address
Section titled “Step 4 - Generate your stake address”Generate your stake address from the stake address verification key and store it in stake.addr
⚠️ On Air Gapped
cardano-cli conway stake-address build \--stake-verification-key-file stake.vkey \--out-file stake.addr \--testnet-magic 2Step 5 - Generate payment address
Section titled “Step 5 - Generate payment address”Generate payment address for the payment key payment.vkey and stake key stake.vkey and store it in payment.addr
cardano-cli conway address build \--payment-verification-key-file payment.vkey \--stake-verification-key-file stake.vkey \--out-file payment.addr \--testnet-magic 2✅ Copy payment.addr to your hot environment.
Run the following to see and copy your payment address.
cat payment.addrStep 6 - Fund your wallet
Section titled “Step 6 - Fund your wallet”On testnet, use the Cardano faucet to get test ADA. Select the Preview testnet and paste your payment.addr.
After funding your account, check your payment address balance.
cardano-cli conway query utxo \--address $(cat payment.addr) \--testnet-magic 2