Skip to content

Commit 5a70210

Browse files
author
Roman
committed
update set_subnet_identity_extrinsics
1 parent 29c8b63 commit 5a70210

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

bittensor/core/extrinsics/asyncex/registration.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,7 @@ async def set_subnet_identity_extrinsic(
470470
github_repo: str,
471471
subnet_contact: str,
472472
subnet_url: str,
473+
logo_url: str,
473474
discord: str,
474475
description: str,
475476
additional: str,
@@ -488,6 +489,7 @@ async def set_subnet_identity_extrinsic(
488489
github_repo (str): URL of the GitHub repository related to the subnet.
489490
subnet_contact (str): Subnet's contact information, e.g., email or contact link.
490491
subnet_url (str): The URL of the subnet's primary web portal.
492+
logo_url (str): The URL of the logo's primary web portal.
491493
discord (str): Discord server or contact for the subnet.
492494
description (str): A textual description of the subnet.
493495
additional (str): Any additional metadata or information related to the subnet.
@@ -516,6 +518,7 @@ async def set_subnet_identity_extrinsic(
516518
"github_repo": github_repo,
517519
"subnet_contact": subnet_contact,
518520
"subnet_url": subnet_url,
521+
"logo_url": logo_url,
519522
"discord": discord,
520523
"description": description,
521524
"additional": additional,

bittensor/core/extrinsics/registration.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,7 @@ def set_subnet_identity_extrinsic(
462462
github_repo: str,
463463
subnet_contact: str,
464464
subnet_url: str,
465+
logo_url: str,
465466
discord: str,
466467
description: str,
467468
additional: str,
@@ -480,6 +481,7 @@ def set_subnet_identity_extrinsic(
480481
github_repo (str): URL of the GitHub repository related to the subnet.
481482
subnet_contact (str): Subnet's contact information, e.g., email or contact link.
482483
subnet_url (str): The URL of the subnet's primary web portal.
484+
logo_url (str): The URL of the logo's primary web portal.
483485
discord (str): Discord server or contact for the subnet.
484486
description (str): A textual description of the subnet.
485487
additional (str): Any additional metadata or information related to the subnet.
@@ -508,6 +510,7 @@ def set_subnet_identity_extrinsic(
508510
"github_repo": github_repo,
509511
"subnet_contact": subnet_contact,
510512
"subnet_url": subnet_url,
513+
"logo_url": logo_url,
511514
"discord": discord,
512515
"description": description,
513516
"additional": additional,

0 commit comments

Comments
 (0)