ETH Price: $3,489.67 (+5.42%)

Contract

0xAeC65404DdC3af3C897AD89571d5772C1A695F22
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Phoenix Token (PHX) (@$0.0012)
Transaction Hash
Method
Block
From
To
Transfer212789102024-11-27 11:52:471 hr ago1732708367IN
Phoenix Finance: PHX Token
0 ETH0.000337311.33621017
Approve212784162024-11-27 10:13:112 hrs ago1732702391IN
Phoenix Finance: PHX Token
0 ETH0.000401398.71663861
Approve212526802024-11-23 19:58:473 days ago1732391927IN
Phoenix Finance: PHX Token
0 ETH0.0007582416.36791926
Approve212526512024-11-23 19:52:473 days ago1732391567IN
Phoenix Finance: PHX Token
0 ETH0.0004270314.72075229
Approve212472412024-11-23 1:46:234 days ago1732326383IN
Phoenix Finance: PHX Token
0 ETH0.0006001313.01222096
Approve212052852024-11-17 5:17:4710 days ago1731820667IN
Phoenix Finance: PHX Token
0 ETH0.00023179.61383154
Transfer211921372024-11-15 9:15:2312 days ago1731662123IN
Phoenix Finance: PHX Token
0 ETH0.0008957119.12162135
Transfer211451102024-11-08 19:47:3518 days ago1731095255IN
Phoenix Finance: PHX Token
0 ETH0.0004838116.26660783
Transfer211445152024-11-08 17:48:1118 days ago1731088091IN
Phoenix Finance: PHX Token
0 ETH0.0009824819.0333619
Approve210327052024-10-24 3:15:2334 days ago1729739723IN
Phoenix Finance: PHX Token
0 ETH0.0004916810.6
Approve210235002024-10-22 20:26:5935 days ago1729628819IN
Phoenix Finance: PHX Token
0 ETH0.0005097511.05261627
Approve210234732024-10-22 20:21:2335 days ago1729628483IN
Phoenix Finance: PHX Token
0 ETH0.0005136111.07282484
Approve210234562024-10-22 20:17:5935 days ago1729628279IN
Phoenix Finance: PHX Token
0 ETH0.0005514111.88776607
Transfer210233992024-10-22 20:06:2335 days ago1729627583IN
Phoenix Finance: PHX Token
0 ETH0.0003108710.44770149
Approve210233632024-10-22 19:59:1135 days ago1729627151IN
Phoenix Finance: PHX Token
0 ETH0.0004638510
Approve210093722024-10-20 21:07:3537 days ago1729458455IN
Phoenix Finance: PHX Token
0 ETH0.000372218.07467393
Transfer208209972024-09-24 14:16:4763 days ago1727187407IN
Phoenix Finance: PHX Token
0 ETH0.0018433235.71029499
Transfer207683572024-09-17 5:51:4771 days ago1726552307IN
Phoenix Finance: PHX Token
0 ETH0.000078112.26229065
Transfer207676562024-09-17 3:29:4771 days ago1726543787IN
Phoenix Finance: PHX Token
0 ETH0.000400887.76436201
Approve206581342024-09-01 20:34:1186 days ago1725222851IN
Phoenix Finance: PHX Token
0 ETH0.000031090.67026792
Transfer206411492024-08-30 11:39:2389 days ago1725017963IN
Phoenix Finance: PHX Token
0 ETH0.00012972.76961353
Transfer206236852024-08-28 1:04:1191 days ago1724807051IN
Phoenix Finance: PHX Token
0 ETH0.000360776.9908406
Transfer205984632024-08-24 12:29:2395 days ago1724502563IN
Phoenix Finance: PHX Token
0 ETH0.00004761.0159552
Approve205761052024-08-21 9:29:2398 days ago1724232563IN
Phoenix Finance: PHX Token
0 ETH0.000050341.09181807
Transfer204852142024-08-08 16:58:35110 days ago1723136315IN
Phoenix Finance: PHX Token
0 ETH0.0003716612.4910067
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.