Blockwell

NucleusVision

ERC20

This contract is an ERC20 token.

Name NucleusVision
Symbol nCash
Decimals 18
Total Supply 10,000,000,000 nCash

About link description

Nucleus Vision (NCASH) is a cryptocurrency and operates on the Ethereum platform. Nucleus Vision has a current supply of 10,000,000,000 with 7,181,865,277.881813 in circulation. The last known price of Nucleus Vision is 0.00134648 USD and is down -0.89 over the last 24 hours. It is currently trading on 10 active market(s) with $78,458.51 traded over the last 24 hours. More information can be found at https://nucleus.vision/.

Stats

Public Functions 11
Event Types 6
Code Size 10,667 bytes

Events (6) keyboard_arrow_up

Approval Event

Parameters help
owner
address help
spender
address help
value
uint256 help

Mint Event

Parameters help
to
address help
amount
uint256 help

MintFinished Event

Parameters help

NucleusVisionTokenUnlocked Event

Parameters help

OwnershipTransferred Event

Parameters help
previousOwner
address help
newOwner
address help

Transfer Event

Parameters help
from
address help
to
address help
value
uint256 help

name Constant

string help
NucleusVision

symbol Constant

string help
nCash

decimals Constant

uint8 help
18

MAX_SUPPLY Constant

uint256 help
10 * 1000 * 1000 * 1000 * UNKNOWN VALUE

unlocked Variable

bool help

mintingFinished Variable

bool help

totalSupply Variable

uint256 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

transferOwnership keyboard_arrow_up

Parameters help

Name Type
newOwner
address help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function transferOwnership(address newOwner) public onlyOwner {
  require(newOwner != address(0));
  OwnershipTransferred(owner, newOwner);
  owner = newOwner;
}

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
to
address help
value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address to, uint256 value) public returns (bool) {
  require(unlocked);
  return super.transfer(to, value);
}

Parameters help

Name Type
_owner
address help
_spender
address help

Properties

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

Parameters help

Name Type
from
address help
to
address help
value
uint256 help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function transferFrom(
  address from,
  address to,
  uint256 value
) public returns (bool) {
  require(unlocked);
  return super.transferFrom(from, to, value);
}

Parameters help

Name Type
spender
address help
value
uint256 help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function approve(address spender, uint256 value) public returns (bool) {
  require(unlocked);
  return super.approve(spender, value);
}

increaseApproval keyboard_arrow_up

Parameters help

Name Type
spender
address help
addedValue
uint help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function increaseApproval(address spender, uint256 addedValue)
  public
  returns (bool)
{
  require(unlocked);
  return super.increaseApproval(spender, addedValue);
}

decreaseApproval keyboard_arrow_up

Parameters help

Name Type
spender
address help
subtractedValue
uint help

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function decreaseApproval(address spender, uint256 subtractedValue)
  public
  returns (bool)
{
  require(unlocked);
  return super.decreaseApproval(spender, subtractedValue);
}

mint keyboard_arrow_up

Parameters help

Name Type
to
address help
amount
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function mint(address to, uint256 amount) public onlyOwner returns (bool) {
  require(totalSupply + amount <= MAX_SUPPLY);
  return super.mint(to, amount);
}

finishMinting keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function finishMinting() public onlyOwner canMint returns (bool) {
  mintingFinished = true;
  MintFinished();
  return true;
}

unlockToken keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction

Requirements help

Source Code
function unlockToken() public onlyOwner {
  require(!unlocked);
  unlocked = true;
  NucleusVisionTokenUnlocked();
}

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.