Cuentas
0x5d...2245
0x5d...2245

0x5d...2245

$500
¡El código fuente de este contrato está verificado!
Metadatos del Contrato
Compilador
0.8.17+commit.8df45f5f
Idioma
Solidity
Código Fuente del Contrato
Archivo 1 de 13: 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;
    }
}
Código Fuente del Contrato
Archivo 2 de 13: ENS.sol
pragma solidity >=0.8.4;

interface ENS {
    // Logged when the owner of a node assigns a new owner to a subnode.
    event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner);

    // Logged when the owner of a node transfers ownership to a new account.
    event Transfer(bytes32 indexed node, address owner);

    // Logged when the resolver for a node changes.
    event NewResolver(bytes32 indexed node, address resolver);

    // Logged when the TTL of a node changes
    event NewTTL(bytes32 indexed node, uint64 ttl);

    // Logged when an operator is added or removed.
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    function setRecord(
        bytes32 node,
        address owner,
        address resolver,
        uint64 ttl
    ) external;

    function setSubnodeRecord(
        bytes32 node,
        bytes32 label,
        address owner,
        address resolver,
        uint64 ttl
    ) external;

    function setSubnodeOwner(
        bytes32 node,
        bytes32 label,
        address owner
    ) external returns (bytes32);

    function setResolver(bytes32 node, address resolver) external;

    function setOwner(bytes32 node, address owner) external;

    function setTTL(bytes32 node, uint64 ttl) external;

    function setApprovalForAll(address operator, bool approved) external;

    function owner(bytes32 node) external view returns (address);

    function resolver(bytes32 node) external view returns (address);

    function ttl(bytes32 node) external view returns (uint64);

    function recordExists(bytes32 node) external view returns (bool);

    function isApprovedForAll(
        address owner,
        address operator
    ) external view returns (bool);
}
Código Fuente del Contrato
Archivo 3 de 13: EnsVision-BatchRenew.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "./interfaces/IEnsRenewer.sol";
import "ens-contracts/ethregistrar/IBaseRegistrar.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {INameWrapper, CAN_EXTEND_EXPIRY} from "ens-contracts/wrapper/INameWrapper.sol";

