Blockwell

Storm Token

ERC20

This contract is an ERC20 token.

Name Storm Token
Symbol STORM
Decimals 18
Total Supply 632,947,280 STORM

About

Stats

Public Functions 15
Event Types 6
Code Size 9,959 bytes

Events (6) keyboard_arrow_up

Approval Event

Parameters help
_owner
address help
_spender
address help
_value
uint256 help

Destruction Event

Parameters help
_amount
uint256 help

Issuance Event

Parameters help
_amount
uint256 help

Mint Event

Parameters help
_to
address help
_value
uint256 help

OwnerUpdate Event

Parameters help
_prevOwner
address help
_newOwner
address help

Transfer Event

Parameters help
_from
address help
_to
address help
_value
uint256 help

transfersEnabled Variable

bool help

standard Variable

string help

name Variable

string help

symbol Variable

string help

decimals Variable

uint8 help

crowdsaleContractAddress Variable

address help

owner Variable

address help

newOwner Variable

address help

supply Variable

uint256 help
Internal Variable

balances Variable

mapping(address => uint256) help
Internal Variable

allowances Variable

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

Functions Expand All Collapse All

transferOwnership keyboard_arrow_up

Parameters help

Name Type
_newOwner
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferOwnership(address _newOwner) public onlyOwner {
  require(_newOwner != owner);
  newOwner = _newOwner;
}

acceptOwnership keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function acceptOwnership() public {
  require(msg.sender == newOwner);
  OwnerUpdate(owner, newOwner);
  owner = newOwner;
  newOwner = 0x0;
}

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help constant
Source Code
function totalSupply() constant returns (uint256) {
  return supply;
}

Parameters help

Name Type
_owner
address help

Properties

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

Parameters help

Name Type
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction

Modifiers help

Source Code
function transfer(address _to, uint256 _value)
  public
  transfersAllowed
  returns (bool success)
{
  assert(super.transfer(_to, _value));
  return true;
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction

Modifiers help

Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) public transfersAllowed returns (bool success) {
  assert(super.transferFrom(_from, _to, _value));
  return true;
}

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) returns (bool success) {
  allowances[msg.sender][_spender] = _value; // Set allowance
  Approval(msg.sender, _spender, _value); // Raise Approval event
  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)
  constant
  returns (uint256 remaining)
{
  return allowances[_owner][_spender];
}

approveAndCall keyboard_arrow_up

Parameters help

Name Type
_spender
address help
_value
uint256 help
_extraData
bytes help

Properties

Visibility help public
Mutability help transaction
Source Code
function approveAndCall(
  address _spender,
  uint256 _value,
  bytes _extraData
) returns (bool success) {
  ItokenRecipient spender = ItokenRecipient(_spender); // Cast spender to tokenRecipient contract
  approve(_spender, _value); // Set approval to contract for _value
  spender.receiveApproval(msg.sender, _value, this, _extraData); // Raise method on _spender contract
  return true;
}

mintTokens keyboard_arrow_up

Parameters help

Name Type
_to
address help
_amount
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function mintTokens(address _to, uint256 _amount) onlyCrowdsaleOwner {
  supply = supply.add(_amount);
  balances[_to] = balances[_to].add(_amount);
  Mint(_to, _amount);
  Transfer(msg.sender, _to, _amount);
}

salvageTokensFromContract keyboard_arrow_up

Parameters help

Name Type
_tokenAddress
address help
_to
address help
_amount
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function salvageTokensFromContract(
  address _tokenAddress,
  address _to,
  uint256 _amount
) onlyOwner {
  IERC20Token(_tokenAddress).transfer(_to, _amount);
}

disableTransfers keyboard_arrow_up

Parameters help

Name Type
_disable
bool help

Properties

Visibility help public
Mutability help transaction
Source Code
function disableTransfers(bool _disable) public onlyOwner {
  transfersEnabled = !_disable;
}

issue keyboard_arrow_up

Parameters help

Name Type
_to
address help
_amount
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function issue(address _to, uint256 _amount)
  public
  onlyOwner
  validAddress(_to)
  notThis(_to)
{
  supply = supply.add(_amount);
  balances[_to] = balances[_to].add(_amount);

  Issuance(_amount);
  Transfer(this, _to, _amount);
}

destroy keyboard_arrow_up

Parameters help

Name Type
_from
address help
_amount
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function destroy(address _from, uint256 _amount) public {
  require(msg.sender == _from || msg.sender == owner); // validate input

  balances[_from] = balances[_from].sub(_amount);
  supply = supply.sub(_amount);

  Transfer(_from, this, _amount);
  Destruction(_amount);
}

transfers keyboard_arrow_up

Parameters help

Name Type
_recipients
address[] help
_values
uint256[] help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfers(address[] _recipients, uint256[] _values)
  public
  transfersAllowed
  onlyOwner
  returns (bool success)
{
  require(_recipients.length == _values.length); // Check if input data is correct

  for (uint256 cnt = 0; cnt < _recipients.length; cnt++) {
    assert(super.transfer(_recipients[cnt], _values[cnt]));
  }
  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.