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%
H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykcSolana 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.
Delegating from a wallet
Delegate SOL from a compatible wallet by following these steps:
- Open a Solana wallet such as Phantom or Solflare.
- Fund it with SOL.
- Go to the staking section.
- Paste the vote account address H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykc.
- Choose the amount and confirm the transaction.
Delegating from the CLI
Point the Solana CLI at mainnet and check the balance:
solana config set --url https://api.mainnet-beta.solana.comsolana balanceCreate a stake account and delegate it to the vote account:
solana create-stake-account stake-account.json <amount>solana delegate-stake stake-account.json H3GhqPMwvGLdxWg3QJGjXDSkFSJCsFk3Wx9XBTdYZykcReview the stake account, then deactivate and withdraw when you exit:
solana stake-account stake-account.jsonsolana deactivate-stake stake-account.jsonsolana withdraw-stake stake-account.json <recipient> <amount>