contract EnsBatchRenew is Ownable {
    IEnsRenewer public immutable ens;
    IBaseRegistrar public immutable baseRegistrar;
    INameWrapper public immutable nameWrapper;

    constructor(
        IEnsRenewer _ens,
        IBaseRegistrar _baseRegistrar,
        INameWrapper _nameWrapper
    ) {
        ens = _ens;
        baseRegistrar = _baseRegistrar;
        nameWrapper = _nameWrapper;
    }

    /**
     * Function called "batchRenew" that allows the caller to renew multiple ENS names in a single transaction
     * @param _names: an array of strings representing the ENS names to be renewed
     * @param _durations: an array of uint256 values representing the number of seconds for which each corresponding ENS name in "names" should be renewed
     */
    function batchRenew(
        string[] calldata _names,
        uint256[] calldata _durations
    ) public payable {
        //no price check in here. but ENS will revert if the price is not correct
        for (uint256 i; i < _names.length; ) {
            ens.renew{value: ens.rentPrice(_names[i], _durations[i])}(
                _names[i],
                _durations[i]
            );
            unchecked {
                ++i;
            }
        }

        //return any excess funds to the caller if any
        if (address(this).balance > 0) {
            payable(msg.sender).transfer(address(this).balance);
        }
    }

    /**
        @notice Function called "batchRenewAny" that can renew both ENS names and subdomains in a single transaction
        @param _names: an array of labels for TLDs
        @param _durations: an array of uint256 values representing the number of seconds for which each corresponding ENS name in "names" should be renewed
        @param _parentNodes: array of parent nodes for subdomains
        @param _subLabelHashes: array of subdomain label hashes
        @param _subExpiries: array of expires for subdomains
     */
    function batchRenewAny(
        string[] calldata _names,
        uint256[] calldata _durations,
        bytes32[] calldata _parentNodes,
        bytes32[] calldata _subLabelHashes,
        uint64[] calldata _subExpiries
    ) external payable {
        batchRenew(_names, _durations);
        batchRenewSubdomains(_parentNodes, _subLabelHashes, _subExpiries);
    }

    /**
     * @notice Function called "batchRenewSubdomains" that allows the caller to renew multiple subdomains in a single transaction
     * @dev Only can be renewed by owner of subdomain if CAN_EXTEND_EXPIRY fuse is set
     * @dev Only can be renewed by owner of parent domain if CAN_EXTEND_EXPIRY fuse is not set
     * @param _parentNodes: array of parent nodes for subdomains
     * @param _subLabelHashes: array of subdomain label hashes
     * @param _subExpiries: array of expiries for subdomains
     */
    function batchRenewSubdomains(
        bytes32[] calldata _parentNodes,
        bytes32[] calldata _subLabelHashes,
        uint64[] calldata _subExpiries
    ) public {
        require(
            _parentNodes.length == _subLabelHashes.length,
            "length mismatch"
        );
        for (uint256 i; i < _parentNodes.length; ) {
            bytes32 subdomainHash = keccak256(
                abi.encodePacked(_parentNodes[i], _subLabelHashes[i])
            );
            (address owner, uint32 fuses, ) = nameWrapper.getData(
                uint256(subdomainHash)
            );

            if (
                (fuses & CAN_EXTEND_EXPIRY != 0 && owner == msg.sender) ||
                (nameWrapper.ownerOf(uint256(_parentNodes[i])) == msg.sender)
            ) {
                nameWrapper.extendExpiry(
                    _parentNodes[i],
                    _subLabelHashes[i],
                    _subExpiries[i]
                );
            }

            unchecked {
                ++i;
            }
        }
    }

    // withdraw any tokens that may be sent to this contract
    function withdrawTokens(address _token) public onlyOwner {
        IERC20 token = IERC20(_token);
        token.transfer(msg.sender, token.balanceOf(address(this)));
    }

    /**
     * @notice Function called "getPrice" that allows the caller to calculate the total price for renewing a list of ENS names for specified durations
     * @param _names: an array of strings representing the ENS names to be renewed
     * @param _durations: an array of uint256 values representing the number of seconds for which each corresponding ENS name in "names" should be renewed
     * @return _price the total price for renewing all the names in "names" for the corresponding durations in "durations"
     */
    function getPrice(
        string[] calldata _names,
        uint256[] memory _durations
    ) public view returns (uint256 _price) {
        require(_names.length == _durations.length, "length mismatch");

        for (uint256 i; i < _names.length; ) {
            //you can overflow it if you want.. not going to achive much though.
            unchecked {
                _price += ens.rentPrice(_names[i], _durations[i]);
                ++i;
            }
        }
    }

    /**
     * @notice
     * This function retrieves the expiry time for each name in the given array.
     *
     * @param _names An array of names to get the expiry time for.
     * @return _expiries An array of expiry times for the given names.
     */
    function getExpiryArrayFromLabels(
        string[] calldata _names
    ) public view returns (uint256[] memory _expiries) {
        // Initialize the array to hold the expiry times to the same length as the names array.
        _expiries = new uint256[](_names.length);

        // Loop through each name in the array.
        for (uint256 i; i < _names.length; ) {
            // Get the expiry time for the name by hashing the name and looking up the expiry time using the hash as the ID.
            _expiries[i] = baseRegistrar.nameExpires(
                uint256(keccak256(abi.encodePacked(_names[i])))
            );

            // Increment the counter without checking for integer overflow.
            unchecked {
                ++i;
            }
        }
    }

    /**
     * @notice
     * This function retrieves the price for aggregated renewals.
     *
     * @param _names An array of names to get the expiry time for.
     * @return _price A sum of the prices for each name.
     */
    function getSyncPriceFromLabels(
        string[] calldata _names,
        uint256 _syncdate
    ) external view returns (uint256 _price) {
        uint256[] memory durations = getSyncArrayFromLabels(_names, _syncdate);
        _price = getPrice(_names, durations);
    }

    function visionRenew(
        string[] calldata _names,
        uint256 _duration
    ) external payable {
        for (uint256 i; i < _names.length; ) {
            ens.renew{value: ens.rentPrice(_names[i], _duration)}(
                _names[i],
                _duration
            );
            unchecked {
                ++i;
            }
        }

        //return any excess funds to the caller if any
        if (address(this).balance > 0) {
            payable(msg.sender).transfer(address(this).balance);
        }
    }

    function syncExpirations(
        string[] calldata _names,
        uint256 _syncdate
    ) external payable {
        uint256[] memory durations = getSyncArrayFromLabels(_names, _syncdate);

        for (uint256 i; i < _names.length; ) {
            ens.renew{value: ens.rentPrice(_names[i], durations[i])}(
                _names[i],
                durations[i]
            );
            unchecked {
                ++i;
            }
        }

        //return any excess funds to the caller if any
        if (address(this).balance > 0) {
            payable(msg.sender).transfer(address(this).balance);
        }
    }

    /**
     * @notice
     * This function retrieves the expiry time for each ID in the given array.
     *
     * @param _ids An array of IDs to get the expiry time for.
     * @return _expiries An array of expiry times for the given IDs.
     */
    function getExpiryArray(
        uint256[] calldata _ids
    ) external view returns (uint256[] memory _expiries) {
        // Initialize the array to hold the expiry times to the same length as the ID array.
        _expiries = new uint256[](_ids.length);

        // Loop through each ID in the array.
        for (uint256 i; i < _ids.length; ) {
            // Get the expiry time for the ID.
            _expiries[i] = baseRegistrar.nameExpires(_ids[i]);

            // Increment the counter without checking for integer overflow.
            unchecked {
                ++i;
            }
        }
    }

    /**
     * @notice
     * This function calculates the duration between a new expiry time and the current expiry time for each ID in the given array.
     * If the new expiry time is earlier than the current expiry time, the duration will be set to 0.
     *
     * @param _ids An array of IDs to calculate the duration for.
     * @param _newExpiry The new expiry time to use for the calculation.
     */
    function getSyncArray(
        uint256[] calldata _ids,
        uint256 _newExpiry
    ) external view returns (uint256[] memory _durations) {
        // Initialize the array to hold the durations to the same length as the ID array.
        _durations = new uint256[](_ids.length);

        // Loop through each ID in the array.
        for (uint256 i; i < _ids.length; ) {
            // Get the current expiry time for the ID.
            uint256 expiry = baseRegistrar.nameExpires(_ids[i]);

            // If the new expiry time is later than the current expiry time, set the duration to the difference between the two.
            // Otherwise, set the duration to 0.
            _durations[i] = _newExpiry > expiry ? _newExpiry - expiry : 0;
            unchecked {
                ++i;
            }
        }
    }

    /**
     * @notice
     * This function calculates the duration between a new expiry time and the current expiry time for each label in the given array.
     * If the new expiry time is earlier than the current expiry time, the duration will be set to 0.
     *
     * @param _labels An array of labels to calculate the duration for.
     * @param _newExpiry The new expiry time to use for the calculation.
     */
    function getSyncArrayFromLabels(
        string[] calldata _labels,
        uint256 _newExpiry
    ) public view returns (uint256[] memory _durations) {
        // Initialize the array to hold the durations to the same length as the label array.
        _durations = new uint256[](_labels.length);

        // Loop through each label in the array.
        for (uint256 i; i < _labels.length; ) {
            // Get the current expiry time for the label by hashing the label and looking up the expiry time using the hash as the ID.
            uint256 expiry = baseRegistrar.nameExpires(
                uint256(keccak256(abi.encodePacked(_labels[i])))
            );

            // If the new expiry time is later than the current expiry time, set the duration to the difference between the two.
            // Otherwise, set the duration to 0.
            _durations[i] = _newExpiry > expiry ? _newExpiry - expiry : 0;
            unchecked {
                ++i;
            }
        }
    }
}
Código Fuente del Contrato
Archivo 4 de 13: IBaseRegistrar.sol
import "../registry/ENS.sol";
import "./IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IBaseRegistrar is IERC721 {
    event ControllerAdded(address indexed controller);
    event ControllerRemoved(address indexed controller);
    event NameMigrated(
        uint256 indexed id,
        address indexed owner,
        uint256 expires
    );
    event NameRegistered(
        uint256 indexed id,
        address indexed owner,
        uint256 expires
    );
    event NameRenewed(uint256 indexed id, uint256 expires);

    // Authorises a controller, who can register and renew domains.
    function addController(address controller) external;

    // Revoke controller permission for an address.
    function removeController(address controller) external;

    // Set the resolver for the TLD this registrar manages.
    function setResolver(address resolver) external;

    // Returns the expiration timestamp of the specified label hash.
    function nameExpires(uint256 id) external view returns (uint256);

    // Returns true iff the specified name is available for registration.
    function available(uint256 id) external view returns (bool);

    /**
     * @dev Register a name.
     */
    function register(
        uint256 id,
        address owner,
        uint256 duration
    ) external returns (uint256);

    function renew(uint256 id, uint256 duration) external returns (uint256);

    /**
     * @dev Reclaim ownership of a name in ENS, if you own it in the registrar.
     */
    function reclaim(uint256 id, address owner) external;
}
Código Fuente del Contrato
Archivo 5 de 13: IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}
Código Fuente del Contrato
Archivo 6 de 13: 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);
}
Código Fuente del Contrato
Archivo 7 de 13: 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);
}
Código Fuente del Contrato
Archivo 8 de 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}
Código Fuente del Contrato
Archivo 9 de 13: IEnsRenewer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

