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
            
        Functions
transfer keyboard_arrow_up
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;
}
transferFrom keyboard_arrow_up
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;
}
approve keyboard_arrow_up
Source Code
function approve(address spender, uint256 value) public returns (bool) {
  allowances[msg.sender][spender] = value;
  Approval(msg.sender, spender, value);
  return true;
}
balanceOf keyboard_arrow_up
Internal Functions
Internal functions are parts of the contract that can't be used directly, but instead are used by the public functions listed above.
 
         
    



