Mainnet
Solana logo

Solana

A high-speed network with low fees and an active ecosystem.

  • Annual reward
    7-12%
  • Commission
    10%
  • Voting power
    20,831 SOL
  • Uptime
    99.46%
Validator address
H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc

Delegate with us

Solana is a high-speed proof of stake network with very low fees and a broad application ecosystem. Consensus combines proof of stake with proof of history, which is what allows the high transaction throughput.

Inotel runs an active validator on mainnet with a 10% commission. The node runs in Romania, on our own infrastructure.

Delegating on Solana points a stake account at the validator's vote account. The tokens stay in your stake account, and you exit by deactivating the stake and then withdrawing.

  1. Delegating from a wallet

    Delegate SOL from a compatible wallet by following these steps:

    1. Open a Solana wallet such as Phantom or Solflare.
    2. Fund it with SOL.
    3. Go to the staking section.
    4. Paste the vote account address H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc.
    5. Choose the amount and confirm the transaction.
  2. Delegating from the CLI

    Point the Solana CLI at mainnet and check the balance:

    solana config set --url https://api.mainnet-beta.solana.com
    solana balance

    Create a stake account and delegate it to the vote account:

    solana create-stake-account stake-account.json <amount>
    solana delegate-stake stake-account.json H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc

    Review the stake account, then deactivate and withdraw when you exit:

    solana stake-account stake-account.json
    solana deactivate-stake stake-account.json
    solana withdraw-stake stake-account.json <recipient> <amount>