You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
f"Enter the [{COLOR_PALETTE['GENERAL']['COLDKEY']}]wallet name",
2227
+
f"Enter the [{COLORS.G.CK}]wallet name",
2227
2228
default=defaults.wallet.name,
2228
2229
)
2229
2230
2230
2231
ifnotwallet_hotkey:
2231
2232
wallet_hotkey=Prompt.ask(
2232
-
f"Enter the name of the [{COLOR_PALETTE['GENERAL']['HOTKEY']}]new hotkey",
2233
+
f"Enter the name of the [{COLORS.G.HK}]new hotkey",
2233
2234
default=defaults.wallet.hotkey,
2234
2235
)
2235
2236
@@ -2285,7 +2286,7 @@ def wallet_new_coldkey(
2285
2286
2286
2287
ifnotwallet_name:
2287
2288
wallet_name=Prompt.ask(
2288
-
f"Enter the name of the [{COLOR_PALETTE['GENERAL']['COLDKEY']}]new wallet (coldkey)",
2289
+
f"Enter the name of the [{COLORS.G.CK}]new wallet (coldkey)",
2289
2290
default=defaults.wallet.name,
2290
2291
)
2291
2292
@@ -2359,12 +2360,12 @@ def wallet_create_wallet(
2359
2360
2360
2361
ifnotwallet_name:
2361
2362
wallet_name=Prompt.ask(
2362
-
f"Enter the name of the [{COLOR_PALETTE['GENERAL']['COLDKEY']}]new wallet (coldkey)",
2363
+
f"Enter the name of the [{COLORS.G.CK}]new wallet (coldkey)",
2363
2364
default=defaults.wallet.name,
2364
2365
)
2365
2366
ifnotwallet_hotkey:
2366
2367
wallet_hotkey=Prompt.ask(
2367
-
f"Enter the the name of the [{COLOR_PALETTE['GENERAL']['HOTKEY']}]new hotkey",
2368
+
f"Enter the the name of the [{COLORS.G.HK}]new hotkey",
2368
2369
default=defaults.wallet.hotkey,
2369
2370
)
2370
2371
@@ -2742,9 +2743,10 @@ def wallet_sign(
2742
2743
self.verbosity_handler(quiet, verbose)
2743
2744
ifuse_hotkeyisNone:
2744
2745
use_hotkey=Confirm.ask(
2745
-
f"Would you like to sign the transaction using your [{COLOR_PALETTE['GENERAL']['HOTKEY']}]hotkey[/{COLOR_PALETTE['GENERAL']['HOTKEY']}]?"
2746
-
f"\n[Type [{COLOR_PALETTE['GENERAL']['HOTKEY']}]y[/{COLOR_PALETTE['GENERAL']['HOTKEY']}] for [{COLOR_PALETTE['GENERAL']['HOTKEY']}]hotkey[/{COLOR_PALETTE['GENERAL']['HOTKEY']}]"
2747
-
f" and [{COLOR_PALETTE['GENERAL']['COLDKEY']}]n[/{COLOR_PALETTE['GENERAL']['COLDKEY']}] for [{COLOR_PALETTE['GENERAL']['COLDKEY']}]coldkey[/{COLOR_PALETTE['GENERAL']['COLDKEY']}]] (default is [{COLOR_PALETTE['GENERAL']['COLDKEY']}]coldkey[/{COLOR_PALETTE['GENERAL']['COLDKEY']}])",
2746
+
f"Would you like to sign the transaction using your [{COLORS.G.HK}]hotkey[/{COLORS.G.HK}]?"
2747
+
f"\n[Type [{COLORS.G.HK}]y[/{COLORS.G.HK}] for [{COLORS.G.HK}]hotkey[/{COLORS.G.HK}]"
2748
+
f" and [{COLORS.G.CK}]n[/{COLORS.G.CK}] for [{COLORS.G.CK}]coldkey[/{COLORS.G.CK}]] "
2749
+
f"(default is [{COLORS.G.CK}]coldkey[/{COLORS.G.CK}])",
2748
2750
default=False,
2749
2751
)
2750
2752
@@ -3035,11 +3037,11 @@ def stake_add(
3035
3037
raisetyper.Exit()
3036
3038
ifnetuidisnotNone:
3037
3039
amount=FloatPrompt.ask(
3038
-
f"Amount to [{COLOR_PALETTE['GENERAL']['SUBHEADING_MAIN']}]stake (TAO τ)"
3040
+
f"Amount to [{COLORS.G.SUBHEAD_MAIN}]stake (TAO τ)"
3039
3041
)
3040
3042
else:
3041
3043
amount=FloatPrompt.ask(
3042
-
f"Amount to [{COLOR_PALETTE['GENERAL']['SUBHEADING_MAIN']}]stake to each netuid (TAO τ)"
3044
+
f"Amount to [{COLORS.G.SUBHEAD_MAIN}]stake to each netuid (TAO τ)"
3043
3045
)
3044
3046
3045
3047
ifamount<=0:
@@ -4112,7 +4114,8 @@ def sudo_set(
4112
4114
ifnotparam_value:
4113
4115
ifHYPERPARAMS.get(param_name):
4114
4116
param_value=Prompt.ask(
4115
-
f"Enter the new value for [{COLOR_PALETTE['GENERAL']['SUBHEADING']}]{param_name}[/{COLOR_PALETTE['GENERAL']['SUBHEADING']}] in the VALUE column format"
4117
+
f"Enter the new value for [{COLORS.G.SUBHEAD}]{param_name}[/{COLORS.G.SUBHEAD}] "
0 commit comments