ETH Price: $1,979.90 (-5.18%)

Contract

0xe78aEAA092b42D451A24F0c098dccEA74C880e51
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Freezelock Token222402992025-04-10 18:23:59330 days ago1744309439IN
GYROWIN: Reserve Freezelock
0 ETH0.000185422

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x9beb789c...B832FE349
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
GyrowinFreezeLock

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: BSD-3-Clause
pragma solidity = 0.8.28;

import "@openzeppelin/[email protected]/token/ERC20/utils/SafeERC20.sol";

/**
* Gyrowin FreezeLock Contract
* https://gyro.win
*/

enum Status {
    Claimed,
    Unclaimed
}

struct FreezeLock {
    uint256 unlockAmount;
    uint256 freezeStartTime;
    uint256 freezeEndTime;
    Status freezeStatus;
    string description;
}

contract GyrowinFreezeLock {
    using SafeERC20 for IERC20;

    modifier onlyOwner() {
        require(owner == msg.sender, "GYROWIN: !owner");
        _;
    }

    /// @notice owner of the contract
    /// @dev should be multisig address
    address public owner;

    /// @notice address of the gyrowin token
    address public gyrowin;

    /// @notice time period of the freeze lock
    /// @dev set it to 7 days and is not reversible
    uint256 public constant FREEZE_DURATION = 604800; // time period of the freeze lock
    uint256 requestId;

    uint256 public nextRequestId;

    /// @notice request id should always be unique
    /// @dev request Id => freezeLock
    mapping(uint256 => FreezeLock) freezeRequests;

    /// @notice total gyrowin locked in the contract
    uint256 public locked;

    receive() payable external {}

    event LockTokens(uint amount, uint lockTime, address lockedBy);
    event Withdrawal(uint amount, uint withdrawalTime, string description);
    event requestWithdrawl(uint indexed id, uint amount, uint freezeStart, uint freezeEnd, string description);


    /**
     * @notice Construct a new FreezeLock
    */
    constructor (address _gyrowin) {
        owner = msg.sender;
        gyrowin = _gyrowin;
    }


    /**
     * @notice Locked tokens in the contract with freeze lock rules
     * @param _amount amount of the token to be locked in the contract
     */
    function freezelockToken(uint256 _amount) external onlyOwner {
        require(_amount > 0, "GYROWIN: zero amount!");
        IERC20(gyrowin).safeTransferFrom(msg.sender, address(this), _amount);

        locked += _amount;

        emit LockTokens(_amount, block.timestamp, msg.sender);
    }

    /**
     * @notice Request the amount of tokens before its unlocked
     * @param _amount request amount for unlock
     */
    function requestWithdraw(uint256 _amount, string memory _description) external onlyOwner {
        require(_amount <= locked, "GYROWIN: exceeds locked amount");

        freezeRequests[requestId].freezeStartTime = block.timestamp;
        freezeRequests[requestId].freezeEndTime =
            block.timestamp +
            FREEZE_DURATION;
        freezeRequests[requestId].unlockAmount = _amount;
        freezeRequests[requestId].freezeStatus = Status.Unclaimed;
        freezeRequests[requestId].description = _description;

        emit requestWithdrawl(
            requestId,
            _amount,
            freezeRequests[requestId].freezeStartTime,
            freezeRequests[requestId].freezeEndTime,
            freezeRequests[requestId].description
        );

        requestId++;
        nextRequestId = requestId;
    }

    /**
     * @notice Withdraw the unlocked token amount after the freezing period
     * @param _requestId id for the unlocking request
     * @param receiver address of the accoun that receives the unlocked token
     */
    function withdraw(
        uint256 _requestId,
        address receiver
    ) public onlyOwner {
        require(_requestId < nextRequestId, "GYROWIN: no request Id found");
        require(freezeRequests[_requestId].freezeEndTime < block.timestamp, "GYROWIN: freeze lock not over");
        require(freezeRequests[_requestId].freezeStatus == Status.Unclaimed, "GYROWIN: amount already claimed");

        emit Withdrawal(
            freezeRequests[_requestId].unlockAmount,
            block.timestamp,
            freezeRequests[_requestId].description
        );

        IERC20(gyrowin).safeTransfer(receiver, freezeRequests[_requestId].unlockAmount);

        locked -= freezeRequests[_requestId].unlockAmount;

        freezeRequests[_requestId].freezeStatus = Status.Claimed;
        freezeRequests[_requestId].unlockAmount = 0;
    }

    /**
     * @notice checks for the gyrowin token, that wasn't locked in the contract
     * @return amount that can be withdrawn
     */
    function withdrawableAmount() public view returns (uint256) {
        uint256 _withdrawableAmount = IERC20(gyrowin).balanceOf(address(this)) - locked;
        return _withdrawableAmount;
    }

    /**
     * @notice Check the information of the withdrawl request
     * @param _requestId id of the requested withdrawl
     * @return freezeStartTime time of the freeze lock request
     * @return freezeEndTime end time of the freeze lock
     * @return unlockAmount requestd amount to be unlocked
     * @return freezeStatus check if the token is clamimed after the 7 days freeze period
     */
    function viewWithdrawlRequest(
        uint _requestId
    ) public view returns (uint, uint, uint, Status) {
        return (
            freezeRequests[_requestId].freezeStartTime,
            freezeRequests[_requestId].freezeEndTime,
            freezeRequests[_requestId].unlockAmount,
            freezeRequests[_requestId].freezeStatus
        );
    }

    /**
     * @notice change the address of the contract owner address
     * @param _owner new owner of the contract
     */
    function changeOwner(address _owner) external onlyOwner {
        require(owner != address(0), "can't be the zero address");
        owner = _owner;
    }

    /**
     * @return address of the owner
     */
    function isOwner() external view returns (address) {
        return owner;
    }

    /**
     * @notice Resuce chain native token that is sent by mistake to this contract
     * @param to addresss of the account that recives the native token
     * @param amount ammount of the token trapped
     */
    function rescueNative(address payable to, uint256 amount) external onlyOwner {
        require(to != address(0), "GYROWIN: can't be zero address");
        require(amount <= address(this).balance, "GYROWIN: insufficent balance");
        (bool sent,) = payable(to).call{value: amount}("");
        require(sent, "failed to send");
    }

    /**
     * @notice Resuce ERC20 tokens that are sent by mistake to this contract
     * @param token address of the token, that is trapped in the token
     * @param to addresss of the account that recives the native token
     * @param amount ammount of the token trapped
     * @dev Might have instances where someone would send gyrowin token to this address
     */
    function rescueERC20(address token, address to, uint256 amount) external payable onlyOwner {
        require(to != address(0), "GYROWIN: can't be zero address");
        // check if the token is gyrowin
        if (token == gyrowin) {
            require(amount <= withdrawableAmount(), "GYROWIN: exceeds unlocked tokens");
        } else {
            require(amount <= IERC20(token).balanceOf(address(this)), "GYROWIN: insufficent balance");
        }

        IERC20(token).safeTransfer(to, amount);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../IERC20.sol";
import {IERC1363} from "../../../interfaces/IERC1363.sol";
import {Address} from "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC-20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    /**
     * @dev An operation with an ERC-20 token failed.
     */
    error SafeERC20FailedOperation(address token);

    /**
     * @dev Indicates a failed `decreaseAllowance` request.
     */
    error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease);

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value)));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        forceApprove(token, spender, oldAllowance + value);
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no
     * value, non-reverting calls are assumed to be successful.
     *
     * IMPORTANT: If the token implements ERC-7674 (ERC-20 with temporary allowance), and if the "client"
     * smart contract uses ERC-7674 to set temporary allowances, then the "client" smart contract should avoid using
     * this function. Performing a {safeIncreaseAllowance} or {safeDecreaseAllowance} operation on a token contract
     * that has a non-zero temporary allowance (for that particular owner-spender) will result in unexpected behavior.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal {
        unchecked {
            uint256 currentAllowance = token.allowance(address(this), spender);
            if (currentAllowance < requestedDecrease) {
                revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease);
            }
            forceApprove(token, spender, currentAllowance - requestedDecrease);
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     *
     * NOTE: If the token implements ERC-7674, this function will not modify any temporary allowance. This function
     * only sets the "standard" allowance. Any temporary allowance will remain active, in addition to the value being
     * set here.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value));

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0)));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Performs an {ERC1363} transferAndCall, with a fallback to the simple {ERC20} transfer if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            safeTransfer(token, to, value);
        } else if (!token.transferAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} transferFromAndCall, with a fallback to the simple {ERC20} transferFrom if the target
     * has no code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * Reverts if the returned value is other than `true`.
     */
    function transferFromAndCallRelaxed(
        IERC1363 token,
        address from,
        address to,
        uint256 value,
        bytes memory data
    ) internal {
        if (to.code.length == 0) {
            safeTransferFrom(token, from, to, value);
        } else if (!token.transferFromAndCall(from, to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Performs an {ERC1363} approveAndCall, with a fallback to the simple {ERC20} approve if the target has no
     * code. This can be used to implement an {ERC721}-like safe transfer that rely on {ERC1363} checks when
     * targeting contracts.
     *
     * NOTE: When the recipient address (`to`) has no code (i.e. is an EOA), this function behaves as {forceApprove}.
     * Opposedly, when the recipient address (`to`) has code, this function only attempts to call {ERC1363-approveAndCall}
     * once without retrying, and relies on the returned value to be true.
     *
     * Reverts if the returned value is other than `true`.
     */
    function approveAndCallRelaxed(IERC1363 token, address to, uint256 value, bytes memory data) internal {
        if (to.code.length == 0) {
            forceApprove(token, to, value);
        } else if (!token.approveAndCall(to, value, data)) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturnBool} that reverts if call fails to meet the requirements.
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            let success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            // bubble errors
            if iszero(success) {
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize())
                revert(ptr, returndatasize())
            }
            returnSize := returndatasize()
            returnValue := mload(0)
        }

        if (returnSize == 0 ? address(token).code.length == 0 : returnValue != 1) {
            revert SafeERC20FailedOperation(address(token));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silently catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        bool success;
        uint256 returnSize;
        uint256 returnValue;
        assembly ("memory-safe") {
            success := call(gas(), token, 0, add(data, 0x20), mload(data), 0, 0x20)
            returnSize := returndatasize()
            returnValue := mload(0)
        }
        return success && (returnSize == 0 ? address(token).code.length > 0 : returnValue == 1);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)

pragma solidity ^0.8.20;

import {Errors} from "./Errors.sol";

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert Errors.InsufficientBalance(address(this).balance, amount);
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert Errors.FailedCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {Errors.FailedCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert Errors.InsufficientBalance(address(this).balance, value);
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case
     * of an unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {Errors.FailedCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            assembly ("memory-safe") {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert Errors.FailedCall();
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC1363.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC165} from "./IERC165.sol";

/**
 * @title IERC1363
 * @dev Interface of the ERC-1363 standard as defined in the https://eips.ethereum.org/EIPS/eip-1363[ERC-1363].
 *
 * Defines an extension interface for ERC-20 tokens that supports executing code on a recipient contract
 * after `transfer` or `transferFrom`, or code on a spender contract after `approve`, in a single transaction.
 */
interface IERC1363 is IERC20, IERC165 {
    /*
     * Note: the ERC-165 identifier for this interface is 0xb0202a11.
     * 0xb0202a11 ===
     *   bytes4(keccak256('transferAndCall(address,uint256)')) ^
     *   bytes4(keccak256('transferAndCall(address,uint256,bytes)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256)')) ^
     *   bytes4(keccak256('transferFromAndCall(address,address,uint256,bytes)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256)')) ^
     *   bytes4(keccak256('approveAndCall(address,uint256,bytes)'))
     */

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from the caller's account to `to`
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the allowance mechanism
     * and then calls {IERC1363Receiver-onTransferReceived} on `to`.
     * @param from The address which you want to send tokens from.
     * @param to The address which you want to transfer to.
     * @param value The amount of tokens to be transferred.
     * @param data Additional data with no specified format, sent in call to `to`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function transferFromAndCall(address from, address to, uint256 value, bytes calldata data) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value) external returns (bool);

    /**
     * @dev Sets a `value` amount of tokens as the allowance of `spender` over the
     * caller's tokens and then calls {IERC1363Spender-onApprovalReceived} on `spender`.
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     * @param data Additional data with no specified format, sent in call to `spender`.
     * @return A boolean value indicating whether the operation succeeded unless throwing.
     */
    function approveAndCall(address spender, uint256 value, bytes calldata data) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

File 6 of 9 : Errors.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of common custom errors used in multiple contracts
 *
 * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.
 * It is recommended to avoid relying on the error API for critical functionality.
 *
 * _Available since v5.1._
 */
library Errors {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error InsufficientBalance(uint256 balance, uint256 needed);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedCall();

    /**
     * @dev The deployment failed.
     */
    error FailedDeployment();

    /**
     * @dev A necessary precompile is missing.
     */
    error MissingPrecompile(address);
}

File 7 of 9 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../utils/introspection/IERC165.sol";

File 8 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "../token/ERC20/IERC20.sol";

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * 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[ERC 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);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_gyrowin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lockTime","type":"uint256"},{"indexed":false,"internalType":"address","name":"lockedBy","type":"address"}],"name":"LockTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"withdrawalTime","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"Withdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"freezeStart","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"freezeEnd","type":"uint256"},{"indexed":false,"internalType":"string","name":"description","type":"string"}],"name":"requestWithdrawl","type":"event"},{"inputs":[],"name":"FREEZE_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"changeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"freezelockToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gyrowin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextRequestId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_description","type":"string"}],"name":"requestWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_requestId","type":"uint256"}],"name":"viewWithdrawlRequest","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"enum Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_requestId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

0x6080604052348015600e575f5ffd5b506040516111dc3803806111dc833981016040819052602b91605c565b5f8054336001600160a01b031991821617909155600180549091166001600160a01b03929092169190911790556087565b5f60208284031215606b575f5ffd5b81516001600160a01b03811681146080575f5ffd5b9392505050565b611148806100945f395ff3fe6080604052600436106100db575f3560e01c8063951303f51161007c578063b2118a8d11610057578063b2118a8d14610230578063ca7300e214610243578063cf30901214610297578063f79d0731146102ac575f5ffd5b8063951303f5146101de578063a6f9dae1146101f2578063ab1fda0d14610211575f5ffd5b80635be2ad35116100b75780635be2ad35146101455780636a84a985146101645780638da5cb5b1461018c5780638f32d59b146101c2575f5ffd5b8062f714ce146100e65780630d57afa6146101075780631291f79d14610126575f5ffd5b366100e257005b5f5ffd5b3480156100f1575f5ffd5b50610105610100366004610c7a565b6102c2565b005b348015610112575f5ffd5b50610105610121366004610cbc565b6104d2565b348015610131575f5ffd5b50610105610140366004610d79565b61063c565b348015610150575f5ffd5b5061010561015f366004610da3565b6107a0565b34801561016f575f5ffd5b5061017960035481565b6040519081526020015b60405180910390f35b348015610197575f5ffd5b505f546101aa906001600160a01b031681565b6040516001600160a01b039091168152602001610183565b3480156101cd575f5ffd5b505f546001600160a01b03166101aa565b3480156101e9575f5ffd5b5061017961087f565b3480156101fd575f5ffd5b5061010561020c366004610dba565b610902565b34801561021c575f5ffd5b506001546101aa906001600160a01b031681565b61010561023e366004610ddc565b6109a3565b34801561024e575f5ffd5b5061028761025d366004610da3565b5f908152600460205260409020600181015460028201548254600390930154919390929160ff1690565b6040516101839493929190610e2e565b3480156102a2575f5ffd5b5061017960055481565b3480156102b7575f5ffd5b5061017962093a8081565b5f546001600160a01b031633146102f45760405162461bcd60e51b81526004016102eb90610e6e565b60405180910390fd5b60035482106103455760405162461bcd60e51b815260206004820152601c60248201527f4759524f57494e3a206e6f207265717565737420496420666f756e640000000060448201526064016102eb565b5f8281526004602052604090206002015442116103a45760405162461bcd60e51b815260206004820152601d60248201527f4759524f57494e3a20667265657a65206c6f636b206e6f74206f76657200000060448201526064016102eb565b60015f8381526004602052604090206003015460ff1660018111156103cb576103cb610e1a565b146104185760405162461bcd60e51b815260206004820152601f60248201527f4759524f57494e3a20616d6f756e7420616c726561647920636c61696d65640060448201526064016102eb565b5f82815260046020819052604091829020805492517f5eb8f3f3002fd7367f6b7a1cbcaef4ae3bbc991bb16890e804d2008049ef166d9361045f9390924292910190610f4e565b60405180910390a15f8281526004602052604090205460015461048f916001600160a01b03909116908390610b59565b5f8281526004602052604081205460058054919290916104b0908490610f89565b9091555050505f90815260046020526040812060038101805460ff1916905555565b5f546001600160a01b031633146104fb5760405162461bcd60e51b81526004016102eb90610e6e565b60055482111561054d5760405162461bcd60e51b815260206004820152601e60248201527f4759524f57494e3a2065786365656473206c6f636b656420616d6f756e74000060448201526064016102eb565b6002545f9081526004602052604090204260019091018190556105749062093a8090610f9c565b600280545f9081526004602081905260408083208401949094558254825283822086905582548252838220600301805460ff191660011790559154815291909120016105c08282610ffa565b50600280545f81815260046020819052604091829020600181015494810154925193947f2a711bb7299e378a8f31e7e5aa2ee3b741517a06f1c708485154988ac01b6e03946106169489949293909201906110b5565b60405180910390a260028054905f61062d836110e3565b90915550506002546003555050565b5f546001600160a01b031633146106655760405162461bcd60e51b81526004016102eb90610e6e565b6001600160a01b0382166106bb5760405162461bcd60e51b815260206004820152601e60248201527f4759524f57494e3a2063616e2774206265207a65726f2061646472657373000060448201526064016102eb565b4781111561070b5760405162461bcd60e51b815260206004820152601c60248201527f4759524f57494e3a20696e737566666963656e742062616c616e63650000000060448201526064016102eb565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114610754576040519150601f19603f3d011682016040523d82523d5f602084013e610759565b606091505b505090508061079b5760405162461bcd60e51b815260206004820152600e60248201526d19985a5b1959081d1bc81cd95b9960921b60448201526064016102eb565b505050565b5f546001600160a01b031633146107c95760405162461bcd60e51b81526004016102eb90610e6e565b5f81116108105760405162461bcd60e51b81526020600482015260156024820152744759524f57494e3a207a65726f20616d6f756e742160581b60448201526064016102eb565b600154610828906001600160a01b0316333084610bb8565b8060055f8282546108399190610f9c565b909155505060408051828152426020820152338183015290517f58fd9e5a9513535176b7d25d9a91f3d3e396d8dc8aca5e887ca88e5ae1f4d84c9181900360600190a150565b6005546001546040516370a0823160e01b81523060048201525f92839290916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156108ce573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f291906110fb565b6108fc9190610f89565b92915050565b5f546001600160a01b0316331461092b5760405162461bcd60e51b81526004016102eb90610e6e565b5f546001600160a01b03166109825760405162461bcd60e51b815260206004820152601960248201527f63616e277420626520746865207a65726f20616464726573730000000000000060448201526064016102eb565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146109cc5760405162461bcd60e51b81526004016102eb90610e6e565b6001600160a01b038216610a225760405162461bcd60e51b815260206004820152601e60248201527f4759524f57494e3a2063616e2774206265207a65726f2061646472657373000060448201526064016102eb565b6001546001600160a01b0390811690841603610a9457610a4061087f565b811115610a8f5760405162461bcd60e51b815260206004820181905260248201527f4759524f57494e3a206578636565647320756e6c6f636b656420746f6b656e7360448201526064016102eb565b610b49565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610ad6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610afa91906110fb565b811115610b495760405162461bcd60e51b815260206004820152601c60248201527f4759524f57494e3a20696e737566666963656e742062616c616e63650000000060448201526064016102eb565b61079b6001600160a01b03841683835b6040516001600160a01b0383811660248301526044820183905261079b91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610bf7565b6040516001600160a01b038481166024830152838116604483015260648201839052610bf19186918216906323b872dd90608401610b86565b50505050565b5f5f60205f8451602086015f885af180610c16576040513d5f823e3d81fd5b50505f513d91508115610c2d578060011415610c3a565b6001600160a01b0384163b155b15610bf157604051635274afe760e01b81526001600160a01b03851660048201526024016102eb565b6001600160a01b0381168114610c77575f5ffd5b50565b5f5f60408385031215610c8b575f5ffd5b823591506020830135610c9d81610c63565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f5f60408385031215610ccd575f5ffd5b82359150602083013567ffffffffffffffff811115610cea575f5ffd5b8301601f81018513610cfa575f5ffd5b803567ffffffffffffffff811115610d1457610d14610ca8565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715610d4357610d43610ca8565b604052818152828201602001871015610d5a575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f60408385031215610d8a575f5ffd5b8235610d9581610c63565b946020939093013593505050565b5f60208284031215610db3575f5ffd5b5035919050565b5f60208284031215610dca575f5ffd5b8135610dd581610c63565b9392505050565b5f5f5f60608486031215610dee575f5ffd5b8335610df981610c63565b92506020840135610e0981610c63565b929592945050506040919091013590565b634e487b7160e01b5f52602160045260245ffd5b84815260208101849052604081018390526080810160028310610e5f57634e487b7160e01b5f52602160045260245ffd5b82606083015295945050505050565b6020808252600f908201526e23aca927aba4a71d1010b7bbb732b960891b604082015260600190565b600181811c90821680610eab57607f821691505b602082108103610ec957634e487b7160e01b5f52602260045260245ffd5b50919050565b5f8154610edb81610e97565b808552600182168015610ef55760018114610f1157610f45565b60ff1983166020870152602082151560051b8701019350610f45565b845f5260205f205f5b83811015610f3c5781546020828a010152600182019150602081019050610f1a565b87016020019450505b50505092915050565b838152826020820152606060408201525f610f6c6060830184610ecf565b95945050505050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156108fc576108fc610f75565b808201808211156108fc576108fc610f75565b601f82111561079b57805f5260205f20601f840160051c81016020851015610fd45750805b601f840160051c820191505b81811015610ff3575f8155600101610fe0565b5050505050565b815167ffffffffffffffff81111561101457611014610ca8565b611028816110228454610e97565b84610faf565b6020601f82116001811461105a575f83156110435750848201515b5f19600385901b1c1916600184901b178455610ff3565b5f84815260208120601f198516915b828110156110895787850151825560209485019460019092019101611069565b50848210156110a657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b848152836020820152826040820152608060608201525f6110d96080830184610ecf565b9695505050505050565b5f600182016110f4576110f4610f75565b5060010190565b5f6020828403121561110b575f5ffd5b505191905056fea2646970667358221220d1cb90cc68568e769cc8a568fb947741facc1ea6fdbae4719bfe6ad501a7533664736f6c634300081c00330000000000000000000000003ce242ced1ba4f42c765c2b7f77ac2fa8939c433

Deployed Bytecode

0x6080604052600436106100db575f3560e01c8063951303f51161007c578063b2118a8d11610057578063b2118a8d14610230578063ca7300e214610243578063cf30901214610297578063f79d0731146102ac575f5ffd5b8063951303f5146101de578063a6f9dae1146101f2578063ab1fda0d14610211575f5ffd5b80635be2ad35116100b75780635be2ad35146101455780636a84a985146101645780638da5cb5b1461018c5780638f32d59b146101c2575f5ffd5b8062f714ce146100e65780630d57afa6146101075780631291f79d14610126575f5ffd5b366100e257005b5f5ffd5b3480156100f1575f5ffd5b50610105610100366004610c7a565b6102c2565b005b348015610112575f5ffd5b50610105610121366004610cbc565b6104d2565b348015610131575f5ffd5b50610105610140366004610d79565b61063c565b348015610150575f5ffd5b5061010561015f366004610da3565b6107a0565b34801561016f575f5ffd5b5061017960035481565b6040519081526020015b60405180910390f35b348015610197575f5ffd5b505f546101aa906001600160a01b031681565b6040516001600160a01b039091168152602001610183565b3480156101cd575f5ffd5b505f546001600160a01b03166101aa565b3480156101e9575f5ffd5b5061017961087f565b3480156101fd575f5ffd5b5061010561020c366004610dba565b610902565b34801561021c575f5ffd5b506001546101aa906001600160a01b031681565b61010561023e366004610ddc565b6109a3565b34801561024e575f5ffd5b5061028761025d366004610da3565b5f908152600460205260409020600181015460028201548254600390930154919390929160ff1690565b6040516101839493929190610e2e565b3480156102a2575f5ffd5b5061017960055481565b3480156102b7575f5ffd5b5061017962093a8081565b5f546001600160a01b031633146102f45760405162461bcd60e51b81526004016102eb90610e6e565b60405180910390fd5b60035482106103455760405162461bcd60e51b815260206004820152601c60248201527f4759524f57494e3a206e6f207265717565737420496420666f756e640000000060448201526064016102eb565b5f8281526004602052604090206002015442116103a45760405162461bcd60e51b815260206004820152601d60248201527f4759524f57494e3a20667265657a65206c6f636b206e6f74206f76657200000060448201526064016102eb565b60015f8381526004602052604090206003015460ff1660018111156103cb576103cb610e1a565b146104185760405162461bcd60e51b815260206004820152601f60248201527f4759524f57494e3a20616d6f756e7420616c726561647920636c61696d65640060448201526064016102eb565b5f82815260046020819052604091829020805492517f5eb8f3f3002fd7367f6b7a1cbcaef4ae3bbc991bb16890e804d2008049ef166d9361045f9390924292910190610f4e565b60405180910390a15f8281526004602052604090205460015461048f916001600160a01b03909116908390610b59565b5f8281526004602052604081205460058054919290916104b0908490610f89565b9091555050505f90815260046020526040812060038101805460ff1916905555565b5f546001600160a01b031633146104fb5760405162461bcd60e51b81526004016102eb90610e6e565b60055482111561054d5760405162461bcd60e51b815260206004820152601e60248201527f4759524f57494e3a2065786365656473206c6f636b656420616d6f756e74000060448201526064016102eb565b6002545f9081526004602052604090204260019091018190556105749062093a8090610f9c565b600280545f9081526004602081905260408083208401949094558254825283822086905582548252838220600301805460ff191660011790559154815291909120016105c08282610ffa565b50600280545f81815260046020819052604091829020600181015494810154925193947f2a711bb7299e378a8f31e7e5aa2ee3b741517a06f1c708485154988ac01b6e03946106169489949293909201906110b5565b60405180910390a260028054905f61062d836110e3565b90915550506002546003555050565b5f546001600160a01b031633146106655760405162461bcd60e51b81526004016102eb90610e6e565b6001600160a01b0382166106bb5760405162461bcd60e51b815260206004820152601e60248201527f4759524f57494e3a2063616e2774206265207a65726f2061646472657373000060448201526064016102eb565b4781111561070b5760405162461bcd60e51b815260206004820152601c60248201527f4759524f57494e3a20696e737566666963656e742062616c616e63650000000060448201526064016102eb565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114610754576040519150601f19603f3d011682016040523d82523d5f602084013e610759565b606091505b505090508061079b5760405162461bcd60e51b815260206004820152600e60248201526d19985a5b1959081d1bc81cd95b9960921b60448201526064016102eb565b505050565b5f546001600160a01b031633146107c95760405162461bcd60e51b81526004016102eb90610e6e565b5f81116108105760405162461bcd60e51b81526020600482015260156024820152744759524f57494e3a207a65726f20616d6f756e742160581b60448201526064016102eb565b600154610828906001600160a01b0316333084610bb8565b8060055f8282546108399190610f9c565b909155505060408051828152426020820152338183015290517f58fd9e5a9513535176b7d25d9a91f3d3e396d8dc8aca5e887ca88e5ae1f4d84c9181900360600190a150565b6005546001546040516370a0823160e01b81523060048201525f92839290916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156108ce573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108f291906110fb565b6108fc9190610f89565b92915050565b5f546001600160a01b0316331461092b5760405162461bcd60e51b81526004016102eb90610e6e565b5f546001600160a01b03166109825760405162461bcd60e51b815260206004820152601960248201527f63616e277420626520746865207a65726f20616464726573730000000000000060448201526064016102eb565b5f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f546001600160a01b031633146109cc5760405162461bcd60e51b81526004016102eb90610e6e565b6001600160a01b038216610a225760405162461bcd60e51b815260206004820152601e60248201527f4759524f57494e3a2063616e2774206265207a65726f2061646472657373000060448201526064016102eb565b6001546001600160a01b0390811690841603610a9457610a4061087f565b811115610a8f5760405162461bcd60e51b815260206004820181905260248201527f4759524f57494e3a206578636565647320756e6c6f636b656420746f6b656e7360448201526064016102eb565b610b49565b6040516370a0823160e01b81523060048201526001600160a01b038416906370a0823190602401602060405180830381865afa158015610ad6573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610afa91906110fb565b811115610b495760405162461bcd60e51b815260206004820152601c60248201527f4759524f57494e3a20696e737566666963656e742062616c616e63650000000060448201526064016102eb565b61079b6001600160a01b03841683835b6040516001600160a01b0383811660248301526044820183905261079b91859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610bf7565b6040516001600160a01b038481166024830152838116604483015260648201839052610bf19186918216906323b872dd90608401610b86565b50505050565b5f5f60205f8451602086015f885af180610c16576040513d5f823e3d81fd5b50505f513d91508115610c2d578060011415610c3a565b6001600160a01b0384163b155b15610bf157604051635274afe760e01b81526001600160a01b03851660048201526024016102eb565b6001600160a01b0381168114610c77575f5ffd5b50565b5f5f60408385031215610c8b575f5ffd5b823591506020830135610c9d81610c63565b809150509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f5f60408385031215610ccd575f5ffd5b82359150602083013567ffffffffffffffff811115610cea575f5ffd5b8301601f81018513610cfa575f5ffd5b803567ffffffffffffffff811115610d1457610d14610ca8565b604051601f8201601f19908116603f0116810167ffffffffffffffff81118282101715610d4357610d43610ca8565b604052818152828201602001871015610d5a575f5ffd5b816020840160208301375f602083830101528093505050509250929050565b5f5f60408385031215610d8a575f5ffd5b8235610d9581610c63565b946020939093013593505050565b5f60208284031215610db3575f5ffd5b5035919050565b5f60208284031215610dca575f5ffd5b8135610dd581610c63565b9392505050565b5f5f5f60608486031215610dee575f5ffd5b8335610df981610c63565b92506020840135610e0981610c63565b929592945050506040919091013590565b634e487b7160e01b5f52602160045260245ffd5b84815260208101849052604081018390526080810160028310610e5f57634e487b7160e01b5f52602160045260245ffd5b82606083015295945050505050565b6020808252600f908201526e23aca927aba4a71d1010b7bbb732b960891b604082015260600190565b600181811c90821680610eab57607f821691505b602082108103610ec957634e487b7160e01b5f52602260045260245ffd5b50919050565b5f8154610edb81610e97565b808552600182168015610ef55760018114610f1157610f45565b60ff1983166020870152602082151560051b8701019350610f45565b845f5260205f205f5b83811015610f3c5781546020828a010152600182019150602081019050610f1a565b87016020019450505b50505092915050565b838152826020820152606060408201525f610f6c6060830184610ecf565b95945050505050565b634e487b7160e01b5f52601160045260245ffd5b818103818111156108fc576108fc610f75565b808201808211156108fc576108fc610f75565b601f82111561079b57805f5260205f20601f840160051c81016020851015610fd45750805b601f840160051c820191505b81811015610ff3575f8155600101610fe0565b5050505050565b815167ffffffffffffffff81111561101457611014610ca8565b611028816110228454610e97565b84610faf565b6020601f82116001811461105a575f83156110435750848201515b5f19600385901b1c1916600184901b178455610ff3565b5f84815260208120601f198516915b828110156110895787850151825560209485019460019092019101611069565b50848210156110a657868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b848152836020820152826040820152608060608201525f6110d96080830184610ecf565b9695505050505050565b5f600182016110f4576110f4610f75565b5060010190565b5f6020828403121561110b575f5ffd5b505191905056fea2646970667358221220d1cb90cc68568e769cc8a568fb947741facc1ea6fdbae4719bfe6ad501a7533664736f6c634300081c0033

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

OVERVIEW

The allocation will be used to support future needs, ensuring the platform’s long-term growth, stability, and flexibility, and will be secured with Freezelock by GYROWIN.

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.