minifrij (OP)
Legendary
Offline
Activity: 2352
Merit: 1267
In Memory of Zepher
|
|
January 25, 2015, 07:48:28 PM |
|
If you mean how were several transactions sent at once, you can use blockchain.info. To do it manually just open a blockchain.info wallet, go to 'Send Money', go to 'Shared Coin' and use that. To do it automatically, you can use the 'Send Many Transactions' API ( Documentation here).
|
|
|
|
coinpr0n
|
|
January 25, 2015, 07:55:43 PM |
|
Nice write-up and seeing all the info together is really helpful.
|
|
|
|
jaxxx
Full Member
Offline
Activity: 159
Merit: 100
Well fuck you then.
|
|
January 25, 2015, 10:06:43 PM |
|
whoah the levels of detail.. thank you so much!!
|
Time to jaxxx it up.
|
|
|
hawai01
Newbie
Offline
Activity: 38
Merit: 0
|
|
January 25, 2015, 11:09:22 PM |
|
If you mean how were several transactions sent at once, you can use blockchain.info. To do it manually just open a blockchain.info wallet, go to 'Send Money', go to 'Shared Coin' and use that. To do it automatically, you can use the 'Send Many Transactions' API ( Documentation here). Do you know how to make a php code to perform the same transaction ??
|
|
|
|
|
minifrij (OP)
Legendary
Offline
Activity: 2352
Merit: 1267
In Memory of Zepher
|
|
January 26, 2015, 06:24:58 PM |
|
I could set up a faucet for about 0.98 BTC less than your service using the methods I described in the post in about 20-30 minutes.
|
|
|
|
JackpotFaucet.com
Full Member
Offline
Activity: 196
Merit: 100
Move The Knowledge!
|
|
January 26, 2015, 06:28:40 PM |
|
I could set up a faucet for about 0.98 BTC less than your service using the methods I described in the post in about 20-30 minutes. Yep, I'm sure you could. But does that include hosting? Payments? Customization? Support? Marketing? Affiliate program? Didn't think so.
|
|
|
|
minifrij (OP)
Legendary
Offline
Activity: 2352
Merit: 1267
In Memory of Zepher
|
|
January 26, 2015, 06:34:44 PM Last edit: January 26, 2015, 07:37:24 PM by minifrij |
|
Yep, I'm sure you could. But does that include hosting? Payments? Customization? Support? Marketing? Affiliate program?
Didn't think so.
The only thing doing it my way would not include is support marketing. I'm sure that isn't worth 0.98 BTC. Try harder.
|
|
|
|
elm
Legendary
Offline
Activity: 1050
Merit: 1000
|
|
January 26, 2015, 06:38:35 PM |
|
thanks a lot for this detailed explanation. is there any reason why you left out the affiliate option? most faucets are using it
|
|
|
|
JackpotFaucet.com
Full Member
Offline
Activity: 196
Merit: 100
Move The Knowledge!
|
|
January 26, 2015, 06:39:51 PM |
|
thanks a lot for this detailed explanation. is there any reason why you left out the affiliate option? most faucets are using it
Yes, why no affiliate option? The program at JackpotFaucetNetwork comes with it...
|
|
|
|
coinpr0n
|
|
January 26, 2015, 06:43:34 PM |
|
thanks a lot for this detailed explanation. is there any reason why you left out the affiliate option? most faucets are using it
Yes, why no affiliate option? The program at JackpotFaucetNetwork comes with it... I'm not sure, but I think that might come as part of the faucet software in Part 2.
|
|
|
|
minifrij (OP)
Legendary
Offline
Activity: 2352
Merit: 1267
In Memory of Zepher
|
|
January 26, 2015, 07:39:21 PM |
|
I'm unsure what you all mean by affiliate options. If you mean a referral option then I'm pretty sure every script on the list includes this.
|
|
|
|
elm
Legendary
Offline
Activity: 1050
Merit: 1000
|
|
January 26, 2015, 07:48:03 PM |
|
I'm unsure what you all mean by affiliate options. If you mean a referral option then I'm pretty sure every script on the list includes this.
yes referral sorry for the confusion. but what is your opinion about referral option? does it make sense to add it?
|
|
|
|
minifrij (OP)
Legendary
Offline
Activity: 2352
Merit: 1267
In Memory of Zepher
|
|
January 26, 2015, 07:54:21 PM |
|
yes referral sorry for the confusion. but what is your opinion about referral option? does it make sense to add it?
Yes in that it drives more traffic to your site as it gives people an incentive to share your site, but it does obviously cost more. It doesn't cost too much more, so is good to have it imo.
|
|
|
|
minifrij (OP)
Legendary
Offline
Activity: 2352
Merit: 1267
In Memory of Zepher
|
|
January 26, 2015, 08:06:29 PM |
|
Do you know how to make a php code to perform the same transaction ??
Using the Blockchain API, this is how I imagine the code would look. Just typing this off the top of my head, so there may be a few errors. //Create a two dimensional array for your addresses, with Bitcoin addresses as keys and the amount (in satoshi) as values. //Will send 0.0001BTC to both of those adresses $addresses = array('1PNmymEXA8mGZfdsWAWmicJPTXEf5KAzTG' => '10000', '1QBCMPPnAJoaxgeKSnnLCHDLMQvD53ZUmQ' => '10000');
//JSON encode the array, as the API requires it $jsonadresses = json_encode($adresses);
//Get the contents of the API url, this alone will send the coins. $url = https://blockchain.info/merchant/$guid/sendmany?password=$main_password&second_password=$second_password&recipients=$jsonaddresses $furl = file_get_contents($url); //JSON decode the response for use. $jurl = json_decode($furl);
//Get values from response $message = $jurl['message']; $txhash = $jurl['tx_hash'];
This is obviously barebones sort of stuff, and you should look on the API page linked above for information on how to fill in the url and such.
|
|
|
|
|
Kprawn
Legendary
Offline
Activity: 1904
Merit: 1074
|
|
January 28, 2015, 09:35:31 AM |
|
Thanks OP for a very detailed explanation and helpfull guide. Most people, with limited "programming" skills should not go for these pre-scripted options, if they do not have someone, who can verify, that no "backdoors" are built in, for someone to sweep your coins or hijack your faucet. People are VERY creative in scamming people out of their well earned money.
|
|
|
|
minifrij (OP)
Legendary
Offline
Activity: 2352
Merit: 1267
In Memory of Zepher
|
|
January 28, 2015, 10:49:24 AM |
|
Most people, with limited "programming" skills should not go for these pre-scripted options, if they do not have someone, who can verify, that no "backdoors" are built in, for someone to sweep your coins or hijack your faucet. People are VERY creative in scamming people out of their well earned money. While this is true, most big faucet scripts are posted on the forums and checked by developers. I mean, that backdoor in the old MyFaucet script where a certain email would get double rewards was uncovered almost straight after it was posted. I'll add this along with some other captchas tonight.
|
|
|
|
GLBrim
Newbie
Offline
Activity: 42
Merit: 0
|
|
January 28, 2015, 12:51:55 PM |
|
isnt the price is too much?
|
|
|
|
Koko1200
|
|
January 28, 2015, 02:39:46 PM |
|
nah that i need ,, many thanks to you for how to run faucet
|
|
|
|
|