Our valued sponsor

Question Confiscating USDT vs ETH vs Bitcoin ?

bountymounty

Mentor Group Gold Premium
Feb 12, 2017
566
240
43
I’ve read in many places on the forum that USDT can be frozen by authorities. Is it the same for Ethereum?

What other crypto coin, apart from Bitcoin, can one choose that cannot be frozen by anyone?

The price of BTC is extremely high, so I’m a bit afraid to invest in it right now."

Let me know if you'd like further adjustments!

As I read, as long as I have the ETH on my ledger or Trezor I'm fine no one can touch the ETH:
As for Ethereum (ETH), it’s somewhat different. Ethereum itself, being decentralized, cannot be "frozen" by authorities in the same way as USDT. However, if you store ETH on a centralized exchange or custodial wallet, those platforms could freeze your assets if they receive legal orders, much like how a bank would freeze traditional financial accounts. On-chain ETH, however, cannot be frozen unless certain regulations force validators to censor transactions, which is a complex and contentious issue in the crypto space.
 
The ETH coins on your ledger or trezor should be safe as I have researched. Lt's see if any of the experts can say something.
 
I’ve read in many places on the forum that USDT can be frozen by authorities. Is it the same for Ethereum?
No
What other crypto coin, apart from Bitcoin, can one choose that cannot be frozen by anyone?
All those that are decentralized
The price of BTC is extremely high
In relation to what?
Are you implying that the usd will increase value against btc? If so, go short btc and make a ton of money.
, so I’m a bit afraid to invest in it right now."
No worries, after FUD always comes FOMO.
As I read, as long as I have the ETH on my ledger or Trezor I'm fine no one can touch the ETH:
Correct. The specific tokens could be “flagged”, but that’s not something you should be too worried about.
if you store ETH on a centralized exchange or custodial wallet, those platforms could freeze your assets if they receive legal orders, much like how a bank would freeze traditional financial accounts.
Correct. Not your keys, not your coins.
 
1. Stablecoins (USDT/USDC etc.) and tokens can be frozen by issuers, thousands of Tether addresses are already blacklisted for example. There is DAI, which is decentralized stablecoin, but risk of DAI losing it's peg is probably higher than your wallet getting blacklisted.

2. On-chain native coins (BTC, ETH, LTC etc.) cannot be blacklisted. Only possibility is that your wallet gets flagged by Chainalysis or something, in such case you cannot deposit funds to a centralized exchange. Still possible to cashout though (Tornado Cash, no KYC exchangers etc).
 
Last edited:
Check the token contract for each token as each smart contract can be different , before you start blindly using it .
As you can see in the contract that USDT on the trc20 chain implements a blacklisting mechanism :
Code:
contract BlackList is Ownable {

    /////// Getter to allow the same blacklist to be used also by other contracts (including upgraded Tether) ///////
    function getBlackListStatus(address _maker) external constant returns (bool) {
        return isBlackListed[_maker];
    }

    mapping (address => bool) public isBlackListed;

    function addBlackList (address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        AddedBlackList(_evilUser);
    }

    function removeBlackList (address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        RemovedBlackList(_clearedUser);
    }

    event AddedBlackList(address indexed _user);

    event RemovedBlackList(address indexed _user);

}
As you can see the addBlackList and removeBlackList can only be called by the contract owner (tether) .
If these functions are called events are emitted (AddedBlacklist and RemovedBlacklist)
You can track these events here :
AddedBlacklist: https://bloxy.info/txs/calls_sc/0xdac17f958d2ee523a2206206994597c13d831ec7?signature_id=37762 (1842 calls until today)
RemovedBlacklist: https://bloxy.info/address/0xdac17f958d2ee523a2206206994597c13d831ec7 (67 until today)

And there is also destroyBlackFunds function in the code :
Code:
    function destroyBlackFunds (address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        balances[_blackListedUser] = 0;
        _totalSupply = _totalSupply.sub(dirtyFunds);
        DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address indexed _blackListedUser, uint _balance);
}

This function destroys/clears your funds (sets it to zero and substracts it from the total supply )
You can track the DestroyedBlackFunds events with this link:
https://bloxy.info/txs/calls_sc/0xdac17f958d2ee523a2206206994597c13d831ec7?signature_id=37762 (until today it got called 854 times)
 
  • Wow
  • Like
Reactions: jayM and JohnnyDoe