Blockwell

ABYSS

ERC20

This contract is an ERC20 token.

Name ABYSS
Symbol ABYSS
Decimals 18
Total Supply 508,628,132 ABYSS

About link

Abyss (ABYSS) is a cryptocurrency and operates on the Ethereum platform. Abyss has a current supply of 508,628,132.04106945 with 228,664,903.23688185 in circulation. The last known price of Abyss is 0.02592822 USD and is down -3.26 over the last 24 hours. It is currently trading on 10 active market(s) with $170,630.20 traded over the last 24 hours. More information can be found at https://abyss.finance.

Stats

Public Functions 18
Event Types 8
Code Size 14,539 bytes

Events (8) keyboard_arrow_up

AllowTransfersChanged Event

Parameters help
_newState
bool help

Approval Event

Parameters help
_owner
address help
_spender
address help
_value
uint256 help

Destroy Event

Parameters help
_from
address help
_value
uint256 help

IssuanceFinished Event

Parameters help

Issue Event

Parameters help
_to
address help
_value
uint256 help

SetOwners Event

Parameters help
owners
address[] help

Transfer Event

Parameters help
_from
address help
_to
address help
_value
uint256 help

TransfersEnabled Event

Parameters help

SALE_END_TIME Constant

uint256 help
1526479200

LIMIT_TRANSFERS_PERIOD Constant

uint256 help
365 days

limitEndDate Variable

uint256 help

limitedWalletsManager Variable

address help

isLimitEnabled Variable

bool help

allowTransfers Variable

bool help

issuanceFinished Variable

bool help

eventListener Variable

address help

name Variable

string help

symbol Variable

string help

decimals Variable

uint8 help

totalSupply Variable

uint256 help

manager Variable

address help

limitedWallets Variable

mapping(address => bool) help

balances Variable

mapping(address => uint256) help

ownerByAddress Variable

mapping(address => bool) help

allowed Variable

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

owners Variable

address[] help
Internal Variable

Functions Expand All Collapse All

setOwners keyboard_arrow_up

Parameters help

Name Type
_owners
address[] help

Properties

Visibility help public
Mutability help transaction
Source Code
function setOwners(address[] _owners) public {
  require(msg.sender == manager);
  _setOwners(_owners);
}

getOwners keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help constant
Source Code
function getOwners() public constant returns (address[]) {
  return owners;
}

Parameters help

Name Type
_owner
address help

Properties

