ETH Price: $3,483.88 (+0.65%)
Gas: 5 Gwei

Contract

0x279C803E118609591e13e780269Cd7F77DeA0A72
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Migrate202084702024-07-01 1:45:1116 days ago1719798311IN
0x279C803E...77DeA0A72
0 ETH0.000899873.58391177
Migrate199528012024-05-26 8:17:1151 days ago1716711431IN
0x279C803E...77DeA0A72
0 ETH0.000472075.04369348
Migrate199033302024-05-19 10:16:3558 days ago1716113795IN
0x279C803E...77DeA0A72
0 ETH0.000766193.05164304
Migrate197823222024-05-02 12:04:5975 days ago1714651499IN
0x279C803E...77DeA0A72
0 ETH0.0031069112.6155658
Migrate197342252024-04-25 18:38:5982 days ago1714070339IN
0x279C803E...77DeA0A72
0 ETH0.004406717.89337373
Migrate196333132024-04-11 15:36:5996 days ago1712849819IN
0x279C803E...77DeA0A72
0 ETH0.0080228432.57823697
Migrate196060362024-04-07 19:56:47100 days ago1712519807IN
0x279C803E...77DeA0A72
0 ETH0.0014937415.95708248
Migrate195517922024-03-31 5:26:23107 days ago1711862783IN
0x279C803E...77DeA0A72
0 ETH0.0016369421.39855544
Migrate195019472024-03-24 4:09:59115 days ago1711253399IN
0x279C803E...77DeA0A72
0 ETH0.0038496915.33716701
Migrate193466062024-03-02 9:31:59136 days ago1709371919IN
0x279C803E...77DeA0A72
0 ETH0.0056741460.62247987
Migrate191310782024-02-01 4:01:11167 days ago1706760071IN
0x279C803E...77DeA0A72
0 ETH0.0020591121.99960435
Migrate189930622024-01-12 20:00:23186 days ago1705089623IN
0x279C803E...77DeA0A72
0 ETH0.0055253222.00656543
Migrate189760412024-01-10 10:45:59188 days ago1704883559IN
0x279C803E...77DeA0A72
0 ETH0.0059455124.61911525
Migrate189758422024-01-10 10:06:11188 days ago1704881171IN
0x279C803E...77DeA0A72
0 ETH0.0007334525.78586889
Migrate189758352024-01-10 10:04:47188 days ago1704881087IN
0x279C803E...77DeA0A72
0 ETH0.0006077828.42240305
Migrate189758072024-01-10 9:59:11188 days ago1704880751IN
0x279C803E...77DeA0A72
0 ETH0.0007207925.40514008
Migrate189757752024-01-10 9:52:47188 days ago1704880367IN
0x279C803E...77DeA0A72
0 ETH0.0068347727.22976365
Migrate189756482024-01-10 9:27:23188 days ago1704878843IN
0x279C803E...77DeA0A72
0 ETH0.0019440729.04991774
Migrate To189755402024-01-10 9:05:35188 days ago1704877535IN
0x279C803E...77DeA0A72
0 ETH0.0017262922.37730641
Migrate To189754562024-01-10 8:48:47188 days ago1704876527IN
0x279C803E...77DeA0A72
0 ETH0.0016928321.95037888
Migrate To189754482024-01-10 8:46:59188 days ago1704876419IN
0x279C803E...77DeA0A72
0 ETH0.0063068725.05719278
Migrate189456892024-01-06 4:04:35193 days ago1704513875IN
0x279C803E...77DeA0A72
0 ETH0.0042761417.03128002
Migrate189184362024-01-02 8:12:47196 days ago1704183167IN
0x279C803E...77DeA0A72
0 ETH0.0041401616.48891115
Migrate To189170302024-01-02 3:28:23197 days ago1704166103IN
0x279C803E...77DeA0A72
0 ETH0.0010125513.98460159
Migrate To189167262024-01-02 2:26:59197 days ago1704162419IN
0x279C803E...77DeA0A72
0 ETH0.0010010812.97874301
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
TokenMigration

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 11 : TokenMigration.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "./interfaces/IMigrationNFT.sol";
import "./interfaces/IMYCToken.sol";

/**
 * @title A TCR token to MYC token migration contract.
 * @author raymogg
 * @notice Allows users to call the `migrate` function, exchanging TCR for MYC at a 1:1 ratio.
 * @dev All burned TCR will be held in the contract.
 */
