Fees
Scanning is free. The service fee is 1.00% of SOL actually reclaimed. The Solana network fee is separate.
- No charge for scanning.
- No charge upfront, no subscription, no minimum.
- A failed transaction produces no fee.
- The fee is 100 basis points of the rent actually reclaimed in that batch: floor(gross × 100 / 10,000). Arithmetic is integer (bigint); remainders favour the user.
- The fee is computed per batch, on that batch’s own gross. A batch that never lands charges nothing, because the fee instruction lives in the same atomic transaction as the closes.
- Network fees are paid to the Solana network, not to WalletTidy. Scan estimates of network cost are estimates, not quotes.
The rate is 1.00%. That is the rate, not a promotional “lowest”.
Worked example
This is an example for standard empty accounts, not a quote. Each account uses classic ATA rent of 0.00203928 SOL (2,039,280 lamports). Network fee is excluded.
| Empty accounts | Gross SOL | 1.00% fee | Back to you |
|---|---|---|---|
| 1 | 0.00203928 | 0.000020392 | 0.002018888 |
| 25 | 0.050982 | 0.00050982 | 0.05047218 |
| 100 | 0.203928 | 0.00203928 | 0.20188872 |
| 250 | 0.50982 | 0.0050982 | 0.5047218 |
The rate is a compile-time constant in the engine. There is no environment variable, admin endpoint, or remote override for it.