ETH Price: $2,981.27 (-3.95%)
Gas: 2 Gwei

Token

Delphy Token (DPY)
 

Overview

Max Total Supply

100,000,000 DPY

Holders

6,262 (0.00%)

Market

Price

$0.00 @ 0.000001 ETH (-8.14%)

Onchain Market Cap

$217,184.00

Circulating Supply Market Cap

$132,311.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,524,313.161165331516618881 DPY

Value
$3,310.56 ( ~1.1105 Eth) [1.5243%]
0x94CaBaD26d4CDc9D183372C7A78cD91755FB252a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Prediction markets built on the blockchain.

Market

Volume (24H):$8,849.42
Market Capitalization:$132,311.00
Circulating Supply:60,903,968.00 DPY
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DelphyToken

Compiler Version
v0.4.13+commit.fb4cb1a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-04-25
*/

/*
  Copyright 2017 Delphy Foundation.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

//   /$$$$$$$            /$$           /$$
//  | $$__  $$          | $$          | $$
//  | $$  \ $$  /$$$$$$ | $$  /$$$$$$ | $$$$$$$  /$$   /$$
//  | $$  | $$ /$$__  $$| $$ /$$__  $$| $$__  $$| $$  | $$
//  | $$  | $$| $$$$$$$$| $$| $$  \ $$| $$  \ $$| $$  | $$
//  | $$  | $$| $$_____/| $$| $$  | $$| $$  | $$| $$  | $$
//  | $$$$$$$/|  $$$$$$$| $$| $$$$$$$/| $$  | $$|  $$$$$$$
//  |_______/  \_______/|__/| $$____/ |__/  |__/ \____  $$
//                          | $$                 /$$  | $$
//                          | $$                |  $$$$$$/
//                          |__/                 \______/

pragma solidity ^0.4.11;


/// @title Abstract token contract - Functions to be implemented by token contracts
contract Token {

    /*
     *  Events
     */
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);

    /*
     *  Public functions
     */
    /// @notice send `_value` token to `_to` from `msg.sender`
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transfer(address _to, uint _value) public returns (bool);

    /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
    /// @param _from The address of the sender
    /// @param _to The address of the recipient
    /// @param _value The amount of token to be transferred
    /// @return Whether the transfer was successful or not
    function transferFrom(address _from, address _to, uint _value) public returns (bool);

    /// @notice `msg.sender` approves `_spender` to spend `_value` tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @param _value The amount of tokens to be approved for transfer
    /// @return Whether the approval was successful or not
    function approve(address _spender, uint _value) public returns (bool);

    /// @param _owner The address from which the balance will be retrieved
    /// @return The balance
    function balanceOf(address _owner) public constant returns (uint);

    /// @param _owner The address of the account owning tokens
    /// @param _spender The address of the account able to transfer the tokens
    /// @return Amount of remaining tokens allowed to spent
    function allowance(address _owner, address _spender) public constant returns (uint);

    /* This is a slight change to the ERC20 base standard.
    function totalSupply() constant returns (uint256 supply);
    is replaced with:
    uint256 public totalSupply;
    This automatically creates a getter function for the totalSupply.
    This is moved to the base contract since public getter functions are not
    currently recognised as an implementation of the matching abstract
    function by the compiler.
    */
    /// total amount of tokens
    uint256 public totalSupply;
}

library Math {
    /// @dev Returns whether an add operation causes an overflow
    /// @param a First addend
    /// @param b Second addend
    /// @return Did no overflow occur?
    function safeToAdd(uint a, uint b)
        public
        constant
        returns (bool)
    {
        return a + b >= a;
    }

    /// @dev Returns whether a subtraction operation causes an underflow
    /// @param a Minuend
    /// @param b Subtrahend
    /// @return Did no underflow occur?
    function safeToSub(uint a, uint b)
        public
        constant
        returns (bool)
    {
        return a >= b;
    }

    /// @dev Returns whether a multiply operation causes an overflow
    /// @param a First factor
    /// @param b Second factor
    /// @return Did no overflow occur?
    function safeToMul(uint a, uint b)
        public
        constant
        returns (bool)
    {
        return b == 0 || a * b / b == a;
    }

    /// @dev Returns sum if no overflow occurred
    /// @param a First addend
    /// @param b Second addend
    /// @return Sum
    function add(uint a, uint b)
        public
        constant
        returns (uint)
    {
        require(safeToAdd(a, b));
        return a + b;
    }

    /// @dev Returns difference if no overflow occurred
    /// @param a Minuend
    /// @param b Subtrahend
    /// @return Difference
    function sub(uint a, uint b)
        public
        constant
        returns (uint)
    {
        require(safeToSub(a, b));
        return a - b;
    }

    /// @dev Returns product if no overflow occurred
    /// @param a First factor
    /// @param b Second factor
    /// @return Product
    function mul(uint a, uint b)
        public
        constant
        returns (uint)
    {
        require(safeToMul(a, b));
        return a * b;
    }
}


