Blockwell

Delphy Token

ERC20

This contract is an ERC20 token.

Name Delphy Token
Symbol DPY
Decimals 18
Total Supply 100,000,000 DPY

About link description

Delphy (DPY) is a cryptocurrency and operates on the Ethereum platform. Delphy has a current supply of 100,000,000 with 62,199,847.55839228 in circulation. The last known price of Delphy is 0.00614652 USD and is down -1.23 over the last 24 hours. It is currently trading on 2 active market(s) with $27,731.53 traded over the last 24 hours. More information can be found at https://delphy.org/.

Stats

Public Functions 5
Event Types 2
Code Size 9,478 bytes

Events (2) keyboard_arrow_up

Approval Event

Parameters help
owner
address help
spender
address help
value
uint help

Transfer Event

Parameters help
from
address help
to
address help
value
uint help

name Constant

string help
Delphy Token

symbol Constant

string help
DPY

decimals Constant

uint8 help
18

TOTAL_TOKENS Constant

uint help
100000000 * UNKNOWN VALUE

totalSupply Variable

uint256 help

balances Variable

mapping(address => uint) help
Internal Variable

allowances Variable

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

Functions Expand All Collapse All

Parameters help

Name Type
to
address help
value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function transfer(address to, uint256 value) public returns (bool) {
  if (!balances[msg.sender].safeToSub(value) || !balances[to].safeToAdd(value))
    return false;
  balances[msg.sender] -= value;
  balances[to] += value;
  Transfer(msg.sender, to, value);
  return true;
}

Parameters help

Name Type
from
address help
to
address help
value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function transferFrom(
  address from,
  address to,
  uint256 value
) public returns (bool) {
  if (
    !balances[from].safeToSub(value) ||
    !allowances[from][msg.sender].safeToSub(value) ||
    !balances[to].safeToAdd(value)
  ) return false;
  balances[from] -= value;
  allowances[from][msg.sender] -= value;
  balances[to] += value;
  Transfer(from, to, value);
  return true;
}

Parameters help

Name Type
spender
address help
value
uint help

Properties

Visibility help public
Mutability help transaction
Source Code
function approve(address spender, uint256 value) public returns (bool) {
  allowances[msg.sender][spender] = value;
  Approval(msg.sender, spender, value);
  return true;
}

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
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 allowances[owner][spender];
}

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.