Blockwell

FluzFluz

ERC20

This contract is an ERC20 token.

Name FluzFluz
Symbol FLUZ
Decimals 18
Total Supply 204,780,000 FLUZ

About

Stats

Public Functions 8
Event Types 2
Code Size 5,199 bytes

Events (2) keyboard_arrow_up

Approval Event

Parameters help
_owner
address help
_spender
address help
_value
uint256 help

Transfer Event

Parameters help
_from
address help
_to
address help
_value
uint256 help

name Constant

string help
FluzFluz

symbol Constant

string help
FLUZ

decimals Constant

uint8 help
18

totalSupply Constant

uint256 help
204780000 * UNKNOWN VALUE

launched Variable

uint help

founder Variable

address help

transfersAreLocked Variable

bool help

balances Variable

mapping(address => uint256) help

allowed Variable

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

Functions Expand All Collapse All

Parameters help

Name Type
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address _to, uint256 _value)
  public
  canTransfer
  returns (bool success)
{
  if (balances[msg.sender] < _value) {
    return false;
  }
  balances[msg.sender] -= _value;
  balances[_to] += _value;
  Transfer(msg.sender, _to, _value);
  return true;
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) public canTransfer returns (bool success) {
  if (balances[_from] < _value || allowed[_from][msg.sender] < _value) {
    return false;
  }
  allowed[_from][msg.sender] -= _value;
  balances[_from] -= _value;
  balances[_to] += _value;
  Transfer(_from, _to, _value);
  return true;
}

Parameters help

Name Type
_owner
address help

Properties

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

Parameters help

Name Type
_spender
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address _spender, uint256 _value)
  public
  returns (bool success)
{
  allowed[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);
  return true;
}

Parameters help

Name Type
_owner
address help
_spender
address help

Properties

Visibility help public
Mutability help constant
Source Code
function allowance(address _owner, address _spender)
  public
  constant
  returns (uint256 remaining)
{
  return allowed[_owner][_spender];
}

launch keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function launch() public onlyFounder {
  launched = block.timestamp;
  founder = 0x0;
}

changeTransferLock keyboard_arrow_up

Parameters help

Name Type
locked
bool help

Properties

Visibility help public
Mutability help transaction
Source Code
function changeTransferLock(bool locked) public onlyFounder {
  transfersAreLocked = locked;
}

constructor keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function() public {
  // no direct purchases
  revert();
}

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.