Blockwell

Edgeless

ERC20

This contract is an ERC20 token.

Name Edgeless
Symbol EDG
Decimals 0
Total Supply 132,046,997 EDG

About link description

Edgeless (EDG) is a cryptocurrency and operates on the Ethereum platform. Edgeless has a current supply of 132,046,997 with 122,146,967 in circulation. The last known price of Edgeless is 0.00370442 USD and is up 2.30 over the last 24 hours. It is currently trading on 3 active market(s) with $0.09 traded over the last 24 hours. More information can be found at https://edgeless.io/.

Stats

Public Functions 4
Event Types 3
Code Size 4,944 bytes

Events (3) keyboard_arrow_up

Approval Event

Parameters help
owner
address help
spender
address help
value
uint256 help

Burned Event

Parameters help
amount
uint help

Transfer Event

Parameters help
from
address help
to
address help
value
uint256 help

standard Variable

string help

name Variable

string help

symbol Variable

string help

decimals Variable

uint8 help

totalSupply Variable

uint256 help

owner Variable

address help

startTime Variable

uint256 help

balanceOf Variable

mapping(address => uint256) help

burned Variable

bool help
Internal Variable

allowance 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

Requirements help

Source Code
function transfer(address _to, uint256 _value) returns (bool success) {
  if (now < startTime) throw; //check if the crowdsale is already over
  if (
    msg.sender == owner &&
    now < startTime + 1 years &&
    safeSub(balanceOf[msg.sender], _value) < 50000000
  ) throw; //prevent the owner of spending his share of tokens within the first year
  balanceOf[msg.sender] = safeSub(balanceOf[msg.sender], _value); // Subtract from the sender
  balanceOf[_to] = safeAdd(balanceOf[_to], _value); // Add the same to the recipient
  Transfer(msg.sender, _to, _value); // Notify anyone listening that this transfer took place
  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) {
  allowance[msg.sender][_spender] = _value;
  Approval(msg.sender, _spender, _value);
  return true;
}

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
) returns (bool success) {
  if (now < startTime && _from != owner) throw; //check if the crowdsale is already over
  if (
    _from == owner &&
    now < startTime + 1 years &&
    safeSub(balanceOf[_from], _value) < 50000000
  ) throw; //prevent the owner of spending his share of tokens within the first year
  var _allowance = allowance[_from][msg.sender];
  balanceOf[_from] = safeSub(balanceOf[_from], _value); // Subtract from the sender
  balanceOf[_to] = safeAdd(balanceOf[_to], _value); // Add the same to the recipient
  allowance[_from][msg.sender] = safeSub(_allowance, _value);
  Transfer(_from, _to, _value);
  return true;
}

burn keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function burn() {
  //if tokens have not been burned already and the ICO ended
  if (!burned && now > startTime) {
    uint256 difference = safeSub(balanceOf[owner], 60000000); //checked for overflow above
    balanceOf[owner] = 60000000;
    totalSupply = safeSub(totalSupply, difference);
    burned = true;
    Burned(difference);
  }
}

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.

internal SafeMath.safeMul keyboard_arrow_up

Parameters help

Name Type
a
uint help
b
uint help

Properties

Visibility help internal
Mutability help transaction
Source Code
function safeMul(uint256 a, uint256 b) internal returns (uint256) {
  uint256 c = a * b;
  assert(a == 0 || c / a == b);
  return c;
}

internal SafeMath.safeSub keyboard_arrow_up

Parameters help

Name Type
a
uint help
b
uint help

Properties

Visibility help internal
Mutability help transaction

Requirements help

Source Code
function safeSub(uint256 a, uint256 b) internal returns (uint256) {
  assert(b <= a);
  return a - b;
}

internal SafeMath.safeAdd keyboard_arrow_up

Parameters help

Name Type
a
uint help
b
uint help

Properties

Visibility help internal
Mutability help transaction
Source Code
function safeAdd(uint256 a, uint256 b) internal returns (uint256) {
  uint256 c = a + b;
  assert(c >= a && c >= b);
  return c;
}

internal SafeMath.assert keyboard_arrow_up

Parameters help

Name Type
assertion
bool help

Properties

Visibility help internal
Mutability help transaction

Requirements help

Source Code
function assert(bool assertion) internal {
  if (!assertion) throw;
}