We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
moving_price
1 parent 498a1f7 commit 9ed7cdaCopy full SHA for 9ed7cda
bittensor_cli/src/bittensor/chain_data.py
@@ -718,6 +718,7 @@ class DynamicInfo(InfoBase):
718
network_registered_at: int
719
subnet_identity: Optional[SubnetIdentity]
720
subnet_volume: Balance
721
+ moving_price: float
722
723
@classmethod
724
def _fix_decoded(cls, decoded: Any) -> "DynamicInfo":
@@ -786,6 +787,7 @@ def _fix_decoded(cls, decoded: Any) -> "DynamicInfo":
786
787
network_registered_at=int(decoded.get("network_registered_at")),
788
subnet_identity=subnet_identity,
789
subnet_volume=subnet_volume,
790
+ moving_price=fixed_to_float(decoded["moving_price"], 32),
791
)
792
793
def tao_to_alpha(self, tao: Balance) -> Balance:
0 commit comments