contract TokenMigration is AccessControl {
    address public immutable myc;
    IERC20 public immutable tcr;
    IMigrationNFT public nft;
    mapping(address => bool) public mintedNFT;
    // total amount of TCR successfully burned
    uint256 public burnedTCR;

    /**
     * @notice Emits when some TCR tokens are migrated to MYC tokens.
     * @param from The sender of the TCR tokens.
     * @param to The recipient of the MYC tokens.
     * @param amount The amount of TCR or MYC tokens.
     * @dev `amount` will be the same for TCR and MYC tokens as migration is done at a 1:1 ratio.
     */
    event Migrated(address indexed from, address indexed to, uint256 amount);

    /**
     * @notice Sets up the `DEFAULT_ADMIN_ROLE` role and assigns values for the MYC and TCR tokens.
     * @param admin The address to whom the `DEFAULT_ADMIN_ROLE` role will be assigned.
     * @param _myc The MYC token address.
     * @param _tcr The TCR token address.
     */
    constructor(
        address admin,
        address _myc,
        address _tcr
    ) {
        _setupRole(DEFAULT_ADMIN_ROLE, admin);
        myc = _myc;
        tcr = IERC20(_tcr);
    }

    /**
     * @notice Set the migration NFT contract address.
     * @param _nft Address to be used to mint the NFTs.
     * @custom:requirements The contract at address `_nft` must implement the IMigrationNFT interface.
     * @custom:requirements `msg.sender` is a member of the `DEFAULT_ADMIN_ROLE` role.
     */
    function setNFTContract(address _nft) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "NOT_ADMIN");
        nft = IMigrationNFT(_nft);
    }

    /**
     * @notice Safety function to allow an admin to withdraw any tokens accidently sent to this contract.
     * @param token The ERC20 token address to transfer out of this contract address.
     * @dev Does not check if tokens were sent by mistake or properly migrated.
     * @custom:requirements `msg.sender` is a member of the `DEFAULT_ADMIN_ROLE` role.
     */
    function withdrawTokens(address token) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "NOT_ADMIN");
        IERC20(token).transfer(
            msg.sender,
            IERC20(token).balanceOf(address(this))
        );
    }

    /**
     * @notice Migrate `amount` TCR tokens to `amount` MYC tokens, and transfer to a specified address.
     * @param amount The amount of TCR to be burnt, and thus MYC to be minted.
     * @param to The recipient address of the minted MYC tokens.
     */
    function migrateTo(uint256 amount, address to) external {
        require(to != address(0), "Migrating to 0 address");
        _migrate(amount, to, msg.sender);
    }

    /**
     * @notice Migrate `amount` TCR tokens to `amount` MYC tokens, and transfer to a the calling address.
     * @param amount The amount of TCR to be burnt, and thus MYC to be minted.
     */
    function migrate(uint256 amount) external {
        _migrate(amount, msg.sender, msg.sender);
    }

    /**
     * @notice Allows the exchange of TCR for MYC at a 1:1 ratio.
     * @param amount The amount of TCR that is being migrated to MYC.
     * @param to The recipient address of MYC tokens.
     * @param from The address burning their TCR.
     * @dev This contract holds migrated TCR and mints fresh MYC to the `to` address.
     * @dev Emits a `Migrated` event.
     * @custom:requirement `mintingPaused == false`.
     * @custom:requirement `amount > 0`.
     */
    function _migrate(
        uint256 amount,
        address to,
        address from
    ) private {
        require(amount > 0, "INVALID_AMOUNT");
        // todo: add counter for amount of tokens "burned" via migration
        bool success = tcr.transferFrom(from, address(this), amount);
        require(success, "XFER_ERROR");
        burnedTCR += amount;

        // will revert if minting is paused
        IMYCToken(myc).mint(to, amount);

        // issue NFT if this account has not yet migrated before
        if (!mintedNFT[to]) {
            mintedNFT[to] = true;
            nft.mint(to);
        }
        emit Migrated(from, to, amount);
    }
}

File 2 of 11 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 3 of 11 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 4 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 5 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

File 7 of 11 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 8 of 11 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 9 of 11 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 10 of 11 : IMYCToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

