Next scheduled rescrape ... never
Version 1
Last scraped
Scraped on 03/08/2025, 21:29:12 UTC
Guys i wanna share with you a tool that i was developing

its a GPU binary transformator for searching bitcoin puzzle

https://github.com/puzzleman22/bitcoin_puzzle_transformation

It seems like a great project, but what would be the advantage of using these "transformations"? To me, it just looks like a way to slow down keys computation



the advantage is the ability to reach areas where random or sequential will never reach, and each base random number should be pass through transformations, that way is much more powerful

and that includes:

1) binary shifting(depending on the binary string length)
2) hex rotation(or in a binary format)
3) binary reversion
4) binary inversion

this are the 4 basic transforms that perform in nested loops and that no collision and give unique results

you cannot hit the target directly, but you can reach its transformed form
Original archived Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
Scraped on 03/08/2025, 21:24:24 UTC
Guys i wanna share with you a tool that i was developing

its a GPU binary transformator for searching bitcoin puzzle

https://github.com/puzzleman22/bitcoin_puzzle_transformation

It seems like a great project, but what would be the advantage of using these "transformations"? To me, it just looks like a way to slow down keys computation



the advantage is the ability to reach areas where random or sequential will never reach, and each base random number should be pass through transformations, that way is much more powerful