-
Notifications
You must be signed in to change notification settings - Fork 102
Expand file tree
/
Copy pathconfig.php
More file actions
39 lines (36 loc) · 1.62 KB
/
config.php
File metadata and controls
39 lines (36 loc) · 1.62 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
35
36
37
38
39
<?php
$mysql = array(
'user' => 'root',
'password' => '',
'host' => 'localhost',
'database' => 'btc'
);
mysql_connect($mysql['host'], $mysql['user'], $mysql['password']) or die("Cannot connect to database.");
mysql_select_db($mysql['database']);
$rpc = array(
'login' => 'RPC_login',
'password' => 'RPC_password',
'ip' => '127.0.0.1',
'port' => '8332'
);
$config = array(
'name' => 'BitPonzi', // Name of your ponzi
'title' => 'get rich!', // Description
'full-name' => 'Bitcoin Ponzi', // Full name of your ponzi
'val' => 'BTC', // Cryptocurrency abbreviation
'precision' => 4,
'confirmations' => 1, // Minimum number of confirmations to add transaction
'min' => 0.001, // Minimum pay in
'max' => 0.25, // Maximum pay in
'income' => 0.1, // How much money to send - default: 0.1 - 110%
'fee' => 0.01, // Fee taken from pay in amount
'payout-check' => 180, // Time between payouts
'ownaddress' => '1MSkXPRK293dDMD5ds6KqVtyDadDkRyanX', // Your address
'sendback' => false, // What to do with txs that are over maximum or under minimum | true - send back, false - send to your address
'ponziacc' => 'btc', // Name of daemon account
'address' => '1ponzisApJfHtgrwP7CrpfEgseBmPcRD4', // Ponzi address
'privkey' => '', // Needed in setup, private key of your address
'blockchain-addr' => 'https://blockchain.info/en/address/',
'blockchain-tx' => 'https://blockchain.info/en/tx/'
);
?>