管理质押 (Managing Staking)

质押/委托您的代币,获得治理和收益 Stake / delegate your tokens to gain access to governance and yield

委托 (Delegating)

When a user wants to delegate tokens to validators, they are able to select which validator(s) they want to delegate to, and then will receive a portion of the fees that that the validator accrues by actively validating. When a user delegate their tokens, they are represented as validator "shares" which aren't fungible, but represent the portion of underlying assets that the validator accumulates. As the validator accumulates fees, the user's shares represent more tokens and these tokens are received when a user "unbonds" their delegation. Additional details located here: Delegation Docs

当用户想要将代币委托给验证者时,可以选择想委托给具体哪个,然后可以分享验证者通过积极验证产生的部分收益。当用户委托其代币时,回被表示为不可替代的验证者“份额”,代表验证者积累的基础资产部分。随着验证者累积费用,用户的份额代表更多的代币,当用户“解除绑定”他们的委托时会收到这些代币。其他详细信息位于此处:委托文件

交易 (Transaction)

代表 (Delegate)

Users can delegate their tokens to a validator to stake them to accrue fees.

用户可以将他们的代币委托给验证者,质押代币来分享收益(即产生的费用)。

例子 Example

seid tx staking delegate {validator_addr} {amount} --from {your_key} --chain-id {chain_id}

再委托 (Redelegate)

Delegated assets can be transferred to a different validator by redelegating, even while illiquid.

委托资产可以通过重新委托转移到不同的验证者,即使在流动性不足的情况下也是如此。

例子 Example

seid tx staking redelegate {source_validator_addr} {destination_validator-addr} {amount} --from {your_key} --chain-id {chain_id}

解绑 (Unbond)

Users can unbond their assets from the validator delegated assets.

用户可以从验证者委托的资产中解绑他们的资产。

例子 Example

seid tx staking unbond {validator_addr} {amount} --from {your_key} --chain-id {chain_id}

查询 (Queries)

委托 (Delegation)

Users can query delegations from any individual that has delegated assets to a validator.

用户可以查询任何将资产让验证者委托的个人

例子 Example

seid query staking delegation {delegator_addr} {validator_addr} 

委托 (Delegations)

Users also have the ability to query all of the delegations that an individual has made to all validators.

用户还可以查询一个人对所有验证者的所有委托。

例子 Example

用户还可以查询一个人对所有验证者的所有委托。

委托给 (Delegations To)

Users can query the delegations made to a specific validators by all delegators

用户可以查询所有委托人对特定验证人的委托情况

例子 Example

seid query staking delegations-to {validator_addr}

The above represents some commands that may be used more often, there are additional transactions and queries available and are well documented in cosmos sdk details located here: Cosmos SDK Staking Docs

以上展示了一些可能更经常使用的命令,还有其他可用的交易和查询,并且在位于此处的 cosmos sdk 中有详细记录:Cosmos SDK Staking Docs

最后更新于