About
link
TOP (TOP) is a cryptocurrency and operates on the Ethereum platform. TOP has a current supply of 20,000,000,000 with 5,512,414,942.82 in circulation. The last known price of TOP is 0.00151343 USD and is down -6.86 over the last 24 hours. It is currently trading on 9 active market(s) with $258,270.35 traded over the last 24 hours. More information can be found at https://www.topnetwork.org/.
Stats
Public Functions
6
Event Types
2
Code Size
2,430 bytes
State Variables (7) keyboard_arrow_up
Functions
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Source Code
function transfer(address _to, uint256 _value) public returns (bool) {
require(active);
require(_to != address(0));
require(_to != msg.sender);
require(_value <= balances[msg.sender]);
uint256 bal = balances[_to] + _value;
require(bal >= balances[_to]);
balances[msg.sender] = balances[msg.sender] - _value;
balances[_to] = bal;
emit Transfer(msg.sender, _to, _value);
return true;
}
deactivate keyboard_arrow_up
activate keyboard_arrow_up
transferOwnership keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
Source Code
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0));
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
Internal Functions
Internal functions are parts of the contract that can't be used directly, but instead are used by the public functions listed above.