/// @title Standard token contract with overflow protection
contract StandardToken is Token {
    using Math for *;

    /*
     *  Storage
     */
    mapping (address => uint) balances;
    mapping (address => mapping (address => uint)) allowances;

    /*
     *  Public functions
     */
    /// @dev Transfers sender's tokens to a given address. Returns success
    /// @param to Address of token receiver
    /// @param value Number of tokens to transfer
    /// @return Was transfer successful?
    function transfer(address to, uint 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;
    }

    /// @dev Allows allowed third party to transfer tokens from one address to another. Returns success
    /// @param from Address from where tokens are withdrawn
    /// @param to Address to where tokens are sent
    /// @param value Number of tokens to transfer
    /// @return Was transfer successful?
    function transferFrom(address from, address to, uint 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;
    }

    /// @dev Sets approved amount of tokens for spender. Returns success
    /// @param spender Address of allowed account
    /// @param value Number of approved tokens
    /// @return Was approval successful?
    function approve(address spender, uint value)
        public
        returns (bool)
    {
        allowances[msg.sender][spender] = value;
        Approval(msg.sender, spender, value);
        return true;
    }

    /// @dev Returns number of allowed tokens for given address
    /// @param owner Address of token owner
    /// @param spender Address of token spender
    /// @return Remaining allowance for spender
    function allowance(address owner, address spender)
        public
        constant
        returns (uint)
    {
        return allowances[owner][spender];
    }

    /// @dev Returns number of tokens owned by given address
    /// @param owner Address of token owner
    /// @return Balance of owner
    function balanceOf(address owner)
        public
        constant
        returns (uint)
    {
        return balances[owner];
    }
}

