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). SPL token amounts use each mint's decimals — do not divide token raw amounts by 1e9 unless the mint uses 9 decimals. MMAC platform fees (e.g. revoke 0.075 SOL) are quoted in SOL on tool pages but settle on-chain in lamports.
Step-by-step
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).
In @solana/web3.js use LAMPORTS_PER_SOL instead of hardcoding 1e9.
On Solscan tx pages, cross-check lamport and SOL columns match.
Common mistakes
Applying lamport conversion to SPL token raw amounts without checking mint decimals.
Rounding 1.234567891 SOL to 1.234567891000000000 lamports incorrectly in scripts.