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
Functions
totalSupply keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
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;
}
}
transferFrom keyboard_arrow_up
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;
}
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) returns (bool) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
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.