HuobiPoolToken
ERC20
This contract is an ERC20 token.
Name
HuobiPoolToken
Symbol
HPT
Decimals
18
Total Supply
10,000,000,000 HPT
About
link
description
Huobi Pool Token (HPT) is a cryptocurrency token and operates on the Ethereum platform. Huobi Pool Token has a current supply of 9,823,855,317.606 with 5,220,259,007.362 in circulation. The last known price of Huobi Pool Token is $0.007202 USD and is down -0.82% over the last 24 hours. It is currently trading on 11 active market(s) with $1,792,172.128 traded over the last 24 hours. More information can be found at https://www.huobipool.com/.
Stats
Public Functions
7
Event Types
2
Code Size
3,727 bytes
Events (2) keyboard_arrow_up
Functions
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Source Code
function transfer(address _to, uint256 _value) on returns (bool success) {
if (balances[msg.sender] >= _value && _value > 0 && _to != 0X0) {
balances[msg.sender] -= _value;
balances[_to] = safeAdd(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) on returns (bool success) {
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] = safeAdd(balances[_to],_value);
balances[_from] = safeSubtract(balances[_from],_value);
allowed[_from][msg.sender] = safeSubtract(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) on returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}
allowance keyboard_arrow_up
Source Code
function allowance(address _owner, address _spender) on constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}
turnon keyboard_arrow_up
Parameters help
This function has no parameters.
Modifiers help
controller checks for the following:
One or more of the following:
-
controller2
must be equal to
the sender's address
- OR
controller1
must be equal to
the sender's address
Source Code
function turnon() controller {
status = true;
}
turnoff keyboard_arrow_up
Parameters help
This function has no parameters.
Modifiers help
controller checks for the following:
One or more of the following:
-
controller2
must be equal to
the sender's address
- OR
controller1
must be equal to
the sender's address
Source Code
function turnoff() controller {
status = false;
}