Skip to content

Commit 25b8a3a

Browse files
Merge pull request #2649 from opentensor/fix/roman/dataclasses
Fix InfoBase + dataclasses
2 parents 0cc2b8e + da522a3 commit 25b8a3a

17 files changed

+128
-100
lines changed

bittensor/core/chain_data/axon_info.py

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def to_string(self) -> str:
8383

8484
@classmethod
8585
def _from_dict(cls, data):
86+
"""Returns a AxonInfo object from decoded chain data."""
8687
return AxonInfo(
8788
version=data["version"],
8889
ip=str(netaddr.IPAddress(data["ip"])),

bittensor/core/chain_data/chain_identity.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class ChainIdentity(InfoBase):
1616

1717
@classmethod
1818
def _from_dict(cls, decoded: dict) -> "ChainIdentity":
19+
"""Returns a ChainIdentity object from decoded chain data."""
1920
return cls(
2021
name=decoded["name"],
2122
url=decoded["url"],

bittensor/core/chain_data/delegate_info.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class DelegateInfo(InfoBase):
4040

4141
@classmethod
4242
def _from_dict(cls, decoded: dict) -> Optional["DelegateInfo"]:
43+
"""Returns a DelegateInfo object from decoded chain data."""
4344
nominators = [
4445
(decode_account_id(x), Balance.from_rao(y))
4546
for x, y in decoded["nominators"]

bittensor/core/chain_data/delegate_info_lite.py

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
from dataclasses import dataclass
22

33
from bittensor.core.chain_data.info_base import InfoBase
4+
from bittensor.core.chain_data.utils import decode_account_id
5+
from bittensor.utils import u16_normalized_float
6+
from bittensor.utils.balance import Balance
47

58

69
@dataclass
@@ -27,5 +30,18 @@ class DelegateInfoLite(InfoBase):
2730
validator_permits: list[
2831
int
2932
] # List of subnets that the delegate is allowed to validate on
30-
return_per_1000: int # Return per 1000 tao for the delegate over a day
31-
total_daily_return: int # Total daily return of the delegate
33+
return_per_1000: Balance # Return per 1000 tao for the delegate over a day
34+
total_daily_return: Balance # Total daily return of the delegate
35+
36+
@classmethod
37+
def _from_dict(cls, decoded: dict) -> "DelegateInfoLite":
38+
return DelegateInfoLite(
39+
delegate_ss58=decode_account_id(decoded["delegate_ss58"]),
40+
take=u16_normalized_float(decoded["take"]),
41+
nominators=decoded["nominators"],
42+
owner_ss58=decode_account_id(decoded["owner_ss58"]),
43+
registrations=decoded["registrations"],
44+
validator_permits=decoded["validator_permits"],
45+
return_per_1000=Balance.from_rao(decoded["return_per_1000"]),
46+
total_daily_return=Balance.from_rao(decoded["total_daily_return"]),
47+
)

bittensor/core/chain_data/dynamic_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class DynamicInfo(InfoBase):
4141

4242
@classmethod
4343
def _from_dict(cls, decoded: dict) -> "DynamicInfo":
44-
"""Returns a DynamicInfo object from a decoded DynamicInfo dictionary."""
44+
"""Returns a DynamicInfo object from decoded chain data."""
4545

4646
netuid = int(decoded["netuid"])
4747
symbol = bytes([int(b) for b in decoded["token_symbol"]]).decode()

bittensor/core/chain_data/info_base.py

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

44
from bittensor.core.errors import SubstrateRequestException
@@ -13,13 +13,7 @@ class InfoBase:
1313
@classmethod
1414
def from_dict(cls, decoded: dict) -> T:
1515
try:
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
16+
return cls._from_dict(decoded)
2317
except KeyError as e:
2418
raise SubstrateRequestException(
2519
f"The {cls} structure is missing {e} from the chain.",

bittensor/core/chain_data/ip_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def encode(self) -> dict[str, Any]:
3131

3232
@classmethod
3333
def _from_dict(cls, decoded: dict) -> "IPInfo":
34-
"""Returns a SubnetInfo object from a decoded IPInfo dictionary."""
34+
"""Returns a IPInfo object from decoded chain data."""
3535
return IPInfo(
3636
ip_type=decoded["ip_type_and_protocol"] >> 4,
3737
ip=net.int_to_ip(decoded["ip"]),

bittensor/core/chain_data/metagraph_info.py

+94-73
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class MetagraphInfo(InfoBase):
140140

141141
@classmethod
142142
def _from_dict(cls, decoded: dict) -> "MetagraphInfo":
143-
"""Returns a Metagraph object from a decoded MetagraphInfo dictionary."""
143+
"""Returns a MetagraphInfo object from decoded chain data."""
144144
# Subnet index
145145
_netuid = decoded["netuid"]
146146

@@ -152,80 +152,101 @@ def _from_dict(cls, decoded: dict) -> "MetagraphInfo":
152152
processed = process_nested(raw_data, _chr_str)
153153
decoded.update({key: processed})
154154

155-
# Keys for owner.
156-
decoded["owner_hotkey"] = decode_account_id(decoded["owner_hotkey"])
157-
decoded["owner_coldkey"] = decode_account_id(decoded["owner_coldkey"])
158-
159-
# Subnet emission terms
160-
decoded["subnet_emission"] = _tbwu(decoded["subnet_emission"])
161-
decoded["alpha_in"] = _tbwu(decoded["alpha_in"], _netuid)
162-
decoded["alpha_out"] = _tbwu(decoded["alpha_out"], _netuid)
163-
decoded["tao_in"] = _tbwu(decoded["tao_in"])
164-
decoded["alpha_out_emission"] = _tbwu(decoded["alpha_out_emission"], _netuid)
165-
decoded["alpha_in_emission"] = _tbwu(decoded["alpha_in_emission"], _netuid)
166-
decoded["tao_in_emission"] = _tbwu(decoded["tao_in_emission"])
167-
decoded["pending_alpha_emission"] = _tbwu(
168-
decoded["pending_alpha_emission"], _netuid
169-
)
170-
decoded["pending_root_emission"] = _tbwu(decoded["pending_root_emission"])
171-
decoded["subnet_volume"] = _tbwu(decoded["subnet_volume"], _netuid)
172-
decoded["moving_price"] = Balance.from_tao(
173-
fixed_to_float(decoded.get("moving_price"), 32)
155+
return cls(
156+
# Subnet index
157+
netuid=_netuid,
158+
# Name and symbol
159+
name=decoded["name"],
160+
symbol=decoded["symbol"],
161+
identity=decoded["identity"],
162+
network_registered_at=decoded["network_registered_at"],
163+
# Keys for owner.
164+
owner_hotkey=decoded["owner_hotkey"],
165+
owner_coldkey=decoded["owner_coldkey"],
166+
# Tempo terms.
167+
block=decoded["block"],
168+
tempo=decoded["tempo"],
169+
last_step=decoded["last_step"],
170+
blocks_since_last_step=decoded["blocks_since_last_step"],
171+
# Subnet emission terms
172+
subnet_emission=_tbwu(decoded["subnet_emission"]),
173+
alpha_in=_tbwu(decoded["alpha_in"], _netuid),
174+
alpha_out=_tbwu(decoded["alpha_out"], _netuid),
175+
tao_in=_tbwu(decoded["tao_in"]),
176+
alpha_out_emission=_tbwu(decoded["alpha_out_emission"], _netuid),
177+
alpha_in_emission=_tbwu(decoded["alpha_in_emission"], _netuid),
178+
tao_in_emission=_tbwu(decoded["tao_in_emission"]),
179+
pending_alpha_emission=_tbwu(decoded["pending_alpha_emission"], _netuid),
180+
pending_root_emission=_tbwu(decoded["pending_root_emission"]),
181+
subnet_volume=_tbwu(decoded["subnet_volume"], _netuid),
182+
moving_price=Balance.from_tao(
183+
fixed_to_float(decoded.get("moving_price"), 32)
184+
),
185+
# Hparams for epoch
186+
rho=decoded["rho"],
187+
kappa=decoded["kappa"],
188+
# Validator params
189+
min_allowed_weights=u16tf(decoded["min_allowed_weights"]),
190+
max_weights_limit=u16tf(decoded["max_weights_limit"]),
191+
weights_version=decoded["weights_version"],
192+
weights_rate_limit=decoded["weights_rate_limit"],
193+
activity_cutoff=decoded["activity_cutoff"],
194+
max_validators=decoded["max_validators"],
195+
# Registration
196+
num_uids=decoded["num_uids"],
197+
max_uids=decoded["max_uids"],
198+
burn=_tbwu(decoded["burn"]),
199+
difficulty=u64tf(decoded["difficulty"]),
200+
registration_allowed=decoded["registration_allowed"],
201+
pow_registration_allowed=decoded["pow_registration_allowed"],
202+
immunity_period=decoded["immunity_period"],
203+
min_difficulty=u64tf(decoded["min_difficulty"]),
204+
max_difficulty=u64tf(decoded["max_difficulty"]),
205+
min_burn=_tbwu(decoded["min_burn"]),
206+
max_burn=_tbwu(decoded["max_burn"]),
207+
adjustment_alpha=u64tf(decoded["adjustment_alpha"]),
208+
adjustment_interval=decoded["adjustment_interval"],
209+
target_regs_per_interval=decoded["target_regs_per_interval"],
210+
max_regs_per_block=decoded["max_regs_per_block"],
211+
serving_rate_limit=decoded["serving_rate_limit"],
212+
# CR
213+
commit_reveal_weights_enabled=decoded["commit_reveal_weights_enabled"],
214+
commit_reveal_period=decoded["commit_reveal_period"],
215+
# Bonds
216+
liquid_alpha_enabled=decoded["liquid_alpha_enabled"],
217+
alpha_high=u16tf(decoded["alpha_high"]),
218+
alpha_low=u16tf(decoded["alpha_low"]),
219+
bonds_moving_avg=u64tf(decoded["bonds_moving_avg"]),
220+
# Metagraph info.
221+
hotkeys=[decode_account_id(ck) for ck in decoded.get("hotkeys", [])],
222+
coldkeys=[decode_account_id(hk) for hk in decoded.get("coldkeys", [])],
223+
identities=decoded["identities"],
224+
axons=decoded.get("axons", []),
225+
active=decoded["active"],
226+
validator_permit=decoded["validator_permit"],
227+
pruning_score=[u16tf(ps) for ps in decoded.get("pruning_score", [])],
228+
last_update=decoded["last_update"],
229+
emission=[_tbwu(em, _netuid) for em in decoded.get("emission", [])],
230+
dividends=[u16tf(dv) for dv in decoded.get("dividends", [])],
231+
incentives=[u16tf(ic) for ic in decoded.get("incentives", [])],
232+
consensus=[u16tf(cs) for cs in decoded.get("consensus", [])],
233+
trust=[u16tf(tr) for tr in decoded.get("trust", [])],
234+
rank=[u16tf(rk) for rk in decoded.get("rank", [])],
235+
block_at_registration=decoded["block_at_registration"],
236+
alpha_stake=[_tbwu(ast, _netuid) for ast in decoded["alpha_stake"]],
237+
tao_stake=[_tbwu(ts) for ts in decoded["tao_stake"]],
238+
total_stake=[_tbwu(ts, _netuid) for ts in decoded["total_stake"]],
239+
# Dividend break down
240+
tao_dividends_per_hotkey=[
241+
(decode_account_id(alpha[0]), _tbwu(alpha[1]))
242+
for alpha in decoded["tao_dividends_per_hotkey"]
243+
],
244+
alpha_dividends_per_hotkey=[
245+
(decode_account_id(adphk[0]), _tbwu(adphk[1], _netuid))
246+
for adphk in decoded["alpha_dividends_per_hotkey"]
247+
],
174248
)
175249

176-
# Hparams for epoch
177-
decoded["kappa"] = u16tf(decoded["kappa"])
178-
179-
# Validator params
180-
decoded["min_allowed_weights"] = u16tf(decoded["min_allowed_weights"])
181-
decoded["max_weights_limit"] = u16tf(decoded["max_weights_limit"])
182-
183-
# Registration
184-
decoded["burn"] = _tbwu(decoded["burn"])
185-
decoded["difficulty"] = u64tf(decoded["difficulty"])
186-
decoded["min_difficulty"] = u64tf(decoded["min_difficulty"])
187-
decoded["max_difficulty"] = u64tf(decoded["max_difficulty"])
188-
decoded["min_burn"] = _tbwu(decoded["min_burn"])
189-
decoded["max_burn"] = _tbwu(decoded["max_burn"])
190-
decoded["adjustment_alpha"] = u64tf(decoded["adjustment_alpha"])
191-
192-
# Bonds
193-
decoded["alpha_high"] = u16tf(decoded["alpha_high"])
194-
decoded["alpha_low"] = u16tf(decoded["alpha_low"])
195-
decoded["bonds_moving_avg"] = u64tf(decoded["bonds_moving_avg"])
196-
197-
# Metagraph info.
198-
decoded["hotkeys"] = [
199-
decode_account_id(ck) for ck in decoded.get("hotkeys", [])
200-
]
201-
decoded["coldkeys"] = [
202-
decode_account_id(hk) for hk in decoded.get("coldkeys", [])
203-
]
204-
decoded["axons"] = decoded.get("axons", [])
205-
decoded["pruning_score"] = [
206-
u16tf(ps) for ps in decoded.get("pruning_score", [])
207-
]
208-
decoded["emission"] = [_tbwu(em, _netuid) for em in decoded.get("emission", [])]
209-
decoded["dividends"] = [u16tf(dv) for dv in decoded.get("dividends", [])]
210-
decoded["incentives"] = [u16tf(ic) for ic in decoded.get("incentives", [])]
211-
decoded["consensus"] = [u16tf(cs) for cs in decoded.get("consensus", [])]
212-
decoded["trust"] = [u16tf(tr) for tr in decoded.get("trust", [])]
213-
decoded["rank"] = [u16tf(rk) for rk in decoded.get("trust", [])]
214-
decoded["alpha_stake"] = [_tbwu(ast, _netuid) for ast in decoded["alpha_stake"]]
215-
decoded["tao_stake"] = [_tbwu(ts) for ts in decoded["tao_stake"]]
216-
decoded["total_stake"] = [_tbwu(ts, _netuid) for ts in decoded["total_stake"]]
217-
218-
# Dividend break down
219-
decoded["tao_dividends_per_hotkey"] = [
220-
(decode_account_id(alpha[0]), _tbwu(alpha[1]))
221-
for alpha in decoded["tao_dividends_per_hotkey"]
222-
]
223-
decoded["alpha_dividends_per_hotkey"] = [
224-
(decode_account_id(adphk[0]), _tbwu(adphk[1], _netuid))
225-
for adphk in decoded["alpha_dividends_per_hotkey"]
226-
]
227-
return MetagraphInfo(**decoded)
228-
229250

230251
@dataclass
231252
class MetagraphInfoEmissions:

bittensor/core/chain_data/neuron_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def get_null_neuron() -> "NeuronInfo":
126126

127127
@classmethod
128128
def _from_dict(cls, decoded: Any) -> "NeuronInfo":
129-
"""Instantiates NeuronInfo from a byte vector."""
129+
"""Returns a NeuronInfo object from decoded chain data."""
130130
stake_dict = process_stake_data(decoded["stake"])
131131
total_stake = sum(stake_dict.values()) if stake_dict else Balance(0)
132132
coldkey = decode_account_id(decoded["coldkey"])

bittensor/core/chain_data/neuron_info_lite.py

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ def get_null_neuron() -> "NeuronInfoLite":
9595

9696
@classmethod
9797
def _from_dict(cls, decoded: Any) -> "NeuronInfoLite":
98+
"""Returns a NeuronInfoLite object from decoded chain data."""
9899
coldkey = decode_account_id(decoded["coldkey"])
99100
hotkey = decode_account_id(decoded["hotkey"])
100101
stake_dict = process_stake_data(decoded["stake"])

bittensor/core/chain_data/prometheus_info.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class PrometheusInfo(InfoBase):
2626

2727
@classmethod
2828
def _from_dict(cls, data):
29+
"""Returns a PrometheusInfo object from decoded chain data."""
2930
return cls(
3031
block=data["block"],
3132
ip_type=data["ip_type"],

bittensor/core/chain_data/scheduled_coldkey_swap_info.py

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class ScheduledColdkeySwapInfo(InfoBase):
2525

2626
@classmethod
2727
def _from_dict(cls, decoded: dict) -> "ScheduledColdkeySwapInfo":
28+
"""Returns a ScheduledColdkeySwapInfo object from decoded chain data."""
2829
return cls(
2930
arbitration_block=decoded["arbitration_block"],
3031
new_coldkey=ss58_encode(decoded["new_coldkey"], SS58_FORMAT),

bittensor/core/chain_data/stake_info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class StakeInfo(InfoBase):
2727

2828
@classmethod
2929
def from_dict(cls, decoded: dict) -> "StakeInfo":
30-
"""Returns a StakeInfo object."""
30+
"""Returns a StakeInfo object from decoded chain data."""
3131
netuid = decoded["netuid"]
3232
return cls(
3333
hotkey_ss58=decode_account_id(decoded["hotkey"]),

bittensor/core/chain_data/subnet_hyperparameters.py

+1-13
Original file line numberDiff line numberDiff line change
@@ -68,19 +68,7 @@ class SubnetHyperparameters(InfoBase):
6868

6969
@classmethod
7070
def _from_dict(cls, decoded: dict) -> "SubnetHyperparameters":
71-
"""
72-
Create a `SubnetHyperparameters` instance from a vector of bytes.
73-
74-
This method decodes the given vector of bytes using the `bt_decode` module and creates a new instance of
75-
`SubnetHyperparameters` with the decoded values.
76-
77-
Args:
78-
vec_u8 (bytes): A vector of bytes to decode into `SubnetHyperparameters`.
79-
80-
Returns:
81-
Optional[SubnetHyperparameters]: An instance of `SubnetHyperparameters` if decoding is successful, None
82-
otherwise.
83-
"""
71+
"""Returns a SubnetHyperparameters object from decoded chain data."""
8472
return SubnetHyperparameters(
8573
activity_cutoff=decoded["activity_cutoff"],
8674
adjustment_alpha=decoded["adjustment_alpha"],

bittensor/core/chain_data/subnet_identity.py

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class SubnetIdentity:
1515

1616
@classmethod
1717
def _from_dict(cls, decoded: dict) -> "SubnetIdentity":
18+
"""Returns a SubnetIdentity object from decoded chain data."""
1819
return cls(
1920
subnet_name=decoded["subnet_name"],
2021
github_repo=decoded["github_repo"],

bittensor/core/chain_data/subnet_info.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class SubnetInfo(InfoBase):
3232

3333
@classmethod
3434
def _from_dict(cls, decoded: Any) -> "SubnetInfo":
35+
"""Returns a SubnetInfo object from decoded chain data."""
3536
return SubnetInfo(
3637
blocks_since_epoch=decoded["blocks_since_last_step"],
3738
burn=Balance.from_rao(decoded["burn"]),

bittensor/core/chain_data/subnet_state.py

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class SubnetState(InfoBase):
3434

3535
@classmethod
3636
def _from_dict(cls, decoded: dict) -> "SubnetState":
37+
"""Returns a SubnetState object from decoded chain data."""
3738
netuid = decoded["netuid"]
3839
return SubnetState(
3940
netuid=netuid,

0 commit comments

Comments
 (0)