Skip to content

Commit b6afdd0

Browse files
Merge pull request #2647 from opentensor/fix/roman/metagraph-info
Fix for extra fields from chain data
2 parents 4e61074 + 3421afe commit b6afdd0

File tree

5 files changed

+23
-9
lines changed

5 files changed

+23
-9
lines changed

bittensor/core/chain_data/info_base.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from dataclasses import dataclass
1+
from dataclasses import dataclass, fields
22
from typing import Any, TypeVar
33

44
from bittensor.core.errors import SubstrateRequestException
@@ -13,7 +13,13 @@ class InfoBase:
1313
@classmethod
1414
def from_dict(cls, decoded: dict) -> T:
1515
try:
16-
return cls._from_dict(decoded)
16+
class_fields = {f.name for f in fields(cls)}
17+
extra_keys = decoded.keys() - class_fields
18+
instance = cls._from_dict(
19+
{k: v for k, v in decoded.items() if k in class_fields}
20+
)
21+
[setattr(instance, k, decoded[k]) for k in extra_keys]
22+
return instance
1723
except KeyError as e:
1824
raise SubstrateRequestException(
1925
f"The {cls} structure is missing {e} from the chain.",

bittensor/core/chain_data/metagraph_info.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from bittensor.core.chain_data.subnet_identity import SubnetIdentity
88
from bittensor.core.chain_data.utils import decode_account_id
99
from bittensor.utils import u64_normalized_float as u64tf, u16_normalized_float as u16tf
10-
from bittensor.utils.balance import Balance
10+
from bittensor.utils.balance import Balance, fixed_to_float
1111

1212

1313
# to balance with unit (just shortcut)
@@ -68,6 +68,7 @@ class MetagraphInfo(InfoBase):
6868
pending_alpha_emission: Balance # pending alpha to be distributed
6969
pending_root_emission: Balance # pending tao for root divs to be distributed
7070
subnet_volume: Balance # volume of the subnet in TAO
71+
moving_price: Balance # subnet moving price.
7172

7273
# Hparams for epoch
7374
rho: int # subnet rho param
@@ -168,6 +169,9 @@ def _from_dict(cls, decoded: dict) -> "MetagraphInfo":
168169
)
169170
decoded["pending_root_emission"] = _tbwu(decoded["pending_root_emission"])
170171
decoded["subnet_volume"] = _tbwu(decoded["subnet_volume"], _netuid)
172+
decoded["moving_price"] = Balance.from_tao(
173+
fixed_to_float(decoded.get("moving_price"), 32)
174+
)
171175

172176
# Hparams for epoch
173177
decoded["kappa"] = u16tf(decoded["kappa"])
@@ -243,6 +247,7 @@ class MetagraphInfoPool:
243247
alpha_in: float
244248
tao_in: float
245249
subnet_volume: float
250+
moving_price: float
246251

247252

248253
@dataclass

bittensor/core/extrinsics/serving.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def publish_metadata(
283283

284284
def get_metadata(
285285
subtensor: "Subtensor", netuid: int, hotkey: str, block: Optional[int] = None
286-
) -> str:
286+
) -> bytes:
287287
"""Fetches metadata from the blockchain for a given hotkey and netuid."""
288288
commit_data = subtensor.substrate.query(
289289
module="Commitments",

bittensor/core/metagraph.py

+1
Original file line numberDiff line numberDiff line change
@@ -989,6 +989,7 @@ def _apply_metagraph_info_mixin(self, metagraph_info: "MetagraphInfo"):
989989
alpha_in=metagraph_info.alpha_in.tao,
990990
tao_in=metagraph_info.tao_in.tao,
991991
subnet_volume=metagraph_info.subnet_volume.tao,
992+
moving_price=metagraph_info.moving_price.tao,
992993
)
993994
self.emissions = MetagraphInfoEmissions(
994995
alpha_out_emission=metagraph_info.alpha_out_emission.tao,

bittensor/utils/balance.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -285,16 +285,18 @@ class FixedPoint(TypedDict):
285285
bits: int
286286

287287

288-
def fixed_to_float(fixed: Union[FixedPoint, ScaleType]) -> float:
289-
# Currently this is stored as a U64F64
288+
def fixed_to_float(
289+
fixed: Union[FixedPoint, ScaleType], frac_bits: int = 64, total_bits: int = 128
290+
) -> float:
291+
# By default, this is a U64F64
290292
# which is 64 bits of integer and 64 bits of fractional
291-
frac_bits = 64
292293

293294
data: int = fixed["bits"]
294295

295-
# Shift bits to extract integer part (assuming 64 bits for integer part)
296-
integer_part = data >> frac_bits
296+
# Logical and to get the fractional part; remaining is the integer part
297297
fractional_part = data & (2**frac_bits - 1)
298+
# Shift to get the integer part from the remaining bits
299+
integer_part = data >> (total_bits - frac_bits)
298300

299301
frac_float = fractional_part / (2**frac_bits)
300302

0 commit comments

Comments
 (0)