ETH Price: $2,464.62 (+5.70%)

Contract

0xCA06411bd7a7296d7dbdd0050DFc846E95fEBEB7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer111188192020-10-24 11:40:421426 days ago1603539642IN
Wrapped BTC: Controller
0.05 ETH0.0004314420.5
Transfer111188162020-10-24 11:39:491426 days ago1603539589IN
Wrapped BTC: Controller
0.05 ETH0.000430520.5
Claim Ownership69279062018-12-21 17:42:112099 days ago1545414131IN
Wrapped BTC: Controller
0 ETH0.0008992941
Transfer Ownersh...67822792018-11-27 13:03:132123 days ago1543323793IN
Wrapped BTC: Controller
0 ETH0.0004396110
Claim Ownership67664132018-11-24 22:16:032125 days ago1543097763IN
Wrapped BTC: Controller
0 ETH0.0001947510
Transfer Ownersh...67662992018-11-24 21:49:102125 days ago1543096150IN
Wrapped BTC: Controller
0 ETH0.0004396110
Call Claim Owner...67662972018-11-24 21:48:502125 days ago1543096130IN
Wrapped BTC: Controller
0 ETH0.000243710
Set Members67662932018-11-24 21:47:412125 days ago1543096061IN
Wrapped BTC: Controller
0 ETH0.0004530610
Set Factory67662922018-11-24 21:47:102125 days ago1543096030IN
Wrapped BTC: Controller
0 ETH0.0004502210
0x6080604067662862018-11-24 21:46:122125 days ago1543095972IN
 Create: Controller
0 ETH0.0135315210

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
207326892024-09-12 6:17:357 days ago1726121855
0xCA06411b...E95fEBEB7
0 ETH
207326892024-09-12 6:17:357 days ago1726121855
0xCA06411b...E95fEBEB7
0 ETH
207326892024-09-12 6:17:357 days ago1726121855
0xCA06411b...E95fEBEB7
0 ETH
207326892024-09-12 6:17:357 days ago1726121855
0xCA06411b...E95fEBEB7
0 ETH
207326892024-09-12 6:17:357 days ago1726121855
0xCA06411b...E95fEBEB7
0 ETH
207282082024-09-11 15:16:598 days ago1726067819
0xCA06411b...E95fEBEB7
0 ETH
207282082024-09-11 15:16:598 days ago1726067819
0xCA06411b...E95fEBEB7
0 ETH
207157042024-09-09 21:21:119 days ago1725916871
0xCA06411b...E95fEBEB7
0 ETH
207157042024-09-09 21:21:119 days ago1725916871
0xCA06411b...E95fEBEB7
0 ETH
207157042024-09-09 21:21:119 days ago1725916871
0xCA06411b...E95fEBEB7
0 ETH
207157042024-09-09 21:21:119 days ago1725916871
0xCA06411b...E95fEBEB7
0 ETH
207157042024-09-09 21:21:119 days ago1725916871
0xCA06411b...E95fEBEB7
0 ETH
207148752024-09-09 18:34:3510 days ago1725906875
0xCA06411b...E95fEBEB7
0 ETH
207148752024-09-09 18:34:3510 days ago1725906875
0xCA06411b...E95fEBEB7
0 ETH
207138242024-09-09 15:02:5910 days ago1725894179
0xCA06411b...E95fEBEB7
0 ETH
207138242024-09-09 15:02:5910 days ago1725894179
0xCA06411b...E95fEBEB7
0 ETH
207111342024-09-09 6:01:5910 days ago1725861719
0xCA06411b...E95fEBEB7
0 ETH
207111342024-09-09 6:01:5910 days ago1725861719
0xCA06411b...E95fEBEB7
0 ETH
207111342024-09-09 6:01:5910 days ago1725861719
0xCA06411b...E95fEBEB7
0 ETH
207111342024-09-09 6:01:5910 days ago1725861719
0xCA06411b...E95fEBEB7
0 ETH
207111342024-09-09 6:01:5910 days ago1725861719
0xCA06411b...E95fEBEB7
0 ETH
207111342024-09-09 6:01:5910 days ago1725861719
0xCA06411b...E95fEBEB7
0 ETH
207098842024-09-09 1:51:3510 days ago1725846695
0xCA06411b...E95fEBEB7
0 ETH
207098842024-09-09 1:51:3510 days ago1725846695
0xCA06411b...E95fEBEB7
0 ETH
207097722024-09-09 1:29:1110 days ago1725845351
0xCA06411b...E95fEBEB7
0 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Controller

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-11-24
*/

