Skip to content

Commit 29c8b63

Browse files
author
Roman
committed
add logo_url to SubnetIdentity
1 parent 4ae2abe commit 29c8b63

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bittensor/core/chain_data/subnet_identity.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class SubnetIdentity:
99
github_repo: str
1010
subnet_contact: str
1111
subnet_url: str
12+
logo_url: str
1213
discord: str
1314
description: str
1415
additional: str
@@ -21,6 +22,7 @@ def _from_dict(cls, decoded: dict) -> "SubnetIdentity":
2122
github_repo=decoded["github_repo"],
2223
subnet_contact=decoded["subnet_contact"],
2324
subnet_url=decoded["subnet_url"],
25+
logo_url=decoded["logo_url"],
2426
discord=decoded["discord"],
2527
description=decoded["description"],
2628
additional=decoded["additional"],

0 commit comments

Comments
 (0)