Blockwell

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 and operates on the Ethereum platform. ATLANT has a current supply of 54,175,040.67775495 with 54,175,040.67775489 in circulation. The last known price of ATLANT is 0.01311516 USD and is up 1.20 over the last 24 hours. It is currently trading on 2 active market(s) with $0.00 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

Approval Event

Parameters help
owner
address help
spender
address help
value
uint help

Transfer Event

Parameters help
from
address help
to
address help
value
uint help

TOKEN_LIMIT Constant

uint help
150 * 1e6 * 1e18

name Variable

string help

symbol Variable

string help

decimals Variable

uint help

ico Variable

address help

tokensAreFrozen Variable

bool help

totalSupply Variable

uint help

allowed Variable

mapping(address => mapping(address => uint)) help
Internal Variable

balances Variable

mapping(address => uint) help
Internal Variable

Functions Expand All Collapse All

Parameters help

Name Type
_owner
address help

Properties

Visibility help public
Mutability help constant
Source Code
function balanceOf(address _owner) constant returns (uint256 balance) {
  return balances[_owner];
}

Parameters help

Name Type
_to
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function transfer(address _to, uint256 _value) public {
  require(!tokensAreFrozen);
  super.transfer(_to, _value);
}

Parameters help

Name Type
_owner
address help
_spender
address help

Properties

Visibility help public
Mutability help constant
Source Code
function allowance(address _owner, address _spender)
  constant
  returns (uint256 remaining)
{
  return allowed[_owner][_spender];
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) public {
  require(!tokensAreFrozen);
  super.transferFrom(_from, _to, _value);
}

Parameters help

Name Type
_spender
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function approve(address _spender, uint256 _value) public {
  require(!tokensAreFrozen);
  super.approve(_spender, _value);
}

mint keyboard_arrow_up

Parameters help

Name Type
_holder
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function mint(address _holder, uint256 _value) external {
  require(msg.sender == ico);
  require(_value != 0);
  require(totalSupply + _value <= TOKEN_LIMIT);

  balances[_holder] += _value;
  totalSupply += _value;
  Transfer(0x0, _holder, _value);
}

unfreeze keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function unfreeze() external {
  require(msg.sender == ico);
  tokensAreFrozen = false;
}

Internal Functions Expand All Collapse All

Internal functions are parts of the contract that can't be used directly, but instead are used by the public functions listed above.