Bitcoin Forum
May 24, 2024, 10:02:40 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: ~HELP NEEDED (faucet owner)  (Read 1108 times)
bennett616 (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


http://www.freebitcointips.co.uk/


View Profile WWW
April 18, 2013, 09:00:35 PM
 #1

Any faucet owners out there? I have a list of wallet addresses now.... I need help with a quick way that i can send the BTCs to people. Iv just spent like 30 mins manually putting in addresses and now i cant send because of duplicated addys  ARGH HELP ME haha

Andy B

bennett616 (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


http://www.freebitcointips.co.uk/


View Profile WWW
April 18, 2013, 09:15:32 PM
 #2

please I really want to send these tonight. Smiley

Andy B

tom1
Full Member
***
Offline Offline

Activity: 130
Merit: 100



View Profile
April 18, 2013, 10:34:44 PM
 #3

You could try http://brainwallet.org. How many addresses do you have?

bennett616 (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


http://www.freebitcointips.co.uk/


View Profile WWW
April 18, 2013, 10:39:00 PM
 #4

94 addresses at the moment Smiley

Thank you!

Andy B

super3
Legendary
*
Offline Offline

Activity: 1094
Merit: 1006


View Profile WWW
April 21, 2013, 05:34:30 AM
 #5

94 addresses at the moment Smiley

Thank you!

Andy B
I just reached beta on my faucet software today. What format do you have the addresses in?

Bitcoin Dev / Storj - Decentralized Cloud Storage. Winner of Texas Bitcoin Conference Hackathon 2014. / Peercoin Web Lead / Primecoin Web Lead / Armory Guide Author / "Am I the only one that trusts Dogecoin more than the Federal Reserve?"
bennett616 (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


http://www.freebitcointips.co.uk/


View Profile WWW
April 21, 2013, 02:30:24 PM
 #6

.CSV in Excel Smiley

Andy B

grue
Legendary
*
Offline Offline

Activity: 2058
Merit: 1431



View Profile
April 21, 2013, 02:41:24 PM
 #7

Is there a reason why you can't send the coins yourself? Instead of flooding a wallet service with requests, consider buying some coins yourself, and using sendmany RPC command to distribute.

It is pitch black. You are likely to be eaten by a grue.

Adblock for annoying signature ads | Enhanced Merit UI
bennett616 (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


http://www.freebitcointips.co.uk/


View Profile WWW
April 21, 2013, 02:46:59 PM
 #8

I cannot afford to purchase coins at the moment, the aim of this site is to help out beginners. I am spending a lot of time trying to improve the site for beginners to make it really easy to follow and understand. I have no experience with script writing and I though it would be simple to send the BTC's from the faucet to everyone's address.... But..... It isnt that simple haha Sad The only resource I have at this moment is time, which i put alot into the site and my passion for BTC to be successful, which is why i have made this site in the first place to spread the word to as many people as possible Smiley

Andy B



super3
Legendary
*
Offline Offline

Activity: 1094
Merit: 1006


View Profile WWW
April 21, 2013, 07:24:49 PM
 #9

Because I feel nice today here is my script for sending bitcoins for my faucet. It says terracoins but it works the same way.

Code:
import commands

def send(address, amount):
"""
Send the specified amount to the drip request, time whatever the
coupon code specifies. Uses the following unix command to do so:
sendtoaddress <terracoinaddress> <amount> [comment] [comment-to]
The comment arguments are optional, and not currently used.

"""
# Make Shell Command
command = './terracoind sendtoaddress {0} {1}'
command = command.format(str(address), str(amount))
trans_id = commands.getstatusoutput(command)[1]

# Console Message
con_message = "Sent {0} TRC to {1}. Traction ID: {2}"
print(con_message.format(str(amount), address, trans_id))

You are going to have to learn python, how to read in csv(there are enough tutorial for you to figure it out). You will also have to slightly change the command string to the correct command if you are using windows.

Bitcoin Dev / Storj - Decentralized Cloud Storage. Winner of Texas Bitcoin Conference Hackathon 2014. / Peercoin Web Lead / Primecoin Web Lead / Armory Guide Author / "Am I the only one that trusts Dogecoin more than the Federal Reserve?"
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!