forked from jfm-so/piWallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.php
28 lines (21 loc) · 983 Bytes
/
settings.php
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
<?php
$server_url = "/"; // ENTER WEBSITE URL ALONG WITH A TRAILING SLASH
$db_host = "localhost";
$db_user = "wallet_user";
$db_pass = "4fKigzWR7veDPZlvU1dVzYg4H";
$db_name = "wallet";
$rpc_host = "127.0.0.1";
$rpc_port = "8491";
$rpc_user = "rpc_zoow";
$rpc_pass = "UikEppUzKNbR7tGFKPMq3zhlS3eBUp2f";
$fullname = "ZOOW"; //Website Title (Do Not include 'wallet')
$short = "ZOW"; //Coin Short (BTC)
$blockchain_tx_url = "http://zoowexplorer.site:3001/tx/"; //Blockchain Url
$support = "[email protected]"; //Your support eMail
$hide_ids = array(1); //Hide account from admin dashboard
$donation_address = "ZPHbvVmhQJ8Ji8mbXcVr5ePpTZ3qCQu7kk"; //Donation Address
$reserve = "0"; //This fee acts as a reserve. The users balance will display as the balance in the daemon minus the reserve. We don't reccomend setting this more than the Fee the daemon charges.
//Recaptcha
$public = "6LckX6IUAAAAAFckUY_s8rf-2WtsB7zCTK-bwDQW";
$secret = "6LckX6IUAAAAAAiL_IqerDJ4pe4IHuzwf4W5JELn";
?>