Testnet Tensor
  • Introduction
  • Explorer
  • GPT
  • DSN Dashboard
  • Create Account
    • Wallet
    • CLI
    • Faucet
  • Hypertensor CLI
    • Hypertensor CLI
  • Run A Subnet Node
    • Getting Started
    • Wiki
      • Running on AMD GPU
      • Running on Windows Using WSL
      • Troubleshooting
    • Generate Keypair
    • Register & Stake
    • Add
    • Start Validator Node
    • Start Bootstrap Node
    • Activate
    • Update Delegate Reward Rate
    • Deactivate
    • Remove
    • Keys
  • Delegate Staking
    • Introduction
    • Add Delegate Stake
    • Transfer Delegate Stake
    • Remove Delegate Stake
    • Claim Delegate Stake
  • Node Delegate Staking
    • Introduction
    • Add Node Delegate Stake
    • Transfer Node Delegate Stake
    • Remove Node Delegate Stake
    • Claim Node Delegate Stake
  • Delegate Staking Utils
    • Introduction
    • Subnet to Node
    • Node to Subnet
  • Build a Subnet
    • Introduction
    • DSN Standard
    • Subnet Consensus Protocol (SCP)
      • Incentives
      • Accounting
      • Proposals
    • Subnet
      • Registration
      • Activation
      • Deactivation
    • Subnet Nodes
      • Registration
      • Activation
      • Deactivate
  • Contribute
Powered by GitBook
On this page
  1. Run A Subnet Node

Update Delegate Reward Rate

Update the delegate reward rate on the subnet node.

This can be called once every 24 hours and if the new reward rate is a decrease from the previous, the rate can only be decreased by 1%.

python -m subnet.cli.hypertensor.subnet_node.update_reward_rate --subnet_id [int] --delegate_reward_rate [float]
python -m subnet.cli.hypertensor.subnet_node.activate --subnet_id 1

Parameters:

--subnet_id: The ID of the subnet. This can be checked by querying the model path through the SubnetPaths storage element.

--delegate_reward_rate: The delegate reward rate as a float.

--local: (Optional) Argument for local testing to use the LOCAL_RPC environment variables.

This will:

  • Update the reward rate for users who delegate stakes to the subnet node.

Note:

The rate can be decreased up to 1% daily.

PreviousActivateNextDeactivate

Last updated 2 months ago