ETH Price: $3,398.32 (-1.45%)
Gas: 2 Gwei

Token

Phoenix Token (PHX)
 

Overview

Max Total Supply

176,406,168 PHX

Holders

1,268 (0.00%)

Market

Price

$0.00 @ 0.000001 ETH (+0.18%)

Onchain Market Cap

$405,162.63

Circulating Supply Market Cap

$148,535.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,979.75 PHX

Value
$4.55 ( ~0.00133889617202851 Eth) [0.0011%]
0xC0A7008Fe597CBB5CFD7545D284A04ad4F0aed38
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Phoenix Finance is the ultimate marketplace for trading decentralized derivatives. Deployed on multiple chains, they offer a suite of innovative financial products, including pooled liquidity options, self-rebalancing decentralized leveraged tokens, mining & staking services and more.

Market

Volume (24H):$106,626.00
Market Capitalization:$148,535.00
Circulating Supply:64,671,530.00 PHX
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Bitrue
PHX-USDT$0.0023
0.0000007 Eth
$106,874.00
46,595,456.660 PHX
99.9987%
2
WanSwap
0XF17C59BF0F6326DA7A8CC2CE417E4F53A26707BD-0X8B9F9F4AA70B1B0D586BE8ADFB19C1AC38E05E9A$0.0018
0.0000005 Eth
$1.056
598.154 0XF17C59BF0F6326DA7A8CC2CE417E4F53A26707BD
0.0013%

Contract Source Code Verified (Exact Match)

Contract Name:
PnxToken

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-05-26
*/

// File: contracts/IERC20.sol

pragma solidity 0.5.16;

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 value) external returns (bool);

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/SafeMath.sol

pragma solidity 0.5.16;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts/ERC20.sol

pragma solidity 0.5.16;