interface IEnsRenewer {
    function renew(string calldata _name, uint256 _duration) external payable;

    function rentPrice(
        string calldata _name,
        uint256 _duration
    ) external view returns (uint256);
}
Código Fuente del Contrato
Archivo 10 de 13: IMetadataService.sol
//SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;

interface IMetadataService {
    function uri(uint256) external view returns (string memory);
}
Código Fuente del Contrato
Archivo 11 de 13: INameWrapper.sol
//SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;

import "../registry/ENS.sol";
import "../ethregistrar/IBaseRegistrar.sol";
import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol";
import "./IMetadataService.sol";
import "./INameWrapperUpgrade.sol";

uint32 constant CANNOT_UNWRAP = 1;
uint32 constant CANNOT_BURN_FUSES = 2;
uint32 constant CANNOT_TRANSFER = 4;
uint32 constant CANNOT_SET_RESOLVER = 8;
uint32 constant CANNOT_SET_TTL = 16;
uint32 constant CANNOT_CREATE_SUBDOMAIN = 32;
uint32 constant CANNOT_APPROVE = 64;
//uint16 reserved for parent controlled fuses from bit 17 to bit 32
uint32 constant PARENT_CANNOT_CONTROL = 1 << 16;
uint32 constant IS_DOT_ETH = 1 << 17;
uint32 constant CAN_EXTEND_EXPIRY = 1 << 18;
uint32 constant CAN_DO_EVERYTHING = 0;
uint32 constant PARENT_CONTROLLED_FUSES = 0xFFFF0000;
// all fuses apart from IS_DOT_ETH
uint32 constant USER_SETTABLE_FUSES = 0xFFFDFFFF;

