Blockwell

OneRoot Network Token

ERC20

This contract is an ERC20 token.

Name OneRoot Network Token
Symbol RNT
Decimals 18
Total Supply 400,000,000 RNT

About link description

OneRoot Network (RNT) is a cryptocurrency and operates on the Ethereum platform. OneRoot Network has a current supply of 400,000,000 with 284,073,816.715856 in circulation. The last known price of OneRoot Network is 0.00152106 USD and is up 0.75 over the last 24 hours. It is currently trading on 5 active market(s) with $33,798.74 traded over the last 24 hours. More information can be found at https://www.oneroot.io/en.

Stats

Public Functions 14
Event Types 3
Code Size 9,120 bytes

Events (3) keyboard_arrow_up

Approval Event

Parameters help
_owner
address help
_spender
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

name Variable

string help

decimals Variable

uint8 help

symbol Variable

string help

version Variable

string help

totalSupply Variable

uint256 help

transferEnabled Variable

bool help

owner Variable

address help

balances Variable

mapping(address => uint256) help
Internal Variable

allowed Variable

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

lockFlag Variable

bool help
Internal Variable

locked Variable

mapping(address => bool) help
Internal Variable

exclude Variable

mapping(address => bool) help
Internal Variable

newOwner Variable

address help
Internal Variable

Functions Expand All Collapse All

changeOwner keyboard_arrow_up

Parameters help

Name Type
_newOwner
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function changeOwner(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;
}

enableTransfer keyboard_arrow_up

Parameters help

Name Type
_enable
bool help

Properties

Visibility help public
Mutability help transaction
Source Code
function enableTransfer(bool _enable) public onlyOwner {
  transferEnabled = _enable;
}

disableLock keyboard_arrow_up

Parameters help

Name Type
_enable
bool help

Properties

Visibility help public
Mutability help transaction
Source Code
function disableLock(bool _enable) onlyOwner returns (bool success) {
  lockFlag = _enable;
  return true;
}

addLock keyboard_arrow_up

Parameters help

Name Type
_addr
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function addLock(address _addr) onlyOwner returns (bool success) {
  require(_addr != msg.sender);
  locked[_addr] = true;
  return true;
}

setExclude keyboard_arrow_up

Parameters help

Name Type
_addr
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function setExclude(address _addr) onlyOwner returns (bool success) {
  exclude[_addr] = true;
  return true;
}

removeLock keyboard_arrow_up

Parameters help

Name Type
_addr
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function removeLock(address _addr) onlyOwner returns (bool success) {
  locked[_addr] = false;
  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

transferAllowed checks for the following:
Source Code
function transfer(address _to, uint256 _value)
  transferAllowed
  returns (bool success)
{
  //Default assumes totalSupply can't be over max (2^256 - 1).
  //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
  //Replace the if with this one instead.
  //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
  if (balances[msg.sender] >= _value && _value > 0) {
    balances[msg.sender] -= _value;
    balances[_to] += _value;
    Transfer(msg.sender, _to, _value);
    return true;
  } else {
    return false;
  }
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction

Modifiers help

transferAllowed checks for the following:
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) transferAllowed returns (bool success) {
  //same as above. Replace this line with the following if you want to protect against wrapping uints.
  //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
  if (
    balances[_from] >= _value &&
    allowed[_from][msg.sender] >= _value &&
    _value > 0
  ) {
    balances[_to] += _value;
    balances[_from] -= _value;
    allowed[_from][msg.sender] -= _value;
    Transfer(_from, _to, _value);
    return true;
  } else {
    return false;
  }
}

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) {
  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)
  constant
  returns (uint256 remaining)
{
  return allowed[_owner][_spender];
}

constructor keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function() {
  //if ether is sent to this address, send it back.
  throw;
}

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) {
  allowed[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);

  //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.
  //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)
  //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.
  if (
    !_spender.call(
      bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))),
      msg.sender,
      _value,
      this,
      _extraData
    )
  ) {
    throw;
  }
  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.