Skip to Content
API ReferenceAvail node API referenceBecome a validator on Avail DA

Become a validator on Avail DA

On-chain name of extrinsic: staking_validate

Parameters

parametertypeoptionaldescription
commissionnumberfalsehow much validator charge nominators in 0 - 100 range
blockedbooleanfalsewhether or not this validator accepts nominations
waitForWaitForfalsewait for block inclusion or finalization
accountKeyringPairfalseaccount that will send and sign the transaction
optionsSignerOptionstrueused to overwrite existing signer options

Returns

On failure, a reason of failure is returned. On Success, ValidatorPrefsSet event, transaction hash and block hash is returned.

Minimal example

  1. You will need to set up the dev environment required to run this example. For instructions, check out our docs here.

  2. If you’re sending an extrinsic (i.e conducting a transaction) you will need to replace the demo seed phrase with your own seed phrase. The rest of the code should work as is.

  1. Inside your-file-name.ts, add the following code:
avail-js
import * as dotenv from 'dotenv'; import { Account, SDK, Pallets } from 'avail-js-sdk'; dotenv.config(); export async function stakingValidate() { // Initialize SDK with Turing endpoint const sdk = await SDK.New('wss://turing-rpc.avail.so/ws'); // Create account from seed in .env file const seed = process.env.SEED; if (!seed) { throw new Error("SEED environment variable is not set"); } // Create account from seed const account = Account.new(seed); console.log("Account Address: ", account.address); // Validator settings const commission = 5; // 5% const blocked = false; console.log(`Commission: ${commission}%`); console.log(`Blocked: ${blocked}`); // Create validate transaction const tx = sdk.tx.staking.validate(commission, blocked); console.log("Submitting validate transaction..."); // Execute and wait for inclusion const res = await tx.executeWaitForInclusion(account, {}); // Check if transaction was successful const isOk = res.isSuccessful(); if (isOk === undefined) { throw new Error("Cannot check if transaction was successful"); } else if (!isOk) { throw new Error("Transaction failed"); } console.log("Validation setup completed successfully"); console.log(`Transaction Hash: ${res.txHash}`); console.log(`Block Hash: ${res.blockHash}`); process.exit(0); } // Execute the function stakingValidate();
  1. Run the code using:
terminal
ts-node your-file-name.ts
Last updated on