NeuroToken
ERC20
This contract is an ERC20 token.
Name
NeuroToken
Symbol
NTK
Decimals
18
Total Supply
99,987,500 NTK
About
link
description
Neurotoken (NTK) is a cryptocurrency token and operates on the Ethereum platform. Neurotoken has a current supply of 99,987,499.9 with 78,906,617.721 in circulation. The last known price of Neurotoken is $0.009602 USD and is down -8.97% over the last 24 hours. It is currently trading on 7 active market(s) with $111.36 traded over the last 24 hours. More information can be found at https://neuromation.io/.
Stats
Public Functions
12
Event Types
4
Code Size
9,588 bytes
Events (4) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
constructor keyboard_arrow_up
reclaimEther keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
One or more of the following:
-
now
must be greater than or equal to
FREEZE_END
- OR
owner
must be equal to
the sender's address
Source Code
function transfer(address _to, uint256 _value) public returns (bool) {
require(msg.sender == owner || now >= FREEZE_END);
return super.transfer(_to, _value);
}
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
Requirements help
One or more of the following:
-
now
must be greater than or equal to
FREEZE_END
- OR
owner
must be equal to
the sender's address
Source Code
function transferFrom(address _from, address _to, uint256 _value) public returns (bool) {
require(msg.sender == owner || now >= FREEZE_END);
return super.transferFrom(_from, _to, _value);
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
increaseApproval keyboard_arrow_up
Source Code
function increaseApproval(address _spender, uint _addedValue) public returns (bool) {
allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
decreaseApproval keyboard_arrow_up
Source Code
function decreaseApproval(address _spender, uint _subtractedValue) public returns (bool) {
uint oldValue = allowed[msg.sender][_spender];
if (_subtractedValue > oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
burn keyboard_arrow_up
Requirements help
Source Code
function burn(uint256 _value) public {
require(_value > 0);
require(_value <= balances[msg.sender]);
// no need to require value <= totalSupply, since that would imply the
// sender's balance is greater than the totalSupply, which *should* be an assertion failure
address burner = msg.sender;
balances[burner] = balances[burner].sub(_value);
totalSupply = totalSupply.sub(_value);
Burn(burner, _value);
}
multiTransfer keyboard_arrow_up
Requirements help
Source Code
function multiTransfer(address[] recipients, uint256[] amounts) public {
require(recipients.length == amounts.length);
for (uint i = 0; i < recipients.length; i++) {
transfer(recipients[i], amounts[i]);
}
}