Sei中文文档(Sei Docs CHN)-by Chainguys
  • 导览(INTRODUCTION)
    • 版权声明(Copyright Notice)
    • 概览 (Overview)
    • Sei 设计空间 (Sei Design Space)
    • DEX 优化 (DEX Optimizations)
    • Sei 生态系统 (Sei Ecosystem)
  • 智能合约和本地开发 (Smart contracts & local development)
    • Sei工具指南 (Sei Tool Guide)
    • 设置一个本地节点 (Set up a local network)
    • 本地 Sei 脚本部署 (Local Sei script deployment)
    • Sei.go
    • CosmWasm合约测试 (CosmWasm Contract Testing)
    • 部署通用合约 (Deploy a generic contract)
    • 部署交易合约 (Deploy an exchange contract)
    • 非完整节点下部署和开发 (Deploy & develop without Full Node)
    • Dex 模块教程 (Dex Module Tutorial)
    • 代币工厂模块教程 (Tokenfactory Module Tutorial)
    • IBC转账 (IBC Transfers)
  • 订单匹配(order match)
    • 并行性 (Parallelism)
    • 资格 (Eligibility)
    • DEX 合约间依赖 (DEX Inter—Contract Dependencies)
    • 白名单商店 (Whitelisted Store)
  • 节点&验证者 (NODES&VALIDATORS)
    • 加入测试网 (Joining Testnets)
    • 更新 (Upgrades)
    • Seinami激励测试网 (Seinami Incentivized Testnet)
      • 加入激励测试网 (Joining Incentivized Testnet)
      • 所有测试任务 (All Testnet Missions)
      • 行为准则 (Code of Conduct)
      • 奖励发放详情 (Rewards Distribution Details)
  • 基础API端点 (Basic API Endpoints)
  • 模块化端点 (Module Endpoints)
  • 状态同步 (Statesync)
  • 恢复操作(Recovery Operations)
  • 治理(GOVERNANCE)
    • 创建提案 (Creating Proposals)
    • 管理质押 (Managing Staking)
    • 对提案投票表决 (Voting on Proposals)
  • 预言机(ORACLE)
    • 预言机参与 (Oracle Participation)
  • 钱包(WALLETS)
    • 钱包集成(Wallet Integration)
    • 转账 (Transfers)
  • 更多(More)
    • 推特(Twitter)
由 GitBook 提供支持
在本页
  1. 治理(GOVERNANCE)

管理质押 (Managing Staking)

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

上一页创建提案 (Creating Proposals)下一页对提案投票表决 (Voting on Proposals)

最后更新于2年前

委托 (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:

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

交易 (Transaction)

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}

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}

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)

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

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

例子 Example

seid query staking delegation {delegator_addr} {validator_addr} 

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

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

例子 Example

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

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 中有详细记录:

Delegation Docs
委托文件
代表 (Delegate)
再委托 (Redelegate)
解绑 (Unbond)
委托 (Delegation)
委托 (Delegations)
委托给 (Delegations To)
Cosmos SDK Staking Docs
Cosmos SDK Staking Docs