Is it safe?

Guide·4 min read·3 of 5

Closing empty token accounts is one of the safest operations on Solana. The tool you use is a different question.

The honest answer: closing empty token accounts is one of the safest operations on Solana. But “the operation is safe” and “this tool is safe” are different questions.

What closing an account actually does

An empty token account holds no tokens. Closing it does one thing: it returns the rent deposit to your wallet and removes the account from the chain. Nothing is destroyed, because there was nothing in it. Your transaction history is unaffected.

Solana's own documentation describes it plainly: closing an empty account returns the rent to your wallet.

What a non-custodial tool can and can't do

A non-custodial tool never holds your keys. It builds a transaction and asks you to sign it. That means:

  • It cannot move your funds without a signature from you.
  • It cannot access other tokens unless the transaction you sign says so.
  • It cannot do anything after you close the tab.

The signature is the boundary. Everything a tool does happens because you approved it.

Where the real risks are

The danger isn't the operation. It's the tool, and how you got to it.

Fake sites. The most common attack. Someone clones a popular cleaner, buys ads or spams links, and the transaction you're asked to sign drains your wallet instead of closing accounts. Always verify the URL.

Signing without reading. Your wallet shows what a transaction does. If you approve without looking, you've handed over the decision. Read the balance changes before you sign.

Burning the wrong thing. Closing empty accounts is safe. Burning tokens and NFTs is permanent. Any tool that offers burning should make you confirm explicitly. If you're unsure what something is, look it up on Solscan before you destroy it.

The rule that covers most of it

Don't trust, verify. Check the URL. Read the transaction. Understand what you're signing.

That advice is boring, and it's why it works.

← Back to the guide overview