ERC20
This contract is an ERC20 token.
Name
1World
Symbol
1WO
Decimals
8
Total Supply
37,219,453 1WO
About
link
description
1World (1WO) is a cryptocurrency token and operates on the Ethereum platform. 1World has a current supply of 37,219,452.96 with 24,656,340.86 in circulation. The last known price of 1World is $0.061092 USD and is up 2.40% over the last 24 hours. It is currently trading on 1 active market(s) with $6,872.04 traded over the last 24 hours. More information can be found at https://ico.1worldonline.com.
Stats
Public Functions
13
Event Types
4
Code Size
13,549 bytes
Events (4) keyboard_arrow_up
Functions
totalSupply keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
transferFrom keyboard_arrow_up
Source Code
function transferFrom (address _from, address _to, uint256 _value)
returns (bool success) {
if (frozen) return false;
else return AbstractToken.transferFrom (_from, _to, _value);
}
approve keyboard_arrow_up
Source Code
function approve (address _spender, uint256 _value) returns (bool success) {
allowances [msg.sender][_spender] = _value;
Approval (msg.sender, _spender, _value);
return true;
}
allowance keyboard_arrow_up
name keyboard_arrow_up
symbol keyboard_arrow_up
decimals keyboard_arrow_up
approve keyboard_arrow_up
Source Code
function approve (address _spender, uint256 _currentValue, uint256 _newValue)
returns (bool success) {
if (allowance (msg.sender, _spender) == _currentValue)
return approve (_spender, _newValue);
else return false;
}