interface INameWrapper is IERC1155 {
    event NameWrapped(
        bytes32 indexed node,
        bytes name,
        address owner,
        uint32 fuses,
        uint64 expiry
    );

    event NameUnwrapped(bytes32 indexed node, address owner);

    event FusesSet(bytes32 indexed node, uint32 fuses);
    event ExpiryExtended(bytes32 indexed node, uint64 expiry);

    function ens() external view returns (ENS);

    function registrar() external view returns (IBaseRegistrar);

    function metadataService() external view returns (IMetadataService);

    function names(bytes32) external view returns (bytes memory);

    function name() external view returns (string memory);

    function upgradeContract() external view returns (INameWrapperUpgrade);

    function supportsInterface(bytes4 interfaceID) external view returns (bool);

    function wrap(
        bytes calldata name,
        address wrappedOwner,
        address resolver
    ) external;

    function wrapETH2LD(
        string calldata label,
        address wrappedOwner,
        uint16 ownerControlledFuses,
        address resolver
    ) external returns (uint64 expires);

    function registerAndWrapETH2LD(
        string calldata label,
        address wrappedOwner,
        uint256 duration,
        address resolver,
        uint16 ownerControlledFuses
    ) external returns (uint256 registrarExpiry);

    function renew(
        uint256 labelHash,
        uint256 duration
    ) external returns (uint256 expires);

    function unwrap(bytes32 node, bytes32 label, address owner) external;

    function unwrapETH2LD(
        bytes32 label,
        address newRegistrant,
        address newController
    ) external;

    function upgrade(bytes calldata name, bytes calldata extraData) external;

    function setFuses(
        bytes32 node,
        uint16 ownerControlledFuses
    ) external returns (uint32 newFuses);

    function setChildFuses(
        bytes32 parentNode,
        bytes32 labelhash,
        uint32 fuses,
        uint64 expiry
    ) external;

    function setSubnodeRecord(
        bytes32 node,
        string calldata label,
        address owner,
        address resolver,
        uint64 ttl,
        uint32 fuses,
        uint64 expiry
    ) external returns (bytes32);

    function setRecord(
        bytes32 node,
        address owner,
        address resolver,
        uint64 ttl
    ) external;

    function setSubnodeOwner(
        bytes32 node,
        string calldata label,
        address newOwner,
        uint32 fuses,
        uint64 expiry
    ) external returns (bytes32);

    function extendExpiry(
        bytes32 node,
        bytes32 labelhash,
        uint64 expiry
    ) external returns (uint64);

    function canModifyName(
        bytes32 node,
        address addr
    ) external view returns (bool);

    function setResolver(bytes32 node, address resolver) external;

    function setTTL(bytes32 node, uint64 ttl) external;

    function ownerOf(uint256 id) external view returns (address owner);

    function approve(address to, uint256 tokenId) external;

    function getApproved(uint256 tokenId) external view returns (address);

    function getData(
        uint256 id
    ) external view returns (address, uint32, uint64);

    function setMetadataService(IMetadataService _metadataService) external;

