Post
Topic
Board Project Development
Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
by
elbandi
on 24/11/2013, 23:24:46 UTC
Currently using Coinbase with it and it works fine, but it doesnt accept coinbase emails which would make it a bit more user friendly.
You can remove the address check if (!checkAddress($address)), then it accepts anything including email as address. But i don't see, what advantage is over the btc address. Rather cons: what if you email doesn't exists? Your money remains, but the users are unhappy. You can use only with coinbase addresses. etc.


Are payouts grouped to lower the transactions fees?
No payout are paid by user request. so if the user's claim is reached the min level, he can request the paid. but he can wait to claim any BTC, and then request the payout.

Grouping the payouts is a complex. in cb/bc transaction more than 0.01BTC are 0 fee. so need to collect payouts to higher than 0.01BTC. Do you want to make a bounty? Cheesy

Yo just wanna ask, how can i add a custom page? I tried adding one, used the about.php template but it's not working. BTW your script is awesome.
The code is using Slim Framework. So new page is easy:

  • add the new url "controller" to index.php
Code:
$app->get("/url", function () use ($app) {
    $app->render('templatefile.php', array('title' => 'Page title'));
})->name('own_internal_name');
  • make a file templatefile.php to template dir (eg. copy the about.php content)
  • add the link somewhere in other template
Code:
    [/li]