-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
900df95
commit c3874c0
Showing
5 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# I still see you! | ||
|
||
## Problem | ||
|
||
Sending transactions across the P2P network is sensitive data. | ||
|
||
![show transaction tracking based on size](./images/transaction-analysis/length.png) | ||
|
||
Global passive observers can differentiate whether it's this tx or that tx from the size of the packet! | ||
|
||
## Statistics | ||
|
||
### Common transaction size (in bytes) in the last 100 blocks | ||
![show common transaction size in last 100 blocks](./images/transaction-analysis/100-blocks-tx-size.png) | ||
- 96.7 % of transactions below 1000 bytes | ||
- 99% of transactions below 3000 bytes | ||
|
||
### Common transaction size (in bytes) in the mempool | ||
![show common transaction size in mempool](./images/transaction-analysis/mempool-tx-size.png) | ||
- 89.6 % of transactions below 1000 bytes | ||
- 92% of transactions below 3000 bytes | ||
|
||
## Solution | ||
|
||
1. Pad transaction messages | ||
|
||
- last 100 blocks | ||
|
||
| | pad to a fixed size=1000 | pad to a fixed size=3000 | pad to a dynamic size | | ||
|--------------------------|--------------------------|--------------------------|-----------------------| | ||
| how much padding? | 1000 | 3000 | Padmé algo | | ||
| what is extra bandwidth? | 43 MB | 162 MB | 10.9 GB | | ||
|
||
- mempool | ||
|
||
| | pad to a fixed size=1000 | pad to a fixed size=3000 | pad to a dynamic size | | ||
|--------------------------|--------------------------|--------------------------|-----------------------| | ||
| how much padding? | 1000 | 3000 | Padmé algo | | ||
| what is extra bandwidth? | 37 MB | 139.8 MB | 123 MB | | ||
|
||
2. Broadcast decoy messages with size (transaction message) | ||
|
||
## Code | ||
|
||
- branch - https://github.com/stratospher/bitcoin/tree/2024-05-tx-traffic | ||
- jupyter notebook - https://colab.research.google.com/drive/1q2fLkxuAiqr2hlAEQ4r6x2Lx9bTh4bN0?usp=sharing | ||
|
||
## Conclusion | ||
|
||
| | advantage | disadvantage | | ||
|-----------------|--------------------------|------------------------------------------------------------------------| | ||
| fixed padding | bandwidth efficient | can't hide the outliers + optimal padding might vary based on data set | | ||
| dynamic padding | covers even the outliers | too much bandwidth | |