Blockwell

FUTURE1COIN

ERC20

This contract is an ERC20 token.

Name FUTURE1COIN
Symbol F1C
Decimals 18
Total Supply 300,000,000 F1C

About link

Future1coin (F1C) is a cryptocurrency and operates on the Ethereum platform. Future1coin has a current supply of 300,000,000 with 0 in circulation. The last known price of Future1coin is 0.00071058 USD and is down -22.57 over the last 24 hours. It is currently trading on 2 active market(s) with $15,505.37 traded over the last 24 hours. More information can be found at https://future1coin.com/.

Stats

Public Functions 9
Event Types 2
Code Size 4,916 bytes

Library Use

Uses SafeMath for uint256.

Events (2) keyboard_arrow_up

Approval Event

Parameters help
_owner
address help
_spender
address help
_amount
uint help

Transfer Event

Parameters help
_from
address help
_to
address help
_amount
uint help

symbol Constant

string help
F1C

name Constant

string help
FUTURE1COIN

decimals Constant

uint help
18

owner Variable

address help

_totalSupply Variable

uint256 help
Internal Variable

balances Variable

mapping(address => uint256) help
Internal Variable

allowed Variable

mapping(address => mapping(address => uint256)) help
Internal Variable

Functions Expand All Collapse All

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help view
Source Code
function totalSupply() public view returns (uint256 total_Supply) {
  total_Supply = _totalSupply;
}

Parameters help

Name Type
_owner
address help

Properties

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

Parameters help

Name Type
_owner
address help
_spender
address help

Properties

Visibility help public
Mutability help view

Requirements help

Source Code
function allowance(address _owner, address _spender)
  public
  view
  returns (uint256 remaining)
{
  require(_owner != 0x0 && _spender != 0x0);
  return allowed[_owner][_spender];
}

Parameters help

Name Type
_from
address help
_to
address help
_amount
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _amount
) public returns (bool ok);

Parameters help

Name Type
_spender
address help
_amount
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address _spender, uint256 _amount) public returns (bool ok);

Parameters help

Name Type
_to
address help
_amount
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address _to, uint256 _amount) public returns (bool ok);

Parameters help

Name Type
_to
address help
_amount
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address _to, uint256 _amount) public returns (bool ok) {
  require(_to != 0x0);
  require(balances[msg.sender] >= _amount && _amount >= 0);
  balances[msg.sender] = (balances[msg.sender]).sub(_amount);
  balances[_to] = (balances[_to]).add(_amount);
  Transfer(msg.sender, _to, _amount);
  return true;
}

Parameters help

Name Type
_from
address help
_to
address help
_amount
uint256 help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _amount
) public returns (bool ok) {
  require(_to != 0x0);
  require(
    balances[_from] >= _amount &&
      allowed[_from][msg.sender] >= _amount &&
      _amount >= 0
  );
  balances[_from] = (balances[_from]).sub(_amount);
  allowed[_from][msg.sender] = (allowed[_from][msg.sender]).sub(_amount);
  balances[_to] = (balances[_to]).add(_amount);
  Transfer(_from, _to, _amount);
  return true;
}

Parameters help

Name Type
_spender
address help
_amount
uint256 help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function approve(address _spender, uint256 _amount) public returns (bool ok) {
  require(_spender != 0x0);
  allowed[msg.sender][_spender] = _amount;
  Approval(msg.sender, _spender, _amount);
  return true;
}

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.