Skip to main content

Operator 操作技巧与窍门

申领 tSSC

注册操作员所需的最低代币数量是 100 tSSC。 如果你没有这么多,只要你是一个已认证农民,就有方法可以领取。

  1. 前往 Astral 上的质押标签页并连接您的钱包。

NStaking-1

  1. 选择您想要连接的钱包。支持SubwalletPolkadotJS 两个钱包。

NStaking-2

  1. 输入您的密码以允许访问您的钱包。

NStaking-3

  1. 从下拉菜单中选择您想使用的账户。 您可以点击左上角的按钮查看选中账户的可用和锁定 (质押的) 代币余额。

NStaking-4

NStaking-14

  1. 只要你是一个已验证的农民,就应该可以使用Claim按钮。

NStaking-15

  1. 单击Claim按钮,然后它应该会变成 Pending。

NStaking-16

  1. 大约5分钟后,您应该在您的帐户中看到额外的 100 tSSC 。

NStaking-17

note

If the claim button is not available you may need to disconnect and reconnect your wallet. If you still don't see the claim button you may need to click refresh.

NStaking-18

插入密钥到密钥库:

如果您决定切换域或已经有助记词,这段信息可能对你有所帮助。请在下一节阅读更多关于切换域的信息。

要插入密钥,请使用以下命令:

target/production/subspace-node domain key insert \
--base-path NODE_DATA_PATH --domain-id DOMAIN_ID --keystore-suri "<Secret phrase>"

上述命令将把密钥对插入NODE_DATA_PATH/domains/DOMAIN_ID/keystore的子文件夹。

suri是操作员密钥的助记词。

切换域

任何操作员都可以随时切换他们操作的域。 要切换域:

  1. 进入 PolkadotJS
  2. 请确保在左上角选择正确的网络。
  3. 选择您想要在using the selected account中使用的帐户。
  4. 选择submit the following extrinsic 下的 domains 并在下拉列表中选择 "switchDomain(operatorId, newDomainId) "。
  5. 将您的 operatorIdnewDomainId 添加到相应字段。

Staking-24

note

只有注册Operator 的账户才可以切换域。

note

您需要将密钥对移动到新的位置,如果您要更换域,请按照insert key to keystore section 进行操作。

note

您的 提名人 的质押不会被释放,而是会被移动到新的域。

有用的命令

同时运行验证器 (farmer) 和操作员节点

tip

To run both operator and validator at the same time, provide required flags for both roles when starting your node.

target/production/subspace-node run `
--chain taurus `
--farmer `
--name your_node_name `
-- `
--domain-id your_domain_id `
--operator-id your_operator_id `
--listen-on /ip4/0.0.0.0/tcp/40333
note

If you're running an operator node for AutoID domain, add the following bootstrap node to the list of domain arguments:

--bootstrap-node /dns/bootstrap-0.autoid.gemini-3h.subspace.network/tcp/30334/p2p/12D3KooWFoiz2iTkmnnSqiL2oQRhGzaqgtUjYNz2jyWKQqgPXgx9

您应该能看到节点启动成功并开始同步。

Staking-28

切换到另一个服务器

为了确保您在切换过程中的停机时间最短,我们提出以下建议:

  1. 使用临时密钥同步一个新的operator节点。您可以生成一个新密钥,只是不要将它插入您的密钥库。
  2. 停止原节点并重命名密钥库(或任何你觉得合适的方法,以防止你不小心用原签名密钥启动原节点)。
  3. 使用原签名密钥更新新节点上的密钥。
  4. 重新启动新的operator节点。