Add Delegate Stake
Add and increase delegate stake
Explorer
Select the submit the following extrinsic and choose network in the explorer.
Choose addToDelegateStake(subnetId, stakeToBeAdded)
.
Choose the subnet ID of your choosing and the amount to delegate stake.
Substrate Libraries
keypair = Keypair.create_from_uri('//Alice') # replace with your mnemonic phrase
call = substrate.compose_call(
call_module='Network',
call_function='add_to_delegate_stake',
call_params={
'subnet_id': subnet_id,
'stake_to_be_added': stake_to_be_added,
}
)
extrinsic = substrate.create_signed_extrinsic(call=call, keypair=keypair)
receipt = substrate.submit_extrinsic(extrinsic, wait_for_inclusion=True)
const api = await ApiPromise.create();
// Construct the keyring after the API (crypto has an async init)
const keyring = new Keyring({ type: 'sr25519' });
// Replace //Alice with your mnemonic phrase
const keypair = keyring.addFromUri('//Alice');
const subnetId = 1;
const stakeToBeAdded = 100;
const extrinsic = api.tx.network.addToDelegateStake(
subnetId,
stakeToBeAdded
);
const hash = await extrinsic.signAndSend(keypair);