简体   繁体   English

将现有公钥中的额外权益委托给 solana

[英]Delegating additional stake to solana in the existing public key

Hello I have a stake account for Solana here is the link你好,我有一个 Solana 的权益账户,这里是链接

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

This is how I have created a stake account and funded some SO L to it这就是我创建一个权益账户并为其提供一些SO L 的方式

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

在此处输入图像描述

How to put an additional stake in the public key 4EZRbSFYUQeuNCtY3Tv5tqprpTk9Ak7CZPzPsXKm1qLD如何在公钥4EZRbSFYUQeuNCtY3Tv5tqprpTk9Ak7CZPzPsXKm1qLD中追加质押

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:例如:

  • solana create-stake-account --fee-payer wallet-keypair.json \ --stake-authority wallet-keypair.json \ --withdraw-authority wallet-keypair.json \ --from wallet-keypair.json \ new-stake-account.json 0.5
  • solana delegate-stake solana delegate-stake \ --fee-payer wallet-keypair.json \ --stake-authority wallet-keypair.json \ new-stake-account.json 7R5of8HZreWPjURAMupJuik7vx5SAGUghpwU648bWYnt
  • wait for the stake to activate fully等待股份完全激活
  • solana --fee-payer wallet-keypair.json --stake-authority wallet-keypair.json merge-stake stake-account.json new-stake-account.json

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM