Post
Topic
Board Wallet software
Re: Wasabi wallet data privacy questions
by
Synchronice
on 14/07/2023, 21:56:13 UTC
We’ve read Wasabi wallet shouldn't be used because they're using blockchain analysis companies https://bitcointalk.org/index.php?topic=5286821.msg62421785#msg62421785. I don't know everything about their relationship so I'm asking questions about info they're storing or sharing.

Wasabi does not store or share any data with blockchain analysis companies. Your client never shares your xpub address with any third parties, including the coordinator, since it uses BIP158 compact block filters.  Your client never shares your IP address with any third parties, including the coordinator, since it uses Tor.
Hmm, this is a very interesting quote of o_e_l_e_o which I remembered, what about this?
Here's some fun code from Wasabi (https://github.com/zkSNACKs/WalletWasabi/blob/795496595fae2f52730e1556bb6cafd2c649bb97/WalletWasabi.Tests/UnitTests/WabiSabi/Backend/CoinVerifierTests.cs#L133-L142):
Code:
ScheduleVerifications(coinVerifier, generatedCoins);
foreach (var item in await coinVerifier.VerifyCoinsAsync(generatedCoins, CancellationToken.None))
{
if (item.ShouldBan)
{
naughtyCoins.Add(item.Coin);
}
}

Assert.Empty(naughtyCoins); // Empty, so we won't kick out anyone from the CJ round.

Are your coins "naughty"? Once Wasabi have spied on them and made that decision, then you will be banned from coinjoining them with Wasabi. Roll Eyes Add in the fact that they suffer from endemic address reuse (https://bitcointalk.org/index.php?topic=5419000.msg61220171#msg61220171, https://bitcointalk.org/index.php?topic=5286821.msg62085316#msg62085316), and I would steer well clear of ever using Wasabi.

None, zkSNACKs purchases info from blockchain companies, zkSNACKs cannot sell any info to them because Wasabi is purposely designed not to reveal any data about its users.
Hmm, sounds interesting Smiley