bittensor.core.chain_data.delegate_info_lite#

Classes#

DelegateInfoLite

Dataclass for DelegateLiteInfo. This is a lighter version of :func:DelegateInfo.

Module Contents#

class bittensor.core.chain_data.delegate_info_lite.DelegateInfoLite#

Bases: bittensor.core.chain_data.info_base.InfoBase

Dataclass for DelegateLiteInfo. This is a lighter version of :func:DelegateInfo.

Parameters:
  • delegate_ss58 (str) – Hotkey of the delegate for which the information is being fetched.

  • take (float) – Take of the delegate as a percentage.

  • nominators (int) – Count of the nominators of the delegate.

  • owner_ss58 (str) – Coldkey of the owner.

  • registrations (list[int]) – List of subnets that the delegate is registered on.

  • validator_permits (list[int]) – List of subnets that the delegate is allowed to validate on.

  • return_per_1000 (int) – Return per 1000 TAO, for the delegate over a day.

  • total_daily_return (int) – Total daily return of the delegate.

delegate_ss58: str#
nominators: int#
owner_ss58: str#
registrations: list[int]#
return_per_1000: bittensor.utils.balance.Balance#
take: float#
total_daily_return: bittensor.utils.balance.Balance#
validator_permits: list[int]#