solanasolana-cli

Delegating additional stake to solana in the existing public key


Hello I have a stake account for Solana here is the link

https://explorer.solana.com/address/4EZRbSFYUQeuNCtY3Tv5tqprpTk9Ak7CZPzPsXKm1qLD/tokens?cluster=testnet

This is how I have created a stake account and funded some SOL to it

Create stake account

solana create-stake-account \
  --fee-payer wallet-keypair.json \
  --stake-authority wallet-keypair.json \
  --withdraw-authority wallet-keypair.json \
  --from wallet-keypair.json \
  stake-account.json 0.5

Delegate Stake

solana delegate-stake \
  --fee-payer wallet-keypair.json \
  --stake-authority wallet-keypair.json \
  4EZRbSFYUQeuNCtY3Tv5tqprpTk9Ak7CZPzPsXKm1qLD 7R5of8HZreWPjURAMupJuik7vx5SAGUghpwU648bWYnt

enter image description here

How to put an additional stake in the public key 4EZRbSFYUQeuNCtY3Tv5tqprpTk9Ak7CZPzPsXKm1qLD


Solution

  • It's a bit annoying, but you have to create and delegate a new stake account to the same validator, wait for the stake to activate, and then merge the new stake into the old stake. For example: