ETH Price: $1,998.21 (-1.61%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw Bone152068392022-07-24 18:13:46969 days ago1658686426IN
0x526684cd...aD084e0f8
0 ETH0.0005519511.1195053
Withdraw Bone150899652022-07-06 16:17:03987 days ago1657124223IN
0x526684cd...aD084e0f8
0 ETH0.0016428233.09615982
Withdraw Bone150132202022-06-23 13:42:441001 days ago1655991764IN
0x526684cd...aD084e0f8
0 ETH0.0025605751.58505623
Withdraw Bone148974842022-06-03 13:55:121021 days ago1654264512IN
0x526684cd...aD084e0f8
0 ETH0.0027273154.94408616
Withdraw Bone147190122022-05-05 19:22:421049 days ago1651778562IN
0x526684cd...aD084e0f8
0 ETH0.0046181693.03692779
Withdraw Bone146260832022-04-21 4:03:331064 days ago1650513813IN
0x526684cd...aD084e0f8
0 ETH0.0043196487.02291851
Withdraw Bone144069372022-03-17 23:26:141098 days ago1647559574IN
0x526684cd...aD084e0f8
0 ETH0.0016537133.31557788
Withdraw Bone142691582022-02-24 13:49:131120 days ago1645710553IN
0x526684cd...aD084e0f8
0 ETH0.003130363.06272157
Withdraw Bone141726542022-02-09 15:19:421134 days ago1644419982IN
0x526684cd...aD084e0f8
0 ETH0.00707399142.51165936
Withdraw Bone140508862022-01-21 19:45:161153 days ago1642794316IN
0x526684cd...aD084e0f8
0 ETH0.00615654124.02884117
Withdraw Bone139109672021-12-31 4:27:201175 days ago1640924840IN
0x526684cd...aD084e0f8
0 ETH0.0042937586.50146379
Withdraw Bone138434352021-12-20 17:31:081185 days ago1640021468IN
0x526684cd...aD084e0f8
0 ETH0.0034455969.41452592
Withdraw Bone137474852021-12-05 18:05:471200 days ago1638727547IN
0x526684cd...aD084e0f8
0 ETH0.00581058117.05913932
Withdraw Bone136500682021-11-20 5:36:021216 days ago1637386562IN
0x526684cd...aD084e0f8
0 ETH0.0052284105.33071964
Withdraw Bone135697552021-11-07 13:57:191229 days ago1636293439IN
0x526684cd...aD084e0f8
0 ETH0.0043454287.54240506
Withdraw Bone134808382021-10-24 14:56:111242 days ago1635087371IN
0x526684cd...aD084e0f8
0 ETH0.0028184456.78006486
Set Lock Percent...134808282021-10-24 14:54:341243 days ago1635087274IN
0x526684cd...aD084e0f8
0 ETH0.001766274.28525452
Withdraw Bone133926832021-10-10 19:04:151256 days ago1633892655IN
0x526684cd...aD084e0f8
0 ETH0.03177195180.75768511
Withdraw Bone133061542021-09-27 6:07:321270 days ago1632722852IN
0x526684cd...aD084e0f8
0 ETH0.0094353753.67992429
Withdraw Bone132109822021-09-12 12:32:271285 days ago1631449947IN
0x526684cd...aD084e0f8
0 ETH0.0088904550.57973348
Withdraw Bone131197462021-08-29 10:08:151299 days ago1630231695IN
0x526684cd...aD084e0f8
0 ETH0.0078152944.46294165
Transfer Ownersh...127738892021-07-06 12:23:561353 days ago1625574236IN
0x526684cd...aD084e0f8
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:
xShibBoneDistributor

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 5000 runs

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

pragma solidity 0.6.12;

import "./BasicBoneDistributor.sol";

contract xShibBoneDistributor 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"}]

6080604052604360025534801561001557600080fd5b50604051610cb6380380610cb68339818101604052602081101561003857600080fd5b5051806000610045610110565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160a01b0381166100ea576040805162461bcd60e51b815260206004820152601760248201527f5f626f6e652069732061207a65726f2061646472657373000000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b039290921691909117905550610114565b3390565b610b93806101236000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c8063715018a61161005b578063715018a6146101405780638da5cb5b14610148578063b8e635fa14610150578063f2fde38b1461015857610088565b8063226125a81461008d57806326631b65146100ac578063356442b9146100dd57806338dd0875146100f7575b600080fd5b6100aa600480360360208110156100a357600080fd5b503561018b565b005b6100b461021e565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100e561023a565b60408051918252519081900360200190f35b6100aa6004803603608081101561010d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060600135610240565b6100aa610406565b6100b4610503565b6100e561051f565b6100aa6004803603602081101561016e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105c1565b61019361072e565b73ffffffffffffffffffffffffffffffffffffffff166101b1610503565b73ffffffffffffffffffffffffffffffffffffffff1614610219576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600255565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b61024861072e565b73ffffffffffffffffffffffffffffffffffffffff16610266610503565b73ffffffffffffffffffffffffffffffffffffffff16146102ce576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60006102f060646102ea6002548561073290919063ffffffff16565b90610794565b60015490915073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8661031c85856107fb565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561036f57600080fd5b505af1158015610383573d6000803e3d6000fd5b505050506040513d602081101561039957600080fd5b50516103ec576040805162461bcd60e51b815260206004820152601960248201527f7472616e736665723a207769746864726177206661696c656400000000000000604482015290519081900360640190fd5b80156103ff576103fd848285610858565b505b5050505050565b61040e61072e565b73ffffffffffffffffffffffffffffffffffffffff1661042c610503565b73ffffffffffffffffffffffffffffffffffffffff1614610494576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b600154604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d60208110156105ba57600080fd5b5051905090565b6105c961072e565b73ffffffffffffffffffffffffffffffffffffffff166105e7610503565b73ffffffffffffffffffffffffffffffffffffffff161461064f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166106a15760405162461bcd60e51b8152600401808060200182810382526026815260200180610ae76026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b6000826107415750600061078e565b8282028284828161074e57fe5b041461078b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610b3d6021913960400191505060405180910390fd5b90505b92915050565b60008082116107ea576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816107f357fe5b049392505050565b600082821115610852576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600154604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018690529151600093929092169163095ea7b39160448082019260209290919082900301818787803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b505050506040513d602081101561090157600080fd5b50506040805160608101909152603080825260009173ffffffffffffffffffffffffffffffffffffffff871691610b0d602083013980516020918201206001546040805173ffffffffffffffffffffffffffffffffffffffff90921660248301526044820189905230606483015260848083018990528151808403909101815260a4909201815292810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217825291518251909182918083835b60208310610a1e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016109e1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610a80576040519150601f19603f3d011682016040523d82523d6000602084013e610a85565b606091505b5050905080610adb576040805162461bcd60e51b815260206004820152601f60248201527f5370656e6465722d2072656365697665417070726f76616c206661696c656400604482015290519081900360640190fd5b50600194935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737372656365697665417070726f76616c28616464726573732c75696e743235362c616464726573732c75696e7432353629536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122017f1eb1c1b2b316fb01eddd92bb320d787bd91d046eb1a937ef341f309830dea64736f6c634300060c00330000000000000000000000009813037ee2218799597d83d4a5b6f3b6778218d9

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100885760003560e01c8063715018a61161005b578063715018a6146101405780638da5cb5b14610148578063b8e635fa14610150578063f2fde38b1461015857610088565b8063226125a81461008d57806326631b65146100ac578063356442b9146100dd57806338dd0875146100f7575b600080fd5b6100aa600480360360208110156100a357600080fd5b503561018b565b005b6100b461021e565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b6100e561023a565b60408051918252519081900360200190f35b6100aa6004803603608081101561010d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060408101359060600135610240565b6100aa610406565b6100b4610503565b6100e561051f565b6100aa6004803603602081101561016e57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff166105c1565b61019361072e565b73ffffffffffffffffffffffffffffffffffffffff166101b1610503565b73ffffffffffffffffffffffffffffffffffffffff1614610219576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600255565b60015473ffffffffffffffffffffffffffffffffffffffff1681565b60025481565b61024861072e565b73ffffffffffffffffffffffffffffffffffffffff16610266610503565b73ffffffffffffffffffffffffffffffffffffffff16146102ce576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60006102f060646102ea6002548561073290919063ffffffff16565b90610794565b60015490915073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb8661031c85856107fb565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561036f57600080fd5b505af1158015610383573d6000803e3d6000fd5b505050506040513d602081101561039957600080fd5b50516103ec576040805162461bcd60e51b815260206004820152601960248201527f7472616e736665723a207769746864726177206661696c656400000000000000604482015290519081900360640190fd5b80156103ff576103fd848285610858565b505b5050505050565b61040e61072e565b73ffffffffffffffffffffffffffffffffffffffff1661042c610503565b73ffffffffffffffffffffffffffffffffffffffff1614610494576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b60005473ffffffffffffffffffffffffffffffffffffffff1690565b600154604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009273ffffffffffffffffffffffffffffffffffffffff16916370a08231916024808301926020929190829003018186803b15801561059057600080fd5b505afa1580156105a4573d6000803e3d6000fd5b505050506040513d60208110156105ba57600080fd5b5051905090565b6105c961072e565b73ffffffffffffffffffffffffffffffffffffffff166105e7610503565b73ffffffffffffffffffffffffffffffffffffffff161461064f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff81166106a15760405162461bcd60e51b8152600401808060200182810382526026815260200180610ae76026913960400191505060405180910390fd5b6000805460405173ffffffffffffffffffffffffffffffffffffffff808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b3390565b6000826107415750600061078e565b8282028284828161074e57fe5b041461078b5760405162461bcd60e51b8152600401808060200182810382526021815260200180610b3d6021913960400191505060405180910390fd5b90505b92915050565b60008082116107ea576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816107f357fe5b049392505050565b600082821115610852576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600154604080517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8681166004830152602482018690529151600093929092169163095ea7b39160448082019260209290919082900301818787803b1580156108d757600080fd5b505af11580156108eb573d6000803e3d6000fd5b505050506040513d602081101561090157600080fd5b50506040805160608101909152603080825260009173ffffffffffffffffffffffffffffffffffffffff871691610b0d602083013980516020918201206001546040805173ffffffffffffffffffffffffffffffffffffffff90921660248301526044820189905230606483015260848083018990528151808403909101815260a4909201815292810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217825291518251909182918083835b60208310610a1e57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe090920191602091820191016109e1565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610a80576040519150601f19603f3d011682016040523d82523d6000602084013e610a85565b606091505b5050905080610adb576040805162461bcd60e51b815260206004820152601f60248201527f5370656e6465722d2072656365697665417070726f76616c206661696c656400604482015290519081900360640190fd5b50600194935050505056fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737372656365697665417070726f76616c28616464726573732c75696e743235362c616464726573732c75696e7432353629536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77a264697066735822122017f1eb1c1b2b316fb01eddd92bb320d787bd91d046eb1a937ef341f309830dea64736f6c634300060c0033

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
Loading...
Loading
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.