    function uri(uint256 tokenId) external view returns (string memory);

    function setUpgradeContract(INameWrapperUpgrade _upgradeAddress) external;

    function allFusesBurned(
        bytes32 node,
        uint32 fuseMask
    ) external view returns (bool);

    function isWrapped(bytes32) external view returns (bool);

    function isWrapped(bytes32, bytes32) external view returns (bool);
}
Código Fuente del Contrato
Archivo 12 de 13: INameWrapperUpgrade.sol
//SPDX-License-Identifier: MIT
pragma solidity ~0.8.17;

interface INameWrapperUpgrade {
    function wrapFromUpgrade(
        bytes calldata name,
        address wrappedOwner,
        uint32 fuses,
        uint64 expiry,
        address approved,
        bytes calldata extraData
    ) external;
}
Código Fuente del Contrato
Archivo 13 de 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
Configuraciones
{
  "compilationTarget": {
    "src/EnsVision-BatchRenew.sol": "EnsBatchRenew"
  },
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs"
  },
  "optimizer": {
    "details": {
      "constantOptimizer": true,
      "cse": true,
      "deduplicate": false,
      "inliner": true,
      "jumpdestRemover": true,
      "orderLiterals": true,
      "peephole": true,
      "yul": true,
      "yulDetails": {
        "optimizerSteps": "dhfoDgvulfnTUtnIf[xa[r]EscLMcCTUtTOntnfDIulLculVcul [j]Tpeulxa[rul]xa[r]cLgvifCTUca[r]LSsTFOtfDnca[r]Iulc]jmul[jul] VcTOcul jmul",
        "stackAllocation": true
      }
    },
    "runs": 10000
  },
  "remappings": [
    ":@ens/=lib/EnsPrimaryContractNamer/lib/ens-contracts/contracts/",
    ":@ensdomains/buffer/=lib/buffer/",
    ":@openzeppelin/=node_modules/@openzeppelin/",
    ":EnsPrimaryContractNamer/=lib/EnsPrimaryContractNamer/src/",
    ":chainlink/=lib/chainlink/integration-tests/contracts/ethereum/src/",
    ":ds-test/=lib/forge-std/lib/ds-test/src/",
    ":ens-contracts/=lib/ens-contracts/contracts/",
    ":forge-std/=lib/forge-std/src/",
    ":old-ens-contracts/=lib/old-ens-contracts/contracts/",
    ":openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
    ":solady/=lib/solady/src/",
    ":solmate/=lib/solady/lib/solmate/src/",
    ":string-utils/=lib/solidity-stringutils/blob/master/src/"
  ]
}
ABI
[{"inputs":[{"internalType":"contract IEnsRenewer","name":"_ens","type":"address"},{"internalType":"contract IBaseRegistrar","name":"_baseRegistrar","type":"address"},{"internalType":"contract INameWrapper","name":"_nameWrapper","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"baseRegistrar","outputs":[{"internalType":"contract IBaseRegistrar","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256[]","name":"_durations","type":"uint256[]"}],"name":"batchRenew","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256[]","name":"_durations","type":"uint256[]"},{"internalType":"bytes32[]","name":"_parentNodes","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_subLabelHashes","type":"bytes32[]"},{"internalType":"uint64[]","name":"_subExpiries","type":"uint64[]"}],"name":"batchRenewAny","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_parentNodes","type":"bytes32[]"},{"internalType":"bytes32[]","name":"_subLabelHashes","type":"bytes32[]"},{"internalType":"uint64[]","name":"_subExpiries","type":"uint64[]"}],"name":"batchRenewSubdomains","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ens","outputs":[{"internalType":"contract IEnsRenewer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"}],"name":"getExpiryArray","outputs":[{"internalType":"uint256[]","name":"_expiries","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"}],"name":"getExpiryArrayFromLabels","outputs":[{"internalType":"uint256[]","name":"_expiries","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256[]","name":"_durations","type":"uint256[]"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_ids","type":"uint256[]"},{"internalType":"uint256","name":"_newExpiry","type":"uint256"}],"name":"getSyncArray","outputs":[{"internalType":"uint256[]","name":"_durations","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_labels","type":"string[]"},{"internalType":"uint256","name":"_newExpiry","type":"uint256"}],"name":"getSyncArrayFromLabels","outputs":[{"internalType":"uint256[]","name":"_durations","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256","name":"_syncdate","type":"uint256"}],"name":"getSyncPriceFromLabels","outputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nameWrapper","outputs":[{"internalType":"contract INameWrapper","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256","name":"_syncdate","type":"uint256"}],"name":"syncExpirations","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_names","type":"string[]"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"visionRenew","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]