/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {

    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowed;

    uint256 private _totalSupply;

    /**
    * @dev Total number of tokens in existence
    */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
    * @dev Gets the balance of the specified address.
    * @param owner The address to query the balance of.
    * @return An uint256 representing the amount owned by the passed address.
    */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(address owner, address spender) public view returns (uint256) {
        return _allowed[owner][spender];
    }

    /**
    * @dev Transfer token for a specified address
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * Beware that changing an allowance with this method brings the risk that someone may use both the old
     * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
     * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(address from, address to, uint256 value) public returns (bool) {
        _allowed[from][msg.sender] = _allowed[from][msg.sender].sub(value);
        _transfer(from, to, value);
        emit Approval(from, msg.sender, _allowed[from][msg.sender]);
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(address spender, uint256 addedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when allowed_[_spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) {
        require(spender != address(0));

        _allowed[msg.sender][spender] = _allowed[msg.sender][spender].sub(subtractedValue);
        emit Approval(msg.sender, spender, _allowed[msg.sender][spender]);
        return true;
    }

    /**
    * @dev Transfer token for a specified addresses
    * @param from The address to transfer from.
    * @param to The address to transfer to.
    * @param value The amount to be transferred.
    */
    function _transfer(address from, address to, uint256 value) internal {
        //require(to != address(0));

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that init an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _init(address account, uint256 value) internal {
        require(account != address(0));
        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }
}

// File: contracts/PnxToken.sol

pragma solidity 0.5.16;


contract PnxToken is ERC20{
    using SafeMath for uint;

    string private _name = "Phoenix Token";
    string private _symbol = "PHX";

    uint8 private _decimals = 18;

    address private _initiator;

    /// FinNexus total tokens supply
    uint public MAX_TOTAL_TOKEN_AMOUNT = 176406168 ether;

    constructor(address initiator,address operator)public{
        _initiator = initiator;
        _init(initiator,MAX_TOTAL_TOKEN_AMOUNT);
    }

    /**
     * @return the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initiator","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"MAX_TOTAL_TOKEN_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60c0604052600d60808190526c283437b2b734bc102a37b5b2b760991b60a090815261002e91600391906101f6565b50604080518082019091526003808252620a090b60eb1b6020909201918252610059916004916101f6565b506005805460ff191660121790556a91eb75877e61139b60000060065534801561008257600080fd5b50604051610b37380380610b37833981810160405260408110156100a557600080fd5b50805160209091015160058054610100600160a81b0319166101006001600160a01b038516021790556006546100dc9083906100e3565b5050610291565b6001600160a01b0382166100f657600080fd5b61010f8160025461019560201b6107711790919060201c565b6002556001600160a01b0382166000908152602081815260409091205461013f918390610771610195821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828201838110156101ef576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061023757805160ff1916838001178555610264565b82800160010185558215610264579182015b82811115610264578251825591602001919060010190610249565b50610270929150610274565b5090565b61028e91905b80821115610270576000815560010161027a565b90565b610897806102a06000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461021057806395d89b4114610236578063a457c2d71461023e578063a89c5be01461026a578063a9059cbb14610272578063dd62ed3e1461029e576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd14610190578063313ce567146101c657806339509351146101e4575b600080fd5b6100c16102cc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b038135169060200135610362565b604080519115158252519081900360200190f35b61017e6103de565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b038135811691602081013590911690604001356103e4565b6101ce6104ad565b6040805160ff9092168252519081900360200190f35b610162600480360360408110156101fa57600080fd5b506001600160a01b0381351690602001356104b6565b61017e6004803603602081101561022657600080fd5b50356001600160a01b0316610564565b6100c161057f565b6101626004803603604081101561025457600080fd5b506001600160a01b0381351690602001356105e0565b61017e610629565b6101626004803603604081101561028857600080fd5b506001600160a01b03813516906020013561062f565b61017e600480360360408110156102b457600080fd5b506001600160a01b0381358116916020013516610645565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b820191906000526020600020905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b60006001600160a01b03831661037757600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b6001600160a01b0383166000908152600160209081526040808320338452909152812054610418908363ffffffff61067016565b6001600160a01b03851660009081526001602090815260408083203384529091529020556104478484846106b9565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b0383166104cb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546104ff908363ffffffff61077116565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b60006001600160a01b0383166105f557600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546104ff908363ffffffff61067016565b60065481565b600061063c3384846106b9565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006106b283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506107cb565b9392505050565b6001600160a01b0383166000908152602081905260409020546106e2908263ffffffff61067016565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610717908263ffffffff61077116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106b2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818484111561085a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561081f578181015183820152602001610807565b50505050905090810190601f16801561084c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea265627a7a7231582095b48f74a99fcbc6ecb4c11b2de153232facd868de9aecd414018e48bbe6672364736f6c6343000510003200000000000000000000000061ddec4c2431ed48cf4e3bc9efdad66e683cf8df000000000000000000000000fe7ad92349b76a619a4e8dfe81dee725a9fa1746

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461021057806395d89b4114610236578063a457c2d71461023e578063a89c5be01461026a578063a9059cbb14610272578063dd62ed3e1461029e576100b4565b806306fdde03146100b9578063095ea7b31461013657806318160ddd1461017657806323b872dd14610190578063313ce567146101c657806339509351146101e4575b600080fd5b6100c16102cc565b6040805160208082528351818301528351919283929083019185019080838360005b838110156100fb5781810151838201526020016100e3565b50505050905090810190601f1680156101285780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101626004803603604081101561014c57600080fd5b506001600160a01b038135169060200135610362565b604080519115158252519081900360200190f35b61017e6103de565b60408051918252519081900360200190f35b610162600480360360608110156101a657600080fd5b506001600160a01b038135811691602081013590911690604001356103e4565b6101ce6104ad565b6040805160ff9092168252519081900360200190f35b610162600480360360408110156101fa57600080fd5b506001600160a01b0381351690602001356104b6565b61017e6004803603602081101561022657600080fd5b50356001600160a01b0316610564565b6100c161057f565b6101626004803603604081101561025457600080fd5b506001600160a01b0381351690602001356105e0565b61017e610629565b6101626004803603604081101561028857600080fd5b506001600160a01b03813516906020013561062f565b61017e600480360360408110156102b457600080fd5b506001600160a01b0381358116916020013516610645565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b820191906000526020600020905b81548152906001019060200180831161033b57829003601f168201915b5050505050905090565b60006001600160a01b03831661037757600080fd5b3360008181526001602090815260408083206001600160a01b03881680855290835292819020869055805186815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a350600192915050565b60025490565b6001600160a01b0383166000908152600160209081526040808320338452909152812054610418908363ffffffff61067016565b6001600160a01b03851660009081526001602090815260408083203384529091529020556104478484846106b9565b6001600160a01b0384166000818152600160209081526040808320338085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60055460ff1690565b60006001600160a01b0383166104cb57600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546104ff908363ffffffff61077116565b3360008181526001602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103585780601f1061032d57610100808354040283529160200191610358565b60006001600160a01b0383166105f557600080fd5b3360009081526001602090815260408083206001600160a01b03871684529091529020546104ff908363ffffffff61067016565b60065481565b600061063c3384846106b9565b50600192915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006106b283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506107cb565b9392505050565b6001600160a01b0383166000908152602081905260409020546106e2908263ffffffff61067016565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610717908263ffffffff61077116565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828201838110156106b2576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000818484111561085a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561081f578181015183820152602001610807565b50505050905090810190601f16801561084c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50505090039056fea265627a7a7231582095b48f74a99fcbc6ecb4c11b2de153232facd868de9aecd414018e48bbe6672364736f6c63430005100032

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

00000000000000000000000061ddec4c2431ed48cf4e3bc9efdad66e683cf8df000000000000000000000000fe7ad92349b76a619a4e8dfe81dee725a9fa1746

-----Decoded View---------------
Arg [0] : initiator (address): 0x61Ddec4C2431ed48Cf4E3bC9eFDAD66e683cf8Df
Arg [1] : operator (address): 0xFe7Ad92349B76a619A4E8dfE81deE725a9FA1746

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000061ddec4c2431ed48cf4e3bc9efdad66e683cf8df
Arg [1] : 000000000000000000000000fe7ad92349b76a619a4e8dfe81dee725a9fa1746


Deployed Bytecode Sourcemap

12848:935:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12848:935:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13377:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13377:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8966:244;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8966:244:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;7125:91;;;:::i;:::-;;;;;;;;;;;;;;;;9683:299;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9683:299:0;;;;;;;;;;;;;;;;;:::i;13693:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10497:323;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10497:323:0;;;;;;;;:::i;7432:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7432:106:0;-1:-1:-1;;;;;7432:106:0;;:::i;13527:87::-;;;:::i;11340:333::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11340:333:0;;;;;;;;:::i;13107:52::-;;;:::i;8179:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8179:140:0;;;;;;;;:::i;7877:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7877:131:0;;;;;;;;;;:::i;13377:83::-;13447:5;13440:12;;;;;;;;-1:-1:-1;;13440:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13414:13;;13440:12;;13447:5;;13440:12;;13447:5;13440:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13377:83;:::o;8966:244::-;9031:4;-1:-1:-1;;;;;9056:21:0;;9048:30;;;;;;9100:10;9091:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;9091:29:0;;;;;;;;;;;;:37;;;9144:36;;;;;;;9091:29;;9100:10;9144:36;;;;;;;;;;;-1:-1:-1;9198:4:0;8966:244;;;;:::o;7125:91::-;7196:12;;7125:91;:::o;9683:299::-;-1:-1:-1;;;;;9808:14:0;;9762:4;9808:14;;;:8;:14;;;;;;;;9823:10;9808:26;;;;;;;;:37;;9839:5;9808:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;9779:14:0;;;;;;:8;:14;;;;;;;;9794:10;9779:26;;;;;;;:66;9856:26;9788:4;9872:2;9876:5;9856:9;:26::i;:::-;-1:-1:-1;;;;;9898:54:0;;9925:14;;;;:8;:14;;;;;;;;9913:10;9925:26;;;;;;;;;;;9898:54;;;;;;;9913:10;;9898:54;;;;;;;;;;;;-1:-1:-1;9970:4:0;9683:299;;;;;:::o;13693:83::-;13759:9;;;;13693:83;:::o;10497:323::-;10577:4;-1:-1:-1;;;;;10602:21:0;;10594:30;;;;;;10678:10;10669:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10669:29:0;;;;;;;;;;:45;;10703:10;10669:45;:33;:45;:::i;:::-;10646:10;10637:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;10637:29:0;;;;;;;;;;;;:77;;;10730:60;;;;;;10637:29;;10730:60;;;;;;;;;;;-1:-1:-1;10808:4:0;10497:323;;;;:::o;7432:106::-;-1:-1:-1;;;;;7514:16:0;7487:7;7514:16;;;;;;;;;;;;7432:106::o;13527:87::-;13599:7;13592:14;;;;;;;;-1:-1:-1;;13592:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13566:13;;13592:14;;13599:7;;13592:14;;13599:7;13592:14;;;;;;;;;;;;;;;;;;;;;;;;11340:333;11425:4;-1:-1:-1;;;;;11450:21:0;;11442:30;;;;;;11526:10;11517:20;;;;:8;:20;;;;;;;;-1:-1:-1;;;;;11517:29:0;;;;;;;;;;:50;;11551:15;11517:50;:33;:50;:::i;13107:52::-;;;;:::o;8179:140::-;8240:4;8257:32;8267:10;8279:2;8283:5;8257:9;:32::i;:::-;-1:-1:-1;8307:4:0;8179:140;;;;:::o;7877:131::-;-1:-1:-1;;;;;7976:15:0;;;7949:7;7976:15;;;:8;:15;;;;;;;;:24;;;;;;;;;;;;;7877:131::o;2187:136::-;2245:7;2272:43;2276:1;2279;2272:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;2265:50;2187:136;-1:-1:-1;;;2187:136:0:o;11895:264::-;-1:-1:-1;;;;;12033:15:0;;:9;:15;;;;;;;;;;;:26;;12053:5;12033:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;12015:15:0;;;:9;:15;;;;;;;;;;;:44;;;;12086:13;;;;;;;:24;;12104:5;12086:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;12070:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;12126:25;;;;;;;12070:13;;12126:25;;;;;;;;;;;;;11895:264;;;:::o;1723:181::-;1781:7;1813:5;;;1837:6;;;;1829:46;;;;;-1:-1:-1;;;1829:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2626:192;2712:7;2748:12;2740:6;;;;2732:29;;;;-1:-1:-1;;;2732:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2732:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2784:5:0;;;2626:192::o

Swarm Source

bzzr://95b48f74a99fcbc6ecb4c11b2de153232facd868de9aecd414018e48bbe66723
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.