Delegating Mina

Set your mina public key as var

MINA_PUBLIC_KEY=<your_mina_public_key>

Unlocked your account

mina account unlock --public-key $MINA_PUBLIC_KEY

Delegate your stake

  • receiver is the public key of the receiver of your stake delegation

  • sender is the public key of the account you want to delegate from

  • fee is the cost to send your transaction, the fee is paid to the network’s block producers

There is no amount parameter. Your full MINA balance is delegated automatically.

mina client delegate-stake \
    --receiver <DELEGATE-PUBLIC-KEY> \
    --sender $MINA_PUBLIC_KEY \
    --fee 0.1

To check which accounts you are staking

mina client status

The Block producers running line will show the address of your node. To check your address in explorer - https://minascan.io/mainnet/

Last updated