pragma solidity 0.4.24;

// File: openzeppelin-solidity/contracts/ownership/Ownable.sol

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

// File: openzeppelin-solidity/contracts/ownership/Claimable.sol

/**
 * @title Claimable
 * @dev Extension for the Ownable contract, where the ownership needs to be claimed.
 * This allows the new owner to accept the transfer.
 */
contract Claimable is Ownable {
  address public pendingOwner;

  /**
   * @dev Modifier throws if called by any account other than the pendingOwner.
   */
  modifier onlyPendingOwner() {
    require(msg.sender == pendingOwner);
    _;
  }

  /**
   * @dev Allows the current owner to set the pendingOwner address.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    pendingOwner = newOwner;
  }

  /**
   * @dev Allows the pendingOwner address to finalize the transfer.
   */
  function claimOwnership() public onlyPendingOwner {
    emit OwnershipTransferred(owner, pendingOwner);
    owner = pendingOwner;
    pendingOwner = address(0);
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20Basic.sol

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * See https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  function balanceOf(address _who) public view returns (uint256);
  function transfer(address _to, uint256 _value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

// File: openzeppelin-solidity/contracts/token/ERC20/ERC20.sol

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address _owner, address _spender)
    public view returns (uint256);

  function transferFrom(address _from, address _to, uint256 _value)
    public returns (bool);

  function approve(address _spender, uint256 _value) public returns (bool);
  event Approval(
    address indexed owner,
    address indexed spender,
    uint256 value
  );
}

// File: openzeppelin-solidity/contracts/token/ERC20/SafeERC20.sol

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure.
 * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
  function safeTransfer(
    ERC20Basic _token,
    address _to,
    uint256 _value
  )
    internal
  {
    require(_token.transfer(_to, _value));
  }

  function safeTransferFrom(
    ERC20 _token,
    address _from,
    address _to,
    uint256 _value
  )
    internal
  {
    require(_token.transferFrom(_from, _to, _value));
  }

  function safeApprove(
    ERC20 _token,
    address _spender,
    uint256 _value
  )
    internal
  {
    require(_token.approve(_spender, _value));
  }
}

// File: openzeppelin-solidity/contracts/ownership/CanReclaimToken.sol

/**
 * @title Contracts that should be able to recover tokens
 * @author SylTi
 * @dev This allow a contract to recover any ERC20 token received in a contract by transferring the balance to the contract owner.
 * This will prevent any accidental loss of tokens.
 */
contract CanReclaimToken is Ownable {
  using SafeERC20 for ERC20Basic;

  /**
   * @dev Reclaim all ERC20Basic compatible tokens
   * @param _token ERC20Basic The address of the token contract
   */
  function reclaimToken(ERC20Basic _token) external onlyOwner {
    uint256 balance = _token.balanceOf(this);
    _token.safeTransfer(owner, balance);
  }

}

// File: contracts/utils/OwnableContract.sol

// empty block is used as this contract just inherits others.
contract OwnableContract is CanReclaimToken, Claimable { } /* solhint-disable-line no-empty-blocks */

// File: contracts/utils/OwnableContractOwner.sol

contract OwnableContractOwner is OwnableContract {

    event CalledTransferOwnership(OwnableContract ownedContract, address newOwner);

    function callTransferOwnership(OwnableContract ownedContract, address newOwner) external onlyOwner returns (bool) {
        require(newOwner != address(0), "invalid newOwner address");
        ownedContract.transferOwnership(newOwner);
        emit CalledTransferOwnership(ownedContract, newOwner);
        return true;
    }

    event CalledClaimOwnership(OwnableContract contractToOwn);

    function callClaimOwnership(OwnableContract contractToOwn) external onlyOwner returns (bool) {
        contractToOwn.claimOwnership();
        emit CalledClaimOwnership(contractToOwn);
        return true;
    }

    event CalledReclaimToken(OwnableContract ownedContract, ERC20 _token);

    function callReclaimToken(OwnableContract ownedContract, ERC20 _token) external onlyOwner returns (bool) {
        require(_token != address(0), "invalid _token address");
        ownedContract.reclaimToken(_token);
        emit CalledReclaimToken(ownedContract, _token);
        return true;
    }
}

// File: contracts/controller/ControllerInterface.sol

interface ControllerInterface {
    function mint(address to, uint amount) external returns (bool);
    function burn(uint value) external returns (bool);
    function isCustodian(address addr) external view returns (bool);
    function isMerchant(address addr) external view returns (bool);
    function getWBTC() external view returns (ERC20);
}

// File: openzeppelin-solidity/contracts/math/SafeMath.sol

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (_a == 0) {
      return 0;
    }

    c = _a * _b;
    assert(c / _a == _b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
    // assert(_b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = _a / _b;
    // assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
    return _a / _b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
    assert(_b <= _a);
    return _a - _b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
    c = _a + _b;
    assert(c >= _a);
    return c;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BasicToken.sol

/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) internal balances;

  uint256 internal totalSupply_;

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

  /**
  * @dev Transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_value <= balances[msg.sender]);
    require(_to != address(0));

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

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

}

// File: openzeppelin-solidity/contracts/token/ERC20/StandardToken.sol

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);
    require(_to != address(0));

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

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

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

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

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue >= oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

// File: openzeppelin-solidity/contracts/token/ERC20/DetailedERC20.sol

/**
 * @title DetailedERC20 token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract DetailedERC20 is ERC20 {
  string public name;
  string public symbol;
  uint8 public decimals;

  constructor(string _name, string _symbol, uint8 _decimals) public {
    name = _name;
    symbol = _symbol;
    decimals = _decimals;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/MintableToken.sol

/**
 * @title Mintable token
 * @dev Simple ERC20 Token example, with mintable token creation
 * Based on code by TokenMarketNet: https://github.com/TokenMarketNet/ico/blob/master/contracts/MintableToken.sol
 */
