Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions bittensor_cli/src/bittensor/chain_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,7 @@ class DynamicInfo(InfoBase):
network_registered_at: int
subnet_identity: Optional[SubnetIdentity]
subnet_volume: Balance
moving_price: float

@classmethod
def _fix_decoded(cls, decoded: Any) -> "DynamicInfo":
Expand Down Expand Up @@ -786,6 +787,7 @@ def _fix_decoded(cls, decoded: Any) -> "DynamicInfo":
network_registered_at=int(decoded.get("network_registered_at")),
subnet_identity=subnet_identity,
subnet_volume=subnet_volume,
moving_price=fixed_to_float(decoded["moving_price"], 32),
)

def tao_to_alpha(self, tao: Balance) -> Balance:
Expand Down
Loading