ATLANT Token
ERC20
This contract is an ERC20 token.
Name
ATLANT Token
Symbol
ATL
Decimals
18
Total Supply
54,175,041 ATL
About
link
description
ATLANT (ATL) is a cryptocurrency token and operates on the Ethereum platform. ATLANT has a current supply of 54,175,040.678 with 54,175,040.678 in circulation. The last known price of ATLANT is $0.020121 USD and is up 17.75% over the last 24 hours. It is currently trading on 2 active market(s) with $330.13 traded over the last 24 hours. More information can be found at https://atlant.io/.
Stats
Public Functions
7
Event Types
2
Code Size
4,280 bytes
Events (2) keyboard_arrow_up
Functions
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
Requirements help
Source Code
function transferFrom(address _from, address _to, uint _value) public {
require(!tokensAreFrozen);
super.transferFrom(_from, _to, _value);
}
approve keyboard_arrow_up
Requirements help
Source Code
function approve(address _spender, uint _value) public {
require(!tokensAreFrozen);
super.approve(_spender, _value);
}
mint keyboard_arrow_up
Requirements help
Source Code
function mint(address _holder, uint _value) external {
require(msg.sender == ico);
require(_value != 0);
require(totalSupply + _value <= TOKEN_LIMIT);
balances[_holder] += _value;
totalSupply += _value;
Transfer(0x0, _holder, _value);
}