OPEN Chain
ERC20
This contract is an ERC20 token.
Name
OPEN Chain
Symbol
OPENC
Decimals
8
Total Supply
1,745,447,045 OPENC
About
link
description
Open Platform (OPEN) is a cryptocurrency token and operates on the Ethereum platform. Open Platform has a current supply of 1,745,447,045 with 1,057,741,421.559 in circulation. The last known price of Open Platform is $0.001344 USD and is up 4.92% over the last 24 hours. It is currently trading on 4 active market(s) with $147,077.93 traded over the last 24 hours. More information can be found at https://www.openfuture.io/.
Stats
Public Functions
10
Event Types
5
Code Size
11,011 bytes
Events (5) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
pause keyboard_arrow_up
unpause keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
Modifiers help
rejectTokensToContract checks for the following:
whenNotPaused checks for the following:
Requirements help
Source Code
function transferFrom(address _from, address _to, uint256 _value) rejectTokensToContract(_to) public whenNotPaused returns (bool) {
return super.transferFrom(_from, _to, _value);
}
approve keyboard_arrow_up
Source Code
function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
return super.approve(_spender, _value);
}
increaseApproval keyboard_arrow_up
Source Code
function increaseApproval (address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
return super.increaseApproval(_spender, _addedValue);
}
decreaseApproval keyboard_arrow_up
Source Code
function decreaseApproval (address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseApproval(_spender, _subtractedValue);
}