mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-09-20 18:09:54 +00:00
15 lines
583 B
PHP
15 lines
583 B
PHP
<?php
|
|
/* Sample config file to put in /etc/yiimp/keys.php */
|
|
|
|
define('YIIMP_MYSQLDUMP_USER', 'root');
|
|
define('YIIMP_MYSQLDUMP_PASS', '<my_mysql_password>');
|
|
|
|
/* Keys required to create/cancel orders and access your balances/deposit addresses */
|
|
define('EXCH_CRYPTSY_SECRET', '<my_cryptsy_api_private_key>');
|
|
define('EXCH_POLONIEX_SECRET', '<my_poloniex_api_secret_key>');
|
|
define('EXCH_BITTREX_SECRET', '<my_bittrex_api_secret_key>');
|
|
define('EXCH_BLEUTRADE_SECRET', '...');
|
|
define('EXCH_CCEX_SECRET', '...');
|
|
define('EXCH_YOBIT_SECRET', '...');
|
|
define('EXCH_EMPOEX_SECKEY', '...');
|
|
|