File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
bittensor/core/extrinsics Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -470,6 +470,7 @@ async def set_subnet_identity_extrinsic(
470
470
github_repo : str ,
471
471
subnet_contact : str ,
472
472
subnet_url : str ,
473
+ logo_url : str ,
473
474
discord : str ,
474
475
description : str ,
475
476
additional : str ,
@@ -488,6 +489,7 @@ async def set_subnet_identity_extrinsic(
488
489
github_repo (str): URL of the GitHub repository related to the subnet.
489
490
subnet_contact (str): Subnet's contact information, e.g., email or contact link.
490
491
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.
491
493
discord (str): Discord server or contact for the subnet.
492
494
description (str): A textual description of the subnet.
493
495
additional (str): Any additional metadata or information related to the subnet.
@@ -516,6 +518,7 @@ async def set_subnet_identity_extrinsic(
516
518
"github_repo" : github_repo ,
517
519
"subnet_contact" : subnet_contact ,
518
520
"subnet_url" : subnet_url ,
521
+ "logo_url" : logo_url ,
519
522
"discord" : discord ,
520
523
"description" : description ,
521
524
"additional" : additional ,
Original file line number Diff line number Diff line change @@ -462,6 +462,7 @@ def set_subnet_identity_extrinsic(
462
462
github_repo : str ,
463
463
subnet_contact : str ,
464
464
subnet_url : str ,
465
+ logo_url : str ,
465
466
discord : str ,
466
467
description : str ,
467
468
additional : str ,
@@ -480,6 +481,7 @@ def set_subnet_identity_extrinsic(
480
481
github_repo (str): URL of the GitHub repository related to the subnet.
481
482
subnet_contact (str): Subnet's contact information, e.g., email or contact link.
482
483
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.
483
485
discord (str): Discord server or contact for the subnet.
484
486
description (str): A textual description of the subnet.
485
487
additional (str): Any additional metadata or information related to the subnet.
@@ -508,6 +510,7 @@ def set_subnet_identity_extrinsic(
508
510
"github_repo" : github_repo ,
509
511
"subnet_contact" : subnet_contact ,
510
512
"subnet_url" : subnet_url ,
513
+ "logo_url" : logo_url ,
511
514
"discord" : discord ,
512
515
"description" : description ,
513
516
"additional" : additional ,
You can’t perform that action at this time.
0 commit comments