Solana Base Fee: 5,000 Lamports Per Signature Explained
Every transaction on the Solana network requires a mandatory base fee of exactly 5,000 lamports (0.000005 SOL) per signature. This fixed cost applies uniformly regardless of network congestion, making Solana one of the most predictably affordable blockchains available today.
The base fee exists to compensate validators for the computational work of cryptographic signature verification — specifically Ed25519, Secp256k1, and Secp256r1 signatures. It is deducted from the fee payer before execution begins, even if the transaction ultimately fails.
The Solana base fee of 5,000 lamports is one of the most stable and predictable costs in the entire blockchain industry.
How the 5,000 Lamports Base Fee Is Distributed
Once collected, the Solana base fee is split in two equal parts. 50% is permanently burned — removed from the circulating SOL supply — which creates mild deflationary pressure on the token over time. The other 50% is awarded directly to the block-producing validator as compensation for processing.
This dual-distribution model, governed by the DEFAULT_BURN_PERCENT = 50 constant in the Solana runtime, ensures both long-term token scarcity and fair validator incentives. At a SOL price of $100, the base fee amounts to just $0.0005 — less than one-tenth of a cent per transaction.
For transactions requiring multiple signers, the total base fee scales linearly: a transaction with three signatures costs 15,000 lamports in base fees. Developers should account for this when designing multi-sig workflows or complex smart contract interactions.




