Base fee and priority fee
Solana documents a base fee of 5,000 lamports per signature, split between burning and the validator. On top of that, a transaction can add an optional prioritization fee derived from a compute unit price and a compute unit limit, which goes entirely to the validator and improves scheduling when the network is congested.
Both are paid in SOL. A wallet holding only a stablecoin has the same problem as on any other network: it can receive, but it cannot send.
The storage balance that catches people out
On Solana, holding a token requires an account for that token, and accounts need a balance to cover storage. Receiving a new token into a fresh wallet therefore has a cost associated with creating that account, separate from the transaction fee.
This is why a Solana wallet with a zero SOL balance can behave in ways that look broken. The fix is to fund it with a small amount of SOL before expecting to transact.
Addresses and networks
Solana addresses are not EVM addresses. There is no shared-address behaviour with Ethereum and its layer 2s, and a Solana address pasted into an EVM field will be rejected rather than silently accepted.
Token versions still matter. A stablecoin on Solana is a specific mint address; check the destination’s deposit instructions rather than relying on the ticker alone.
Cost in practice
Per-transaction costs are typically very low. The planning cost is the SOL you need to hold for fees and account storage. Budget a small balance at the start rather than discovering the requirement mid-transfer.
Frequently asked
How much does a Solana transaction cost?
The documented base fee is 5,000 lamports per signature, or 0.000005 SOL, plus any optional priority fee you add. Account creation for a new token is a separate cost.
Why does my wallet need SOL if I only hold a stablecoin?
Fees are paid in SOL, and accounts require a balance for storage. Both are separate from the token balance itself.
Can I use my Ethereum address on Solana?
No. Solana is not EVM compatible and uses a different address format, so there is no shared-address behaviour with Ethereum or its layer 2s. An address from one will not be accepted by the other, which at least makes the mismatch visible before you send.
Sources & further reading
- Solana: transaction fees
Base fee per signature and the prioritization fee calculation.
- Solana: accounts
Accounts require a balance for storage, separate from transaction fees.
Sources checked on 18 September 2026. Network features and platform support can change; check the relevant provider before acting.
Network notes are educational summaries of public documentation, not an endorsement of a network, token or service, and not investment advice. Read our editorial policy.