ParaFi Tech Logo

Powering Decentralized Networks

We are a team of engineers and operators passionate about building open infrastructure for the future of the internet, made in the USA.

$1 Billion+

Staked Assets

0%

Solana Vote Commission

No Slashings

Staking Track Record

Supported Networks

Vote Account:
pt1LsjkN...aMo8inft
Validator Identity:
parafiUS...JdTq46dS
Node Operator ID:
37
Node Operator Address:
0x5Ee590...C3752CB7
Staking Pool Address:
0x7ba7dd...13bd2f80
Operator Address:
0x68ffe6...627bc557

Solana Integration Guide

Staking can be initated with the @solana/web3.js library. Install the dependencies:

npm install @solana/web3.js
npm install dotenv

Load your wallet from an environment variable and use this code to create and delegate stakes.

Your wallet secret key should be stored in an environment variable called WALLET_SECRET_KEY.


import { Connection, Keypair, LAMPORTS_PER_SOL, StakeProgram, PublicKey, Transaction } from "@solana/web3.js";
import dotenv from 'dotenv';

dotenv.config();

// Load wallet from environment variable
const secretKey = JSON.parse(process.env.WALLET_SECRET_KEY || '');
const wallet = Keypair.fromSecretKey(new Uint8Array(secretKey));

...

Solana Validator Performance

Loading validator data...