ymgve / bitcoin_fork_claimer

Script for transferring/claiming your coins on various Bitcoin forks
204 stars 86 forks source link

possibility to combine several transactions in one command? #32

Closed Golddouble closed 6 years ago

Golddouble commented 6 years ago

When I have to claim forks from one address but with different "source transaction ID"'s: For example this:

claimer.py <cointype> <source transaction ID 1> <source private key 1> <source address 1> <destination address 1>

and afterwards:

claimer.py <cointype> <source transaction ID 2> <source private key 1> <source address 1> <destination address 1>

Do I have to start claimer.py twice?

First start claimer.py <source transaction ID 1> <source private key 1> <source address 1> <destination address 1>

Then wait until block inclusion; and afterwards start the second command:

claimer.py <source transaction ID 2> <source private key 1> <source address 1> <destination address 1>

Or is there a method to start both with one command? For example something like this: claimer.py <source transaction ID 1>, <source transaction ID 2> <source private key 1> <source address 1> <destination address 1>

Or for example claimer.py <source transaction ID 1> <source private key 1> <source address 1> <destination address 1>, <source transaction ID 2> <source private key 1> <source address 1> <destination address 1>

Thank you for your help.

ymgve commented 6 years ago

You don't have to wait until a block inclusion, as long as the transaction has gone into the mempool you can just stop the script and start the one for the next TXID.