How to find Kiln's validators

Here is how you can find Kiln's validator addresses

When staking on different protocols, you will need to find Kiln's validator addresses if you choose to stake with Kiln.

Addresses on all protocols can be found in the validators docs.

Alternatively, you can also find them in the SDK directly. Here is an example of a stake transaction on our NEAR validator:

import { Kiln, KILN_VALIDATORS } from "@kilnfi/sdk";

const tx = await k.near.craftStakeTx(
      'account_id',
      'wallet_address',
      KILN_VALIDATORS.NEAR.mainnet.KILN,
      1,
);

Last updated