31
31
from bittensor .core .chain_data .delegate_info import DelegatedInfo
32
32
from bittensor .core .chain_data .utils import decode_metadata
33
33
from bittensor .core .config import Config
34
- from bittensor .core .errors import SubstrateRequestException
34
+ from bittensor .core .errors import ChainError , SubstrateRequestException
35
35
from bittensor .core .extrinsics .asyncex .commit_reveal import commit_reveal_v3_extrinsic
36
36
from bittensor .core .extrinsics .asyncex .registration import (
37
37
burned_register_extrinsic ,
57
57
add_stake_extrinsic ,
58
58
add_stake_multiple_extrinsic ,
59
59
)
60
+ from bittensor .core .extrinsics .asyncex .take import (
61
+ decrease_take_extrinsic ,
62
+ increase_take_extrinsic ,
63
+ )
60
64
from bittensor .core .extrinsics .asyncex .transfer import transfer_extrinsic
61
65
from bittensor .core .extrinsics .asyncex .unstaking import (
62
66
unstake_extrinsic ,
@@ -1111,7 +1115,7 @@ async def get_delegate_take(
1111
1115
block : Optional [int ] = None ,
1112
1116
block_hash : Optional [str ] = None ,
1113
1117
reuse_block : bool = False ,
1114
- ) -> Optional [ float ] :
1118
+ ) -> float :
1115
1119
"""
1116
1120
Retrieves the delegate 'take' percentage for a neuron identified by its hotkey. The 'take' represents the
1117
1121
percentage of rewards that the delegate claims from its nominators' stakes.
@@ -1123,7 +1127,7 @@ async def get_delegate_take(
1123
1127
reuse_block (bool): Whether to reuse the last-used block hash.
1124
1128
1125
1129
Returns:
1126
- Optional[ float] : The delegate take percentage, None if not available .
1130
+ float: The delegate take percentage.
1127
1131
1128
1132
The delegate take is a critical parameter in the network's incentive structure, influencing the distribution of
1129
1133
rewards among neurons and their nominators.
@@ -1135,11 +1139,8 @@ async def get_delegate_take(
1135
1139
reuse_block = reuse_block ,
1136
1140
params = [hotkey_ss58 ],
1137
1141
)
1138
- return (
1139
- None
1140
- if result is None
1141
- else u16_normalized_float (getattr (result , "value" , 0 ))
1142
- )
1142
+
1143
+ return u16_normalized_float (result .value ) # type: ignore
1143
1144
1144
1145
async def get_delegated (
1145
1146
self ,
@@ -2748,6 +2749,7 @@ async def sign_and_send_extrinsic(
2748
2749
use_nonce : bool = False ,
2749
2750
period : Optional [int ] = None ,
2750
2751
nonce_key : str = "hotkey" ,
2752
+ raise_error : bool = False ,
2751
2753
) -> tuple [bool , str ]:
2752
2754
"""
2753
2755
Helper method to sign and submit an extrinsic call to chain.
@@ -2758,6 +2760,7 @@ async def sign_and_send_extrinsic(
2758
2760
wait_for_inclusion (bool): whether to wait until the extrinsic call is included on the chain
2759
2761
wait_for_finalization (bool): whether to wait until the extrinsic call is finalized on the chain
2760
2762
sign_with: the wallet's keypair to use for the signing. Options are "coldkey", "hotkey", "coldkeypub"
2763
+ raise_error: raises relevant exception rather than returning `False` if unsuccessful.
2761
2764
2762
2765
Returns:
2763
2766
(success, error message)
@@ -2795,9 +2798,15 @@ async def sign_and_send_extrinsic(
2795
2798
if await response .is_success :
2796
2799
return True , ""
2797
2800
2801
+ if raise_error :
2802
+ raise ChainError .from_error (response .error_message )
2803
+
2798
2804
return False , format_error_message (await response .error_message )
2799
2805
2800
2806
except SubstrateRequestException as e :
2807
+ if raise_error :
2808
+ raise
2809
+
2801
2810
return False , format_error_message (e )
2802
2811
2803
2812
# Extrinsics =======================================================================================================
@@ -3260,6 +3269,82 @@ async def root_set_weights(
3260
3269
wait_for_inclusion = wait_for_inclusion ,
3261
3270
)
3262
3271
3272
+ async def set_delegate_take (
3273
+ self ,
3274
+ wallet : "Wallet" ,
3275
+ hotkey_ss58 : str ,
3276
+ take : float ,
3277
+ wait_for_inclusion : bool = True ,
3278
+ wait_for_finalization : bool = True ,
3279
+ raise_error : bool = False ,
3280
+ ) -> tuple [bool , str ]:
3281
+ """
3282
+ Sets the delegate 'take' percentage for a neuron identified by its hotkey.
3283
+ The 'take' represents the percentage of rewards that the delegate claims from its nominators' stakes.
3284
+
3285
+ Arguments:
3286
+ wallet (bittensor_wallet.Wallet): bittensor wallet instance.
3287
+ hotkey_ss58 (str): The ``SS58`` address of the neuron's hotkey.
3288
+ take (float): Percentage reward for the delegate.
3289
+ wait_for_inclusion (bool): Waits for the transaction to be included in a block.
3290
+ wait_for_finalization (bool): Waits for the transaction to be finalized on the blockchain.
3291
+ raise_error: Raises relevant exception rather than returning `False` if unsuccessful.
3292
+
3293
+ Returns:
3294
+ tuple[bool, str]: A tuple where the first element is a boolean indicating success or failure of the
3295
+ operation, and the second element is a message providing additional information.
3296
+
3297
+ Raises:
3298
+ DelegateTakeTooHigh: Delegate take is too high.
3299
+ DelegateTakeTooLow: Delegate take is too low.
3300
+ DelegateTxRateLimitExceeded: A transactor exceeded the rate limit for delegate transaction.
3301
+ HotKeyAccountNotExists: The hotkey does not exists.
3302
+ NonAssociatedColdKey: Request to stake, unstake or subscribe is made by a coldkey that is not associated with the hotkey account.
3303
+ bittensor_wallet.errors.PasswordError: Decryption failed or wrong password for decryption provided.
3304
+ bittensor_wallet.errors.KeyFileError: Failed to decode keyfile data.
3305
+
3306
+ The delegate take is a critical parameter in the network's incentive structure, influencing the distribution of
3307
+ rewards among neurons and their nominators.
3308
+ """
3309
+
3310
+ # u16 representation of the take
3311
+ take_u16 = int (take * 0xFFFF )
3312
+
3313
+ current_take = await self .get_delegate_take (hotkey_ss58 )
3314
+ current_take_u16 = int (current_take * 0xFFFF )
3315
+
3316
+ if current_take_u16 == take_u16 :
3317
+ logging .info (":white_heavy_check_mark: [green]Already Set[/green]" )
3318
+ return True , ""
3319
+
3320
+ logging .info (f"Updating { hotkey_ss58 } take: current={ current_take } new={ take } " )
3321
+
3322
+ if current_take_u16 < take_u16 :
3323
+ success , error = await increase_take_extrinsic (
3324
+ self ,
3325
+ wallet ,
3326
+ hotkey_ss58 ,
3327
+ take_u16 ,
3328
+ wait_for_finalization = wait_for_finalization ,
3329
+ wait_for_inclusion = wait_for_inclusion ,
3330
+ raise_error = raise_error ,
3331
+ )
3332
+ else :
3333
+ success , error = await decrease_take_extrinsic (
3334
+ self ,
3335
+ wallet ,
3336
+ hotkey_ss58 ,
3337
+ take_u16 ,
3338
+ wait_for_finalization = wait_for_finalization ,
3339
+ wait_for_inclusion = wait_for_inclusion ,
3340
+ raise_error = raise_error ,
3341
+ )
3342
+
3343
+ if success :
3344
+ logging .info (":white_heavy_check_mark: [green]Take Updated[/green]" )
3345
+
3346
+ return success , error
3347
+
3263
3348
async def set_subnet_identity (
3264
3349
self ,
3265
3350
wallet : "Wallet" ,
0 commit comments