contract MintableToken is StandardToken, Ownable {
  event Mint(address indexed to, uint256 amount);
  event MintFinished();

  bool public mintingFinished = false;


  modifier canMint() {
    require(!mintingFinished);
    _;
  }

  modifier hasMintPermission() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Function to mint tokens
   * @param _to The address that will receive the minted tokens.
   * @param _amount The amount of tokens to mint.
   * @return A boolean that indicates if the operation was successful.
   */
  function mint(
    address _to,
    uint256 _amount
  )
    public
    hasMintPermission
    canMint
    returns (bool)
  {
    totalSupply_ = totalSupply_.add(_amount);
    balances[_to] = balances[_to].add(_amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
    return true;
  }

  /**
   * @dev Function to stop minting new tokens.
   * @return True if the operation was successful.
   */
  function finishMinting() public onlyOwner canMint returns (bool) {
    mintingFinished = true;
    emit MintFinished();
    return true;
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/BurnableToken.sol

/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

// File: openzeppelin-solidity/contracts/lifecycle/Pausable.sol

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() public onlyOwner whenNotPaused {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() public onlyOwner whenPaused {
    paused = false;
    emit Unpause();
  }
}

// File: openzeppelin-solidity/contracts/token/ERC20/PausableToken.sol

/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
contract PausableToken is StandardToken, Pausable {

  function transfer(
    address _to,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.transfer(_to, _value);
  }

  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(
    address _spender,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.approve(_spender, _value);
  }

  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}

// File: contracts/token/WBTC.sol

contract WBTC is StandardToken, DetailedERC20("Wrapped BTC", "WBTC", 8),
    MintableToken, BurnableToken, PausableToken, OwnableContract {

    function burn(uint value) public onlyOwner {
        super.burn(value);
    }

    function finishMinting() public onlyOwner returns (bool) {
        return false;
    }

    function renounceOwnership() public onlyOwner {
        revert("renouncing ownership is blocked");
    }
}

// File: contracts/factory/MembersInterface.sol

interface MembersInterface {
    function setCustodian(address _custodian) external returns (bool);
    function addMerchant(address merchant) external returns (bool);
    function removeMerchant(address merchant) external returns (bool);
    function isCustodian(address addr) external view returns (bool);
    function isMerchant(address addr) external view returns (bool);
}

// File: contracts/controller/Controller.sol

contract Controller is ControllerInterface, OwnableContract, OwnableContractOwner {

    WBTC public token;
    MembersInterface public members;
    address public factory;

    constructor(WBTC _token) public {
        require(_token != address(0), "invalid _token address");
        token = _token;
    }

    modifier onlyFactory() {
        require(msg.sender == factory, "sender not authorized for minting or burning.");
        _;
    }

    // setters
    event MembersSet(MembersInterface indexed members);

    function setMembers(MembersInterface _members) external onlyOwner returns (bool) {
        require(_members != address(0), "invalid _members address");
        members = _members;
        emit MembersSet(members);
        return true;
    }

    event FactorySet(address indexed factory);

    function setFactory(address _factory) external onlyOwner returns (bool) {
        require(_factory != address(0), "invalid _factory address");
        factory = _factory;
        emit FactorySet(factory);
        return true;
    }

    // only owner actions on token
    event Paused();

    function pause() external onlyOwner returns (bool) {
        token.pause();
        emit Paused();
        return true;
    }

    event Unpaused();

    function unpause() external onlyOwner returns (bool) {
        token.unpause();
        emit Unpaused();
        return true;
    }

    // only factory actions on token
    function mint(address to, uint amount) external onlyFactory returns (bool) {
        require(to != address(0), "invalid to address");
        require(!token.paused(), "token is paused.");
        require(token.mint(to, amount), "minting failed.");
        return true;
    }

    function burn(uint value) external onlyFactory returns (bool) {
        require(!token.paused(), "token is paused.");
        token.burn(value);
        return true;
    }

    // all accessible
    function isCustodian(address addr) external view returns (bool) {
        return members.isCustodian(addr);
    }

    function isMerchant(address addr) external view returns (bool) {
        return members.isMerchant(addr);
    }

    function getWBTC() external view returns (ERC20) {
        return token;
    }

    // overriding
    function renounceOwnership() public onlyOwner {
        revert("renouncing ownership is blocked.");
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"reclaimToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"isMerchant","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"contractToOwn","type":"address"}],"name":"callClaimOwnership","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"isCustodian","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"ownedContract","type":"address"},{"name":"_token","type":"address"}],"name":"callReclaimToken","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_factory","type":"address"}],"name":"setFactory","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getWBTC","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"members","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"factory","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"ownedContract","type":"address"},{"name":"newOwner","type":"address"}],"name":"callTransferOwnership","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_members","type":"address"}],"name":"setMembers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_token","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"members","type":"address"}],"name":"MembersSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"factory","type":"address"}],"name":"FactorySet","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"ownedContract","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"CalledTransferOwnership","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"contractToOwn","type":"address"}],"name":"CalledClaimOwnership","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"ownedContract","type":"address"},{"indexed":false,"name":"_token","type":"address"}],"name":"CalledReclaimToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

