Kindly,
MZ
Yes, you can have payments sent to any address you like
Edit: But not an exchange address as mdude rightly points out below - thanks mdude
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
function getThirtyDayLuck($crud, $diff) {
// get 30 day average time between blocks
$blocks_query = $crud->rawSelect("SELECT COUNT(*) FROM found_blocks WHERE time > DATE_SUB(NOW(), INTERVAL 30 DAY) ORDER BY time DESC");
$blocks = $blocks_query->fetch(PDO::FETCH_ASSOC);
$block_count = $blocks['COUNT(*)'];
$avg_elapsed_seconds = 2592000 / $block_count; // 2592000 seconds = 30 days
// get 30 day hashrate average
$hash_query = $crud->rawSelect("SELECT AVG(global_rate) FROM pool_stats WHERE id > DATE_SUB(NOW(), INTERVAL 30 DAY)");
$hash_avg = $hash_query->fetch(PDO::FETCH_ASSOC);
$hashrate = $hash_avg['AVG(global_rate)'];
// 30 day expected time to block
// Difficulty * 2**32 / hashrate = expected number of seconds to find a block
$thirty_day_expected = round($diff * pow(2, 32) / $hashrate);
// Get luck as %
return percentage($thirty_day_expected, $avg_elapsed_seconds, '2')."%";
}
function getThirtyDayLuck($crud, $diff) {
// get 30 day average time between blocks
$blocks_query = $crud->rawSelect("SELECT COUNT(*) FROM found_blocks WHERE time > DATE_SUB(NOW(), INTERVAL 30 DAY) ORDER BY time DESC");
$blocks = $blocks_query->fetch(PDO::FETCH_ASSOC);
$block_count = $blocks['COUNT(*)'];
$avg_elapsed_seconds = 2592000 / $block_count; // 2592000 seconds = 30 days
// get 30 day hashrate average
$hash_query = $crud->rawSelect("SELECT AVG(global_rate) FROM pool_stats WHERE id > DATE_SUB(NOW(), INTERVAL 30 DAY)");
$hash_avg = $hash_query->fetch(PDO::FETCH_ASSOC);
$hashrate = $hash_avg['AVG(global_rate)'];
// 30 day expected time to block
// Difficulty * 2**32 / hashrate = expected number of seconds to find a block
$thirty_day_expected = round($diff * pow(2, 32) / $hashrate);
// Get luck as %
return percentage($thirty_day_expected, $avg_elapsed_seconds, '2')."%";
}