MinereumChain / MinereumChain-

MinereumChain
MIT License
1 stars 0 forks source link

MinereumChain #2

Closed MinereumChain closed 8 months ago

MinereumChain commented 8 months ago

MINING PROCESS Mining in minereum is performed on the fly with a mathematical formula, no mining equipment is required. Here the major points about Minereum self-mining: 0x0B91B07bEb67333225A5bA0259D55AeE10E3A578

GENESIS ADDRESSES The Genesis Addresses are the addresses that perform the self-mining process. In the Minereum POLYGON version all addresses are Genesis Addresses Level 1 by default, however only the airdrop participants received the Transfer of the 300,000 MNEP, other POLYGON addresses will receive the Transfer at some point in the future. To guarantee the whole function of minereum these limitations apply for Genesis Addresses: 0x0B91B07bEb67333225A5bA0259D55AeE10E3A578

  1. Genesis Addresses cannot receive coins. If MNEP are transferred to a Genesis Addresses Level 2 or 3, the transaction will be rejected and there will be an error in the transaction. If MNEP coins are sent to a Genesis Address Level 1, the Genesis Address Level 1 will be destroyed and becomes a Normal Address with the amount of coins sent to it, however you can generate new Genesis Addresses Level 1 by creating new addresses, for this we recommend Metamask that allows you to create multiple addresses easily.
  2. The available coins for transfer for the Genesis Addresses is limited to what is explain in the "Mining" point. If a Genesis Address attempts to transfer more funds than what is available as per the availableBalanceOf function, an error will be returned in the transaction.

TOTAL SUPPLIES AND BALANCES Total Supply The available supply can be calculated using this formula:Currencies Code:MNEP function totalSupply(300,000) public view returns (uint256 TotalSupply) {
return ((pc.genesisAddressCount(300,000) * pc.genesisSupplyPerAddress(300,000)) + pc.NormalImportedAmountCount(300,000)

Checking balances There are 2 balances in minereum: 0x0B91B07bEb67333225A5bA0259D55AeE10E3A578

  1. The overall balance - Function balanceOf(300,000)
  2. The available balance (aka mined coins) - Function availableBalanceOf(300,000)