Blockwell

1World

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 and operates on the Ethereum platform. 1World has a current supply of 37,219,452.96. The last known price of 1World is 0.07737401 USD and is up 8.52 over the last 24 hours. It is currently trading on 1 active market(s) with $7,340.19 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

Approval Event

Parameters help
_owner
address help
_spender
address help
_value
uint256 help

Freeze Event

Parameters help

Transfer Event

Parameters help
_from
address help
_to
address help
_value
uint256 help

Unfreeze Event

Parameters help

MAX_UINT256 Constant

uint256 help
0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF

owner Variable

address help
Internal Variable

tokenCount Variable

uint256 help
Internal Variable

frozen Variable

bool help
Internal Variable

accounts Variable

mapping(address => uint256) help
Internal Variable

allowances Variable

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

Functions Expand All Collapse All

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help constant
Source Code
function totalSupply() constant returns (uint256 supply) {
  return tokenCount;
}

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 accounts[_owner];
}

Parameters help

Name Type
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address _to, uint256 _value) returns (bool success) {
  if (frozen) return false;
  else return AbstractToken.transfer(_to, _value);
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) returns (bool success) {
  if (frozen) return false;
  else return AbstractToken.transferFrom(_from, _to, _value);
}

Parameters help

Name Type
_spender
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address _spender, uint256 _value) returns (bool success) {
  allowances[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);

  return true;
}

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 allowances[_owner][_spender];
}

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help constant
Source Code
function name() constant returns (string result) {
  return "1World";
}

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help constant
Source Code
function symbol() constant returns (string result) {
  return "1WO";
}

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help constant
Source Code
function decimals() constant returns (uint8 result) {
  return 8;
}

Parameters help

Name Type
_spender
address help
_currentValue
uint256 help
_newValue
uint256 help

Properties

Visibility help public
Mutability help transaction
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;
}

setOwner keyboard_arrow_up

Parameters help

Name Type
_newOwner
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function setOwner(address _newOwner) {
  require(msg.sender == owner);

  owner = _newOwner;
}

freezeTransfers keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function freezeTransfers() {
  require(msg.sender == owner);

  if (!frozen) {
    frozen = true;
    Freeze();
  }
}

unfreezeTransfers keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function unfreezeTransfers() {
  require(msg.sender == owner);

  if (frozen) {
    frozen = false;
    Unfreeze();
  }
}

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.

internal SafeMath.safeAdd keyboard_arrow_up

Parameters help

Name Type
x
uint256 help
y
uint256 help

Properties

Visibility help internal
Mutability help constant
Source Code
function safeAdd(uint256 x, uint256 y) internal constant returns (uint256 z) {
  assert(x <= MAX_UINT256 - y);
  return x + y;
}

internal SafeMath.safeSub keyboard_arrow_up

Parameters help

Name Type
x
uint256 help
y
uint256 help

Properties

Visibility help internal
Mutability help constant

Requirements help

Source Code
function safeSub(uint256 x, uint256 y) internal constant returns (uint256 z) {
  assert(x >= y);
  return x - y;
}

internal SafeMath.safeMul keyboard_arrow_up

Parameters help

Name Type
x
uint256 help
y
uint256 help

Properties

Visibility help internal
Mutability help constant
Source Code
function safeMul(uint256 x, uint256 y) internal constant returns (uint256 z) {
  if (y == 0) return 0; // Prevent division by zero at the next line
  assert(x <= MAX_UINT256 / y);
  return x * y;
}