mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 17:37:25 +00:00
13 lines
495 B
PHP
13 lines
495 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('YIIMP_CRYPT_PVK', '<my_cryptsy_api_private_key>');
|
|
define('YIIMP_POLO_SEC', '<my_poloniex_api_secret_key>');
|
|
define('YIIMP_BITTREX_SEC', '<my_bittrex_api_secret_key>');
|
|
define('YIIMP_YOBIT_SEC', '...');
|
|
define('YIIMP_BLEUTRADE_SEC', '...');
|
|
|