Skip to content

Guide

Solana Lamports to SOL Conversion — Quick Reference

RPC and Solscan show lamports; wallets show SOL. Misreading units causes wrong fee and rent estimates.

Lamports ↔ SOL converter

1 SOL = 1,000,000,000 lamports exactly. SPL token raw amounts use mint decimals — not lamports.

Quick reference

SOLLamportsTypical use
0.0000055,000Base tx fee (approx.)
0.07575,000,000Revoke mint platform fee
0.12120,000,000Revoke both platform fee
0.1100,000,000Raydium LP platform fee
11,000,000,0001 SOL
// TypeScript (@solana/web3.js)
import { LAMPORTS_PER_SOL } from '@solana/web3.js';
const lamports = Math.round(sol * LAMPORTS_PER_SOL);

// JavaScript
const LAMPORTS_PER_SOL = 1_000_000_000;
const lamports = BigInt(Math.round(sol * LAMPORTS_PER_SOL));

// Rust (solana-sdk)
// use solana_sdk::native_token::LAMPORTS_PER_SOL;
// let lamports = (sol * LAMPORTS_PER_SOL as f64).round() as u64;

Key facts

  • Use the converter below for exact lamports ↔ SOL.
  • Example: 2,500,000,000 lamports = 2.5 SOL.
  • Example: 75,000,000 lamports = 0.075 SOL (matches revoke mint platform fee in current pricing).

What this means

Quick math: lamports ÷ 1e9 = SOL; SOL × 1e9 = lamports. Base tx fee ≈ 5,000 lamports (0.000005 SOL) per Solana docs — priority fees add more under congestion. SPL token amounts use each mint's decimals field — do not divide token raw amounts by 1e9 unless the mint uses 9 decimals. Token account rent-exempt minimum is a separate lamport balance (~0.002 SOL depending on account size). MMAC platform fees are quoted in SOL on /pricing but settle on-chain in lamports when you sign.

Step-by-step

  1. Use the converter below for exact lamports ↔ SOL.
  2. Example: 2,500,000,000 lamports = 2.5 SOL.
  3. Example: 75,000,000 lamports = 0.075 SOL (matches revoke mint platform fee in current pricing).
  4. In @solana/web3.js use LAMPORTS_PER_SOL instead of hardcoding 1e9.
  5. On Solscan tx pages, cross-check lamport and SOL columns match.

Next step

Solana Glossary — Lamport

Next steps

Related tools

Related guides

FAQ

How many lamports in 1 SOL?

Exactly 1,000,000,000.

Do SPL tokens use lamports?

No — only native SOL. Tokens use their own decimals field.

Where are MMAC fees shown?

In SOL on /pricing and each tool page, charged on-chain in lamports when you sign.

The Solana launch trust layer — free mint, public Launch Score, paid trust actions.

Already have a token? Check its Launch Score.

Try: