mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
This explorer data seems fully random and incomplete, useless so
This reverts commit a36f11d6ba
.
97 lines
2.8 KiB
PHP
97 lines
2.8 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_TXFEE_RENTING_WD', 0.002);
|
|
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_PUBLIC_BENCHMARK', false);
|
|
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_STRATUM_URL', YAAMP_SITE_URL); // change if your stratum server is on a different host
|
|
define('YAAMP_SITE_NAME', 'YiiMP');
|
|
define('YAAMP_ADMIN_EMAIL', 'yiimp@spam.la');
|
|
define('YAAMP_ADMIN_IP', ''); // samples: "80.236.118.26,90.234.221.11" or "10.0.0.1/8"
|
|
define('YAAMP_ADMIN_WEBCONSOLE', true);
|
|
define('YAAMP_CREATE_NEW_COINS', true);
|
|
define('YAAMP_NOTIFY_NEW_COINS', false);
|
|
define('YAAMP_DEFAULT_ALGO', 'x11');
|
|
|
|
define('YAAMP_USE_NGINX', false);
|
|
|
|
// Exchange public keys (private keys are in a separate config file)
|
|
define('EXCH_CRYPTOPIA_KEY', '');
|
|
define('EXCH_POLONIEX_KEY', '');
|
|
define('EXCH_BITTREX_KEY', '');
|
|
define('EXCH_BLEUTRADE_KEY', '');
|
|
define('EXCH_YOBIT_KEY', '');
|
|
define('EXCH_CCEX_KEY', '');
|
|
define('EXCH_CEXIO_ID', '');
|
|
define('EXCH_CEXIO_KEY', '');
|
|
define('EXCH_COINMARKETS_USER', '');
|
|
define('EXCH_COINMARKETS_PIN', '');
|
|
define('EXCH_CREX24_KEY', '');
|
|
define('EXCH_BINANCE_KEY', '');
|
|
define('EXCH_BITSTAMP_ID','');
|
|
define('EXCH_BITSTAMP_KEY','');
|
|
define('EXCH_HITBTC_KEY','');
|
|
define('EXCH_KRAKEN_KEY', '');
|
|
define('EXCH_KUCOIN_KEY', '');
|
|
define('EXCH_LIVECOIN_KEY', '');
|
|
define('EXCH_NOVA_KEY', '');
|
|
define('EXCH_STOCKSEXCHANGE_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,
|
|
);
|
|
|