ETH Price: $1,882.66 (-2.48%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Get Data136211942021-11-15 15:46:471219 days ago1636991207IN
0xFCD80cBF...B3B08c60B
0 ETH0.02885311173.07786667
Get Data134363622021-10-17 16:01:101248 days ago1634486470IN
0xFCD80cBF...B3B08c60B
0 ETH0.0137673982.58489821
Get Data134292392021-10-16 13:14:561249 days ago1634390096IN
0xFCD80cBF...B3B08c60B
0 ETH0.0163206997.90107119
Get Data134184462021-10-14 20:26:041250 days ago1634243164IN
0xFCD80cBF...B3B08c60B
0 ETH0.03669377182.64152892
Increase Router ...134184102021-10-14 20:18:501250 days ago1634242730IN
0xFCD80cBF...B3B08c60B
0 ETH0.01525745281.62232568

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MyDataConsumerForShib

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : MyDataConsumerForShib.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.7.0;

// import "@unification-com/xfund-router/contracts/lib/ConsumerBase.sol";
// import '@openzeppelin/contracts/access/Ownable.sol';

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20_Ex {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: 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
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) external returns (bool);

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


/**
 * @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 OOOSafeMath {
    /**
    * @dev Returns the addition of two unsigned integers, reverting on
    * overflow.
    *
    * Counterpart to Solidity's `+` operator.
    *
    * Requirements:
    *
    * - Addition cannot overflow.
    */
    function safeAdd(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 safeSub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function safeMul(uint256 a, uint256 b) internal pure returns (uint256) {
        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, reverting 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 saveDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 safeMod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

interface IConsumerBase {
    function rawReceiveData(uint256 _price, bytes32 _requestId) external;
}

/**
 * @title RequestIdBase
 *
 * @dev A contract used by ConsumerBase and Router to generate requestIds
 *
 */
contract RequestIdBase {

    /**
    * @dev makeRequestId generates a requestId
    *
    * @param _dataConsumer address of consumer contract
    * @param _dataProvider address of provider
    * @param _router address of Router contract
    * @param _requestNonce uint256 request nonce
    * @param _data bytes32 hex encoded data endpoint
    *
    * @return bytes32 requestId
    */
    function makeRequestId(
        address _dataConsumer,
        address _dataProvider,
        address _router,
        uint256 _requestNonce,
        bytes32 _data) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(_dataConsumer, _dataProvider, _router, _requestNonce, _data));
    }
}

/**
 * @title ConsumerBase smart contract
 *
 * @dev This contract can be imported by any smart contract wishing to include
 * off-chain data or data from a different network within it.
 *
 * The consumer initiates a data request by forwarding the request to the Router
 * smart contract, from where the data provider(s) pick up and process the
 * data request, and forward it back to the specified callback function.
 *
 */
abstract contract ConsumerBase is RequestIdBase {
    using OOOSafeMath for uint256;

    /*
     * STATE VARIABLES
     */

    // nonces for generating requestIds. Must be in sync with the
    // nonces defined in Router.sol.
    mapping(address => uint256) private nonces;

    IERC20_Ex internal immutable xFUND;
    IRouter internal router;

    /*
     * WRITE FUNCTIONS
     */

    /**
     * @dev Contract constructor. Accepts the address for the router smart contract,
     * and a token allowance for the Router to spend on the consumer's behalf (to pay fees).
     *
     * The Consumer contract should have enough tokens allocated to it to pay fees
     * and the Router should be able to use the Tokens to forward fees.
     *
     * @param _router address of the deployed Router smart contract
     * @param _xfund address of the deployed xFUND smart contract
     */
    constructor(address _router, address _xfund) {
        require(_router != address(0), "router cannot be the zero address");
        require(_xfund != address(0), "xfund cannot be the zero address");
        router = IRouter(_router);
        xFUND = IERC20_Ex(_xfund);
    }

    /**
     * @notice _setRouter is a helper function to allow changing the router contract address
     * Allows updating the router address. Future proofing for potential Router upgrades
     * NOTE: it is advisable to wrap this around a function that uses, for example, OpenZeppelin's
     * onlyOwner modifier
     *
     * @param _router address of the deployed Router smart contract
     */
    function _setRouter(address _router) internal returns (bool) {
        require(_router != address(0), "router cannot be the zero address");
        router = IRouter(_router);
        return true;
    }

    /**
     * @notice _increaseRouterAllowance is a helper function to increase token allowance for
     * the xFUND Router
     * Allows this contract to increase the xFUND allowance for the Router contract
     * enabling it to pay request fees on behalf of this contract.
     * NOTE: it is advisable to wrap this around a function that uses, for example, OpenZeppelin's
     * onlyOwner modifier
     *
     * @param _amount uint256 amount to increase allowance by
     */
    function _increaseRouterAllowance(uint256 _amount) internal returns (bool) {
        // The context of msg.sender is this contract's address
        require(xFUND.increaseAllowance(address(router), _amount), "failed to increase allowance");
        return true;
    }

    /**
     * @dev _requestData - initialises a data request. forwards the request to the deployed
     * Router smart contract.
     *
     * @param _dataProvider payable address of the data provider
     * @param _fee uint256 fee to be paid
     * @param _data bytes32 value of data being requested, e.g. PRICE.BTC.USD.AVG requests
     * average price for BTC/USD pair
     * @return requestId bytes32 request ID which can be used to track or cancel the request
     */
    function _requestData(address _dataProvider, uint256 _fee, bytes32 _data)
    internal returns (bytes32) {
        bytes32 requestId = makeRequestId(address(this), _dataProvider, address(router), nonces[_dataProvider], _data);
        // call the underlying ConsumerLib.sol lib's submitDataRequest function
        require(router.initialiseRequest(_dataProvider, _fee, _data));
        nonces[_dataProvider] = nonces[_dataProvider].safeAdd(1);
        return requestId;
    }

    /**
     * @dev rawReceiveData - Called by the Router's fulfillRequest function
     * in order to fulfil a data request. Data providers call the Router's fulfillRequest function
     * The request is validated to ensure it has indeed been sent via the Router.
     *
     * The Router will only call rawReceiveData once it has validated the origin of the data fulfillment.
     * rawReceiveData then calls the user defined receiveData function to finalise the fulfilment.
     * Contract developers will need to override the abstract receiveData function defined below.
     *
     * @param _price uint256 result being sent
     * @param _requestId bytes32 request ID of the request being fulfilled
     * has sent the data
     */
    function rawReceiveData(
        uint256 _price,
        bytes32 _requestId) external
    {
        // validate it came from the router
        require(msg.sender == address(router), "only Router can call");

        // call override function in end-user's contract
        receiveData(_price, _requestId);
    }

    /**
    * @dev receiveData - should be overridden by contract developers to process the
    * data fulfilment in their own contract.
    *
    * @param _price uint256 result being sent
    * @param _requestId bytes32 request ID of the request being fulfilled
    */
    function receiveData(
        uint256 _price,
        bytes32 _requestId
    ) internal virtual;

    /*
     * READ FUNCTIONS
     */

    /**
     * @dev getRouterAddress returns the address of the Router smart contract being used
     *
     * @return address
     */
    function getRouterAddress() external view returns (address) {
        return address(router);
    }

}


/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


interface IRouter {
    function initialiseRequest(address, uint256, bytes32) external returns (bool);
}

contract MyDataConsumerForShib is ConsumerBase, Ownable {
    uint256 public price;
    address NFTAddress;

    event GotSomeData(bytes32 requestId, uint256 price);

     // RinkeBy 
    // address private ROUTER_ADDRESS = address(0x05AB63BeC9CfC3897a20dE62f5f812de10301FDf);

    // RinkeBy
    // address private XFUND_ADDRESS = address(0x245330351344F9301690D5D8De2A07f5F32e1149);

    // Mainnet 
    // address private constant ROUTER_ADDRESS = address(0x9ac9AE20a17779c17b069b48A8788e3455fC6121);

    // // Mainnet
    // address private constant XFUND_ADDRESS = address(0x892A6f9dF0147e5f079b0993F486F9acA3c87881);

    modifier onlyNFTOrOwner() {
        require(msg.sender == NFTAddress || msg.sender == owner(), "Price Can only be fetched by NFT contract or the Owner");
        _;
    }

    constructor(address router, address xfund) ConsumerBase(router, xfund) {
        price = 0;
    }

    // Optionally protect with a modifier to limit who can call
    function getData(address PROVIDER_ADDRESS, uint256 _fee, bytes32 _data) external onlyNFTOrOwner returns (bytes32) {

        // bytes32 _data = 0x555344542e534849422e50522e41564300000000000000000000000000000000;  //USDT.SHIB.PR.AVC
    
        // uint256 _fee = 100000000;

        // Rinkeby 
        // address PROVIDER_ADDRESS = address(0x611661f4B5D82079E924AcE2A6D113fAbd214b14);

        // Mainnet 
        // address PROVIDER_ADDRESS = address(0xFDEc0386011d085A6b4F0e37Fab5d7f2601aCB33);

        // _provider = PROVIDER_ADDRESS
        return _requestData(PROVIDER_ADDRESS, _fee, _data);
    }

    // Todo - protect with a modifier to limit who can call!
    function increaseRouterAllowance(uint256 _amount) external onlyOwner {
        require(_increaseRouterAllowance(_amount));       // 115792089237316195423570985008687907853269984665640564039457584007913129639935
    }

    // ConsumerBase ensures only the Router can call this
    function receiveData(uint256 _price, bytes32 _requestId) internal override {
        price = _price;
        // optionally emit an event to the logs
        emit GotSomeData(_requestId, _price);
    }

    function setNFTContract(address _nftAddress) external onlyOwner {
        NFTAddress = _nftAddress;        
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"xfund","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"}],"name":"GotSomeData","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"PROVIDER_ADDRESS","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"bytes32","name":"_data","type":"bytes32"}],"name":"getData","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"increaseRouterAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"bytes32","name":"_requestId","type":"bytes32"}],"name":"rawReceiveData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"}],"name":"setNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561001057600080fd5b50604051610aa0380380610aa08339818101604052604081101561003357600080fd5b50805160209091015181816001600160a01b0382166100835760405162461bcd60e51b8152600401808060200182810382526021815260200180610a7f6021913960400191505060405180910390fd5b6001600160a01b0381166100de576040805162461bcd60e51b815260206004820181905260248201527f7866756e642063616e6e6f7420626520746865207a65726f2061646472657373604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b03939093169290921790915560601b6001600160601b03191660805261011f61011a61012b565b61012f565b50506000600355610181565b3390565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60805160601c6108e161019e6000398061060a52506108e16000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063969890e411610066578063969890e414610127578063a035b1fe1461014a578063a7ccabdf14610152578063d54f7d5e14610178578063f2fde38b1461018057610093565b8063425c98ff146100985780636991cf89146100dc578063715018a6146100fb5780638da5cb5b14610103575b600080fd5b6100ca600480360360608110156100ae57600080fd5b506001600160a01b0381351690602081013590604001356101a6565b60408051918252519081900360200190f35b6100f9600480360360208110156100f257600080fd5b5035610228565b005b6100f961029f565b61010b61030d565b604080516001600160a01b039092168252519081900360200190f35b6100f96004803603604081101561013d57600080fd5b508035906020013561031c565b6100ca610380565b6100f96004803603602081101561016857600080fd5b50356001600160a01b0316610386565b61010b61040a565b6100f96004803603602081101561019657600080fd5b50356001600160a01b0316610419565b6004546000906001600160a01b03163314806101da57506101c561030d565b6001600160a01b0316336001600160a01b0316145b6102155760405162461bcd60e51b81526004018080602001828103825260368152602001806108306036913960400191505060405180910390fd5b6102208484846104c9565b949350505050565b6102306105d7565b6001600160a01b031661024161030d565b6001600160a01b03161461028a576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b610293816105db565b61029c57600080fd5b50565b6102a76105d7565b6001600160a01b03166102b861030d565b6001600160a01b031614610301576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b61030b60006106d6565b565b6002546001600160a01b031690565b6001546001600160a01b03163314610372576040805162461bcd60e51b81526020600482015260146024820152731bdb9b1e48149bdd5d195c8818d85b8818d85b1b60621b604482015290519081900360640190fd5b61037c8282610728565b5050565b60035481565b61038e6105d7565b6001600160a01b031661039f61030d565b6001600160a01b0316146103e8576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031690565b6104216105d7565b6001600160a01b031661043261030d565b6001600160a01b03161461047b576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b6001600160a01b0381166104c05760405162461bcd60e51b81526004018080602001828103825260268152602001806108666026913960400191505060405180910390fd5b61029c816106d6565b6001546001600160a01b03808516600090815260208190526040812054909283926104fa923092899216908761076c565b600154604080516001620fb3e960e11b031981526001600160a01b0389811660048301526024820189905260448201889052915193945091169163ffe0982e916064808201926020929091908290030181600087803b15801561055c57600080fd5b505af1158015610570573d6000803e3d6000fd5b505050506040513d602081101561058657600080fd5b505161059157600080fd5b6001600160a01b0385166000908152602081905260409020546105b59060016107ce565b6001600160a01b03861660009081526020819052604090205590509392505050565b3390565b60015460408051633950935160e01b81526001600160a01b0392831660048201526024810184905290516000927f00000000000000000000000000000000000000000000000000000000000000001691633950935191604480830192602092919082900301818787803b15801561065157600080fd5b505af1158015610665573d6000803e3d6000fd5b505050506040513d602081101561067b57600080fd5b50516106ce576040805162461bcd60e51b815260206004820152601c60248201527f6661696c656420746f20696e63726561736520616c6c6f77616e636500000000604482015290519081900360640190fd5b506001919050565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003829055604080518281526020810184905281517f262bf8bfba22afad58b506251d9697c36de4403b1b0d7cbb47b3cb68167431bb929181900390910190a15050565b604080516bffffffffffffffffffffffff19606097881b811660208084019190915296881b811660348301529490961b9093166048860152605c850191909152607c8085019190915281518085039091018152609c9093019052815191012090565b600082820183811015610828576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe50726963652043616e206f6e6c792062652066657463686564206279204e465420636f6e7472616374206f7220746865204f776e65724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122010236725083dfe4dcaa144a06ea55eaecc26c31a6fe5474b831ec30ade83801564736f6c63430007000033726f757465722063616e6e6f7420626520746865207a65726f20616464726573730000000000000000000000009ac9ae20a17779c17b069b48a8788e3455fc6121000000000000000000000000892a6f9df0147e5f079b0993f486f9aca3c87881

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063969890e411610066578063969890e414610127578063a035b1fe1461014a578063a7ccabdf14610152578063d54f7d5e14610178578063f2fde38b1461018057610093565b8063425c98ff146100985780636991cf89146100dc578063715018a6146100fb5780638da5cb5b14610103575b600080fd5b6100ca600480360360608110156100ae57600080fd5b506001600160a01b0381351690602081013590604001356101a6565b60408051918252519081900360200190f35b6100f9600480360360208110156100f257600080fd5b5035610228565b005b6100f961029f565b61010b61030d565b604080516001600160a01b039092168252519081900360200190f35b6100f96004803603604081101561013d57600080fd5b508035906020013561031c565b6100ca610380565b6100f96004803603602081101561016857600080fd5b50356001600160a01b0316610386565b61010b61040a565b6100f96004803603602081101561019657600080fd5b50356001600160a01b0316610419565b6004546000906001600160a01b03163314806101da57506101c561030d565b6001600160a01b0316336001600160a01b0316145b6102155760405162461bcd60e51b81526004018080602001828103825260368152602001806108306036913960400191505060405180910390fd5b6102208484846104c9565b949350505050565b6102306105d7565b6001600160a01b031661024161030d565b6001600160a01b03161461028a576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b610293816105db565b61029c57600080fd5b50565b6102a76105d7565b6001600160a01b03166102b861030d565b6001600160a01b031614610301576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b61030b60006106d6565b565b6002546001600160a01b031690565b6001546001600160a01b03163314610372576040805162461bcd60e51b81526020600482015260146024820152731bdb9b1e48149bdd5d195c8818d85b8818d85b1b60621b604482015290519081900360640190fd5b61037c8282610728565b5050565b60035481565b61038e6105d7565b6001600160a01b031661039f61030d565b6001600160a01b0316146103e8576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b031690565b6104216105d7565b6001600160a01b031661043261030d565b6001600160a01b03161461047b576040805162461bcd60e51b8152602060048201819052602482015260008051602061088c833981519152604482015290519081900360640190fd5b6001600160a01b0381166104c05760405162461bcd60e51b81526004018080602001828103825260268152602001806108666026913960400191505060405180910390fd5b61029c816106d6565b6001546001600160a01b03808516600090815260208190526040812054909283926104fa923092899216908761076c565b600154604080516001620fb3e960e11b031981526001600160a01b0389811660048301526024820189905260448201889052915193945091169163ffe0982e916064808201926020929091908290030181600087803b15801561055c57600080fd5b505af1158015610570573d6000803e3d6000fd5b505050506040513d602081101561058657600080fd5b505161059157600080fd5b6001600160a01b0385166000908152602081905260409020546105b59060016107ce565b6001600160a01b03861660009081526020819052604090205590509392505050565b3390565b60015460408051633950935160e01b81526001600160a01b0392831660048201526024810184905290516000927f000000000000000000000000892a6f9df0147e5f079b0993f486f9aca3c878811691633950935191604480830192602092919082900301818787803b15801561065157600080fd5b505af1158015610665573d6000803e3d6000fd5b505050506040513d602081101561067b57600080fd5b50516106ce576040805162461bcd60e51b815260206004820152601c60248201527f6661696c656420746f20696e63726561736520616c6c6f77616e636500000000604482015290519081900360640190fd5b506001919050565b600280546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6003829055604080518281526020810184905281517f262bf8bfba22afad58b506251d9697c36de4403b1b0d7cbb47b3cb68167431bb929181900390910190a15050565b604080516bffffffffffffffffffffffff19606097881b811660208084019190915296881b811660348301529490961b9093166048860152605c850191909152607c8085019190915281518085039091018152609c9093019052815191012090565b600082820183811015610828576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b939250505056fe50726963652043616e206f6e6c792062652066657463686564206279204e465420636f6e7472616374206f7220746865204f776e65724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122010236725083dfe4dcaa144a06ea55eaecc26c31a6fe5474b831ec30ade83801564736f6c63430007000033

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

0000000000000000000000009ac9ae20a17779c17b069b48a8788e3455fc6121000000000000000000000000892a6f9df0147e5f079b0993f486f9aca3c87881

-----Decoded View---------------
Arg [0] : router (address): 0x9ac9AE20a17779c17b069b48A8788e3455fC6121
Arg [1] : xfund (address): 0x892A6f9dF0147e5f079b0993F486F9acA3c87881

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ac9ae20a17779c17b069b48a8788e3455fc6121
Arg [1] : 000000000000000000000000892a6f9df0147e5f079b0993f486f9aca3c87881


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

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.