Visibility help public
Mutability help constant
Source Code
function balanceOf(address _owner) public constant returns (uint256) {
  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
  canTransfer(msg.sender, _to)
  returns (bool)
{
  return super.transfer(_to, _value);
}

Parameters help

Name Type
_from
address help
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferFrom(
  address _from,
  address _to,
  uint256 _value
) public canTransfer(_from, _to) returns (bool) {
  return super.transferFrom(_from, _to, _value);
}

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)
  public
  canTransfer(msg.sender, _spender)
  returns (bool)
{
  return super.approve(_spender, _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)
  public
  constant
  returns (uint256)
{
  return allowed[_owner][_spender];
}

setAllowTransfers keyboard_arrow_up

Parameters help

Name Type
_allowTransfers
bool help

Properties

Visibility help public
Mutability help transaction
Source Code
function setAllowTransfers(bool _allowTransfers) external onlyOwner {
  allowTransfers = _allowTransfers;
  AllowTransfersChanged(_allowTransfers);
}

setListener keyboard_arrow_up

Parameters help

Name Type
_listener
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function setListener(address _listener) public onlyOwner {
  if (_listener != address(0)) {
    eventListener = ITokenEventListener(_listener);
  } else {
    delete eventListener;
  }
}

issue keyboard_arrow_up

Parameters help

Name Type
_to
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function issue(address _to, uint256 _value) external onlyOwner canIssue {
  totalSupply = safeAdd(totalSupply, _value);
  balances[_to] = safeAdd(balances[_to], _value);
  Issue(_to, _value);
  Transfer(address(0), _to, _value);
}

destroy keyboard_arrow_up

Parameters help

Name Type
_from
address help
_value
uint256 help

Properties

Visibility help public
Mutability help transaction
Source Code
function destroy(address _from, uint256 _value) external {
  require(ownerByAddress[msg.sender] || msg.sender == _from);
  require(balances[_from] >= _value);
  totalSupply = safeSub(totalSupply, _value);
  balances[_from] = safeSub(balances[_from], _value);
  Transfer(_from, address(0), _value);
  Destroy(_from, _value);
}

increaseApproval keyboard_arrow_up

Parameters help

Name Type
_spender
address help
_addedValue
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function increaseApproval(address _spender, uint256 _addedValue)
  public
  returns (bool)
{
  allowed[msg.sender][_spender] = safeAdd(
    allowed[msg.sender][_spender],
    _addedValue
  );
  Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
  return true;
}

decreaseApproval keyboard_arrow_up

Parameters help

Name Type
_spender
address help
_subtractedValue
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function decreaseApproval(address _spender, uint256 _subtractedValue)
  public
  returns (bool)
{
  uint256 oldValue = allowed[msg.sender][_spender];
  if (_subtractedValue > oldValue) {
    allowed[msg.sender][_spender] = 0;
  } else {
    allowed[msg.sender][_spender] = safeSub(oldValue, _subtractedValue);
  }
  Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
  return true;
}

finishIssuance keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function finishIssuance() public onlyOwner returns (bool) {
  issuanceFinished = true;
  IssuanceFinished();
  return true;
}

enableTransfers keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function enableTransfers() public {
  require(msg.sender == limitedWalletsManager);
  allowTransfers = true;
  TransfersEnabled();
}

addLimitedWalletAddress keyboard_arrow_up

Parameters help

Name Type
_wallet
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function addLimitedWalletAddress(address _wallet) public {
  require(msg.sender == limitedWalletsManager || ownerByAddress[msg.sender]);
  limitedWallets[_wallet] = true;
}

delLimitedWalletAddress keyboard_arrow_up

Parameters help

Name Type
_wallet
address help

Properties

Visibility help public
Mutability help transaction
Source Code
function delLimitedWalletAddress(address _wallet) public onlyManager {
  limitedWallets[_wallet] = false;
}

disableLimit keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help public
Mutability help transaction
Source Code
function disableLimit() public onlyManager {
  isLimitEnabled = false;
}

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 ManagedToken.hasListener keyboard_arrow_up

Parameters help

This function has no parameters.

Properties

Visibility help internal
Mutability help view
Source Code
function hasListener() internal view returns (bool) {
  if (eventListener == address(0)) {
    return false;
  }
  return true;
}

internal SafeMath.safeMul keyboard_arrow_up

Parameters help

Name Type
a
uint256 help
b
uint256 help

Properties

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

internal SafeMath.safeDiv keyboard_arrow_up

Parameters help

Name Type
a
uint256 help
b
uint256 help

Properties

Visibility help internal
Mutability help pure
Source Code
function safeDiv(uint256 a, uint256 b) internal pure returns (uint256) {
  uint256 c = a / b;
  return c;
}

internal SafeMath.safeSub keyboard_arrow_up

Parameters help

Name Type
a
uint256 help
b
uint256 help

Properties

Visibility help internal
Mutability help pure

Requirements help

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

internal SafeMath.safeAdd keyboard_arrow_up

Parameters help

Name Type
a
uint256 help
b
uint256 help

Properties

Visibility help internal
Mutability help pure

Requirements help

Source Code
function safeAdd(uint256 a, uint256 b) internal pure returns (uint256) {
  uint256 c = a + b;
  assert(c >= a);
  return c;
}

internal MultiOwnable._setOwners keyboard_arrow_up

Parameters help

Name Type
_owners
address[] help

Properties

Visibility help internal
Mutability help transaction
Source Code
function _setOwners(address[] _owners) internal {
  for (uint256 i = 0; i < owners.length; i++) {
    ownerByAddress[owners[i]] = false;
  }

  for (uint256 j = 0; j < _owners.length; j++) {
    ownerByAddress[_owners[j]] = true;
  }
  owners = _owners;
  SetOwners(_owners);
}