Kvazar Crawler Engine that works with Kevacoin node
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<?php
|
|
|
|
|
|
|
|
// Debug
|
|
|
|
ini_set('display_errors', '1');
|
|
|
|
ini_set('display_startup_errors', '1');
|
|
|
|
error_reporting(E_ALL);
|
|
|
|
|
|
|
|
// Application
|
|
|
|
define('STEP_BLOCK_LIMIT', 50); // Blocks per query
|
|
|
|
define('CRAWLER_DEBUG', true); // Debug output
|
|
|
|
|
|
|
|
// Database
|
|
|
|
define('DB_NAME', 'kvazar.sqlite');
|
|
|
|
define('DB_USERNAME', '');
|
|
|
|
define('DB_PASSWORD', '');
|
|
|
|
|
|
|
|
// Kevacoin wallet
|
|
|
|
define('KEVA_PROTOCOL', 'http');
|
|
|
|
define('KEVA_HOST', '127.0.0.1');
|
|
|
|
define('KEVA_PORT', '9992');
|
|
|
|
define('KEVA_USERNAME', '');
|
|
|
|
define('KEVA_PASSWORD', '');
|