All Ethereum are all Ethereum they all are same, for example ETH=ETH
All BTC ≠ are not BTC because some bitcoins which are stolen or hacked or hijacked can be marked and it can be backlisted so if you receive such coin you will have trouble to sell it.
The account model doesn’t require much space as the UTXO model, why is that a benefit?
How is the account model not as great as the UTXO model for privacy?
- The account model doesn’t require much space as the UTXO model, why is that a benefit?
Blocks can include more transactions, which is crucial for Ethereum which has hundreds of ERC20 tokens settling on the ETH blockchain.
It’s a benefit because it means there’s more space in the block for other transactions and smart contract code. The UTXO model limits the amount of code that can be fit within a block while also incorporating an efficient number of transactions. However, the account model Ethereum uses allows for more transactions to fit per block and lengthier smart contracts that might include many different states with different conditions.
- How is the account model not as great as the UTXO model for privacy?
There are no change wallets in Ethereum. The impact is that, for Ethereum, the destination address(es) are the ones originally specified. Bitcoin, on the other hand, sends any unspent UTXOs to a “change” wallet, and it therefor is more difficult for someone to know which of the addresses sent to are new individuals vs the sender’s change wallet.
The account model is not as good for keeping transactions private because it’s simply a transfer from one account to another. Anyone can view the amounts and destinations for all transactions fairly easily. Someone would just need to learn who owns a particular address to trace all other transactions connected to that address back to them. Alternatively, the UTXO model can combine transactions so that one transaction sends funds to multiple parties at the same time. For example, you could send funds to your friend, your surprisingly tech-savvy grandma, your landlord (someday), and yourself all at the same time with the UTXO model. Someone viewing the transaction on the blockchain can see that 4 transactions were outputted, or spent, but it’s harder to determine if the recipients are different people, the same person with different addresses, yourself, or any combination of these.