interface IMYCToken  {
    /**
    * @notice Returns true if minting is paused on the token.
    */
    function mintingPaused() external returns(bool);

    /**
    * @notice mints new MYC tokens
    * @param to the receiver of the newly minted tokens
    * @param amount the amount of tokens to mint
    */
    function mint(address to, uint256 amount) external;
}

File 11 of 11 : IMigrationNFT.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

interface IMigrationNFT  {
    /**
    * @notice sets the contract address in charge of executing the minting of NFTs.
    * @param _migrateContract the address with permissions to call the mintNFT function
    */
    function setMinterAddress(address _migrateContract) external;
    
    /**
    * @notice mints a single migration NFT to the to address
    * @param _to the receiver of the NFT.
    */
    function mint(address _to) external;
}

Settings
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"_myc","type":"address"},{"internalType":"address","name":"_tcr","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Migrated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnedTCR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"migrateTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"myc","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"contract IMigrationNFT","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nft","type":"address"}],"name":"setNFTContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tcr","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5060405162001ea638038062001ea68339818101604052810190620000379190620002a0565b6200004c6000801b84620000bd60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050505050620002fc565b620000cf8282620000d360201b60201c565b5050565b620000e58282620001c460201b60201c565b620001c057600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001656200022e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000268826200023b565b9050919050565b6200027a816200025b565b81146200028657600080fd5b50565b6000815190506200029a816200026f565b92915050565b600080600060608486031215620002bc57620002bb62000236565b5b6000620002cc8682870162000289565b9350506020620002df8682870162000289565b9250506040620002f28682870162000289565b9150509250925092565b60805160a051611b7662000330600039600081816107bb0152610a920152600081816106960152610b9c0152611b766000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80637da68f1011610097578063a7ccabdf11610066578063a7ccabdf146102ab578063c438aeb5146102c7578063d547741f146102e5578063e771640a1461030157610100565b80637da68f101461020f5780638a98e96a1461023f57806391d148541461025d578063a217fddf1461028d57610100565b8063454b0608116100d3578063454b06081461019d57806347ccca02146101b957806349df728c146101d75780636bcea701146101f357610100565b806301ffc9a714610105578063248a9ca3146101355780632f2ff15d1461016557806336568abe14610181575b600080fd5b61011f600480360381019061011a91906110ff565b61031f565b60405161012c9190611147565b60405180910390f35b61014f600480360381019061014a9190611198565b610399565b60405161015c91906111d4565b60405180910390f35b61017f600480360381019061017a919061124d565b6103b8565b005b61019b6004803603810190610196919061124d565b6103d9565b005b6101b760048036038101906101b291906112c3565b61045c565b005b6101c161046a565b6040516101ce919061134f565b60405180910390f35b6101f160048036038101906101ec919061136a565b610490565b005b61020d60048036038101906102089190611397565b6105f5565b005b6102296004803603810190610224919061136a565b610674565b6040516102369190611147565b60405180910390f35b610247610694565b60405161025491906113e6565b60405180910390f35b6102776004803603810190610272919061124d565b6106b8565b6040516102849190611147565b60405180910390f35b610295610722565b6040516102a291906111d4565b60405180910390f35b6102c560048036038101906102c0919061136a565b610729565b005b6102cf6107b9565b6040516102dc9190611422565b60405180910390f35b6102ff60048036038101906102fa919061124d565b6107dd565b005b6103096107fe565b604051610316919061144c565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610392575061039182610804565b5b9050919050565b6000806000838152602001908152602001600020600101549050919050565b6103c182610399565b6103ca8161086e565b6103d48383610882565b505050565b6103e1610962565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461044e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610445906114ea565b60405180910390fd5b610458828261096a565b5050565b610467813333610a4b565b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61049d6000801b336106b8565b6104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611556565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161053291906113e6565b60206040518083038186803b15801561054a57600080fd5b505afa15801561055e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610582919061158b565b6040518363ffffffff1660e01b815260040161059f9291906115b8565b602060405180830381600087803b1580156105b957600080fd5b505af11580156105cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f1919061160d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c90611686565b60405180910390fd5b610670828233610a4b565b5050565b60026020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b6107366000801b336106b8565b610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90611556565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6107e682610399565b6107ef8161086e565b6107f9838361096a565b505050565b60035481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61087f8161087a610962565b610dc9565b50565b61088c82826106b8565b61095e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610903610962565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b61097482826106b8565b15610a4757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109ec610962565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008311610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a85906116f2565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd8330876040518463ffffffff1660e01b8152600401610aed93929190611712565b602060405180830381600087803b158015610b0757600080fd5b505af1158015610b1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3f919061160d565b905080610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890611795565b60405180910390fd5b8360036000828254610b9391906117e4565b925050819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166340c10f1984866040518363ffffffff1660e01b8152600401610bf59291906115b8565b600060405180830381600087803b158015610c0f57600080fd5b505af1158015610c23573d6000803e3d6000fd5b50505050600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d5e576001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842846040518263ffffffff1660e01b8152600401610d2b91906113e6565b600060405180830381600087803b158015610d4557600080fd5b505af1158015610d59573d6000803e3d6000fd5b505050505b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f928fd5531324ee87d76cc5307dc37580174da76b85cd546da631b2670bc266b586604051610dbb919061144c565b60405180910390a350505050565b610dd382826106b8565b610e6257610df88173ffffffffffffffffffffffffffffffffffffffff166014610e66565b610e068360001c6020610e66565b604051602001610e1792919061194c565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5991906119d0565b60405180910390fd5b5050565b606060006002836002610e7991906119f2565b610e8391906117e4565b67ffffffffffffffff811115610e9c57610e9b611a4c565b5b6040519080825280601f01601f191660200182016040528015610ece5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110610f0657610f05611a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110610f6a57610f69611a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002610faa91906119f2565b610fb491906117e4565b90505b6001811115611054577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110610ff657610ff5611a7b565b5b1a60f81b82828151811061100d5761100c611a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061104d90611aaa565b9050610fb7565b5060008414611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90611b20565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6110dc816110a7565b81146110e757600080fd5b50565b6000813590506110f9816110d3565b92915050565b600060208284031215611115576111146110a2565b5b6000611123848285016110ea565b91505092915050565b60008115159050919050565b6111418161112c565b82525050565b600060208201905061115c6000830184611138565b92915050565b6000819050919050565b61117581611162565b811461118057600080fd5b50565b6000813590506111928161116c565b92915050565b6000602082840312156111ae576111ad6110a2565b5b60006111bc84828501611183565b91505092915050565b6111ce81611162565b82525050565b60006020820190506111e960008301846111c5565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061121a826111ef565b9050919050565b61122a8161120f565b811461123557600080fd5b50565b60008135905061124781611221565b92915050565b60008060408385031215611264576112636110a2565b5b600061127285828601611183565b925050602061128385828601611238565b9150509250929050565b6000819050919050565b6112a08161128d565b81146112ab57600080fd5b50565b6000813590506112bd81611297565b92915050565b6000602082840312156112d9576112d86110a2565b5b60006112e7848285016112ae565b91505092915050565b6000819050919050565b600061131561131061130b846111ef565b6112f0565b6111ef565b9050919050565b6000611327826112fa565b9050919050565b60006113398261131c565b9050919050565b6113498161132e565b82525050565b60006020820190506113646000830184611340565b92915050565b6000602082840312156113805761137f6110a2565b5b600061138e84828501611238565b91505092915050565b600080604083850312156113ae576113ad6110a2565b5b60006113bc858286016112ae565b92505060206113cd85828601611238565b9150509250929050565b6113e08161120f565b82525050565b60006020820190506113fb60008301846113d7565b92915050565b600061140c8261131c565b9050919050565b61141c81611401565b82525050565b60006020820190506114376000830184611413565b92915050565b6114468161128d565b82525050565b6000602082019050611461600083018461143d565b92915050565b600082825260208201905092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006114d4602f83611467565b91506114df82611478565b604082019050919050565b60006020820190508181036000830152611503816114c7565b9050919050565b7f4e4f545f41444d494e0000000000000000000000000000000000000000000000600082015250565b6000611540600983611467565b915061154b8261150a565b602082019050919050565b6000602082019050818103600083015261156f81611533565b9050919050565b60008151905061158581611297565b92915050565b6000602082840312156115a1576115a06110a2565b5b60006115af84828501611576565b91505092915050565b60006040820190506115cd60008301856113d7565b6115da602083018461143d565b9392505050565b6115ea8161112c565b81146115f557600080fd5b50565b600081519050611607816115e1565b92915050565b600060208284031215611623576116226110a2565b5b6000611631848285016115f8565b91505092915050565b7f4d6967726174696e6720746f2030206164647265737300000000000000000000600082015250565b6000611670601683611467565b915061167b8261163a565b602082019050919050565b6000602082019050818103600083015261169f81611663565b9050919050565b7f494e56414c49445f414d4f554e54000000000000000000000000000000000000600082015250565b60006116dc600e83611467565b91506116e7826116a6565b602082019050919050565b6000602082019050818103600083015261170b816116cf565b9050919050565b600060608201905061172760008301866113d7565b61173460208301856113d7565b611741604083018461143d565b949350505050565b7f584645525f4552524f5200000000000000000000000000000000000000000000600082015250565b600061177f600a83611467565b915061178a82611749565b602082019050919050565b600060208201905081810360008301526117ae81611772565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ef8261128d565b91506117fa8361128d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561182f5761182e6117b5565b5b828201905092915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061187b60178361183a565b915061188682611845565b601782019050919050565b600081519050919050565b60005b838110156118ba57808201518184015260208101905061189f565b838111156118c9576000848401525b50505050565b60006118da82611891565b6118e4818561183a565b93506118f481856020860161189c565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061193660118361183a565b915061194182611900565b601182019050919050565b60006119578261186e565b915061196382856118cf565b915061196e82611929565b915061197a82846118cf565b91508190509392505050565b6000601f19601f8301169050919050565b60006119a282611891565b6119ac8185611467565b93506119bc81856020860161189c565b6119c581611986565b840191505092915050565b600060208201905081810360008301526119ea8184611997565b905092915050565b60006119fd8261128d565b9150611a088361128d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a4157611a406117b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611ab58261128d565b91506000821415611ac957611ac86117b5565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000611b0a602083611467565b9150611b1582611ad4565b602082019050919050565b60006020820190508181036000830152611b3981611afd565b905091905056fea264697066735822122042d24369010bd4746ef893cfcb0d2b6e4a857aebe504bbc2415d476be267991864736f6c634300080900330000000000000000000000000ecf023ca0f37a5816039465c305fdb6feb632040000000000000000000000004b13006980acb09645131b91d259eaa111eaf5ba0000000000000000000000009c4a4204b79dd291d6b6571c5be8bbcd0622f050

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80637da68f1011610097578063a7ccabdf11610066578063a7ccabdf146102ab578063c438aeb5146102c7578063d547741f146102e5578063e771640a1461030157610100565b80637da68f101461020f5780638a98e96a1461023f57806391d148541461025d578063a217fddf1461028d57610100565b8063454b0608116100d3578063454b06081461019d57806347ccca02146101b957806349df728c146101d75780636bcea701146101f357610100565b806301ffc9a714610105578063248a9ca3146101355780632f2ff15d1461016557806336568abe14610181575b600080fd5b61011f600480360381019061011a91906110ff565b61031f565b60405161012c9190611147565b60405180910390f35b61014f600480360381019061014a9190611198565b610399565b60405161015c91906111d4565b60405180910390f35b61017f600480360381019061017a919061124d565b6103b8565b005b61019b6004803603810190610196919061124d565b6103d9565b005b6101b760048036038101906101b291906112c3565b61045c565b005b6101c161046a565b6040516101ce919061134f565b60405180910390f35b6101f160048036038101906101ec919061136a565b610490565b005b61020d60048036038101906102089190611397565b6105f5565b005b6102296004803603810190610224919061136a565b610674565b6040516102369190611147565b60405180910390f35b610247610694565b60405161025491906113e6565b60405180910390f35b6102776004803603810190610272919061124d565b6106b8565b6040516102849190611147565b60405180910390f35b610295610722565b6040516102a291906111d4565b60405180910390f35b6102c560048036038101906102c0919061136a565b610729565b005b6102cf6107b9565b6040516102dc9190611422565b60405180910390f35b6102ff60048036038101906102fa919061124d565b6107dd565b005b6103096107fe565b604051610316919061144c565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610392575061039182610804565b5b9050919050565b6000806000838152602001908152602001600020600101549050919050565b6103c182610399565b6103ca8161086e565b6103d48383610882565b505050565b6103e1610962565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461044e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610445906114ea565b60405180910390fd5b610458828261096a565b5050565b610467813333610a4b565b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61049d6000801b336106b8565b6104dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d390611556565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161053291906113e6565b60206040518083038186803b15801561054a57600080fd5b505afa15801561055e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610582919061158b565b6040518363ffffffff1660e01b815260040161059f9291906115b8565b602060405180830381600087803b1580156105b957600080fd5b505af11580156105cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105f1919061160d565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065c90611686565b60405180910390fd5b610670828233610a4b565b5050565b60026020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000004b13006980acb09645131b91d259eaa111eaf5ba81565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000801b81565b6107366000801b336106b8565b610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90611556565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b7f0000000000000000000000009c4a4204b79dd291d6b6571c5be8bbcd0622f05081565b6107e682610399565b6107ef8161086e565b6107f9838361096a565b505050565b60035481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61087f8161087a610962565b610dc9565b50565b61088c82826106b8565b61095e57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610903610962565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b61097482826106b8565b15610a4757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109ec610962565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008311610a8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a85906116f2565b60405180910390fd5b60007f0000000000000000000000009c4a4204b79dd291d6b6571c5be8bbcd0622f05073ffffffffffffffffffffffffffffffffffffffff166323b872dd8330876040518463ffffffff1660e01b8152600401610aed93929190611712565b602060405180830381600087803b158015610b0757600080fd5b505af1158015610b1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3f919061160d565b905080610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890611795565b60405180910390fd5b8360036000828254610b9391906117e4565b925050819055507f0000000000000000000000004b13006980acb09645131b91d259eaa111eaf5ba73ffffffffffffffffffffffffffffffffffffffff166340c10f1984866040518363ffffffff1660e01b8152600401610bf59291906115b8565b600060405180830381600087803b158015610c0f57600080fd5b505af1158015610c23573d6000803e3d6000fd5b50505050600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d5e576001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842846040518263ffffffff1660e01b8152600401610d2b91906113e6565b600060405180830381600087803b158015610d4557600080fd5b505af1158015610d59573d6000803e3d6000fd5b505050505b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f928fd5531324ee87d76cc5307dc37580174da76b85cd546da631b2670bc266b586604051610dbb919061144c565b60405180910390a350505050565b610dd382826106b8565b610e6257610df88173ffffffffffffffffffffffffffffffffffffffff166014610e66565b610e068360001c6020610e66565b604051602001610e1792919061194c565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5991906119d0565b60405180910390fd5b5050565b606060006002836002610e7991906119f2565b610e8391906117e4565b67ffffffffffffffff811115610e9c57610e9b611a4c565b5b6040519080825280601f01601f191660200182016040528015610ece5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110610f0657610f05611a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110610f6a57610f69611a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002610faa91906119f2565b610fb491906117e4565b90505b6001811115611054577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110610ff657610ff5611a7b565b5b1a60f81b82828151811061100d5761100c611a7b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061104d90611aaa565b9050610fb7565b5060008414611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90611b20565b60405180910390fd5b8091505092915050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6110dc816110a7565b81146110e757600080fd5b50565b6000813590506110f9816110d3565b92915050565b600060208284031215611115576111146110a2565b5b6000611123848285016110ea565b91505092915050565b60008115159050919050565b6111418161112c565b82525050565b600060208201905061115c6000830184611138565b92915050565b6000819050919050565b61117581611162565b811461118057600080fd5b50565b6000813590506111928161116c565b92915050565b6000602082840312156111ae576111ad6110a2565b5b60006111bc84828501611183565b91505092915050565b6111ce81611162565b82525050565b60006020820190506111e960008301846111c5565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061121a826111ef565b9050919050565b61122a8161120f565b811461123557600080fd5b50565b60008135905061124781611221565b92915050565b60008060408385031215611264576112636110a2565b5b600061127285828601611183565b925050602061128385828601611238565b9150509250929050565b6000819050919050565b6112a08161128d565b81146112ab57600080fd5b50565b6000813590506112bd81611297565b92915050565b6000602082840312156112d9576112d86110a2565b5b60006112e7848285016112ae565b91505092915050565b6000819050919050565b600061131561131061130b846111ef565b6112f0565b6111ef565b9050919050565b6000611327826112fa565b9050919050565b60006113398261131c565b9050919050565b6113498161132e565b82525050565b60006020820190506113646000830184611340565b92915050565b6000602082840312156113805761137f6110a2565b5b600061138e84828501611238565b91505092915050565b600080604083850312156113ae576113ad6110a2565b5b60006113bc858286016112ae565b92505060206113cd85828601611238565b9150509250929050565b6113e08161120f565b82525050565b60006020820190506113fb60008301846113d7565b92915050565b600061140c8261131c565b9050919050565b61141c81611401565b82525050565b60006020820190506114376000830184611413565b92915050565b6114468161128d565b82525050565b6000602082019050611461600083018461143d565b92915050565b600082825260208201905092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b60006114d4602f83611467565b91506114df82611478565b604082019050919050565b60006020820190508181036000830152611503816114c7565b9050919050565b7f4e4f545f41444d494e0000000000000000000000000000000000000000000000600082015250565b6000611540600983611467565b915061154b8261150a565b602082019050919050565b6000602082019050818103600083015261156f81611533565b9050919050565b60008151905061158581611297565b92915050565b6000602082840312156115a1576115a06110a2565b5b60006115af84828501611576565b91505092915050565b60006040820190506115cd60008301856113d7565b6115da602083018461143d565b9392505050565b6115ea8161112c565b81146115f557600080fd5b50565b600081519050611607816115e1565b92915050565b600060208284031215611623576116226110a2565b5b6000611631848285016115f8565b91505092915050565b7f4d6967726174696e6720746f2030206164647265737300000000000000000000600082015250565b6000611670601683611467565b915061167b8261163a565b602082019050919050565b6000602082019050818103600083015261169f81611663565b9050919050565b7f494e56414c49445f414d4f554e54000000000000000000000000000000000000600082015250565b60006116dc600e83611467565b91506116e7826116a6565b602082019050919050565b6000602082019050818103600083015261170b816116cf565b9050919050565b600060608201905061172760008301866113d7565b61173460208301856113d7565b611741604083018461143d565b949350505050565b7f584645525f4552524f5200000000000000000000000000000000000000000000600082015250565b600061177f600a83611467565b915061178a82611749565b602082019050919050565b600060208201905081810360008301526117ae81611772565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117ef8261128d565b91506117fa8361128d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561182f5761182e6117b5565b5b828201905092915050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b600061187b60178361183a565b915061188682611845565b601782019050919050565b600081519050919050565b60005b838110156118ba57808201518184015260208101905061189f565b838111156118c9576000848401525b50505050565b60006118da82611891565b6118e4818561183a565b93506118f481856020860161189c565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b600061193660118361183a565b915061194182611900565b601182019050919050565b60006119578261186e565b915061196382856118cf565b915061196e82611929565b915061197a82846118cf565b91508190509392505050565b6000601f19601f8301169050919050565b60006119a282611891565b6119ac8185611467565b93506119bc81856020860161189c565b6119c581611986565b840191505092915050565b600060208201905081810360008301526119ea8184611997565b905092915050565b60006119fd8261128d565b9150611a088361128d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a4157611a406117b5565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611ab58261128d565b91506000821415611ac957611ac86117b5565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000611b0a602083611467565b9150611b1582611ad4565b602082019050919050565b60006020820190508181036000830152611b3981611afd565b905091905056fea264697066735822122042d24369010bd4746ef893cfcb0d2b6e4a857aebe504bbc2415d476be267991864736f6c63430008090033

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

0000000000000000000000000ecf023ca0f37a5816039465c305fdb6feb632040000000000000000000000004b13006980acb09645131b91d259eaa111eaf5ba0000000000000000000000009c4a4204b79dd291d6b6571c5be8bbcd0622f050

-----Decoded View---------------
Arg [0] : admin (address): 0x0Ecf023Ca0f37a5816039465c305FdB6fEb63204
Arg [1] : _myc (address): 0x4b13006980aCB09645131b91D259eaA111eaF5Ba
Arg [2] : _tcr (address): 0x9C4A4204B79dd291D6b6571C5BE8BbcD0622F050

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000ecf023ca0f37a5816039465c305fdb6feb63204
Arg [1] : 0000000000000000000000004b13006980acb09645131b91d259eaa111eaf5ba
Arg [2] : 0000000000000000000000009c4a4204b79dd291d6b6571c5be8bbcd0622f050


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.