ETH Price: $1,877.84 (-3.63%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw Bone152068442022-07-24 18:14:44968 days ago1658686484IN
0x68d494e0...D4044412b
0 ETH0.0005338810.75552914
Withdraw Bone150899702022-07-06 16:18:28986 days ago1657124308IN
0x68d494e0...D4044412b
0 ETH0.0017254434.76062192
Withdraw Bone150132292022-06-23 13:44:38999 days ago1655991878IN
0x68d494e0...D4044412b
0 ETH0.0018853537.9820607
Withdraw Bone148974902022-06-03 13:56:451019 days ago1654264605IN
0x68d494e0...D4044412b
0 ETH0.0026544853.47684956
Withdraw Bone147190162022-05-05 19:23:561047 days ago1651778636IN
0x68d494e0...D4044412b
0 ETH0.0044687890.02741843
Withdraw Bone146260832022-04-21 4:03:331062 days ago1650513813IN
0x68d494e0...D4044412b
0 ETH0.0042786.02291851
Withdraw Bone144069492022-03-17 23:29:071096 days ago1647559747IN
0x68d494e0...D4044412b
0 ETH0.0019319838.92157106
Withdraw Bone142691572022-02-24 13:48:211118 days ago1645710501IN
0x68d494e0...D4044412b
0 ETH0.0027899756.20636558
Withdraw Bone141726482022-02-09 15:17:541133 days ago1644419874IN
0x68d494e0...D4044412b
0 ETH0.00648151130.57564712
Withdraw Bone140508902022-01-21 19:46:101151 days ago1642794370IN
0x68d494e0...D4044412b
0 ETH0.00797804160.724621
Withdraw Bone139109762021-12-31 4:29:101173 days ago1640924950IN
0x68d494e0...D4044412b
0 ETH0.0044954290.56427834
Withdraw Bone138434142021-12-20 17:28:111184 days ago1640021291IN
0x68d494e0...D4044412b
0 ETH0.0035875672.27461111
Withdraw Bone137474792021-12-05 18:04:061199 days ago1638727446IN
0x68d494e0...D4044412b
0 ETH0.00651484131.24710019
Withdraw Bone136500612021-11-20 5:33:511214 days ago1637386431IN
0x68d494e0...D4044412b
0 ETH0.00511506103.04734599
Withdraw Bone135697442021-11-07 13:54:181227 days ago1636293258IN
0x68d494e0...D4044412b
0 ETH0.0045354591.37055299
Withdraw Bone134808172021-10-24 14:52:191241 days ago1635087139IN
0x68d494e0...D4044412b
0 ETH0.0037741276.03307938
Set Lock Percent...134808132021-10-24 14:51:191241 days ago1635087079IN
0x68d494e0...D4044412b
0 ETH0.0016310568.60083279
Withdraw Bone133928922021-10-10 19:55:131254 days ago1633895713IN
0x68d494e0...D4044412b
0 ETH0.0167016395.01930353
Withdraw Bone133061312021-09-27 6:02:531268 days ago1632722573IN
0x68d494e0...D4044412b
0 ETH0.0094737553.89827995
Withdraw Bone132110012021-09-12 12:36:261283 days ago1631450186IN
0x68d494e0...D4044412b
0 ETH0.0080349345.71250742
Withdraw Bone131197332021-08-29 10:04:581297 days ago1630231498IN
0x68d494e0...D4044412b
0 ETH0.0076462143.5009881
Transfer Ownersh...127738882021-07-06 12:23:371351 days ago1625574217IN
0x68d494e0...D4044412b
0 ETH0.0057182200

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
xLeashBoneDistributor

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 5000 runs

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

pragma solidity 0.6.12;

import "./BasicBoneDistributor.sol";

contract xLeashBoneDistributor is BasicBoneDistributor {
    constructor (IERC20 _bone) BasicBoneDistributor(_bone) public {}
}

File 2 of 6 : BasicBoneDistributor.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract BasicBoneDistributor is Ownable {

    using SafeMath for uint256;
    IERC20 public bone;
    bytes4 private constant SELECTOR = bytes4(keccak256(bytes('receiveApproval(address,uint256,address,uint256)')));
    uint public lockPercentage = 67;

    constructor (IERC20 _bone) public {
        require(address(_bone) != address(0), "_bone is a zero address");
        bone = _bone;
    }

    function boneBalance() external view returns(uint) {
        return bone.balanceOf(address(this));
    }

    function withdrawBone(address _destination, address _lockDestination, uint256 _lockingPeriod, uint256 _amount) external onlyOwner {
        uint256 _lockAmount = _amount.mul(lockPercentage).div(100);
        require(bone.transfer(_destination, _amount.sub(_lockAmount)), "transfer: withdraw failed");
        if(_lockAmount != 0){
            approveAndCall(_lockDestination, _lockAmount, _lockingPeriod);
        }
    }

    function approveAndCall(address _spender, uint256 _value, uint256 _lockingPeriod) internal returns (bool success) {
        bone.approve(_spender, _value);
        (bool thisSuccess,) = _spender.call(abi.encodeWithSelector(SELECTOR, bone, _value, address(this), _lockingPeriod));
        require(thisSuccess, "Spender- receiveApproval failed");
        return true;
    }

    function setLockPercentage(uint _lockPercentage) external onlyOwner {
        lockPercentage = _lockPercentage;
    }
}

File 3 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        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 mul(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 div(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 mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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);
}

File 5 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../utils/Context.sol";
/**
 * @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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"contract IERC20","name":"_bone","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"bone","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boneBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lockPercentage","type":"uint256"}],"name":"setLockPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_destination","type":"address"},{"internalType":"address","name":"_lockDestination","type":"address"},{"internalType":"uint256","name":"_lockingPeriod","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawBone","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604360025534801561001557600080fd5b50604051610cb6380380610cb68339818101604052602081101561003857600080fd5b5051806000610045610110565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160a01b0381166100ea576040805162461bcd60e51b815260206004820152601760248201527f5f626f6e652069732061207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b039290921691909117905550610114565b3390565b610b93806101236000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063715018a61161005b578063715018a6146101405780638da5cb5b14610148578063b8e635fa14610150578063f2fde38b1461015857610088565b8063226125a81461008d57806326631b65146100ac578063356442b9146100dd57806338dd0875146100f7575b600080fd5b6100aa600480360360208110156100a357600080fd5b503561018b565b005b6100b461021e565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100e561023a565b60408051918252519081900360200190f35b6100aa6004803603608081101561010d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060600135610240565b6100aa610406565b6100b4610503565b6100e561051f565b6100aa6004803603602081101561016e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105c1565b61019361072e565b73ffffffffffffffffffffffffffffffffffffffff166101b1610503565b73ffffffffffffffffffffffffffffffffffffffff1614610219576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600255565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b61024861072e565b73ffffffffffffffffffffffffffffffffffffffff16610266610503565b73ffffffffffffffffffffffffffffffffffffffff16146102ce576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60006102f060646102ea6002548561073290919063ffffffff16565b90610794565b60015490915073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8661031c85856107fb565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561036f57600080fd5b505af1158015610383573d6000803e3d6000fd5b505050506040513d602081101561039957600080fd5b50516103ec576040805162461bcd60e51b815260206004820152601960248201527f7472616e736665723a207769746864726177206661696c656400000000000000604482015290519081900360640190fd5b80156103ff576103fd848285610858565b505b5050505050565b61040e61072e565b73ffffffffffffffffffffffffffffffffffffffff1661042c610503565b73ffffffffffffffffffffffffffffffffffffffff1614610494576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b600154604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d60208110156105ba57600080fd5b5051905090565b6105c961072e565b73ffffffffffffffffffffffffffffffffffffffff166105e7610503565b73ffffffffffffffffffffffffffffffffffffffff161461064f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166106a15760405162461bcd60e51b8152600401808060200182810382526026815260200180610ae76026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b6000826107415750600061078e565b8282028284828161074e57fe5b041461078b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610b3d6021913960400191505060405180910390fd5b90505b92915050565b60008082116107ea576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816107f357fe5b049392505050565b600082821115610852576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600154604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018690529151600093929092169163095ea7b39160448082019260209290919082900301818787803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b505050506040513d602081101561090157600080fd5b50506040805160608101909152603080825260009173ffffffffffffffffffffffffffffffffffffffff871691610b0d602083013980516020918201206001546040805173ffffffffffffffffffffffffffffffffffffffff90921660248301526044820189905230606483015260848083018990528151808403909101815260a4909201815292810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217825291518251909182918083835b60208310610a1e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016109e1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610a80576040519150601f19603f3d011682016040523d82523d6000602084013e610a85565b606091505b5050905080610adb576040805162461bcd60e51b815260206004820152601f60248201527f5370656e6465722d2072656365697665417070726f76616c206661696c656400604482015290519081900360640190fd5b50600194935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737372656365697665417070726f76616c28616464726573732c75696e743235362c616464726573732c75696e7432353629536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220feba8823a63035371721a5370a6a1d20cabdee498b5439645720ae4dc099dc6164736f6c634300060c00330000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063715018a61161005b578063715018a6146101405780638da5cb5b14610148578063b8e635fa14610150578063f2fde38b1461015857610088565b8063226125a81461008d57806326631b65146100ac578063356442b9146100dd57806338dd0875146100f7575b600080fd5b6100aa600480360360208110156100a357600080fd5b503561018b565b005b6100b461021e565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100e561023a565b60408051918252519081900360200190f35b6100aa6004803603608081101561010d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060600135610240565b6100aa610406565b6100b4610503565b6100e561051f565b6100aa6004803603602081101561016e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105c1565b61019361072e565b73ffffffffffffffffffffffffffffffffffffffff166101b1610503565b73ffffffffffffffffffffffffffffffffffffffff1614610219576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600255565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b61024861072e565b73ffffffffffffffffffffffffffffffffffffffff16610266610503565b73ffffffffffffffffffffffffffffffffffffffff16146102ce576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60006102f060646102ea6002548561073290919063ffffffff16565b90610794565b60015490915073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8661031c85856107fb565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561036f57600080fd5b505af1158015610383573d6000803e3d6000fd5b505050506040513d602081101561039957600080fd5b50516103ec576040805162461bcd60e51b815260206004820152601960248201527f7472616e736665723a207769746864726177206661696c656400000000000000604482015290519081900360640190fd5b80156103ff576103fd848285610858565b505b5050505050565b61040e61072e565b73ffffffffffffffffffffffffffffffffffffffff1661042c610503565b73ffffffffffffffffffffffffffffffffffffffff1614610494576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b600154604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d60208110156105ba57600080fd5b5051905090565b6105c961072e565b73ffffffffffffffffffffffffffffffffffffffff166105e7610503565b73ffffffffffffffffffffffffffffffffffffffff161461064f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166106a15760405162461bcd60e51b8152600401808060200182810382526026815260200180610ae76026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b6000826107415750600061078e565b8282028284828161074e57fe5b041461078b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610b3d6021913960400191505060405180910390fd5b90505b92915050565b60008082116107ea576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816107f357fe5b049392505050565b600082821115610852576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600154604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018690529151600093929092169163095ea7b39160448082019260209290919082900301818787803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b505050506040513d602081101561090157600080fd5b50506040805160608101909152603080825260009173ffffffffffffffffffffffffffffffffffffffff871691610b0d602083013980516020918201206001546040805173ffffffffffffffffffffffffffffffffffffffff90921660248301526044820189905230606483015260848083018990528151808403909101815260a4909201815292810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217825291518251909182918083835b60208310610a1e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016109e1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610a80576040519150601f19603f3d011682016040523d82523d6000602084013e610a85565b606091505b5050905080610adb576040805162461bcd60e51b815260206004820152601f60248201527f5370656e6465722d2072656365697665417070726f76616c206661696c656400604482015290519081900360640190fd5b50600194935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737372656365697665417070726f76616c28616464726573732c75696e743235362c616464726573732c75696e7432353629536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a2646970667358221220feba8823a63035371721a5370a6a1d20cabdee498b5439645720ae4dc099dc6164736f6c634300060c0033

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

0000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d9

-----Decoded View---------------
Arg [0] : _bone (address): 0x9813037ee2218799597d83D4a5B6F3b6778218d9

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d9


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.