Files

15 lines
712 B
Markdown
Raw Permalink Normal View History

2024-12-24 15:09:20 +01:00
This module provides a screen that allows a wallet to have most or all
2025-06-17 22:42:54 +02:00
of its content transferred to another wallet, without giving up anonymity.
2024-12-24 15:09:20 +01:00
If you have a large number of coins in a wallet then the normal "send all"
method will simply merge all coins into one transaction. The downside of
creating one transaction is that it indicates to anyone checking the
blockchain that all those addresses are owned by the same person. Thereby
2025-06-17 22:42:54 +02:00
giving up any anonymity those addresses would have provided.
2024-12-24 15:09:20 +01:00
This module instead creates a transaction per address that is in use in
the old wallet and picks a fresh address from the target wallet in order
2025-06-17 22:42:54 +02:00
to avoid the obvious joining that would give away our anonymity.
2024-12-24 15:09:20 +01:00