608060405234801561001057600080fd5b50604051602080611360833981016040525160008054600160a060020a03191633179055600160a060020a03811615156100ab57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f696e76616c6964205f746f6b656e206164647265737300000000000000000000604482015290519081900360640190fd5b60028054600160a060020a031916600160a060020a0392909216919091179055611286806100da6000396000f3006080604052600436106101035763ffffffff60e060020a60003504166317ffc32081146101085780631a2f71671461012b578063332ee1921461016057806335c80c8c146101815780633f4ba83a146101a257806340c10f19146101b757806342966c68146101db5780634ca66540146101f35780634e71e0c81461021a5780635bb478081461022f5780635eebb1ce14610250578063715018a6146102815780638456cb59146102965780638da5cb5b146102ab578063bdd4d18d146102c0578063c45a0155146102d5578063e30c3978146102ea578063f2080dd0146102ff578063f2fde38b14610326578063f3796bdc14610347578063fc0c546a14610368575b600080fd5b34801561011457600080fd5b50610129600160a060020a036004351661037d565b005b34801561013757600080fd5b5061014c600160a060020a0360043516610449565b604080519115158252519081900360200190f35b34801561016c57600080fd5b5061014c600160a060020a03600435166104e6565b34801561018d57600080fd5b5061014c600160a060020a0360043516610599565b3480156101ae57600080fd5b5061014c610604565b3480156101c357600080fd5b5061014c600160a060020a03600435166024356106b6565b3480156101e757600080fd5b5061014c60043561096f565b3480156101ff57600080fd5b5061014c600160a060020a0360043581169060243516610b54565b34801561022657600080fd5b50610129610c8d565b34801561023b57600080fd5b5061014c600160a060020a0360043516610d15565b34801561025c57600080fd5b50610265610def565b60408051600160a060020a039092168252519081900360200190f35b34801561028d57600080fd5b50610129610dfe565b3480156102a257600080fd5b5061014c610e65565b3480156102b757600080fd5b50610265610f17565b3480156102cc57600080fd5b50610265610f26565b3480156102e157600080fd5b50610265610f35565b3480156102f657600080fd5b50610265610f44565b34801561030b57600080fd5b5061014c600160a060020a0360043581169060243516610f53565b34801561033257600080fd5b50610129600160a060020a036004351661108c565b34801561035357600080fd5b5061014c600160a060020a03600435166110d2565b34801561037457600080fd5b506102656111ac565b60008054600160a060020a0316331461039557600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156103f657600080fd5b505af115801561040a573d6000803e3d6000fd5b505050506040513d602081101561042057600080fd5b505160005490915061044590600160a060020a0384811691168363ffffffff6111bb16565b5050565b600354604080517f1a2f7167000000000000000000000000000000000000000000000000000000008152600160a060020a03848116600483015291516000939290921691631a2f71679160248082019260209290919082900301818787803b1580156104b457600080fd5b505af11580156104c8573d6000803e3d6000fd5b505050506040513d60208110156104de57600080fd5b505192915050565b60008054600160a060020a031633146104fe57600080fd5b81600160a060020a0316634e71e0c86040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561053c57600080fd5b505af1158015610550573d6000803e3d6000fd5b505060408051600160a060020a038616815290517ff3ad522750d368e1255a208fc9116f9ed12f39188f69b89c50c8dc43df78049b9350908190036020019150a1506001919050565b600354604080517f35c80c8c000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152915160009392909216916335c80c8c9160248082019260209290919082900301818787803b1580156104b457600080fd5b60008054600160a060020a0316331461061c57600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316633f4ba83a6040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561066f57600080fd5b505af1158015610683573d6000803e3d6000fd5b50506040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933925060009150a150600190565b600454600090600160a060020a03163314610741576040805160e560020a62461bcd02815260206004820152602d60248201527f73656e646572206e6f7420617574686f72697a656420666f72206d696e74696e60448201527f67206f72206275726e696e672e00000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03831615156107a1576040805160e560020a62461bcd02815260206004820152601260248201527f696e76616c696420746f20616464726573730000000000000000000000000000604482015290519081900360640190fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316635c975abb6040518163ffffffff1660e060020a028152600401602060405180830381600087803b1580156107f457600080fd5b505af1158015610808573d6000803e3d6000fd5b505050506040513d602081101561081e57600080fd5b505115610875576040805160e560020a62461bcd02815260206004820152601060248201527f746f6b656e206973207061757365642e00000000000000000000000000000000604482015290519081900360640190fd5b600254604080517f40c10f19000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260248201869052915191909216916340c10f199160448083019260209291908290030181600087803b1580156108e457600080fd5b505af11580156108f8573d6000803e3d6000fd5b505050506040513d602081101561090e57600080fd5b50511515610966576040805160e560020a62461bcd02815260206004820152600f60248201527f6d696e74696e67206661696c65642e0000000000000000000000000000000000604482015290519081900360640190fd5b50600192915050565b600454600090600160a060020a031633146109fa576040805160e560020a62461bcd02815260206004820152602d60248201527f73656e646572206e6f7420617574686f72697a656420666f72206d696e74696e60448201527f67206f72206275726e696e672e00000000000000000000000000000000000000606482015290519081900360840190fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316635c975abb6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015610a4d57600080fd5b505af1158015610a61573d6000803e3d6000fd5b505050506040513d6020811015610a7757600080fd5b505115610ace576040805160e560020a62461bcd02815260206004820152601060248201527f746f6b656e206973207061757365642e00000000000000000000000000000000604482015290519081900360640190fd5b600254604080517f42966c68000000000000000000000000000000000000000000000000000000008152600481018590529051600160a060020a03909216916342966c689160248082019260009290919082900301818387803b158015610b3457600080fd5b505af1158015610b48573d6000803e3d6000fd5b50600195945050505050565b60008054600160a060020a03163314610b6c57600080fd5b600160a060020a0382161515610bcc576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964205f746f6b656e206164647265737300000000000000000000604482015290519081900360640190fd5b82600160a060020a03166317ffc320836040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050600060405180830381600087803b158015610c2757600080fd5b505af1158015610c3b573d6000803e3d6000fd5b505060408051600160a060020a0380881682528616602082015281517f56195bb7b8fa8c05ef27289a07013ef2d3f4608c4308e875c6c2e19eb033a9589450908190039091019150a150600192915050565b600154600160a060020a03163314610ca457600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60008054600160a060020a03163314610d2d57600080fd5b600160a060020a0382161515610d8d576040805160e560020a62461bcd02815260206004820152601860248201527f696e76616c6964205f666163746f727920616464726573730000000000000000604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116907f1edf3afd4ac789736e00d216cd88be164ddcef26a6eedcc30cdb0cb62f3741b190600090a2506001919050565b600254600160a060020a031690565b600054600160a060020a03163314610e1557600080fd5b6040805160e560020a62461bcd02815260206004820181905260248201527f72656e6f756e63696e67206f776e65727368697020697320626c6f636b65642e604482015290519081900360640190fd5b60008054600160a060020a03163314610e7d57600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316638456cb596040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015610ed057600080fd5b505af1158015610ee4573d6000803e3d6000fd5b50506040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752925060009150a150600190565b600054600160a060020a031681565b600354600160a060020a031681565b600454600160a060020a031681565b600154600160a060020a031681565b60008054600160a060020a03163314610f6b57600080fd5b600160a060020a0382161515610fcb576040805160e560020a62461bcd02815260206004820152601860248201527f696e76616c6964206e65774f776e657220616464726573730000000000000000604482015290519081900360640190fd5b82600160a060020a031663f2fde38b836040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050600060405180830381600087803b15801561102657600080fd5b505af115801561103a573d6000803e3d6000fd5b505060408051600160a060020a0380881682528616602082015281517f18838a3b49e4b76edd553a08a7ae770b10cad20889e3d45de720694464f15ca09450908190039091019150a150600192915050565b600054600160a060020a031633146110a357600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008054600160a060020a031633146110ea57600080fd5b600160a060020a038216151561114a576040805160e560020a62461bcd02815260206004820152601860248201527f696e76616c6964205f6d656d6265727320616464726573730000000000000000604482015290519081900360640190fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116907fc1ab8227dcc82b3165b89762b5698f88dd96b65581d137b10770a84b27df6a9090600090a2506001919050565b600254600160a060020a031681565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801561121e57600080fd5b505af1158015611232573d6000803e3d6000fd5b505050506040513d602081101561124857600080fd5b5051151561125557600080fd5b5050505600a165627a7a723058207532ec60ab49db31f322467ef7d7a7bfc597f21e151f511fc1c8fac5b589a1d200290000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599

