Hosting Faucet
Installation
Clone the repository
git clone https://github.com/qwertycoin-org/qwertycoin-faucet.gitConfiguration
Create a database
CREATE TABLE `payouts` (
`id` bigint(20) UNSIGNED NOT NULL,
`ip_address` varchar(45) NOT NULL,
`payout_amount` float NOT NULL,
`payout_address` varchar(100) NOT NULL,
`payment_id` varchar(75) NOT NULL,
`timestamp` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
ALTER TABLE `payouts`
ADD PRIMARY KEY (`id`);
ALTER TABLE `payouts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;Edit the config.php file
config.php fileInstall and run Qwertycoin daemon and simplewallet
Running Ads (optional)
Last updated
Was this helpful?