-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement techniques from petertodd/replace-by-fee-tools #44
Comments
I'll quote some of the notable parts of the above links:
Note that the work and posts by Peter Todd linked and quotes above are several years old. So some of it might not apply to today's bitcoin eco-system. Some of the techniques mentioned rely on proprietary, internal rules set by miners. Usually a very opaque process - how miners include/exclude and order the transactions in their blocks. But still worthy of some experimentation if it can improve the reliability of double-spending - especially if it makes it possible to achieve non-RBF double-spends. One thing to keep in mind about most of those techniques - it is necessary to add another output to the payment transaction. This will increase the absolute fee amount in sats. But this might not be such a bad thing because the double-spend transaction doesn't have to have a higher absolute fee, just a higher fee rate which is based on the size of the transaction in bytes. So if the extra output is dropped for the double-spend transaction, then the fee-rate will go up if the absolute fee stays the same. |
Tagging Peter Todd @petertodd as he can write more info on current situation of non-RBF double-spends attacks in bitcoin today (what's possible, more likely, etc...) qoute from readme of petertodd/replace-by-fee-tools
so this repo can have list of "blacklisted" addresses, and have option to try double spend with sending additional output to them (with warning that sending to such addresses is not recommended in general, but might work for double spending attacks) also as both repos licenses is GPL-V3, coping is OK. |
Unfortunately I don't know what the current status is, as I haven't looked into it recently.
Yup! |
The tool
replace-by-fee-tools
source-code at:https://github.com/petertodd/replace-by-fee-tools
Contain several methods for double-spends
some links about above repo & more info:
https://www.reddit.com/r/Bitcoin/comments/239bj1/doublespending_unconfirmed_transactions_is_a_lot/
https://www.coingecko.com/buzz/peter-todd-explains-how-he-double-spent-coinbase
this issue about implementing the techniques in above repo in this app.
The text was updated successfully, but these errors were encountered: