mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
To prevent the hack by 37.17.23.254 (.by) who stole funds from several pools (not mine) total of 994 DNR stolen and transferred to these addresses DP38wNb2SbYDeYqkQtE5WjCowKhMb1GR4q DKDY5XWxzoPfLoJ1XXT7YWSneJ9sMw3FxG DF9ZD91iQDMAegSCzbVrvPRaZrDXCgkurH DCeeCazTExun2AkaM1Q2BuzNe8AwW2KZHX total of 74209 SIGT stolen and transferred to these addreses B557LL3vQhmxgRsCeRqAHpPBB7WRrMgfFA BPDfVHVfKawJsVyK9gjkZ8DNsYgMjZyEAh BTAGK33fvjhmfUzpEZu6GZssGqWXxrhU9o user was mining to DMKRadxGRxRN9Hr8J9Wo3De2REH9mHu3Ew The stealer had the same IP on the 3 pools who reported me infos with activity from the 27th july 2017 until today
91 lines
2.6 KiB
PHP
91 lines
2.6 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_NOTIFY_NEW_COINS', true);
|
|
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_BTER_KEY', '');
|
|
define('EXCH_YOBIT_KEY', '');
|
|
define('EXCH_CCEX_KEY', '');
|
|
define('EXCH_COINMARKETS_USER', '');
|
|
define('EXCH_COINMARKETS_PIN', '');
|
|
define('EXCH_BITSTAMP_ID','');
|
|
define('EXCH_BITSTAMP_KEY','');
|
|
define('EXCH_HITBTC_KEY','');
|
|
define('EXCH_KRAKEN_KEY', '');
|
|
define('EXCH_LIVECOIN_KEY', '');
|
|
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,
|
|
);
|
|
|