Bitcoin Forum

Alternate cryptocurrencies => Service Discussion (Altcoins) => Topic started by: ^.^ on October 12, 2017, 06:05:18 PM



Title: Need Coder
Post by: ^.^ on October 12, 2017, 06:05:18 PM
Need someone to create a program or script that can send coins from one wallet to another via RPC ever X amount of time

Let me know your prices


Title: Re: Need Coder
Post by: TillKoeln on October 13, 2017, 06:55:25 AM
if you dont find someone ^^ ....



-start your windows client  with daemon flag.

Code:
YourCoin-qt.exe -rpcport=12345 -rpcpassword=somepassword -rpcuser=someuser -server -daemon 

-create a .bat file. with the folowing text.

Code:
YourCoind.exe -rpcpassword=somepassword -rpcuser=someuser -rpcport=12345 sendtoaddress XXXXsomeAddressXXXX 12345.12345678
@echo off
echo Wait until timer ends ...  60 seconds
timeout /t 60

-get the Coin-Daemon itself.   example:  bitcoind.exe
-copy your new created .bat file into the same folder as the bitcoind.exe
-execute your .bat file.

....
...
..
.

The Example above will execute the daemon, which send the rpccommand in your .bat file to the windows-gui.
this happend 1 Time.  you can copy & paste the same command including the whole stuff. multiple times inside the bat file.

if you have it 2 or 99999999999 times typed ...   the bat file execute the command, make a break for x seconds and then
execute the next command ... break ..  execute .. break .. execute .. bla bla bla



example :
Code:

YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ...  60 seconds
timeout /t 60

YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ...  60 seconds
timeout /t 60

YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ...  60 seconds
timeout /t 60

YourCoind.exe -rpc......
@echo off
echo Wait until timer ends ...  60 seconds
timeout /t 60