/// @title Delphy Token contract
/// For Delphy ICO details: https://delphy.org/index.html#ICO
/// For Delphy Project: https://delphy.org
/// @author [email protected]
contract DelphyToken is StandardToken {
    /*
     *  Constants
     */

    string constant public name = "Delphy Token";
    string constant public symbol = "DPY";
    uint8 constant public decimals = 18;

    /// Delphy token total supply
    uint public constant TOTAL_TOKENS = 100000000 * 10**18; // 1e

    /*
     *  Public functions
     */

    /// @dev Initialization of the Delphy Token contract
    /// @param owners is the addresses of Delphy token distribution
    /// @param tokens is the token number of Delphy token distribution
    function DelphyToken(address[] owners, uint[] tokens)
        public
    {
        totalSupply = 0;

        for (uint i=0; i<owners.length; i++) {
            require (owners[i] != 0);

            balances[owners[i]] += tokens[i];
            Transfer(0, owners[i], tokens[i]);
            totalSupply += tokens[i];
        }

        require (totalSupply == TOTAL_TOKENS);
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOTAL_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"owners","type":"address[]"},{"name":"tokens","type":"uint256[]"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]

6060604052341561000f57600080fd5b604051610a2a380380610a2a8339810160405280805182019190602001805190910190505b60008080555b825181101561014e5782818151811061004f57fe5b90602001906020020151600160a060020a0316151561006d57600080fd5b81818151811061007957fe5b906020019060200201516001600085848151811061009357fe5b90602001906020020151600160a060020a031681526020810191909152604001600020805490910190558281815181106100c957fe5b90602001906020020151600160a060020a031660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84848151811061010b57fe5b9060200190602002015160405190815260200160405180910390a381818151811061013257fe5b906020019060200201516000805490910190555b60010161003a565b6000546a52b7d2dcc80cd2e40000001461016757600080fd5b5b5050505b6108af8061017b6000396000f300606060405236156100885763ffffffff60e060020a60003504166306fdde03811461008d578063095ea7b3146101185780630b7abf771461014e57806318160ddd1461017357806323b872dd14610198578063313ce567146101d457806370a08231146101fd57806395d89b411461022e578063a9059cbb146102b9578063dd62ed3e146102ef575b600080fd5b341561009857600080fd5b6100a0610326565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100dd5780820151818401525b6020016100c4565b50505050905090810190601f16801561010a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561012357600080fd5b61013a600160a060020a036004351660243561035d565b604051901515815260200160405180910390f35b341561015957600080fd5b6101616103ca565b60405190815260200160405180910390f35b341561017e57600080fd5b6101616103d9565b60405190815260200160405180910390f35b34156101a357600080fd5b61013a600160a060020a03600435811690602435166044356103df565b604051901515815260200160405180910390f35b34156101df57600080fd5b6101e7610650565b60405160ff909116815260200160405180910390f35b341561020857600080fd5b610161600160a060020a0360043516610655565b60405190815260200160405180910390f35b341561023957600080fd5b6100a0610674565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100dd5780820151818401525b6020016100c4565b50505050905090810190601f16801561010a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102c457600080fd5b61013a600160a060020a03600435166024356106ab565b604051901515815260200160405180910390f35b34156102fa57600080fd5b610161600160a060020a0360043581169060243516610856565b60405190815260200160405180910390f35b60408051908101604052600c81527f44656c70687920546f6b656e0000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6a52b7d2dcc80cd2e400000081565b60005481565b600160a060020a038316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee09163e31c71c4919085908590516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561045857600080fd5b6102c65a03f4151561046957600080fd5b50505060405180519050158061051c5750600160a060020a038085166000908152600260209081526040808320339094168352929052818120547319d07141c1ac170630ddf66835ec28a79bc53ee09263e31c71c4928691516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b15156104ff57600080fd5b6102c65a03f4151561051057600080fd5b50505060405180519050155b806105b65750600160a060020a038316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee092634e30a66c92869190516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561059957600080fd5b6102c65a03f415156105aa57600080fd5b50505060405180519050155b156105c357506000610649565b600160a060020a0380851660008181526001602081815260408084208054899003905560028252808420338716855282528084208054899003905594881680845291905290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b601281565b600160a060020a0381166000908152600160205260409020545b919050565b60408051908101604052600381527f4450590000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a033316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee09163e31c71c4919085908590516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561072457600080fd5b6102c65a03f4151561073557600080fd5b5050506040518051905015806107da5750600160a060020a038316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee092634e30a66c92869190516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b15156107bd57600080fd5b6102c65a03f415156107ce57600080fd5b50505060405180519050155b156107e7575060006103c4565b600160a060020a033381166000818152600160205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b929150505600a165627a7a72305820af20de791f399f98d8df3b7a750106ff67555b58af7107391efa635b97c655fe00290000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000070000000000000000000000005421da24ade5e108f48b1b39f6aa82a47ae49318000000000000000000000000d01024afa5ca097f5bea8a6ceee8902014c456280000000000000000000000005f38c21fdbd33c167d81267b9dcacd9fb0118cb7000000000000000000000000f27a5b6501c5d15d56bdbeec5394008fe0a713820000000000000000000000002593afa39ceb0d0e0a6024d5dc9365814b4fd379000000000000000000000000b617e4070f8c22ed0e283268e038ea6e22ea685c000000000000000000000000f55ab9b3895bba429f8c41dda7415b21eca02c220000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000000000000000000000000ee3a5f48a68b5520000000000000000000000000000000000000000000000000211654585005212800000000000000000000000000000000000000000000000048cab98f1671af58000000000000000000000000000000000000000000000000422ca8b0a00a425000000000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000000000000000000000000771d2fa45345aa9000000

Deployed Bytecode

0x606060405236156100885763ffffffff60e060020a60003504166306fdde03811461008d578063095ea7b3146101185780630b7abf771461014e57806318160ddd1461017357806323b872dd14610198578063313ce567146101d457806370a08231146101fd57806395d89b411461022e578063a9059cbb146102b9578063dd62ed3e146102ef575b600080fd5b341561009857600080fd5b6100a0610326565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100dd5780820151818401525b6020016100c4565b50505050905090810190601f16801561010a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561012357600080fd5b61013a600160a060020a036004351660243561035d565b604051901515815260200160405180910390f35b341561015957600080fd5b6101616103ca565b60405190815260200160405180910390f35b341561017e57600080fd5b6101616103d9565b60405190815260200160405180910390f35b34156101a357600080fd5b61013a600160a060020a03600435811690602435166044356103df565b604051901515815260200160405180910390f35b34156101df57600080fd5b6101e7610650565b60405160ff909116815260200160405180910390f35b341561020857600080fd5b610161600160a060020a0360043516610655565b60405190815260200160405180910390f35b341561023957600080fd5b6100a0610674565b60405160208082528190810183818151815260200191508051906020019080838360005b838110156100dd5780820151818401525b6020016100c4565b50505050905090810190601f16801561010a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34156102c457600080fd5b61013a600160a060020a03600435166024356106ab565b604051901515815260200160405180910390f35b34156102fa57600080fd5b610161600160a060020a0360043581169060243516610856565b60405190815260200160405180910390f35b60408051908101604052600c81527f44656c70687920546f6b656e0000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a35060015b92915050565b6a52b7d2dcc80cd2e400000081565b60005481565b600160a060020a038316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee09163e31c71c4919085908590516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561045857600080fd5b6102c65a03f4151561046957600080fd5b50505060405180519050158061051c5750600160a060020a038085166000908152600260209081526040808320339094168352929052818120547319d07141c1ac170630ddf66835ec28a79bc53ee09263e31c71c4928691516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b15156104ff57600080fd5b6102c65a03f4151561051057600080fd5b50505060405180519050155b806105b65750600160a060020a038316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee092634e30a66c92869190516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561059957600080fd5b6102c65a03f415156105aa57600080fd5b50505060405180519050155b156105c357506000610649565b600160a060020a0380851660008181526001602081815260408084208054899003905560028252808420338716855282528084208054899003905594881680845291905290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b9392505050565b601281565b600160a060020a0381166000908152600160205260409020545b919050565b60408051908101604052600381527f4450590000000000000000000000000000000000000000000000000000000000602082015281565b600160a060020a033316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee09163e31c71c4919085908590516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b151561072457600080fd5b6102c65a03f4151561073557600080fd5b5050506040518051905015806107da5750600160a060020a038316600090815260016020526040808220547319d07141c1ac170630ddf66835ec28a79bc53ee092634e30a66c92869190516020015260405160e060020a63ffffffff85160281526004810192909252602482015260440160206040518083038186803b15156107bd57600080fd5b6102c65a03f415156107ce57600080fd5b50505060405180519050155b156107e7575060006103c4565b600160a060020a033381166000818152600160205260408082208054879003905592861680825290839020805486019055917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060015b92915050565b600160a060020a038083166000908152600260209081526040808320938516835292905220545b929150505600a165627a7a72305820af20de791f399f98d8df3b7a750106ff67555b58af7107391efa635b97c655fe0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000070000000000000000000000005421da24ade5e108f48b1b39f6aa82a47ae49318000000000000000000000000d01024afa5ca097f5bea8a6ceee8902014c456280000000000000000000000005f38c21fdbd33c167d81267b9dcacd9fb0118cb7000000000000000000000000f27a5b6501c5d15d56bdbeec5394008fe0a713820000000000000000000000002593afa39ceb0d0e0a6024d5dc9365814b4fd379000000000000000000000000b617e4070f8c22ed0e283268e038ea6e22ea685c000000000000000000000000f55ab9b3895bba429f8c41dda7415b21eca02c220000000000000000000000000000000000000000000000000000000000000007000000000000000000000000000000000000000000295be96e640669720000000000000000000000000000000000000000000000000ee3a5f48a68b5520000000000000000000000000000000000000000000000000211654585005212800000000000000000000000000000000000000000000000048cab98f1671af58000000000000000000000000000000000000000000000000422ca8b0a00a425000000000000000000000000000000000000000000000000084595161401484a0000000000000000000000000000000000000000000000000771d2fa45345aa9000000

-----Decoded View---------------
Arg [0] : owners (address[]): 0x5421da24adE5e108F48b1b39f6Aa82a47aE49318,0xD01024AFa5cA097f5BEA8A6ceeE8902014C45628,0x5f38C21fdbd33c167D81267b9DcaCd9fB0118cB7,0xF27a5B6501C5d15D56BDBeeC5394008fe0a71382,0x2593afA39CeB0d0E0a6024D5Dc9365814b4fD379,0xB617e4070F8c22ED0E283268E038ea6E22ea685C,0xF55aB9b3895bBA429f8c41DDa7415b21EcA02c22
Arg [1] : tokens (uint256[]): 50000000000000000000000000,18000000000000000000000000,2500000000000000000000000,5500000000000000000000000,5000000000000000000000000,10000000000000000000000000,9000000000000000000000000

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 0000000000000000000000005421da24ade5e108f48b1b39f6aa82a47ae49318
Arg [4] : 000000000000000000000000d01024afa5ca097f5bea8a6ceee8902014c45628
Arg [5] : 0000000000000000000000005f38c21fdbd33c167d81267b9dcacd9fb0118cb7
Arg [6] : 000000000000000000000000f27a5b6501c5d15d56bdbeec5394008fe0a71382
Arg [7] : 0000000000000000000000002593afa39ceb0d0e0a6024d5dc9365814b4fd379
Arg [8] : 000000000000000000000000b617e4070f8c22ed0e283268e038ea6e22ea685c
Arg [9] : 000000000000000000000000f55ab9b3895bba429f8c41dda7415b21eca02c22
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [11] : 000000000000000000000000000000000000000000295be96e64066972000000
Arg [12] : 0000000000000000000000000000000000000000000ee3a5f48a68b552000000
Arg [13] : 0000000000000000000000000000000000000000000211654585005212800000
Arg [14] : 000000000000000000000000000000000000000000048cab98f1671af5800000
Arg [15] : 0000000000000000000000000000000000000000000422ca8b0a00a425000000
Arg [16] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [17] : 0000000000000000000000000000000000000000000771d2fa45345aa9000000


Swarm Source

bzzr://af20de791f399f98d8df3b7a750106ff67555b58af7107391efa635b97c655fe
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.