Post
Topic
Board Bitcoin Discussion
Re: Bitcoin puzzle transaction ~32 BTC prize to who solves it
by
as9ardia
on 30/03/2021, 10:12:04 UTC
where do we find a free script that does it all and still saves it in a txt file?

There are several commands from various programming languages that you can use. For example, if you are using python, you can use the open() function + parameter (w)rite
open ('youfile.txt', 'w')
whether your file exists or not (if the file does not exist it will create automatically) or you can use (a)ppend parameter

open ('youfile.txt', 'a')
your result will be added to the existing "text" on your file