Blockwell

0x Protocol Token

ERC20

This contract is an ERC20 token.

Name 0x Protocol Token
Symbol ZRX
Decimals 18
Total Supply 1,000,000,000 ZRX

About link description

0x (ZRX) is a cryptocurrency and operates on the Ethereum platform. 0x has a current supply of 1,000,000,000 with 845,323,730.6340175 in circulation. The last known price of 0x is 0.64100233 USD and is down -3.33 over the last 24 hours. It is currently trading on 213 active market(s) with $46,767,488.71 traded over the last 24 hours. More information can be found at https://0x.org/.

Stats

Public Functions 6
Event Types 2
Code Size 5,364 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

decimals Constant

uint8 help
18

name Constant

string help
0x Protocol Token

symbol Constant

string help
ZRX

MAX_UINT Constant

uint help
UNKNOWN VALUE - 1

totalSupply Variable

uint help

totalSupply Variable

uint help

balances Variable

mapping(address => uint) help
Internal Variable

allowed Variable

mapping(address => mapping(address => uint)) 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) {}

Parameters help

Name Type
_owner
address help

Properties

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

Parameters help

Name Type
_to
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address _to, uint256 _value) returns (bool) {
  //Default assumes totalSupply can't be over max (2^256 - 1).
  if (
    balances[msg.sender] >= _value && balances[_to] + _value >= balances[_to]
  ) {
    balances[msg.sender] -= _value;
    balances[_to] += _value;
    Transfer(msg.sender, _to, _value);
    return true;
  } else {
    return false;
  }
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) public returns (bool) {
  uint256 allowance = allowed[_from][msg.sender];
  if (
    balances[_from] >= _value &&
    allowance >= _value &&
    balances[_to] + _value >= balances[_to]
  ) {
    balances[_to] += _value;
    balances[_from] -= _value;
    if (allowance < MAX_UINT) {
      allowed[_from][msg.sender] -= _value;
    }
    Transfer(_from, _to, _value);
    return true;
  } else {
    return false;
  }
}

Parameters help

Name Type
_spender
address help
_value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address _spender, uint256 _value) returns (bool) {
  allowed[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)
{
  return allowed[_owner][_spender];
}

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.