Minted: 0%
Max Supply: 10,000,000,000 Fix
All tokens are distributed fairly. (100% Fair Launch)
There is no special allocation.
(name = "Doger")
(symbol = "DOGER")
(decimals = 18)
Maximum Supply: 10 billion (MAX_SUPPLY = 10_000_000_000 * 10^18)
Initial Supply Starts from Zero: Token supply must be minted first by public, limited 10,000,000,000. token from max supply
Transfer and Burn
ERC20 Standard Transfer: Can transfer tokens from one address to another.
Burn (1% Burn per Transfer):
Each transfer, 1% of the transaction amount will be burned (BURN_PERCENTAGE = 1).
For example, if you send 100 DOGER, then 1 DOGER will be burned, and the recipient will only get 99 DOGER.
Each token printed by the minter is entitled to receive NET_TAX_PER_100000 DOGER every time minting takes place (TOKENS_PER_MINT = 100000 * 10^18).
There is a maximum supply limit (MAX_SUPPLY) of 10,000,000,000 tokens. If the total supply reaches this limit, the minting process will end.
The allowance & approve function allows users to give permission to other parties to use their tokens.
transferFrom can be used by parties who have been given permission.
Users can burn tokens manually using the burn(amount) function, which will reduce the total supply.
Functions to return eher that was sent incorrectly to the contract and returned to ownership rights. Owners can withdraw the Ether balance in the contract by using the withdrawEther function, to send it back to addresses that mistakenly sent Ether to the contract.
This contract has key features such as:
+ ERC20 standard (transfer, approve, allowance).
+ Burning 1% every transfer to reduce supply.
+ The public can mint tokens freely.
+ Maximum supply limit (10 billion DOGER).
+ Transfer and Burn. (1% Burn per Transfer):
+ Each transfer, 1% of the transaction amount will be burned (BURN_PERCENTAGE = 1).
+ Users can burn tokens manually.
This is especially suitable for token systems that maintain a deflation mechanism (by burning).