mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
will allow to do internal graphes and compute better exchange orders Also track in the new table a (BTC/EUR) alternative, from kraken public api this second currency should be user definable later.
83 lines
2.3 KiB
PHP
83 lines
2.3 KiB
PHP
<?php
|
|
|
|
ini_set('date.timezone', 'UTC');
|
|
|
|
define('YAAMP_LOGS', '/var/log');
|
|
define('YAAMP_HTDOCS', '/var/web');
|
|
define('YAAMP_BIN', '/var/bin');
|
|
|
|
define('YAAMP_DBHOST', 'localhost');
|
|
define('YAAMP_DBNAME', 'yaamp');
|
|
define('YAAMP_DBUSER', 'root');
|
|
define('YAAMP_DBPASSWORD', 'password');
|
|
|
|
define('YAAMP_PRODUCTION', true);
|
|
define('YAAMP_RENTAL', true);
|
|
define('YAAMP_LIMIT_ESTIMATE', false);
|
|
|
|
define('YAAMP_FEES_MINING', 0.5);
|
|
define('YAAMP_FEES_EXCHANGE', 2);
|
|
define('YAAMP_FEES_RENTING', 2);
|
|
define('YAAMP_PAYMENTS_FREQ', 3*60*60);
|
|
define('YAAMP_PAYMENTS_MINI', 0.001);
|
|
|
|
define('YAAMP_ALLOW_EXCHANGE', false);
|
|
define('YIIMP_PUBLIC_EXPLORER', true);
|
|
define('YIIMP_WATCH_CURRENCIES', 'BTC,DCR,XVC'); // track history
|
|
define('YIIMP_FIAT_ALTERNATIVE', 'EUR'); // USD is main
|
|
|
|
define('YAAMP_USE_NICEHASH_API', false);
|
|
|
|
define('YAAMP_BTCADDRESS', '1Auhps1mHZQpoX4mCcVL8odU81VakZQ6dR');
|
|
define('YAAMP_SITE_URL', 'yiimp.ccminer.org');
|
|
define('YAAMP_SITE_NAME', 'YiiMP');
|
|
define('YAAMP_ADMIN_EMAIL', 'yiimp@spam.la');
|
|
define('YAAMP_ADMIN_IP', '127.0.0.1,80.236.118.26');
|
|
|
|
define('YAAMP_USE_NGINX', false);
|
|
|
|
// Exchange public keys (private keys are in a separate config file)
|
|
define('EXCH_CRYPTOPIA_KEY', '');
|
|
//define('EXCH_CRYPTSY_KEY', '');
|
|
define('EXCH_POLONIEX_KEY', '');
|
|
define('EXCH_BITTREX_KEY', '');
|
|
define('EXCH_BLEUTRADE_KEY', '');
|
|
define('EXCH_BTER_KEY', '');
|
|
define('EXCH_YOBIT_KEY', '');
|
|
define('EXCH_CCEX_KEY', '');
|
|
define('EXCH_SAFECEX_KEY', '');
|
|
define('EXCH_KRAKEN_KEY', '');
|
|
define('EXCH_BANX_USERNAME', '');
|
|
define('EXCH_NOVA_KEY', '');
|
|
|
|
// Automatic withdraw to Yaamp btc wallet if btc balance > 0.3
|
|
define('EXCH_AUTO_WITHDRAW', 0.3);
|
|
|
|
// nicehash keys deposit account & amount to deposit at a time
|
|
define('NICEHASH_API_KEY','521c254d-8cc7-4319-83d2-ac6c604b5b49');
|
|
define('NICEHASH_API_ID','9205');
|
|
define('NICEHASH_DEPOSIT','3J9tapPoFCtouAZH7Th8HAPsD8aoykEHzk');
|
|
define('NICEHASH_DEPOSIT_AMOUNT','0.01');
|
|
|
|
|
|
$cold_wallet_table = array(
|
|
'1C23KmLeCaQSLLyKVykHEUse1R7jRDv9j9' => 0.10,
|
|
);
|
|
|
|
// Sample fixed pool fees
|
|
$configFixedPoolFees = array(
|
|
'zr5' => 2.0,
|
|
'scrypt' => 20.0,
|
|
'sha256' => 5.0,
|
|
);
|
|
|
|
// Sample custom stratum ports
|
|
$configCustomPorts = array(
|
|
// 'x11' => 7000,
|
|
);
|
|
|
|
// mBTC Coefs per algo (default is 1.0)
|
|
$configAlgoNormCoef = array(
|
|
// 'x11' => 5.0,
|
|
);
|
|
|