-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.php
More file actions
34 lines (29 loc) · 1.51 KB
/
config.example.php
File metadata and controls
34 lines (29 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
// SPDX-License-Identifier: AGPL-3.0-or-later
// Copyright (C) 2020-2026 Tech1k
// -----------------------------------------------------------------------------
// DuinoFaucet configuration sample.
//
// Copy this file to `config.php` and fill in real values. `config.php` is
// git-ignored and must not be committed; it holds the faucet wallet
// credentials and the Turnstile secret.
// -----------------------------------------------------------------------------
// Duino-Coin (DUCO)
$duco_payout_amount = 1; // Amount sent per claim
$duco_faucet_user = "faucet"; // Faucet wallet username
$duco_faucet_pass = "CHANGE_ME"; // Faucet wallet password
$duco_message = "Duino-Coin Faucet at faucet.duinocoin.com";
// Magi (XMG)
$magi_payout_amount = 0.105; // Amount debited (includes fee)
$magi_payout_amount_feeless = 0.1; // Amount the user actually receives
$magi_fee_amount = 0.005; // Network/transaction fee
$magi_faucet_user = "faucet"; // Faucet wallet username
$magi_faucet_pass = "CHANGE_ME"; // Faucet wallet password
$magi_message = "Magi Faucet at faucet.duinocoin.com";
// Cloudflare Turnstile (captcha) - keys from the Turnstile dashboard. The site
// key is public (rendered into the HTML); the secret must stay private.
$turnstile_sitekey = "CHANGE_ME";
$turnstile_secret = "CHANGE_ME";
// SQLite database path (relative to the web root)
$db_file = "db/duinofaucet.db";
?>