Deployed Bytecode

0x6080604052600436106101035763ffffffff60e060020a60003504166317ffc32081146101085780631a2f71671461012b578063332ee1921461016057806335c80c8c146101815780633f4ba83a146101a257806340c10f19146101b757806342966c68146101db5780634ca66540146101f35780634e71e0c81461021a5780635bb478081461022f5780635eebb1ce14610250578063715018a6146102815780638456cb59146102965780638da5cb5b146102ab578063bdd4d18d146102c0578063c45a0155146102d5578063e30c3978146102ea578063f2080dd0146102ff578063f2fde38b14610326578063f3796bdc14610347578063fc0c546a14610368575b600080fd5b34801561011457600080fd5b50610129600160a060020a036004351661037d565b005b34801561013757600080fd5b5061014c600160a060020a0360043516610449565b604080519115158252519081900360200190f35b34801561016c57600080fd5b5061014c600160a060020a03600435166104e6565b34801561018d57600080fd5b5061014c600160a060020a0360043516610599565b3480156101ae57600080fd5b5061014c610604565b3480156101c357600080fd5b5061014c600160a060020a03600435166024356106b6565b3480156101e757600080fd5b5061014c60043561096f565b3480156101ff57600080fd5b5061014c600160a060020a0360043581169060243516610b54565b34801561022657600080fd5b50610129610c8d565b34801561023b57600080fd5b5061014c600160a060020a0360043516610d15565b34801561025c57600080fd5b50610265610def565b60408051600160a060020a039092168252519081900360200190f35b34801561028d57600080fd5b50610129610dfe565b3480156102a257600080fd5b5061014c610e65565b3480156102b757600080fd5b50610265610f17565b3480156102cc57600080fd5b50610265610f26565b3480156102e157600080fd5b50610265610f35565b3480156102f657600080fd5b50610265610f44565b34801561030b57600080fd5b5061014c600160a060020a0360043581169060243516610f53565b34801561033257600080fd5b50610129600160a060020a036004351661108c565b34801561035357600080fd5b5061014c600160a060020a03600435166110d2565b34801561037457600080fd5b506102656111ac565b60008054600160a060020a0316331461039557600080fd5b604080517f70a082310000000000000000000000000000000000000000000000000000000081523060048201529051600160a060020a038416916370a082319160248083019260209291908290030181600087803b1580156103f657600080fd5b505af115801561040a573d6000803e3d6000fd5b505050506040513d602081101561042057600080fd5b505160005490915061044590600160a060020a0384811691168363ffffffff6111bb16565b5050565b600354604080517f1a2f7167000000000000000000000000000000000000000000000000000000008152600160a060020a03848116600483015291516000939290921691631a2f71679160248082019260209290919082900301818787803b1580156104b457600080fd5b505af11580156104c8573d6000803e3d6000fd5b505050506040513d60208110156104de57600080fd5b505192915050565b60008054600160a060020a031633146104fe57600080fd5b81600160a060020a0316634e71e0c86040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561053c57600080fd5b505af1158015610550573d6000803e3d6000fd5b505060408051600160a060020a038616815290517ff3ad522750d368e1255a208fc9116f9ed12f39188f69b89c50c8dc43df78049b9350908190036020019150a1506001919050565b600354604080517f35c80c8c000000000000000000000000000000000000000000000000000000008152600160a060020a038481166004830152915160009392909216916335c80c8c9160248082019260209290919082900301818787803b1580156104b457600080fd5b60008054600160a060020a0316331461061c57600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316633f4ba83a6040518163ffffffff1660e060020a028152600401600060405180830381600087803b15801561066f57600080fd5b505af1158015610683573d6000803e3d6000fd5b50506040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933925060009150a150600190565b600454600090600160a060020a03163314610741576040805160e560020a62461bcd02815260206004820152602d60248201527f73656e646572206e6f7420617574686f72697a656420666f72206d696e74696e60448201527f67206f72206275726e696e672e00000000000000000000000000000000000000606482015290519081900360840190fd5b600160a060020a03831615156107a1576040805160e560020a62461bcd02815260206004820152601260248201527f696e76616c696420746f20616464726573730000000000000000000000000000604482015290519081900360640190fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316635c975abb6040518163ffffffff1660e060020a028152600401602060405180830381600087803b1580156107f457600080fd5b505af1158015610808573d6000803e3d6000fd5b505050506040513d602081101561081e57600080fd5b505115610875576040805160e560020a62461bcd02815260206004820152601060248201527f746f6b656e206973207061757365642e00000000000000000000000000000000604482015290519081900360640190fd5b600254604080517f40c10f19000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015260248201869052915191909216916340c10f199160448083019260209291908290030181600087803b1580156108e457600080fd5b505af11580156108f8573d6000803e3d6000fd5b505050506040513d602081101561090e57600080fd5b50511515610966576040805160e560020a62461bcd02815260206004820152600f60248201527f6d696e74696e67206661696c65642e0000000000000000000000000000000000604482015290519081900360640190fd5b50600192915050565b600454600090600160a060020a031633146109fa576040805160e560020a62461bcd02815260206004820152602d60248201527f73656e646572206e6f7420617574686f72697a656420666f72206d696e74696e60448201527f67206f72206275726e696e672e00000000000000000000000000000000000000606482015290519081900360840190fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316635c975abb6040518163ffffffff1660e060020a028152600401602060405180830381600087803b158015610a4d57600080fd5b505af1158015610a61573d6000803e3d6000fd5b505050506040513d6020811015610a7757600080fd5b505115610ace576040805160e560020a62461bcd02815260206004820152601060248201527f746f6b656e206973207061757365642e00000000000000000000000000000000604482015290519081900360640190fd5b600254604080517f42966c68000000000000000000000000000000000000000000000000000000008152600481018590529051600160a060020a03909216916342966c689160248082019260009290919082900301818387803b158015610b3457600080fd5b505af1158015610b48573d6000803e3d6000fd5b50600195945050505050565b60008054600160a060020a03163314610b6c57600080fd5b600160a060020a0382161515610bcc576040805160e560020a62461bcd02815260206004820152601660248201527f696e76616c6964205f746f6b656e206164647265737300000000000000000000604482015290519081900360640190fd5b82600160a060020a03166317ffc320836040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050600060405180830381600087803b158015610c2757600080fd5b505af1158015610c3b573d6000803e3d6000fd5b505060408051600160a060020a0380881682528616602082015281517f56195bb7b8fa8c05ef27289a07013ef2d3f4608c4308e875c6c2e19eb033a9589450908190039091019150a150600192915050565b600154600160a060020a03163314610ca457600080fd5b60015460008054604051600160a060020a0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60008054600160a060020a03163314610d2d57600080fd5b600160a060020a0382161515610d8d576040805160e560020a62461bcd02815260206004820152601860248201527f696e76616c6964205f666163746f727920616464726573730000000000000000604482015290519081900360640190fd5b6004805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116907f1edf3afd4ac789736e00d216cd88be164ddcef26a6eedcc30cdb0cb62f3741b190600090a2506001919050565b600254600160a060020a031690565b600054600160a060020a03163314610e1557600080fd5b6040805160e560020a62461bcd02815260206004820181905260248201527f72656e6f756e63696e67206f776e65727368697020697320626c6f636b65642e604482015290519081900360640190fd5b60008054600160a060020a03163314610e7d57600080fd5b600260009054906101000a9004600160a060020a0316600160a060020a0316638456cb596040518163ffffffff1660e060020a028152600401600060405180830381600087803b158015610ed057600080fd5b505af1158015610ee4573d6000803e3d6000fd5b50506040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752925060009150a150600190565b600054600160a060020a031681565b600354600160a060020a031681565b600454600160a060020a031681565b600154600160a060020a031681565b60008054600160a060020a03163314610f6b57600080fd5b600160a060020a0382161515610fcb576040805160e560020a62461bcd02815260206004820152601860248201527f696e76616c6964206e65774f776e657220616464726573730000000000000000604482015290519081900360640190fd5b82600160a060020a031663f2fde38b836040518263ffffffff1660e060020a0281526004018082600160a060020a0316600160a060020a03168152602001915050600060405180830381600087803b15801561102657600080fd5b505af115801561103a573d6000803e3d6000fd5b505060408051600160a060020a0380881682528616602082015281517f18838a3b49e4b76edd553a08a7ae770b10cad20889e3d45de720694464f15ca09450908190039091019150a150600192915050565b600054600160a060020a031633146110a357600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008054600160a060020a031633146110ea57600080fd5b600160a060020a038216151561114a576040805160e560020a62461bcd02815260206004820152601860248201527f696e76616c6964205f6d656d6265727320616464726573730000000000000000604482015290519081900360640190fd5b6003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384811691909117918290556040519116907fc1ab8227dcc82b3165b89762b5698f88dd96b65581d137b10770a84b27df6a9090600090a2506001919050565b600254600160a060020a031681565b82600160a060020a031663a9059cbb83836040518363ffffffff1660e060020a0281526004018083600160a060020a0316600160a060020a0316815260200182815260200192505050602060405180830381600087803b15801561121e57600080fd5b505af1158015611232573d6000803e3d6000fd5b505050506040513d602081101561124857600080fd5b5051151561125557600080fd5b5050505600a165627a7a723058207532ec60ab49db31f322467ef7d7a7bfc597f21e151f511fc1c8fac5b589a1d20029

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

0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599

-----Decoded View---------------
Arg [0] : _token (address): 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599


Swarm Source

bzzr://7532ec60ab49db31f322467ef7d7a7bfc597f21e151f511fc1c8fac5b589a1d2

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.