Blockwell

BLOCKv Token

ERC20

This contract is an ERC20 token.

Name BLOCKv Token
Symbol VEE
Decimals 18
Total Supply 3,646,271,241 VEE

About link description

BLOCKv (VEE) is a cryptocurrency and operates on the Ethereum platform. BLOCKv has a current supply of 3,646,271,241.2002554 with 3,301,394,752.970064 in circulation. The last known price of BLOCKv is 0.01013816 USD and is down -5.44 over the last 24 hours. It is currently trading on 6 active market(s) with $27,817.90 traded over the last 24 hours. More information can be found at https://blockv.io/.

Stats

Public Functions 10
Event Types 5
Code Size 16,153 bytes

Events (5) keyboard_arrow_up

Approval Event

Parameters help
owner
address help
spender
address help
value
uint256 help

Migrate Event

Parameters help
_from
address help
_to
address help
_value
uint256 help

Pause Event

Parameters help

Transfer Event

Parameters help
from
address help
to
address help
value
uint256 help

Unpause Event

Parameters help

name Constant

string help
BLOCKv Token

symbol Constant

string help
VEE

decimals Constant

uint8 help
18

totalAmountOfTokens Constant

uint256 help
3646271241200255205023407108

amountOfTokensPoolA Constant

uint256 help
1276194934420089321758192488

amountOfTokensPoolB Constant

uint256 help
911567810300063801255851777

amountOfTokensPoolC Constant

uint256 help
911567810300063801255851777

amountOfTokensPoolD Constant

uint256 help
546940686180038280753511066

poolBLock Variable

address help

poolCLock Variable

address help

poolDLock Variable

address help

migrationMaster Variable

address help

migrationAgent Variable

address help

totalMigrated Variable

uint256 help

totalSupply Variable

uint256 help

paused Variable

bool help

owner Variable

address help

allowed Variable

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

balances Variable

mapping(address => uint256) help
Internal Variable

Functions Expand All Collapse All

pause keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function pause() onlyOwner whenNotPaused returns (bool) {
  paused = true;
  Pause();
  return true;
}

unpause keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function unpause() onlyOwner whenPaused returns (bool) {
  paused = false;
  Unpause();
  return true;
}

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

Requirements help

Source Code
function transfer(address _to, uint256 _value) whenNotPaused returns (bool) {
  require(_to != address(0));
  require(_to != address(this));
  return super.transfer(_to, _value);
}

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 allowed[_owner][_spender];
}

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
) whenNotPaused returns (bool) {
  require(_to != address(0));
  require(_from != _to);
  require(_to != address(this));
  return super.transferFrom(_from, _to, _value);
}

Parameters help

Name Type
_spender
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction

Modifiers help

Requirements help

Source Code
function approve(address _spender, uint256 _value)
  whenNotPaused
  returns (bool)
{
  require(_spender != address(0));
  require(_spender != address(this));
  return super.approve(_spender, _value);
}

migrate keyboard_arrow_up

Parameters help

Name Type
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function migrate(uint256 _value) external {
  require(migrationAgent != 0);
  require(_value != 0);
  require(_value <= balances[msg.sender]);

  balances[msg.sender] = balances[msg.sender].sub(_value);
  totalSupply = totalSupply.sub(_value);
  totalMigrated = totalMigrated.add(_value);
  MigrationAgent(migrationAgent).migrateFrom(msg.sender, _value);

  Migrate(msg.sender, migrationAgent, _value);
}

setMigrationAgent keyboard_arrow_up

Parameters help

Name Type
_agent
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function setMigrationAgent(address _agent) external {
  require(_agent != 0);
  require(migrationAgent == 0);
  require(msg.sender == migrationMaster);

  migrationAgent = _agent;
}

setMigrationMaster keyboard_arrow_up

Parameters help

Name Type
_master
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function setMigrationMaster(address _master) external {
  require(_master != 0);
  require(msg.sender == migrationMaster);

  migrationMaster = _master;
}

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.