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.
contract minereum {
string public name;
string public symbol;
uint8 public decimals;
uint256 public initialSupplyPerAddress;
uint256 public initialBlockCount;
uint256 public rewardPerBlockPerAddress;
uint256 public totalGenesisAddresses;
uint256 private availableAmount;
uint256 private availableBalance;
uint256 private minedBlocks;
uint256 private totalMaxAvailableAmount;
uint256 private balanceOfAddress;
mapping (address => uint256) public balanceOf;
mapping (address => bool) public genesisAddress;
event Transfer(address indexed from, address indexed to, uint256 value);
function minereum() {
name = "minereum";
symbol = "MNE";
decimals = 8;
initialSupplyPerAddress = 3200000000000;
initialBlockCount = 3516521;
rewardPerBlockPerAddress = 32000;
totalGenesisAddresses = 4269;
balanceOf[0x000018e8a5f1e402763f4d3c2a02288f7f7a7256] = initialSupplyPerAddress;
genesisAddress[0x000018e8a5f1e402763f4d3c2a02288f7f7a7256] = true;
balanceOf[0x00076f0Cdf32c586a064f4e08c7613521d922e5f] = initialSupplyPerAddress;
genesisAddress[0x00076f0Cdf32c586a064f4e08c7613521d922e5f] = true;
[...]
function currentEthBlock() constant returns (uint256 blockNumber)
{
return block.number;
}
function currentBlock() constant returns (uint256 blockNumber)
{
return block.number - initialBlockCount;
}
function availableBalanceOf(address _address) constant returns (uint256 Balance)
{
if (genesisAddress[_address])
{
minedBlocks = block.number - initialBlockCount;
if (minedBlocks >= 100000000) return balanceOf[_address];
availableAmount = rewardPerBlockPerAddress*minedBlocks;
totalMaxAvailableAmount = initialSupplyPerAddress - availableAmount;
availableBalance = balanceOf[_address] - totalMaxAvailableAmount;
return availableBalance;
}
else
return balanceOf[_address];
}
function totalSupply() constant returns (uint256 totalSupply)
{
minedBlocks = block.number - initialBlockCount;
availableAmount = rewardPerBlockPerAddress*minedBlocks;
return availableAmount*totalGenesisAddresses;
}
function maxTotalSupply() constant returns (uint256 maxSupply)
{
return initialSupplyPerAddress*totalGenesisAddresses;
}
function transfer(address _to, uint256 _value) {
if (genesisAddress[_to]) throw;
if (balanceOf[msg.sender] < _value) throw;
if (balanceOf[_to] + _value < balanceOf[_to]) throw;
if (genesisAddress[msg.sender])
{
minedBlocks = block.number - initialBlockCount;
if (minedBlocks < 100000000)
{
availableAmount = rewardPerBlockPerAddress*minedBlocks;
totalMaxAvailableAmount = initialSupplyPerAddress - availableAmount;
availableBalance = balanceOf[msg.sender] - totalMaxAvailableAmount;
if (_value > availableBalance) throw;
}
}
balanceOf[msg.sender] -= _value;
balanceOf[_to] += _value;
Transfer(msg.sender, _to, _value);
}
}
Echanges ◆ Livecoin ◆ Crypto Dao | ◆ Block explorer ◆ Coinmarketcap ◆ Code source ◆ Compte twitter ◆ Compte Telegram ◆ White paper ◆ Feuille de route |