Function X
ERC20
This contract is an ERC20 token.
Name
Function X
Symbol
FX
Decimals
18
Total Supply
378,604,525 FX
About
link
Function X (FX) is a cryptocurrency token and operates on the Ethereum platform. Function X has a current supply of 378,604,525.463 with 229,613,738.606 in circulation. The last known price of Function X is $0.094984 USD and is up 2.43% over the last 24 hours. It is currently trading on 11 active market(s) with $278,726.717 traded over the last 24 hours. More information can be found at https://functionx.io/.
Stats
Public Functions
17
Event Types
8
Code Size
11,877 bytes
Events (8) keyboard_arrow_up
Functions
transferOwnership keyboard_arrow_up
pause keyboard_arrow_up
unpause keyboard_arrow_up
balanceOf keyboard_arrow_up
transfer keyboard_arrow_up
Requirements help
Source Code
function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
require(!stopReceive[_to]);
bool result = super.transfer(_to, _value);
return result;
}
allowance keyboard_arrow_up
transferFrom keyboard_arrow_up
Source Code
function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
bool result = super.transferFrom(_from, _to, _value);
return result;
}
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);
}
burn keyboard_arrow_up
mint keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
canMint checks for the following:
Source Code
function mint(address _to, uint256 _amount) onlyOwner canMint public returns (bool) {
bool result = super.mint(_to, _amount);
return result;
}
finishMinting keyboard_arrow_up
setStopReceive keyboard_arrow_up
getStopReceive keyboard_arrow_up
transferAndCall keyboard_arrow_up
Requirements help
Source Code
function transferAndCall(address _recipient, uint256 _amount, bytes _data) {
require(_recipient != address(0));
require(_amount <= balances[msg.sender]);
balances[msg.sender] = balances[msg.sender].sub(_amount);
balances[_recipient] = balances[_recipient].add(_amount);
require(TokenRecipient(_recipient).tokenFallback(msg.sender, _amount, _data));
Transfer(msg.sender, _recipient, _amount);
}
transferERCToken keyboard_arrow_up
Modifiers help
onlyOwner checks for the following:
Source Code
function transferERCToken(address _tokenContractAddress, address _to, uint256 _amount) onlyOwner {
require(ERC20(_tokenContractAddress).transfer(_to, _amount));
}