Claim Node Delegate Stake
Add and increase delegate stake
Explorer
Select the submit the following extrinsic and choose network in the explorer.
Choose
claimUnbondings()
.Choose the subnet ID from which to remove the delegate stake.
Submit transaction.
This will remove all delegate stakes previously removed that have exceeded the cooldown period.
Substrate Libraries
keypair = Keypair.create_from_uri('//Alice') # replace with your mnemonic phrase
call = substrate.compose_call(
call_module='Network',
call_function='claim_unbondings',
)
extrinsic = substrate.create_signed_extrinsic(call=call, keypair=keypair)
receipt = substrate.submit_extrinsic(extrinsic, wait_for_inclusion=True)
Last updated