Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,175,132 transactions (+18 Pending)
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14760994 | 41 secs ago | 0 ETH | ||||
14760994 | 41 secs ago | 0 ETH | ||||
14760994 | 41 secs ago | 0 ETH | ||||
14760994 | 41 secs ago | 0 ETH | ||||
14760994 | 41 secs ago | 0 ETH | ||||
14760994 | 41 secs ago | 0 ETH | ||||
14760994 | 41 secs ago | 0 ETH | ||||
14760884 | 4 mins ago | 0 ETH | ||||
14760884 | 4 mins ago | 0 ETH | ||||
14760884 | 4 mins ago | 0 ETH | ||||
14760884 | 4 mins ago | 0 ETH | ||||
14760884 | 4 mins ago | 0 ETH | ||||
14760884 | 4 mins ago | 0 ETH | ||||
14760884 | 4 mins ago | 0 ETH | ||||
14760551 | 16 mins ago | 0 ETH | ||||
14760551 | 16 mins ago | 0 ETH | ||||
14760551 | 16 mins ago | 0 ETH | ||||
14760551 | 16 mins ago | 0 ETH | ||||
14760551 | 16 mins ago | 0 ETH | ||||
14760551 | 16 mins ago | 0 ETH | ||||
14760551 | 16 mins ago | 0 ETH | ||||
14760377 | 22 mins ago | 0 ETH | ||||
14760377 | 22 mins ago | 0 ETH | ||||
14760377 | 22 mins ago | 0 ETH | ||||
14760377 | 22 mins ago | 0 ETH |
Loading...
Loading
Contract Name:
ETHRegistrarController
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 1200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ~0.8.17; import {BaseRegistrarImplementation} from "./BaseRegistrarImplementation.sol"; import {StringUtils} from "./StringUtils.sol"; import {Resolver} from "../resolvers/Resolver.sol"; import {ENS} from "../registry/ENS.sol"; import {ReverseRegistrar} from "../reverseRegistrar/ReverseRegistrar.sol"; import {ReverseClaimer} from "../reverseRegistrar/ReverseClaimer.sol"; import {IETHRegistrarController, IPriceOracle} from "./IETHRegistrarController.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {INameWrapper} from "../wrapper/INameWrapper.sol"; import {ERC20Recoverable} from "../utils/ERC20Recoverable.sol"; import {NameEncoder} from "../utils/NameEncoder.sol"; import {PohVerifier} from "./PohVerifier.sol"; import {PohRegistrationManager} from "./PohRegistrationManager.sol"; error CommitmentTooNew(bytes32 commitment); error CommitmentTooOld(bytes32 commitment); error NameNotAvailable(string name); error DurationTooShort(uint256 duration); error ResolverRequiredWhenDataSupplied(); error UnexpiredCommitmentExists(bytes32 commitment); error InsufficientValue(); error MaxCommitmentAgeTooLow(); error MaxCommitmentAgeTooHigh(); error PohVerificationFailed(address owner); error OwnerAlreadyRegistered(address owner); error SenderNotOwner(address owner, address sender); error RenewPOHNotStarted(uint256 currentTime, uint256 renewTimeStart); error WrongPohRegistrationDuration(uint256 duration); error ZeroAddressNotAllowed(); error EmptyDataNotAllowed(); error EmptyStringNotAllowed(); error DifferentBaseDomainBaseNode(); error BaseNodeAsETHNodeOrROOTNodeNotAllowed(); /** * @dev A registrar controller for registering and renewing names at fixed cost. */ contract ETHRegistrarController is Ownable, IETHRegistrarController, IERC165, ERC20Recoverable, ReverseClaimer { using StringUtils for *; using Address for address; uint256 public constant MIN_REGISTRATION_DURATION = 28 days; /// @dev Registration through POH is fixed to a 3 years duration uint256 public constant POH_REGISTRATION_DURATION = 1 days * 365 * 3; uint64 private constant MAX_EXPIRY = type(uint64).max; uint256 public constant GRACE_PERIOD = 90 days; bytes32 private constant ETH_NODE = 0x93cdeb708b7545dc668eb9280176169d1c33cfd8ed6f04690a0bcc88a93fc4ae; bytes32 private constant ROOT_NODE = 0x0000000000000000000000000000000000000000000000000000000000000000; BaseRegistrarImplementation immutable base; IPriceOracle public immutable prices; uint256 public immutable minCommitmentAge; uint256 public immutable maxCommitmentAge; ReverseRegistrar public immutable reverseRegistrar; INameWrapper public immutable nameWrapper; /// @dev PohVerifier contract that is used to verify the POH signature PohVerifier public immutable pohVerifier; /// @dev PohRegistrationManager contract to keep track of the addresses that used their POH registration (One by address) PohRegistrationManager public immutable pohRegistrationManager; /// @dev node of the base domain configured (eg: namehash(linea.eth)) bytes32 public immutable baseNode; mapping(bytes32 => uint256) public commitments; /// @dev string of the base domain configured (eg: 'linea.eth') string public baseDomain; event NameRegistered( string name, bytes32 indexed label, address indexed owner, uint256 baseCost, uint256 premium, uint256 expires ); event PohNameRegistered( string name, bytes32 indexed label, address indexed owner, uint256 expires ); event NameRenewed( string name, bytes32 indexed label, uint256 cost, uint256 expires ); event OwnerNameRegistered( string name, bytes32 indexed label, address indexed owner, uint256 expires ); event NameRenewedPoh(string name, bytes32 indexed label, uint256 expires); modifier minRegistrationDuration(uint256 duration) { if (duration < MIN_REGISTRATION_DURATION) { revert DurationTooShort(duration); } _; } /** * @dev Ensures the address is not address(0). * @param _addr Address to check. */ modifier nonZeroAddress(address _addr) { if (_addr == address(0x0)) revert ZeroAddressNotAllowed(); _; } /** * @dev Ensures the string is not empty(""). * @param _string to check. */ modifier nonEmptyString(string memory _string) { if (bytes(_string).length == 0) revert EmptyStringNotAllowed(); _; } /** * @notice Create registrar for the base domain passed in parameter. * @param _base Base registrar address. * @param _prices Price oracle address. * @param _minCommitmentAge Minimum commitment age. * @param _maxCommitmentAge Maximum commitment age. * @param _reverseRegistrar Reverse registrar address. * @param _nameWrapper Name wrapper address. * @param _ens ENS registry address. * @param _pohVerifier POH Verifier address. * @param _pohRegistrationManager POH registration manager address. * @param _baseNode Base node hash. * @param _baseDomain Base domain string. */ constructor( BaseRegistrarImplementation _base, IPriceOracle _prices, uint256 _minCommitmentAge, uint256 _maxCommitmentAge, ReverseRegistrar _reverseRegistrar, INameWrapper _nameWrapper, ENS _ens, PohVerifier _pohVerifier, PohRegistrationManager _pohRegistrationManager, bytes32 _baseNode, string memory _baseDomain ) nonZeroAddress(address(_pohVerifier)) nonZeroAddress(address(_pohRegistrationManager)) nonEmptyString(_baseDomain) ReverseClaimer(_ens, msg.sender) { if (_maxCommitmentAge <= _minCommitmentAge) { revert MaxCommitmentAgeTooLow(); } if (_maxCommitmentAge > block.timestamp) { revert MaxCommitmentAgeTooHigh(); } // Base node can not be ETH_NODE or ROOT_NODE if (_baseNode == ROOT_NODE || _baseNode == ETH_NODE) { revert BaseNodeAsETHNodeOrROOTNodeNotAllowed(); } // Validate _baseNode and _baseDomain (, bytes32 node) = NameEncoder.dnsEncodeName( _baseDomain.substring(1, _baseDomain.strlen()) ); if (node != _baseNode) { revert DifferentBaseDomainBaseNode(); } base = _base; prices = _prices; minCommitmentAge = _minCommitmentAge; maxCommitmentAge = _maxCommitmentAge; reverseRegistrar = _reverseRegistrar; nameWrapper = _nameWrapper; pohVerifier = _pohVerifier; pohRegistrationManager = _pohRegistrationManager; baseNode = _baseNode; baseDomain = _baseDomain; } function rentPrice( string memory name, uint256 duration ) public view override returns (IPriceOracle.Price memory price) { bytes32 label = keccak256(bytes(name)); price = prices.price(name, base.nameExpires(uint256(label)), duration); } function valid(string memory name) public pure returns (bool) { return name.strlen() >= 3; } function available(string memory name) public view override returns (bool) { bytes32 label = keccak256(bytes(name)); return valid(name) && base.available(uint256(label)); } function makeCommitment( string memory name, address owner, uint256 duration, bytes32 secret, address resolver, bytes[] calldata data, bool reverseRecord, uint16 ownerControlledFuses ) public pure override minRegistrationDuration(duration) returns (bytes32) { bytes32 label = keccak256(bytes(name)); if (data.length > 0 && resolver == address(0)) { revert ResolverRequiredWhenDataSupplied(); } return keccak256( abi.encode( label, owner, duration, secret, resolver, data, reverseRecord, ownerControlledFuses ) ); } function commit(bytes32 commitment) external override { if (commitments[commitment] + maxCommitmentAge >= block.timestamp) { revert UnexpiredCommitmentExists(commitment); } commitments[commitment] = block.timestamp; } /** * @notice Register a new domain using POH for free, one address that has POH can register only one domain * @param name to register * @param owner of the name * @param duration length of the registration * @param secret hash of the commitment made before the registration * @param resolver address to set for this domain(Default is public resolver address) * @param data the operations to apply to this domain after the registration (eg: setRecords) * @param reverseRecord boolean to activate the reverse record for this domain * @param ownerControlledFuses fuses * @param signature the POH signature crafted by the POH API to verify that the owner address has POH */ function registerPoh( string calldata name, address owner, uint256 duration, bytes32 secret, address resolver, bytes[] calldata data, bool reverseRecord, uint16 ownerControlledFuses, bytes memory signature ) external { // The sender of the transaction needs to be the owner if (msg.sender != owner) { revert SenderNotOwner(owner, msg.sender); } // POH registration has to be valid for a duration of 3 years if (duration != POH_REGISTRATION_DURATION) { revert WrongPohRegistrationDuration(duration); } // An andress can own only one domain using its PoH if (redeemed(owner)) { revert OwnerAlreadyRegistered(owner); } // Check that the signature sent is valid, this is the reference for an address to have a valid PoH if (!pohVerifier.verify(signature, owner)) { revert PohVerificationFailed(owner); } // Mark this address as having successfully registered and used its POH right pohRegistrationManager.markAsRegistered(owner); uint256 expires = _register( name, owner, duration, secret, resolver, data, reverseRecord, ownerControlledFuses, false ); emit PohNameRegistered(name, keccak256(bytes(name)), owner, expires); } /** * @notice Check if an address has already used its POH or not * @param _address to check */ function redeemed(address _address) public view returns (bool) { return pohRegistrationManager.isRegistered(_address); } /** * @notice Register a new domain using ENS standard registration * @dev Most of the logic has been moved to the internal _register() to be used by registerPOH as well * @dev Only the price check and event are kept * @param name to register * @param owner of the name * @param duration length of the registration * @param secret hash of the commitment made before the registration * @param resolver address to set for this domain(Default is public resolver address) * @param data the operations to apply to this domain after the registration (eg: setRecords) * @param reverseRecord boolean to activate the reverse record for this domain * @param ownerControlledFuses fuses */ function register( string calldata name, address owner, uint256 duration, bytes32 secret, address resolver, bytes[] calldata data, bool reverseRecord, uint16 ownerControlledFuses ) external payable override { IPriceOracle.Price memory price = rentPrice(name, duration); if (msg.value < price.base + price.premium) { revert InsufficientValue(); } uint256 expires = _register( name, owner, duration, secret, resolver, data, reverseRecord, ownerControlledFuses, false ); emit NameRegistered( name, keccak256(bytes(name)), owner, price.base, price.premium, expires ); if (msg.value > (price.base + price.premium)) { payable(msg.sender).transfer( msg.value - (price.base + price.premium) ); } } /** * @notice Internal register method called by register() and registerPOH * @dev An additional param has been added to bypass the commitment if needed * @dev Contains the registration logic * @param name to register * @param owner of the name * @param duration length of the registration * @param secret hash of the commitment made before the registration * @param resolver address to set for this domain(Default is public resolver address) * @param data the operations to apply to this domain after the registration (eg: setRecords) * @param reverseRecord boolean to activate the reverse record for this domain * @param ownerControlledFuses fuses * @param bypassCommitment boolean to bypass the commitment */ function _register( string calldata name, address owner, uint256 duration, bytes32 secret, address resolver, bytes[] calldata data, bool reverseRecord, uint16 ownerControlledFuses, bool bypassCommitment ) internal returns (uint256) { // Skip the commitment process if bypassCommitment is true if (!bypassCommitment) { _consumeCommitment( name, duration, makeCommitment( name, owner, duration, secret, resolver, data, reverseRecord, ownerControlledFuses ) ); } uint256 expires = nameWrapper.registerAndWrap( name, owner, duration, resolver, ownerControlledFuses ); if (data.length > 0) { _setRecords(resolver, keccak256(bytes(name)), data); } if (reverseRecord) { _setReverseRecord(name, resolver, msg.sender); } return expires; } function renew( string calldata name, uint256 duration ) external payable override { bytes32 labelhash = keccak256(bytes(name)); uint256 tokenId = uint256(labelhash); IPriceOracle.Price memory price = rentPrice(name, duration); if (msg.value < price.base) { revert InsufficientValue(); } uint256 expires = nameWrapper.renew(tokenId, duration); if (msg.value > price.base) { payable(msg.sender).transfer(msg.value - price.base); } emit NameRenewed(name, labelhash, msg.value, expires); } /** * @notice Same as renew method except that it uses the user's POH to renew for free * @dev Can only renew 3 months before the expiry date * @dev The name stays locked for the user until 3 months after the expiry date, after that, someone else can register * @dev This gives the owner a safe period of 6 months(GRACE_PERIOD * 2) to renew his domain * @param name to renew * @param signature POH of the owner to renew */ function renewPoh(string calldata name, bytes memory signature) external { bytes32 labelhash = keccak256(bytes(name)); bytes32 nodehash = keccak256(abi.encodePacked(baseNode, labelhash)); (address currentOwner, , ) = nameWrapper.getData(uint256(nodehash)); // The sender of the transaction needs to be the current owner of the name if (msg.sender != currentOwner) { revert SenderNotOwner(currentOwner, msg.sender); } // Check that the signature sent is valid, this is the reference for an address to have a valid PoH if (!pohVerifier.verify(signature, currentOwner)) { revert PohVerificationFailed(currentOwner); } uint256 tokenId = uint256(labelhash); uint256 currentExpiry = base.nameExpires(tokenId); uint256 renewTimeStart = currentExpiry - GRACE_PERIOD; // Renewal using POH can start 3 months(GRACE_PERIOD) before the expiry date // The domain stays locked for the owner until 3 month after the expiry date // The owner will still be able to renew after the GRACE_PERIOD is over but someone else can // register that domain if the original owner still has not renewed if (block.timestamp < renewTimeStart) { revert RenewPOHNotStarted(block.timestamp, renewTimeStart); } uint256 expires = nameWrapper.renew(tokenId, POH_REGISTRATION_DURATION); emit NameRenewedPoh(name, labelhash, expires); } function withdraw() external { payable(owner()).transfer(address(this).balance); } function supportsInterface( bytes4 interfaceID ) external pure returns (bool) { return interfaceID == type(IERC165).interfaceId || interfaceID == type(IETHRegistrarController).interfaceId; } /* Internal functions */ function _consumeCommitment( string memory name, uint256 duration, bytes32 commitment ) internal minRegistrationDuration(duration) { // Require an old enough commitment. if (commitments[commitment] + minCommitmentAge > block.timestamp) { revert CommitmentTooNew(commitment); } // If the commitment is too old, or the name is registered, stop if (commitments[commitment] + maxCommitmentAge <= block.timestamp) { revert CommitmentTooOld(commitment); } if (!available(name)) { revert NameNotAvailable(name); } delete (commitments[commitment]); } /** * @notice Set the records linked to a domain for an owner * @dev Same as original ENS's _setRecords except that it uses the baseNode instead of hardcoded ETH_NODE * @param resolverAddress resolver's address * @param label hash of the domain's label to register * @param data list of records to save */ function _setRecords( address resolverAddress, bytes32 label, bytes[] calldata data ) internal { bytes32 nodehash = keccak256(abi.encodePacked(baseNode, label)); Resolver resolver = Resolver(resolverAddress); resolver.multicallWithNodeCheck(nodehash, data); } /** * @notice Set the reverse record for the name passed in parameter * @dev Same as original ENS's _setReverseRecord except that it uses the baseNode instead of hardcoded ETH_NODE * @param name string to setup the reverse record for * @param resolver resolver's address * @param owner address to set the reverse record for */ function _setReverseRecord( string memory name, address resolver, address owner ) internal { reverseRegistrar.setNameForAddr( msg.sender, owner, resolver, string.concat(name, baseDomain) ); } /** * @dev Allows a specified owner to register a name directly, with an option to bypass the commitment process. * @param name The domain name to be registered. * @param owner The address that will own the registered domain. * @param duration How long the registration is valid. * @param resolver The address of the resolver contract for this domain. * @param data An array of bytes, possibly representing records to be set for the domain. * @param ownerControlledFuses A parameter likely related to permissions or security settings for the domain. * @param reverseRecord A boolean indicating whether a reverse record should be set. */ function ownerRegister( string calldata name, address owner, uint256 duration, address resolver, bytes[] calldata data, uint16 ownerControlledFuses, bool reverseRecord ) external onlyOwner { uint256 expires = _register( name, owner, duration, bytes32(0), resolver, data, reverseRecord, ownerControlledFuses, true ); emit OwnerNameRegistered(name, keccak256(bytes(name)), owner, expires); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./Ownable.sol"; /** * @dev Contract module which provides 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} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; interface IERC5267 { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @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. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @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, it is bubbled up by this * function (like regular Solidity function calls). * * 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. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @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`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; import "./ECDSA.sol"; import "../ShortStrings.sol"; import "../../interfaces/IERC5267.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * _Available since v3.4._ * * @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment */ abstract contract EIP712 is IERC5267 { using ShortStrings for *; bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _cachedDomainSeparator; uint256 private immutable _cachedChainId; address private immutable _cachedThis; bytes32 private immutable _hashedName; bytes32 private immutable _hashedVersion; ShortString private immutable _name; ShortString private immutable _version; string private _nameFallback; string private _versionFallback; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { _name = name.toShortStringWithFallback(_nameFallback); _version = version.toShortStringWithFallback(_versionFallback); _hashedName = keccak256(bytes(name)); _hashedVersion = keccak256(bytes(version)); _cachedChainId = block.chainid; _cachedDomainSeparator = _buildDomainSeparator(); _cachedThis = address(this); } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _cachedThis && block.chainid == _cachedChainId) { return _cachedDomainSeparator; } else { return _buildDomainSeparator(); } } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(_TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { return ( hex"0f", // 01111 _name.toStringWithFallback(_nameFallback), _version.toStringWithFallback(_versionFallback), block.chainid, address(this), bytes32(0), new uint256[](0) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/ShortStrings.sol) pragma solidity ^0.8.8; import "./StorageSlot.sol"; // | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA | // | length | 0x BB | type ShortString is bytes32; /** * @dev This library provides functions to convert short memory strings * into a `ShortString` type that can be used as an immutable variable. * * Strings of arbitrary length can be optimized using this library if * they are short enough (up to 31 bytes) by packing them with their * length (1 byte) in a single EVM word (32 bytes). Additionally, a * fallback mechanism can be used for every other case. * * Usage example: * * ```solidity * contract Named { * using ShortStrings for *; * * ShortString private immutable _name; * string private _nameFallback; * * constructor(string memory contractName) { * _name = contractName.toShortStringWithFallback(_nameFallback); * } * * function name() external view returns (string memory) { * return _name.toStringWithFallback(_nameFallback); * } * } * ``` */ library ShortStrings { // Used as an identifier for strings longer than 31 bytes. bytes32 private constant _FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF; error StringTooLong(string str); error InvalidShortString(); /** * @dev Encode a string of at most 31 chars into a `ShortString`. * * This will trigger a `StringTooLong` error is the input string is too long. */ function toShortString(string memory str) internal pure returns (ShortString) { bytes memory bstr = bytes(str); if (bstr.length > 31) { revert StringTooLong(str); } return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length)); } /** * @dev Decode a `ShortString` back to a "normal" string. */ function toString(ShortString sstr) internal pure returns (string memory) { uint256 len = byteLength(sstr); // using `new string(len)` would work locally but is not memory safe. string memory str = new string(32); /// @solidity memory-safe-assembly assembly { mstore(str, len) mstore(add(str, 0x20), sstr) } return str; } /** * @dev Return the length of a `ShortString`. */ function byteLength(ShortString sstr) internal pure returns (uint256) { uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF; if (result > 31) { revert InvalidShortString(); } return result; } /** * @dev Encode a string into a `ShortString`, or write it to storage if it is too long. */ function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) { if (bytes(value).length < 32) { return toShortString(value); } else { StorageSlot.getStringSlot(store).value = value; return ShortString.wrap(_FALLBACK_SENTINEL); } } /** * @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}. */ function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return toString(value); } else { return store; } } /** * @dev Return the length of a string that was encoded to `ShortString` or written to storage using {setWithFallback}. * * WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of * actual characters as the UTF-8 encoding of a single character can span over multiple bytes. */ function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) { if (ShortString.unwrap(value) != _FALLBACK_SENTINEL) { return byteLength(value); } else { return bytes(store).length; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol) // This file was procedurally generated from scripts/generate/templates/StorageSlot.js. pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ```solidity * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._ * _Available since v4.9 for `string`, `bytes`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } struct StringSlot { string value; } struct BytesSlot { bytes value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` with member `value` located at `slot`. */ function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `StringSlot` representation of the string storage pointer `store`. */ function getStringSlot(string storage store) internal pure returns (StringSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } /** * @dev Returns an `BytesSlot` with member `value` located at `slot`. */ function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`. */ function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := store.slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; import "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
pragma solidity >=0.8.4; import "../registry/ENS.sol"; import "./IBaseRegistrar.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract BaseRegistrarImplementation is ERC721, IBaseRegistrar, Ownable { // A map of expiry times mapping(uint256 => uint256) expiries; // The ENS registry ENS public ens; // The namehash of the TLD this registrar owns (eg, .eth) bytes32 public baseNode; // A map of addresses that are authorised to register and renew names. mapping(address => bool) public controllers; uint256 public constant GRACE_PERIOD = 90 days; bytes4 private constant INTERFACE_META_ID = bytes4(keccak256("supportsInterface(bytes4)")); bytes4 private constant ERC721_ID = bytes4( keccak256("balanceOf(address)") ^ keccak256("ownerOf(uint256)") ^ keccak256("approve(address,uint256)") ^ keccak256("getApproved(uint256)") ^ keccak256("setApprovalForAll(address,bool)") ^ keccak256("isApprovedForAll(address,address)") ^ keccak256("transferFrom(address,address,uint256)") ^ keccak256("safeTransferFrom(address,address,uint256)") ^ keccak256("safeTransferFrom(address,address,uint256,bytes)") ); bytes4 private constant RECLAIM_ID = bytes4(keccak256("reclaim(uint256,address)")); /** * v2.1.3 version of _isApprovedOrOwner which calls ownerOf(tokenId) and takes grace period into consideration instead of ERC721.ownerOf(tokenId); * https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v2.1.3/contracts/token/ERC721/ERC721.sol#L187 * @dev Returns whether the given spender can transfer a given token ID * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or is the owner of the token */ function _isApprovedOrOwner( address spender, uint256 tokenId ) internal view override returns (bool) { address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } constructor(ENS _ens, bytes32 _baseNode) ERC721("", "") { ens = _ens; baseNode = _baseNode; } modifier live() { require(ens.owner(baseNode) == address(this)); _; } modifier onlyController() { require(controllers[msg.sender]); _; } /** * @dev Gets the owner of the specified token ID. Names become unowned * when their registration expires. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID */ function ownerOf( uint256 tokenId ) public view override(IERC721, ERC721) returns (address) { require(expiries[tokenId] > block.timestamp); return super.ownerOf(tokenId); } // Authorises a controller, who can register and renew domains. function addController(address controller) external override onlyOwner { controllers[controller] = true; emit ControllerAdded(controller); } // Revoke controller permission for an address. function removeController(address controller) external override onlyOwner { controllers[controller] = false; emit ControllerRemoved(controller); } // Set the resolver for the TLD this registrar manages. function setResolver(address resolver) external override onlyOwner { ens.setResolver(baseNode, resolver); } // Returns the expiration timestamp of the specified id. function nameExpires(uint256 id) external view override returns (uint256) { return expiries[id]; } // Returns true iff the specified name is available for registration. function available(uint256 id) public view override returns (bool) { // Not available if it's registered here or in its grace period. return expiries[id] + GRACE_PERIOD < block.timestamp; } /** * @dev Register a name. * @param id The token ID (keccak256 of the label). * @param owner The address that should own the registration. * @param duration Duration in seconds for the registration. */ function register( uint256 id, address owner, uint256 duration ) external override returns (uint256) { return _register(id, owner, duration, true); } /** * @dev Register a name, without modifying the registry. * @param id The token ID (keccak256 of the label). * @param owner The address that should own the registration. * @param duration Duration in seconds for the registration. */ function registerOnly( uint256 id, address owner, uint256 duration ) external returns (uint256) { return _register(id, owner, duration, false); } function _register( uint256 id, address owner, uint256 duration, bool updateRegistry ) internal live onlyController returns (uint256) { require(available(id)); require( block.timestamp + duration + GRACE_PERIOD > block.timestamp + GRACE_PERIOD ); // Prevent future overflow expiries[id] = block.timestamp + duration; if (_exists(id)) { // Name was previously owned, and expired _burn(id); } _mint(owner, id); if (updateRegistry) { ens.setSubnodeOwner(baseNode, bytes32(id), owner); } emit NameRegistered(id, owner, block.timestamp + duration); return block.timestamp + duration; } function renew( uint256 id, uint256 duration ) external override live onlyController returns (uint256) { require(expiries[id] + GRACE_PERIOD >= block.timestamp); // Name must be registered here or in grace period require( expiries[id] + duration + GRACE_PERIOD > duration + GRACE_PERIOD ); // Prevent future overflow expiries[id] += duration; emit NameRenewed(id, expiries[id]); return expiries[id]; } /** * @dev Reclaim ownership of a name in ENS, if you own it in the registrar. */ function reclaim(uint256 id, address owner) external override live { require(_isApprovedOrOwner(msg.sender, id)); ens.setSubnodeOwner(baseNode, bytes32(id), owner); } function supportsInterface( bytes4 interfaceID ) public view override(ERC721, IERC165) returns (bool) { return interfaceID == INTERFACE_META_ID || interfaceID == ERC721_ID || interfaceID == RECLAIM_ID; } }
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 if 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; }
//SPDX-License-Identifier: MIT pragma solidity ~0.8.17; import "./IPriceOracle.sol"; interface IETHRegistrarController { function rentPrice( string memory, uint256 ) external view returns (IPriceOracle.Price memory); function available(string memory) external returns (bool); function makeCommitment( string memory, address, uint256, bytes32, address, bytes[] calldata, bool, uint16 ) external pure returns (bytes32); function commit(bytes32) external; function register( string calldata, address, uint256, bytes32, address, bytes[] calldata, bool, uint16 ) external payable; function registerPoh( string calldata, address, uint256, bytes32, address, bytes[] calldata, bool, uint16, bytes memory ) external; function renew(string calldata, uint256) external payable; }
//SPDX-License-Identifier: MIT pragma solidity >=0.8.17 <0.9.0; interface IPriceOracle { struct Price { uint256 base; uint256 premium; } /** * @dev Returns the price to register or renew a name. * @param name The name being registered or renewed. * @param expires When the name presently expires (0 if this is a new registration). * @param duration How long the name is being registered or extended for, in seconds. * @return base premium tuple of base price + premium price */ function price( string calldata name, uint256 expires, uint256 duration ) external view returns (Price calldata); }
//SPDX-License-Identifier: MIT pragma solidity ~0.8.17; import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol"; /** * @title PohRegistrationManager * @dev Contract to manage the registration status of addresses using Proof of Humanity (PoH). */ contract PohRegistrationManager is Ownable2Step { mapping(address => bool) public hasRegisteredPoh; mapping(address => bool) public managers; modifier onlyManager() { require(managers[msg.sender]); _; } /** * @dev Marks an address as having successfully registered using PoH. * @param _address The address to mark as registered. */ function markAsRegistered(address _address) external onlyManager { hasRegisteredPoh[_address] = true; } /** * @dev Checks if an address has successfully registered using PoH. * @param _address The address to check. * @return bool True if the address has registered, false otherwise. */ function isRegistered(address _address) external view returns (bool) { return hasRegisteredPoh[_address]; } /** * @dev Sets or revokes the manager role for an address. * Allows the contract owner to designate certain addresses as managers, * who are then authorized to mark addresses as having successfully registered using PoH. * This function can also be used to revoke the manager role by setting `isManager` to false. * * @param _manager The address to be set as a manager or to have its manager role revoked. * @param isManager A boolean indicating whether the address should be set as a manager (true) * or have its manager role revoked (false). */ function setManager(address _manager, bool isManager) external onlyOwner { managers[_manager] = isManager; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ~0.8.17; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/cryptography/EIP712.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; /** * @title Contract to check the signature crafted by the POH API. * @author ConsenSys Software Inc. */ contract PohVerifier is EIP712, Ownable { string private constant SIGNING_DOMAIN = "VerifyPoh"; string private constant SIGNATURE_VERSION = "1"; /// @dev POH Signature's signer address address public signer; event SignerUpdated(address indexed newSigner); /** * @notice Contract created with the sender as owner and signer */ constructor() EIP712(SIGNING_DOMAIN, SIGNATURE_VERSION) Ownable() { signer = msg.sender; emit SignerUpdated(signer); } /** * @notice Set a new signer * @dev Signer's address has to be the same address as the POH API signer * @param _signer The new signer's address */ function setSigner(address _signer) external onlyOwner { require(_signer != address(0), "Invalid address"); signer = _signer; emit SignerUpdated(_signer); } /** * @notice Check if the provided signature has been signed by signer * @dev human is supposed to be a POH address, this is what is being signed by the POH API * @param signature The signature to check * @param human the address for which the signature has been crafted * @return True if the signature was made by signer, false otherwise */ function verify( bytes memory signature, address human ) external view virtual returns (bool) { bytes32 digest = _hashTypedDataV4( keccak256(abi.encode(keccak256("POH(address to)"), human)) ); address recoveredSigner = ECDSA.recover(digest, signature); return recoveredSigner == signer; } /** * @notice Returns the signer's address */ function getSigner() external view returns (address) { return signer; } }
pragma solidity >=0.8.4; library StringUtils { /** * @dev Returns the length of a given string * * @param s The string to measure the length of * @return The length of the input string */ function strlen(string memory s) internal pure returns (uint256) { uint256 len; uint256 i = 0; uint256 bytelength = bytes(s).length; for (len = 0; i < bytelength; len++) { bytes1 b = bytes(s)[i]; if (b < 0x80) { i += 1; } else if (b < 0xE0) { i += 2; } else if (b < 0xF0) { i += 3; } else if (b < 0xF8) { i += 4; } else if (b < 0xFC) { i += 5; } else { i += 6; } } return len; } /** * @dev Returns the substring of the string passed in argument * * @param str The string to get the substring from * @param startIndex The start of the substring * @param endIndex The end of the substring * @return The substring result */ function substring( string memory str, uint startIndex, uint endIndex ) internal pure returns (string memory) { bytes memory strBytes = bytes(str); bytes memory result = new bytes(endIndex - startIndex); for (uint i = startIndex; i < endIndex; i++) { result[i - startIndex] = strBytes[i]; } return string(result); } }
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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface IABIResolver { event ABIChanged(bytes32 indexed node, uint256 indexed contentType); /** * Returns the ABI associated with an ENS node. * Defined in EIP205. * @param node The ENS node to query * @param contentTypes A bitwise OR of the ABI formats accepted by the caller. * @return contentType The content type of the return value * @return data The ABI data */ function ABI( bytes32 node, uint256 contentTypes ) external view returns (uint256, bytes memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; /** * Interface for the new (multicoin) addr function. */ interface IAddressResolver { event AddressChanged( bytes32 indexed node, uint256 coinType, bytes newAddress ); function addr( bytes32 node, uint256 coinType ) external view returns (bytes memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; /** * Interface for the legacy (ETH-only) addr function. */ interface IAddrResolver { event AddrChanged(bytes32 indexed node, address a); /** * Returns the address associated with an ENS node. * @param node The ENS node to query. * @return The associated address. */ function addr(bytes32 node) external view returns (address payable); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface IContentHashResolver { event ContenthashChanged(bytes32 indexed node, bytes hash); /** * Returns the contenthash associated with an ENS node. * @param node The ENS node to query. * @return The associated contenthash. */ function contenthash(bytes32 node) external view returns (bytes memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface IDNSRecordResolver { // DNSRecordChanged is emitted whenever a given node/name/resource's RRSET is updated. event DNSRecordChanged( bytes32 indexed node, bytes name, uint16 resource, bytes record ); // DNSRecordDeleted is emitted whenever a given node/name/resource's RRSET is deleted. event DNSRecordDeleted(bytes32 indexed node, bytes name, uint16 resource); /** * Obtain a DNS record. * @param node the namehash of the node for which to fetch the record * @param name the keccak-256 hash of the fully-qualified name for which to fetch the record * @param resource the ID of the resource as per https://en.wikipedia.org/wiki/List_of_DNS_record_types * @return the DNS record in wire format if present, otherwise empty */ function dnsRecord( bytes32 node, bytes32 name, uint16 resource ) external view returns (bytes memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface IDNSZoneResolver { // DNSZonehashChanged is emitted whenever a given node's zone hash is updated. event DNSZonehashChanged( bytes32 indexed node, bytes lastzonehash, bytes zonehash ); /** * zonehash obtains the hash for the zone. * @param node The ENS node to query. * @return The associated contenthash. */ function zonehash(bytes32 node) external view returns (bytes memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IExtendedResolver { function resolve( bytes memory name, bytes memory data ) external view returns (bytes memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface IInterfaceResolver { event InterfaceChanged( bytes32 indexed node, bytes4 indexed interfaceID, address implementer ); /** * Returns the address of a contract that implements the specified interface for this name. * If an implementer has not been set for this interfaceID and name, the resolver will query * the contract at `addr()`. If `addr()` is set, a contract exists at that address, and that * contract implements EIP165 and returns `true` for the specified interfaceID, its address * will be returned. * @param node The ENS node to query. * @param interfaceID The EIP 165 interface ID to check for. * @return The address that implements this interface, or 0 if the interface is unsupported. */ function interfaceImplementer( bytes32 node, bytes4 interfaceID ) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface INameResolver { event NameChanged(bytes32 indexed node, string name); /** * Returns the name associated with an ENS node, for reverse records. * Defined in EIP181. * @param node The ENS node to query. * @return The associated name. */ function name(bytes32 node) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface IPubkeyResolver { event PubkeyChanged(bytes32 indexed node, bytes32 x, bytes32 y); /** * Returns the SECP256k1 public key associated with an ENS node. * Defined in EIP 619. * @param node The ENS node to query * @return x The X coordinate of the curve point for the public key. * @return y The Y coordinate of the curve point for the public key. */ function pubkey(bytes32 node) external view returns (bytes32 x, bytes32 y); }
// SPDX-License-Identifier: MIT pragma solidity >=0.8.4; interface ITextResolver { event TextChanged( bytes32 indexed node, string indexed indexedKey, string key, string value ); /** * Returns the text data associated with an ENS node and key. * @param node The ENS node to query. * @param key The text data key to query. * @return The associated text data. */ function text( bytes32 node, string calldata key ) external view returns (string memory); }
//SPDX-License-Identifier: MIT pragma solidity >=0.8.4; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import "./profiles/IABIResolver.sol"; import "./profiles/IAddressResolver.sol"; import "./profiles/IAddrResolver.sol"; import "./profiles/IContentHashResolver.sol"; import "./profiles/IDNSRecordResolver.sol"; import "./profiles/IDNSZoneResolver.sol"; import "./profiles/IInterfaceResolver.sol"; import "./profiles/INameResolver.sol"; import "./profiles/IPubkeyResolver.sol"; import "./profiles/ITextResolver.sol"; import "./profiles/IExtendedResolver.sol"; /** * A generic resolver interface which includes all the functions including the ones deprecated */ interface Resolver is IERC165, IABIResolver, IAddressResolver, IAddrResolver, IContentHashResolver, IDNSRecordResolver, IDNSZoneResolver, IInterfaceResolver, INameResolver, IPubkeyResolver, ITextResolver, IExtendedResolver { /* Deprecated events */ event ContentChanged(bytes32 indexed node, bytes32 hash); function setApprovalForAll(address, bool) external; function approve(bytes32 node, address delegate, bool approved) external; function isApprovedForAll(address account, address operator) external; function isApprovedFor( address owner, bytes32 node, address delegate ) external; function setABI( bytes32 node, uint256 contentType, bytes calldata data ) external; function setAddr(bytes32 node, address addr) external; function setAddr(bytes32 node, uint256 coinType, bytes calldata a) external; function setContenthash(bytes32 node, bytes calldata hash) external; function setDnsrr(bytes32 node, bytes calldata data) external; function setName(bytes32 node, string calldata _name) external; function setPubkey(bytes32 node, bytes32 x, bytes32 y) external; function setText( bytes32 node, string calldata key, string calldata value ) external; function setInterface( bytes32 node, bytes4 interfaceID, address implementer ) external; function multicall( bytes[] calldata data ) external returns (bytes[] memory results); function multicallWithNodeCheck( bytes32 nodehash, bytes[] calldata data ) external returns (bytes[] memory results); /* Deprecated functions */ function content(bytes32 node) external view returns (bytes32); function multihash(bytes32 node) external view returns (bytes memory); function setContent(bytes32 node, bytes32 hash) external; function setMultihash(bytes32 node, bytes calldata hash) external; }
pragma solidity >=0.8.4; interface IReverseRegistrar { function setDefaultResolver(address resolver) external; function claim(address owner) external returns (bytes32); function claimForAddr( address addr, address owner, address resolver ) external returns (bytes32); function claimWithResolver( address owner, address resolver ) external returns (bytes32); function setName(string memory name) external returns (bytes32); function setNameForAddr( address addr, address owner, address resolver, string memory name ) external returns (bytes32); function node(address addr) external pure returns (bytes32); }
//SPDX-License-Identifier: MIT pragma solidity >=0.8.17 <0.9.0; import {ENS} from "../registry/ENS.sol"; import {IReverseRegistrar} from "../reverseRegistrar/IReverseRegistrar.sol"; contract ReverseClaimer { bytes32 constant ADDR_REVERSE_NODE = 0x91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e2; constructor(ENS ens, address claimant) { IReverseRegistrar reverseRegistrar = IReverseRegistrar( ens.owner(ADDR_REVERSE_NODE) ); reverseRegistrar.claim(claimant); } }
pragma solidity >=0.8.4; import "../registry/ENS.sol"; import "./IReverseRegistrar.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "../root/Controllable.sol"; abstract contract NameResolver { function setName(bytes32 node, string memory name) public virtual; } bytes32 constant lookup = 0x3031323334353637383961626364656600000000000000000000000000000000; bytes32 constant ADDR_REVERSE_NODE = 0x91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e2; // namehash('addr.reverse') contract ReverseRegistrar is Ownable, Controllable, IReverseRegistrar { ENS public immutable ens; NameResolver public defaultResolver; event ReverseClaimed(address indexed addr, bytes32 indexed node); event DefaultResolverChanged(NameResolver indexed resolver); /** * @dev Constructor * @param ensAddr The address of the ENS registry. */ constructor(ENS ensAddr) { ens = ensAddr; // Assign ownership of the reverse record to our deployer ReverseRegistrar oldRegistrar = ReverseRegistrar( ensAddr.owner(ADDR_REVERSE_NODE) ); if (address(oldRegistrar) != address(0x0)) { oldRegistrar.claim(msg.sender); } } modifier authorised(address addr) { require( addr == msg.sender || controllers[msg.sender] || ens.isApprovedForAll(addr, msg.sender) || ownsContract(addr), "ReverseRegistrar: Caller is not a controller or authorised by address or the address itself" ); _; } function setDefaultResolver(address resolver) public override onlyOwner { require( address(resolver) != address(0), "ReverseRegistrar: Resolver address must not be 0" ); defaultResolver = NameResolver(resolver); emit DefaultResolverChanged(NameResolver(resolver)); } /** * @dev Transfers ownership of the reverse ENS record associated with the * calling account. * @param owner The address to set as the owner of the reverse record in ENS. * @return The ENS node hash of the reverse record. */ function claim(address owner) public override returns (bytes32) { return claimForAddr(msg.sender, owner, address(defaultResolver)); } /** * @dev Transfers ownership of the reverse ENS record associated with the * calling account. * @param addr The reverse record to set * @param owner The address to set as the owner of the reverse record in ENS. * @param resolver The resolver of the reverse node * @return The ENS node hash of the reverse record. */ function claimForAddr( address addr, address owner, address resolver ) public override authorised(addr) returns (bytes32) { bytes32 labelHash = sha3HexAddress(addr); bytes32 reverseNode = keccak256( abi.encodePacked(ADDR_REVERSE_NODE, labelHash) ); emit ReverseClaimed(addr, reverseNode); ens.setSubnodeRecord(ADDR_REVERSE_NODE, labelHash, owner, resolver, 0); return reverseNode; } /** * @dev Transfers ownership of the reverse ENS record associated with the * calling account. * @param owner The address to set as the owner of the reverse record in ENS. * @param resolver The address of the resolver to set; 0 to leave unchanged. * @return The ENS node hash of the reverse record. */ function claimWithResolver( address owner, address resolver ) public override returns (bytes32) { return claimForAddr(msg.sender, owner, resolver); } /** * @dev Sets the `name()` record for the reverse ENS record associated with * the calling account. First updates the resolver to the default reverse * resolver if necessary. * @param name The name to set for this address. * @return The ENS node hash of the reverse record. */ function setName(string memory name) public override returns (bytes32) { return setNameForAddr( msg.sender, msg.sender, address(defaultResolver), name ); } /** * @dev Sets the `name()` record for the reverse ENS record associated with * the account provided. Updates the resolver to a designated resolver * Only callable by controllers and authorised users * @param addr The reverse record to set * @param owner The owner of the reverse node * @param resolver The resolver of the reverse node * @param name The name to set for this address. * @return The ENS node hash of the reverse record. */ function setNameForAddr( address addr, address owner, address resolver, string memory name ) public override returns (bytes32) { bytes32 node = claimForAddr(addr, owner, resolver); NameResolver(resolver).setName(node, name); return node; } /** * @dev Returns the node hash for a given account's reverse records. * @param addr The address to hash * @return The ENS node hash. */ function node(address addr) public pure override returns (bytes32) { return keccak256( abi.encodePacked(ADDR_REVERSE_NODE, sha3HexAddress(addr)) ); } /** * @dev An optimised function to compute the sha3 of the lower-case * hexadecimal representation of an Ethereum address. * @param addr The address to hash * @return ret The SHA3 hash of the lower-case hexadecimal encoding of the * input address. */ function sha3HexAddress(address addr) private pure returns (bytes32 ret) { assembly { for { let i := 40 } gt(i, 0) { } { i := sub(i, 1) mstore8(i, byte(and(addr, 0xf), lookup)) addr := div(addr, 0x10) i := sub(i, 1) mstore8(i, byte(and(addr, 0xf), lookup)) addr := div(addr, 0x10) } ret := keccak256(0, 40) } } function ownsContract(address addr) internal view returns (bool) { try Ownable(addr).owner() returns (address owner) { return owner == msg.sender; } catch { return false; } } }
pragma solidity ^0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; contract Controllable is Ownable { mapping(address => bool) public controllers; event ControllerChanged(address indexed controller, bool enabled); modifier onlyController() { require( controllers[msg.sender], "Controllable: Caller is not a controller" ); _; } function setController(address controller, bool enabled) public onlyOwner { controllers[controller] = enabled; emit ControllerChanged(controller, enabled); } }
//SPDX-License-Identifier: MIT pragma solidity >=0.8.17 <0.9.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** @notice Contract is used to recover ERC20 tokens sent to the contract by mistake. */ contract ERC20Recoverable is Ownable { /** @notice Recover ERC20 tokens sent to the contract by mistake. @dev The contract is Ownable and only the owner can call the recover function. @param _to The address to send the tokens to. @param _token The address of the ERC20 token to recover @param _amount The amount of tokens to recover. */ function recoverFunds( address _token, address _to, uint256 _amount ) external onlyOwner { IERC20(_token).transfer(_to, _amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {BytesUtils} from "../wrapper/BytesUtils.sol"; library NameEncoder { using BytesUtils for bytes; function dnsEncodeName( string memory name ) internal pure returns (bytes memory dnsName, bytes32 node) { uint8 labelLength = 0; bytes memory bytesName = bytes(name); uint256 length = bytesName.length; dnsName = new bytes(length + 2); node = 0; if (length == 0) { dnsName[0] = 0; return (dnsName, node); } // use unchecked to save gas since we check for an underflow // and we check for the length before the loop unchecked { for (uint256 i = length - 1; i >= 0; i--) { if (bytesName[i] == ".") { dnsName[i + 1] = bytes1(labelLength); node = keccak256( abi.encodePacked( node, bytesName.keccak(i + 1, labelLength) ) ); labelLength = 0; } else { labelLength += 1; dnsName[i + 1] = bytesName[i]; } if (i == 0) { break; } } } node = keccak256( abi.encodePacked(node, bytesName.keccak(0, labelLength)) ); dnsName[0] = bytes1(labelLength); return (dnsName, node); } }
//SPDX-License-Identifier: MIT pragma solidity ~0.8.17; library BytesUtils { /* * @dev Returns the keccak-256 hash of a byte range. * @param self The byte string to hash. * @param offset The position to start hashing at. * @param len The number of bytes to hash. * @return The hash of the byte range. */ function keccak( bytes memory self, uint256 offset, uint256 len ) internal pure returns (bytes32 ret) { require(offset + len <= self.length); assembly { ret := keccak256(add(add(self, 32), offset), len) } } /** * @dev Returns the ENS namehash of a DNS-encoded name. * @param self The DNS-encoded name to hash. * @param offset The offset at which to start hashing. * @return The namehash of the name. */ function namehash( bytes memory self, uint256 offset ) internal pure returns (bytes32) { (bytes32 labelhash, uint256 newOffset) = readLabel(self, offset); if (labelhash == bytes32(0)) { require(offset == self.length - 1, "namehash: Junk at end of name"); return bytes32(0); } return keccak256(abi.encodePacked(namehash(self, newOffset), labelhash)); } /** * @dev Returns the keccak-256 hash of a DNS-encoded label, and the offset to the start of the next label. * @param self The byte string to read a label from. * @param idx The index to read a label at. * @return labelhash The hash of the label at the specified index, or 0 if it is the last label. * @return newIdx The index of the start of the next label. */ function readLabel( bytes memory self, uint256 idx ) internal pure returns (bytes32 labelhash, uint256 newIdx) { require(idx < self.length, "readLabel: Index out of bounds"); uint256 len = uint256(uint8(self[idx])); if (len > 0) { labelhash = keccak(self, idx + 1, len); } else { labelhash = bytes32(0); } newIdx = idx + len + 1; } }
//SPDX-License-Identifier: MIT pragma solidity ~0.8.17; interface IMetadataService { function uri(uint256) external view returns (string memory); }
//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 wrapAnyLD( string calldata label, address wrappedOwner, uint16 ownerControlledFuses, address resolver ) external returns (uint64 expires); function registerAndWrap( 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 unwrapAnyLD( 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); }
//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; }
{ "optimizer": { "enabled": true, "runs": 1200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract BaseRegistrarImplementation","name":"_base","type":"address"},{"internalType":"contract IPriceOracle","name":"_prices","type":"address"},{"internalType":"uint256","name":"_minCommitmentAge","type":"uint256"},{"internalType":"uint256","name":"_maxCommitmentAge","type":"uint256"},{"internalType":"contract ReverseRegistrar","name":"_reverseRegistrar","type":"address"},{"internalType":"contract INameWrapper","name":"_nameWrapper","type":"address"},{"internalType":"contract ENS","name":"_ens","type":"address"},{"internalType":"contract PohVerifier","name":"_pohVerifier","type":"address"},{"internalType":"contract PohRegistrationManager","name":"_pohRegistrationManager","type":"address"},{"internalType":"bytes32","name":"_baseNode","type":"bytes32"},{"internalType":"string","name":"_baseDomain","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BaseNodeAsETHNodeOrROOTNodeNotAllowed","type":"error"},{"inputs":[{"internalType":"bytes32","name":"commitment","type":"bytes32"}],"name":"CommitmentTooNew","type":"error"},{"inputs":[{"internalType":"bytes32","name":"commitment","type":"bytes32"}],"name":"CommitmentTooOld","type":"error"},{"inputs":[],"name":"DifferentBaseDomainBaseNode","type":"error"},{"inputs":[{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"DurationTooShort","type":"error"},{"inputs":[],"name":"EmptyStringNotAllowed","type":"error"},{"inputs":[],"name":"InsufficientValue","type":"error"},{"inputs":[],"name":"MaxCommitmentAgeTooHigh","type":"error"},{"inputs":[],"name":"MaxCommitmentAgeTooLow","type":"error"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"NameNotAvailable","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnerAlreadyRegistered","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"PohVerificationFailed","type":"error"},{"inputs":[{"internalType":"uint256","name":"currentTime","type":"uint256"},{"internalType":"uint256","name":"renewTimeStart","type":"uint256"}],"name":"RenewPOHNotStarted","type":"error"},{"inputs":[],"name":"ResolverRequiredWhenDataSupplied","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"sender","type":"address"}],"name":"SenderNotOwner","type":"error"},{"inputs":[{"internalType":"bytes32","name":"commitment","type":"bytes32"}],"name":"UnexpiredCommitmentExists","type":"error"},{"inputs":[{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"WrongPohRegistrationDuration","type":"error"},{"inputs":[],"name":"ZeroAddressNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":true,"internalType":"bytes32","name":"label","type":"bytes32"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"baseCost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"premium","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"NameRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":true,"internalType":"bytes32","name":"label","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"cost","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"NameRenewed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":true,"internalType":"bytes32","name":"label","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"NameRenewedPoh","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":true,"internalType":"bytes32","name":"label","type":"bytes32"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"OwnerNameRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":true,"internalType":"bytes32","name":"label","type":"bytes32"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"expires","type":"uint256"}],"name":"PohNameRegistered","type":"event"},{"inputs":[],"name":"GRACE_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_REGISTRATION_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POH_REGISTRATION_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"available","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseDomain","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseNode","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"commitment","type":"bytes32"}],"name":"commit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"commitments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"bytes32","name":"secret","type":"bytes32"},{"internalType":"address","name":"resolver","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"},{"internalType":"bool","name":"reverseRecord","type":"bool"},{"internalType":"uint16","name":"ownerControlledFuses","type":"uint16"}],"name":"makeCommitment","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxCommitmentAge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minCommitmentAge","outputs":[{"internalType":"uint256","name":"","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":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"address","name":"resolver","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"},{"internalType":"uint16","name":"ownerControlledFuses","type":"uint16"},{"internalType":"bool","name":"reverseRecord","type":"bool"}],"name":"ownerRegister","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pohRegistrationManager","outputs":[{"internalType":"contract PohRegistrationManager","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pohVerifier","outputs":[{"internalType":"contract PohVerifier","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prices","outputs":[{"internalType":"contract IPriceOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"redeemed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"bytes32","name":"secret","type":"bytes32"},{"internalType":"address","name":"resolver","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"},{"internalType":"bool","name":"reverseRecord","type":"bool"},{"internalType":"uint16","name":"ownerControlledFuses","type":"uint16"}],"name":"register","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"duration","type":"uint256"},{"internalType":"bytes32","name":"secret","type":"bytes32"},{"internalType":"address","name":"resolver","type":"address"},{"internalType":"bytes[]","name":"data","type":"bytes[]"},{"internalType":"bool","name":"reverseRecord","type":"bool"},{"internalType":"uint16","name":"ownerControlledFuses","type":"uint16"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"registerPoh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"renew","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"renewPoh","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"duration","type":"uint256"}],"name":"rentPrice","outputs":[{"components":[{"internalType":"uint256","name":"base","type":"uint256"},{"internalType":"uint256","name":"premium","type":"uint256"}],"internalType":"struct IPriceOracle.Price","name":"price","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reverseRegistrar","outputs":[{"internalType":"contract ReverseRegistrar","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"valid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101a06040523480156200001257600080fd5b5060405162003b7a38038062003b7a83398101604081905262000035916200092f565b843362000042816200039b565b6040516302571be360e01b81527f91d1777781884d03a6757a803996e38de2a42967fb37eeaca72729271025a9e260048201526000906001600160a01b038416906302571be390602401602060405180830381865afa158015620000aa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620000d0919062000a19565b604051630f41a04d60e11b81526001600160a01b03848116600483015291925090821690631e83409a906024016020604051808303816000875af11580156200011d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000143919062000a40565b50869250506001600160a01b038216905062000172576040516342bcdf7f60e11b815260040160405180910390fd5b836001600160a01b0381166200019b576040516342bcdf7f60e11b815260040160405180910390fd5b828051600003620001bf576040516302260d9d60e11b815260040160405180910390fd5b8b8b11620001e0576040516307cb550760e31b815260040160405180910390fd5b428b11156200020257604051630b4319e560e21b815260040160405180910390fd5b8415806200022f57507f93cdeb708b7545dc668eb9280176169d1c33cfd8ed6f04690a0bcc88a93fc4ae85145b156200024e576040516370dada4560e01b815260040160405180910390fd5b6000620002976200028660016200027088620003eb60201b620016ef1760201c565b886200050760201b6200187e179092919060201c565b620005e560201b6200194b1760201c565b915050858114620002bb576040516302536ead60e31b815260040160405180910390fd5b8e6001600160a01b03166080816001600160a01b0316815250508d6001600160a01b031660a0816001600160a01b0316815250508c60c081815250508b60e081815250508a6001600160a01b0316610100816001600160a01b031681525050896001600160a01b0316610120816001600160a01b031681525050876001600160a01b0316610140816001600160a01b031681525050866001600160a01b0316610160816001600160a01b031681525050856101808181525050846002908162000385919062000ae9565b5050505050505050505050505050505062000c2f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8051600090819081905b80821015620004fe57600085838151811062000415576200041562000bb5565b01602001516001600160f81b0319169050600160ff1b81101562000448576200044060018462000be1565b9250620004e8565b600760fd1b6001600160f81b0319821610156200046c576200044060028462000be1565b600f60fc1b6001600160f81b03198216101562000490576200044060038462000be1565b601f60fb1b6001600160f81b031982161015620004b4576200044060048462000be1565b603f60fa1b6001600160f81b031982161015620004d8576200044060058462000be1565b620004e560068462000be1565b92505b5082620004f58162000bfd565b935050620003f5565b50909392505050565b606083600062000518858562000c19565b6001600160401b038111156200053257620005326200086a565b6040519080825280601f01601f1916602001820160405280156200055d576020820181803683370190505b509050845b84811015620005db5782818151811062000580576200058062000bb5565b01602001516001600160f81b031916826200059c888462000c19565b81518110620005af57620005af62000bb5565b60200101906001600160f81b031916908160001a90535080620005d28162000bfd565b91505062000562565b5095945050505050565b805160609060009081908490620005fe81600262000be1565b6001600160401b038111156200061857620006186200086a565b6040519080825280601f01601f19166020018201604052801562000643576020820181803683370190505b509450600093508084036200068c57600060f81b856000815181106200066d576200066d62000bb5565b60200101906001600160f81b031916908160001a905350505050915091565b60001981015b828181518110620006a757620006a762000bb5565b01602001516001600160f81b031916601760f91b036200074b578360f81b868260010181518110620006dd57620006dd62000bb5565b60200101906001600160f81b031916908160001a9053508462000717826001018660ff16866200081860201b62001b5c179092919060201c565b60408051602081019390935282015260600160405160208183030381529060405280519060200120945060009350620007a1565b60018401935082818151811062000766576200076662000bb5565b602001015160f81c60f81b86826001018151811062000789576200078962000bb5565b60200101906001600160f81b031916908160001a9053505b8015620007b2576000190162000692565b5083620007d460008560ff16856200081860201b62001b5c179092919060201c565b6040805160208101939093528201526060016040516020818303038152906040528051906020012093508260f81b856000815181106200066d576200066d62000bb5565b825160009062000829838562000be1565b11156200083557600080fd5b5091016020012090565b6001600160a01b03811681146200085557600080fd5b50565b805162000865816200083f565b919050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200089257600080fd5b81516001600160401b0380821115620008af57620008af6200086a565b604051601f8301601f19908116603f01168101908282118183101715620008da57620008da6200086a565b81604052838152602092508683858801011115620008f757600080fd5b600091505b838210156200091b5785820183015181830184015290820190620008fc565b600093810190920192909252949350505050565b60008060008060008060008060008060006101608c8e0312156200095257600080fd5b8b516200095f816200083f565b60208d0151909b5062000972816200083f565b60408d015160608e0151919b50995097506200099160808d0162000858565b9650620009a160a08d0162000858565b9550620009b160c08d0162000858565b9450620009c160e08d0162000858565b9350620009d26101008d0162000858565b6101208d01516101408e015191945092506001600160401b03811115620009f857600080fd5b62000a068e828f0162000880565b9150509295989b509295989b9093969950565b60006020828403121562000a2c57600080fd5b815162000a39816200083f565b9392505050565b60006020828403121562000a5357600080fd5b5051919050565b600181811c9082168062000a6f57607f821691505b60208210810362000a9057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000ae457600081815260208120601f850160051c8101602086101562000abf5750805b601f850160051c820191505b8181101562000ae05782815560010162000acb565b5050505b505050565b81516001600160401b0381111562000b055762000b056200086a565b62000b1d8162000b16845462000a5a565b8462000a96565b602080601f83116001811462000b55576000841562000b3c5750858301515b600019600386901b1c1916600185901b17855562000ae0565b600085815260208120601f198616915b8281101562000b865788860151825594840194600190910190840162000b65565b508582101562000ba55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111562000bf75762000bf762000bcb565b92915050565b60006001820162000c125762000c1262000bcb565b5060010190565b8181038181111562000bf75762000bf762000bcb565b60805160a05160c05160e0516101005161012051610140516101605161018051612e6362000d17600039600081816105eb015281816108580152611f7b0152600081816102be015281816110980152611301015260008181610219015281816109a20152610fc0015260008181610505015281816108d401528181610b49015281816114120152611c880152600081816103a0015261205a015260008181610583015281816115f00152611ec10152600081816104730152611e4a0152600081816105b701526111a8015260008181610a5d015281816111dd015261155f0152612e636000f3fe6080604052600436106101cd5760003560e01c806383e7f6ff116100f7578063acf1a84111610095578063d3419bf311610064578063d3419bf3146105a5578063ddf7fcb0146105d9578063f14fcbc81461060d578063f2fde38b1461062d57600080fd5b8063acf1a84114610527578063aeb8ce9b1461053a578063c1a287e21461055a578063ce1e09c01461057157600080fd5b80638da5cb5b116100d15780638da5cb5b146104955780639791c097146104b35780639f4568ef146104d3578063a8e5fbc0146104f357600080fd5b806383e7f6ff1461040f5780638a95b09f1461044a5780638d839ffe1461046157600080fd5b80635d3590d51161016f5780637cdcceff1161013e5780637cdcceff14610376578063808698531461038e57806382cdbacf146103c2578063839df945146103e257600080fd5b80635d3590d51461030057806365a69dcf14610320578063715018a61461034e57806374694a2b1461036357600080fd5b806348136c97116101ab57806348136c971461026a5780634aa7dad51461028c57806350bebad4146102ac5780635604d995146102e057600080fd5b806301ffc9a7146101d2578063070bdbef146102075780633ccfd60b14610253575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461210f565b61064d565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061023b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101fe565b34801561025f57600080fd5b506102686106e6565b005b34801561027657600080fd5b5061027f610723565b6040516101fe91906121a1565b34801561029857600080fd5b506102686102a7366004612292565b6107b1565b3480156102b857600080fd5b5061023b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156102ec57600080fd5b506102686102fb36600461241e565b61083a565b34801561030c57600080fd5b5061026861031b366004612487565b610c08565b34801561032c57600080fd5b5061034061033b3660046124c8565b610ca2565b6040519081526020016101fe565b34801561035a57600080fd5b50610268610d68565b610268610371366004612591565b610d7c565b34801561038257600080fd5b506103406305a39a8081565b34801561039a57600080fd5b5061023b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156103ce57600080fd5b506102686103dd366004612660565b610ee4565b3480156103ee57600080fd5b506103406103fd36600461274d565b60016020526000908152604090205481565b34801561041b57600080fd5b5061042f61042a366004612766565b611177565b604080518251815260209283015192810192909252016101fe565b34801561045657600080fd5b506103406224ea0081565b34801561046d57600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b3480156104a157600080fd5b506000546001600160a01b031661023b565b3480156104bf57600080fd5b506101f26104ce3660046127ab565b6112b1565b3480156104df57600080fd5b506101f26104ee3660046127e0565b6112c6565b3480156104ff57600080fd5b5061023b7f000000000000000000000000000000000000000000000000000000000000000081565b6102686105353660046127fd565b61136e565b34801561054657600080fd5b506101f26105553660046127ab565b611516565b34801561056657600080fd5b506103406276a70081565b34801561057d57600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b3480156105b157600080fd5b5061023b7f000000000000000000000000000000000000000000000000000000000000000081565b3480156105e557600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000000081565b34801561061957600080fd5b5061026861062836600461274d565b6115d9565b34801561063957600080fd5b506102686106483660046127e0565b611662565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a70000000000000000000000000000000000000000000000000000000014806106e057507fffffffff0000000000000000000000000000000000000000000000000000000082167fe3e336c600000000000000000000000000000000000000000000000000000000145b92915050565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610720573d6000803e3d6000fd5b50565b6002805461073090612849565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90612849565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b505050505081565b6107b9611b80565b60006107cf8a8a8a8a858b8b8b8a8c6001611bda565b9050876001600160a01b03168a8a6040516107eb929190612883565b60405180910390207f508f53f3c8e5a9fe2d20d2f7cf17580c2e3e9919909803d133196ea012e412bf8c8c85604051610826939291906128bc565b60405180910390a350505050505050505050565b6000838360405161084c929190612883565b604080519182900382207f00000000000000000000000000000000000000000000000000000000000000006020840152908201819052915060009060600160408051808303601f190181529082905280516020909101207f0178fe3f0000000000000000000000000000000000000000000000000000000082526004820181905291506000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690630178fe3f90602401606060405180830381865afa158015610923573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094791906128e0565b5090915050336001600160a01b0382161461098b5760405163113b199f60e01b81526001600160a01b03821660048201523360248201526044015b60405180910390fd5b604051633d3ac1b560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690633d3ac1b5906109d99087908590600401612943565b602060405180830381865afa1580156109f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1a919061296e565b610a4257604051635199950b60e11b81526001600160a01b0382166004820152602401610982565b604051636b727d4360e11b81526004810184905283906000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d6e4fa8690602401602060405180830381865afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad0919061298b565b90506000610ae16276a700836129ba565b905080421015610b26576040517f4d18339f00000000000000000000000000000000000000000000000000000000815242600482015260248101829052604401610982565b60405163c475abff60e01b8152600481018490526305a39a8060248201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063c475abff906044016020604051808303816000875af1158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe919061298b565b9050867f8c1769c9bb31bc3894133bf22a010cacd497583d40f32176b70d49ba0a53e4568b8b84604051610bf4939291906128bc565b60405180910390a250505050505050505050565b610c10611b80565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015610c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c919061296e565b50505050565b6000876224ea00811015610ccc57604051639a71997b60e01b815260048101829052602401610982565b8a5160208c01208515801590610ce957506001600160a01b038816155b15610d20576040517fd3f605c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808b8b8b8b8b8b8b8b604051602001610d4199989796959493929190612a5f565b60405160208183030381529060405280519060200120925050509998505050505050505050565b610d70611b80565b610d7a6000611da3565b565b6000610dbf8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508c9250611177915050565b60208101518151919250610dd291612ac1565b341015610df25760405163044044a560e21b815260040160405180910390fd5b6000610e088c8c8c8c8c8c8c8c8c8c6000611bda565b9050896001600160a01b03168c8c604051610e24929190612883565b60405180910390207f69e37f151eb98a09618ddaa80c8cfaf1ce5996867c489f45b555b412271ebf278e8e8660000151876020015187604051610e6b959493929190612ad4565b60405180910390a360208201518251610e849190612ac1565b341115610ed6576020820151825133916108fc91610ea29190612ac1565b610eac90346129ba565b6040518115909202916000818181858888f19350505050158015610ed4573d6000803e3d6000fd5b505b505050505050505050505050565b336001600160a01b038a1614610f1e5760405163113b199f60e01b81526001600160a01b038a166004820152336024820152604401610982565b6305a39a808814610f5e576040517fbac4faf100000000000000000000000000000000000000000000000000000000815260048101899052602401610982565b610f67896112c6565b15610fa9576040517f533d87dd0000000000000000000000000000000000000000000000000000000081526001600160a01b038a166004820152602401610982565b604051633d3ac1b560e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690633d3ac1b590610ff79084908d90600401612943565b602060405180830381865afa158015611014573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611038919061296e565b61106057604051635199950b60e11b81526001600160a01b038a166004820152602401610982565b6040517f3682447e0000000000000000000000000000000000000000000000000000000081526001600160a01b038a811660048301527f00000000000000000000000000000000000000000000000000000000000000001690633682447e90602401600060405180830381600087803b1580156110dc57600080fd5b505af11580156110f0573d6000803e3d6000fd5b50505050600061110a8c8c8c8c8c8c8c8c8c8c6000611bda565b9050896001600160a01b03168c8c604051611126929190612883565b60405180910390207fc20d0170f1f4e2758fc10a41d3746bd99e421a29b0a75c445558d7119ff454e58e8e85604051611161939291906128bc565b60405180910390a3505050505050505050505050565b604080518082019091526000808252602082015282516020840120604051636b727d4360e11b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116916350e9a7159187917f00000000000000000000000000000000000000000000000000000000000000009091169063d6e4fa8690602401602060405180830381865afa158015611226573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124a919061298b565b866040518463ffffffff1660e01b815260040161126993929190612b05565b6040805180830381865afa158015611285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a99190612b2a565b949350505050565b600060036112be836116ef565b101592915050565b6040517fc3c5a5470000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526000917f00000000000000000000000000000000000000000000000000000000000000009091169063c3c5a54790602401602060405180830381865afa15801561134a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e0919061296e565b60008383604051611380929190612883565b604080519182900382206020601f8701819004810284018101909252858352925082916000916113cd91908890889081908401838280828437600092019190915250889250611177915050565b80519091503410156113f25760405163044044a560e21b815260040160405180910390fd5b60405163c475abff60e01b815260048101839052602481018590526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063c475abff906044016020604051808303816000875af1158015611463573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611487919061298b565b82519091503411156114cf57815133906108fc906114a590346129ba565b6040518115909202916000818181858888f193505050501580156114cd573d6000803e3d6000fd5b505b837f3da24c024582931cfaf8267d8ed24d13a82a8068d5bd337d30ec45cea4e506ae888834856040516115059493929190612b79565b60405180910390a250505050505050565b80516020820120600090611529836112b1565b80156115d257506040517f96e494e8000000000000000000000000000000000000000000000000000000008152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906396e494e890602401602060405180830381865afa1580156115ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d2919061296e565b9392505050565b6000818152600160205260409020544290611615907f000000000000000000000000000000000000000000000000000000000000000090612ac1565b1061164f576040517f0a059d7100000000000000000000000000000000000000000000000000000000815260048101829052602401610982565b6000908152600160205260409020429055565b61166a611b80565b6001600160a01b0381166116e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610982565b61072081611da3565b8051600090819081905b8082101561187557600085838151811061171557611715612ba0565b01602001516001600160f81b03191690507f800000000000000000000000000000000000000000000000000000000000000081101561176057611759600184612ac1565b9250611862565b7fe0000000000000000000000000000000000000000000000000000000000000006001600160f81b03198216101561179d57611759600284612ac1565b7ff0000000000000000000000000000000000000000000000000000000000000006001600160f81b0319821610156117da57611759600384612ac1565b7ff8000000000000000000000000000000000000000000000000000000000000006001600160f81b03198216101561181757611759600484612ac1565b7ffc000000000000000000000000000000000000000000000000000000000000006001600160f81b03198216101561185457611759600584612ac1565b61185f600684612ac1565b92505b508261186d81612bb6565b9350506116f9565b50909392505050565b606083600061188d85856129ba565b67ffffffffffffffff8111156118a5576118a5612359565b6040519080825280601f01601f1916602001820160405280156118cf576020820181803683370190505b509050845b84811015611941578281815181106118ee576118ee612ba0565b01602001516001600160f81b0319168261190888846129ba565b8151811061191857611918612ba0565b60200101906001600160f81b031916908160001a9053508061193981612bb6565b9150506118d4565b5095945050505050565b805160609060009081908490611962816002612ac1565b67ffffffffffffffff81111561197a5761197a612359565b6040519080825280601f01601f1916602001820160405280156119a4576020820181803683370190505b509450600093508084036119e957600060f81b856000815181106119ca576119ca612ba0565b60200101906001600160f81b031916908160001a905350505050915091565b60001981015b828181518110611a0157611a01612ba0565b01602001516001600160f81b0319167f2e0000000000000000000000000000000000000000000000000000000000000003611aab578360f81b868260010181518110611a4f57611a4f612ba0565b60200101906001600160f81b031916908160001a90535084611a78846001840160ff8816611b5c565b60408051602081019390935282015260600160405160208183030381529060405280519060200120945060009350611afb565b600184019350828181518110611ac357611ac3612ba0565b602001015160f81c60f81b868260010181518110611ae357611ae3612ba0565b60200101906001600160f81b031916908160001a9053505b8015611b0a57600019016119ef565b5083611b1b83600060ff8716611b5c565b6040805160208101939093528201526060016040516020818303038152906040528051906020012093508260f81b856000815181106119ca576119ca612ba0565b8251600090611b6b8385612ac1565b1115611b7657600080fd5b5091016020012090565b6000546001600160a01b03163314610d7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610982565b600081611c8457611c848c8c8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508a611c7f8f8f8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508e8e8e8e8e8e8e8e610ca2565b611e0b565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f51c32f58e8e8e8e8d8a6040518763ffffffff1660e01b8152600401611cdc96959493929190612bcf565b6020604051808303816000875af1158015611cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1f919061298b565b90508515611d4a57611d4a888e8e604051611d3b929190612883565b60405180910390208989611f75565b8415611d9357611d938d8d8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508c92503391506120589050565b9c9b505050505050505050505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816224ea00811015611e3357604051639a71997b60e01b815260048101829052602401610982565b6000828152600160205260409020544290611e6f907f000000000000000000000000000000000000000000000000000000000000000090612ac1565b1115611eaa576040517f5320bcf900000000000000000000000000000000000000000000000000000000815260048101839052602401610982565b6000828152600160205260409020544290611ee6907f000000000000000000000000000000000000000000000000000000000000000090612ac1565b11611f20576040517fcb7690d700000000000000000000000000000000000000000000000000000000815260048101839052602401610982565b611f2984611516565b611f6157836040517f477707e800000000000000000000000000000000000000000000000000000000815260040161098291906121a1565b506000908152600160205260408120555050565b604080517f0000000000000000000000000000000000000000000000000000000000000000602080830191909152818301869052825180830384018152606083019384905280519101207fe32954eb0000000000000000000000000000000000000000000000000000000090925285906001600160a01b0382169063e32954eb9061200890859088908890606401612c19565b6000604051808303816000875af1158015612027573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261204f9190810190612c3c565b50505050505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637a806d6b33838587600260405160200161209e929190612d3b565b6040516020818303038152906040526040518563ffffffff1660e01b81526004016120cc9493929190612def565b6020604051808303816000875af11580156120eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c919061298b565b60006020828403121561212157600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146115d257600080fd5b60005b8381101561216c578181015183820152602001612154565b50506000910152565b6000815180845261218d816020860160208601612151565b601f01601f19169290920160200192915050565b6020815260006115d26020830184612175565b60008083601f8401126121c657600080fd5b50813567ffffffffffffffff8111156121de57600080fd5b6020830191508360208285010111156121f657600080fd5b9250929050565b6001600160a01b038116811461072057600080fd5b803561221d816121fd565b919050565b60008083601f84011261223457600080fd5b50813567ffffffffffffffff81111561224c57600080fd5b6020830191508360208260051b85010111156121f657600080fd5b803561ffff8116811461221d57600080fd5b801515811461072057600080fd5b803561221d81612279565b600080600080600080600080600060e08a8c0312156122b057600080fd5b893567ffffffffffffffff808211156122c857600080fd5b6122d48d838e016121b4565b909b50995060208c013591506122e9826121fd565b90975060408b0135965060608b013590612302826121fd565b90955060808b0135908082111561231857600080fd5b506123258c828d01612222565b9095509350612338905060a08b01612267565b915060c08a013561234881612279565b809150509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561239857612398612359565b604052919050565b600067ffffffffffffffff8211156123ba576123ba612359565b50601f01601f191660200190565b600082601f8301126123d957600080fd5b81356123ec6123e7826123a0565b61236f565b81815284602083860101111561240157600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006040848603121561243357600080fd5b833567ffffffffffffffff8082111561244b57600080fd5b612457878388016121b4565b9095509350602086013591508082111561247057600080fd5b5061247d868287016123c8565b9150509250925092565b60008060006060848603121561249c57600080fd5b83356124a7816121fd565b925060208401356124b7816121fd565b929592945050506040919091013590565b60008060008060008060008060006101008a8c0312156124e757600080fd5b893567ffffffffffffffff808211156124ff57600080fd5b61250b8d838e016123c8565b9a5060208c0135915061251d826121fd565b90985060408b0135975060608b0135965060808b01359061253d826121fd565b90955060a08b0135908082111561255357600080fd5b506125608c828d01612222565b90955093505060c08a013561257481612279565b915061258260e08b01612267565b90509295985092959850929598565b6000806000806000806000806000806101008b8d0312156125b157600080fd5b8a3567ffffffffffffffff808211156125c957600080fd5b6125d58e838f016121b4565b909c509a5060208d013591506125ea826121fd565b90985060408c0135975060608c0135965060808c01359061260a826121fd565b90955060a08c0135908082111561262057600080fd5b5061262d8d828e01612222565b90955093505060c08b013561264181612279565b915061264f60e08c01612267565b90509295989b9194979a5092959850565b60008060008060008060008060008060006101208c8e03121561268257600080fd5b67ffffffffffffffff808d35111561269957600080fd5b6126a68e8e358f016121b4565b909c509a506126b760208e01612212565b995060408d0135985060608d013597506126d360808e01612212565b96508060a08e013511156126e657600080fd5b6126f68e60a08f01358f01612222565b909650945061270760c08e01612287565b935061271560e08e01612267565b9250806101008e0135111561272957600080fd5b5061273b8d6101008e01358e016123c8565b90509295989b509295989b9093969950565b60006020828403121561275f57600080fd5b5035919050565b6000806040838503121561277957600080fd5b823567ffffffffffffffff81111561279057600080fd5b61279c858286016123c8565b95602094909401359450505050565b6000602082840312156127bd57600080fd5b813567ffffffffffffffff8111156127d457600080fd5b6112a9848285016123c8565b6000602082840312156127f257600080fd5b81356115d2816121fd565b60008060006040848603121561281257600080fd5b833567ffffffffffffffff81111561282957600080fd5b612835868287016121b4565b909790965060209590950135949350505050565b600181811c9082168061285d57607f821691505b60208210810361287d57634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6040815260006128d0604083018587612893565b9050826020830152949350505050565b6000806000606084860312156128f557600080fd5b8351612900816121fd565b602085015190935063ffffffff8116811461291a57600080fd5b604085015190925067ffffffffffffffff8116811461293857600080fd5b809150509250925092565b6040815260006129566040830185612175565b90506001600160a01b03831660208301529392505050565b60006020828403121561298057600080fd5b81516115d281612279565b60006020828403121561299d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106e0576106e06129a4565b81835260006020808501808196508560051b810191508460005b87811015612a525782840389528135601e19883603018112612a0857600080fd5b8701858101903567ffffffffffffffff811115612a2457600080fd5b803603821315612a3357600080fd5b612a3e868284612893565b9a87019a95505050908401906001016129e7565b5091979650505050505050565b60006101008b83526001600160a01b03808c1660208501528a60408501528960608501528089166080850152508060a0840152612a9f81840187896129cd565b94151560c0840152505061ffff9190911660e090910152979650505050505050565b808201808211156106e0576106e06129a4565b608081526000612ae8608083018789612893565b602083019590955250604081019290925260609091015292915050565b606081526000612b186060830186612175565b60208301949094525060400152919050565b600060408284031215612b3c57600080fd5b6040516040810181811067ffffffffffffffff82111715612b5f57612b5f612359565b604052825181526020928301519281019290925250919050565b606081526000612b8d606083018688612893565b6020830194909452506040015292915050565b634e487b7160e01b600052603260045260246000fd5b600060018201612bc857612bc86129a4565b5060010190565b60a081526000612be360a08301888a612893565b90506001600160a01b03808716602084015285604084015280851660608401525061ffff83166080830152979650505050505050565b838152604060208201526000612c336040830184866129cd565b95945050505050565b60006020808385031215612c4f57600080fd5b825167ffffffffffffffff80821115612c6757600080fd5b818501915085601f830112612c7b57600080fd5b815181811115612c8d57612c8d612359565b8060051b612c9c85820161236f565b9182528381018501918581019089841115612cb657600080fd5b86860192505b83831015612d2e57825185811115612cd45760008081fd5b8601603f81018b13612ce65760008081fd5b878101516040612cf86123e7836123a0565b8281528d82848601011115612d0d5760008081fd5b612d1c838c8301848701612151565b85525050509186019190860190612cbc565b9998505050505050505050565b600083516020612d4e8285838901612151565b845491840191600090600181811c9080831680612d6c57607f831692505b8583108103612d8957634e487b7160e01b85526022600452602485fd5b808015612d9d5760018114612db257612ddf565b60ff1985168852831515840288019550612ddf565b60008b81526020902060005b85811015612dd75781548a820152908401908801612dbe565b505083880195505b50939a9950505050505050505050565b60006001600160a01b038087168352808616602084015280851660408401525060806060830152612e236080830184612175565b969550505050505056fea2646970667358221220b5ad2f9ab025fc86e44fb8fc1f1d35c7007fb0fc9eceef8b949fb196b54a890264736f6c634300081100330000000000000000000000006e84390dcc5195414ec91a8c56a5c91021b957040000000000000000000000008f93ff76ed8ce41e47a90ff4e3544783db795610000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000001518000000000000000000000000008d3ff6e65f680844fd2465393ff6f0d742b67d5000000000000000000000000a53cca02f98d590819141aa85c891e2af713c22300000000000000000000000050130b669b28c339991d8676fa73cf122a121267000000000000000000000000bf14cfafd7b83f6de881ae6dc10796ddd7220831000000000000000000000000e5fc544002067dfd69adf8854d026217be67bbb3527aac89ac1d1de5dd84cff89ec92c69b028ce9ce3fa3d654882474ab4402ec30000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a2e6c696e65612e65746800000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806383e7f6ff116100f7578063acf1a84111610095578063d3419bf311610064578063d3419bf3146105a5578063ddf7fcb0146105d9578063f14fcbc81461060d578063f2fde38b1461062d57600080fd5b8063acf1a84114610527578063aeb8ce9b1461053a578063c1a287e21461055a578063ce1e09c01461057157600080fd5b80638da5cb5b116100d15780638da5cb5b146104955780639791c097146104b35780639f4568ef146104d3578063a8e5fbc0146104f357600080fd5b806383e7f6ff1461040f5780638a95b09f1461044a5780638d839ffe1461046157600080fd5b80635d3590d51161016f5780637cdcceff1161013e5780637cdcceff14610376578063808698531461038e57806382cdbacf146103c2578063839df945146103e257600080fd5b80635d3590d51461030057806365a69dcf14610320578063715018a61461034e57806374694a2b1461036357600080fd5b806348136c97116101ab57806348136c971461026a5780634aa7dad51461028c57806350bebad4146102ac5780635604d995146102e057600080fd5b806301ffc9a7146101d2578063070bdbef146102075780633ccfd60b14610253575b600080fd5b3480156101de57600080fd5b506101f26101ed36600461210f565b61064d565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061023b7f000000000000000000000000bf14cfafd7b83f6de881ae6dc10796ddd722083181565b6040516001600160a01b0390911681526020016101fe565b34801561025f57600080fd5b506102686106e6565b005b34801561027657600080fd5b5061027f610723565b6040516101fe91906121a1565b34801561029857600080fd5b506102686102a7366004612292565b6107b1565b3480156102b857600080fd5b5061023b7f000000000000000000000000e5fc544002067dfd69adf8854d026217be67bbb381565b3480156102ec57600080fd5b506102686102fb36600461241e565b61083a565b34801561030c57600080fd5b5061026861031b366004612487565b610c08565b34801561032c57600080fd5b5061034061033b3660046124c8565b610ca2565b6040519081526020016101fe565b34801561035a57600080fd5b50610268610d68565b610268610371366004612591565b610d7c565b34801561038257600080fd5b506103406305a39a8081565b34801561039a57600080fd5b5061023b7f00000000000000000000000008d3ff6e65f680844fd2465393ff6f0d742b67d581565b3480156103ce57600080fd5b506102686103dd366004612660565b610ee4565b3480156103ee57600080fd5b506103406103fd36600461274d565b60016020526000908152604090205481565b34801561041b57600080fd5b5061042f61042a366004612766565b611177565b604080518251815260209283015192810192909252016101fe565b34801561045657600080fd5b506103406224ea0081565b34801561046d57600080fd5b506103407f000000000000000000000000000000000000000000000000000000000000003c81565b3480156104a157600080fd5b506000546001600160a01b031661023b565b3480156104bf57600080fd5b506101f26104ce3660046127ab565b6112b1565b3480156104df57600080fd5b506101f26104ee3660046127e0565b6112c6565b3480156104ff57600080fd5b5061023b7f000000000000000000000000a53cca02f98d590819141aa85c891e2af713c22381565b6102686105353660046127fd565b61136e565b34801561054657600080fd5b506101f26105553660046127ab565b611516565b34801561056657600080fd5b506103406276a70081565b34801561057d57600080fd5b506103407f000000000000000000000000000000000000000000000000000000000001518081565b3480156105b157600080fd5b5061023b7f0000000000000000000000008f93ff76ed8ce41e47a90ff4e3544783db79561081565b3480156105e557600080fd5b506103407f527aac89ac1d1de5dd84cff89ec92c69b028ce9ce3fa3d654882474ab4402ec381565b34801561061957600080fd5b5061026861062836600461274d565b6115d9565b34801561063957600080fd5b506102686106483660046127e0565b611662565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f01ffc9a70000000000000000000000000000000000000000000000000000000014806106e057507fffffffff0000000000000000000000000000000000000000000000000000000082167fe3e336c600000000000000000000000000000000000000000000000000000000145b92915050565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610720573d6000803e3d6000fd5b50565b6002805461073090612849565b80601f016020809104026020016040519081016040528092919081815260200182805461075c90612849565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b505050505081565b6107b9611b80565b60006107cf8a8a8a8a858b8b8b8a8c6001611bda565b9050876001600160a01b03168a8a6040516107eb929190612883565b60405180910390207f508f53f3c8e5a9fe2d20d2f7cf17580c2e3e9919909803d133196ea012e412bf8c8c85604051610826939291906128bc565b60405180910390a350505050505050505050565b6000838360405161084c929190612883565b604080519182900382207f527aac89ac1d1de5dd84cff89ec92c69b028ce9ce3fa3d654882474ab4402ec36020840152908201819052915060009060600160408051808303601f190181529082905280516020909101207f0178fe3f0000000000000000000000000000000000000000000000000000000082526004820181905291506000907f000000000000000000000000a53cca02f98d590819141aa85c891e2af713c2236001600160a01b031690630178fe3f90602401606060405180830381865afa158015610923573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094791906128e0565b5090915050336001600160a01b0382161461098b5760405163113b199f60e01b81526001600160a01b03821660048201523360248201526044015b60405180910390fd5b604051633d3ac1b560e01b81526001600160a01b037f000000000000000000000000bf14cfafd7b83f6de881ae6dc10796ddd72208311690633d3ac1b5906109d99087908590600401612943565b602060405180830381865afa1580156109f6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1a919061296e565b610a4257604051635199950b60e11b81526001600160a01b0382166004820152602401610982565b604051636b727d4360e11b81526004810184905283906000907f0000000000000000000000006e84390dcc5195414ec91a8c56a5c91021b957046001600160a01b03169063d6e4fa8690602401602060405180830381865afa158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad0919061298b565b90506000610ae16276a700836129ba565b905080421015610b26576040517f4d18339f00000000000000000000000000000000000000000000000000000000815242600482015260248101829052604401610982565b60405163c475abff60e01b8152600481018490526305a39a8060248201526000907f000000000000000000000000a53cca02f98d590819141aa85c891e2af713c2236001600160a01b03169063c475abff906044016020604051808303816000875af1158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe919061298b565b9050867f8c1769c9bb31bc3894133bf22a010cacd497583d40f32176b70d49ba0a53e4568b8b84604051610bf4939291906128bc565b60405180910390a250505050505050505050565b610c10611b80565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081526001600160a01b0383811660048301526024820183905284169063a9059cbb906044016020604051808303816000875af1158015610c78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c919061296e565b50505050565b6000876224ea00811015610ccc57604051639a71997b60e01b815260048101829052602401610982565b8a5160208c01208515801590610ce957506001600160a01b038816155b15610d20576040517fd3f605c400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808b8b8b8b8b8b8b8b604051602001610d4199989796959493929190612a5f565b60405160208183030381529060405280519060200120925050509998505050505050505050565b610d70611b80565b610d7a6000611da3565b565b6000610dbf8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508c9250611177915050565b60208101518151919250610dd291612ac1565b341015610df25760405163044044a560e21b815260040160405180910390fd5b6000610e088c8c8c8c8c8c8c8c8c8c6000611bda565b9050896001600160a01b03168c8c604051610e24929190612883565b60405180910390207f69e37f151eb98a09618ddaa80c8cfaf1ce5996867c489f45b555b412271ebf278e8e8660000151876020015187604051610e6b959493929190612ad4565b60405180910390a360208201518251610e849190612ac1565b341115610ed6576020820151825133916108fc91610ea29190612ac1565b610eac90346129ba565b6040518115909202916000818181858888f19350505050158015610ed4573d6000803e3d6000fd5b505b505050505050505050505050565b336001600160a01b038a1614610f1e5760405163113b199f60e01b81526001600160a01b038a166004820152336024820152604401610982565b6305a39a808814610f5e576040517fbac4faf100000000000000000000000000000000000000000000000000000000815260048101899052602401610982565b610f67896112c6565b15610fa9576040517f533d87dd0000000000000000000000000000000000000000000000000000000081526001600160a01b038a166004820152602401610982565b604051633d3ac1b560e01b81526001600160a01b037f000000000000000000000000bf14cfafd7b83f6de881ae6dc10796ddd72208311690633d3ac1b590610ff79084908d90600401612943565b602060405180830381865afa158015611014573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611038919061296e565b61106057604051635199950b60e11b81526001600160a01b038a166004820152602401610982565b6040517f3682447e0000000000000000000000000000000000000000000000000000000081526001600160a01b038a811660048301527f000000000000000000000000e5fc544002067dfd69adf8854d026217be67bbb31690633682447e90602401600060405180830381600087803b1580156110dc57600080fd5b505af11580156110f0573d6000803e3d6000fd5b50505050600061110a8c8c8c8c8c8c8c8c8c8c6000611bda565b9050896001600160a01b03168c8c604051611126929190612883565b60405180910390207fc20d0170f1f4e2758fc10a41d3746bd99e421a29b0a75c445558d7119ff454e58e8e85604051611161939291906128bc565b60405180910390a3505050505050505050505050565b604080518082019091526000808252602082015282516020840120604051636b727d4360e11b8152600481018290527f0000000000000000000000008f93ff76ed8ce41e47a90ff4e3544783db7956106001600160a01b03908116916350e9a7159187917f0000000000000000000000006e84390dcc5195414ec91a8c56a5c91021b957049091169063d6e4fa8690602401602060405180830381865afa158015611226573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124a919061298b565b866040518463ffffffff1660e01b815260040161126993929190612b05565b6040805180830381865afa158015611285573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112a99190612b2a565b949350505050565b600060036112be836116ef565b101592915050565b6040517fc3c5a5470000000000000000000000000000000000000000000000000000000081526001600160a01b0382811660048301526000917f000000000000000000000000e5fc544002067dfd69adf8854d026217be67bbb39091169063c3c5a54790602401602060405180830381865afa15801561134a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106e0919061296e565b60008383604051611380929190612883565b604080519182900382206020601f8701819004810284018101909252858352925082916000916113cd91908890889081908401838280828437600092019190915250889250611177915050565b80519091503410156113f25760405163044044a560e21b815260040160405180910390fd5b60405163c475abff60e01b815260048101839052602481018590526000907f000000000000000000000000a53cca02f98d590819141aa85c891e2af713c2236001600160a01b03169063c475abff906044016020604051808303816000875af1158015611463573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611487919061298b565b82519091503411156114cf57815133906108fc906114a590346129ba565b6040518115909202916000818181858888f193505050501580156114cd573d6000803e3d6000fd5b505b837f3da24c024582931cfaf8267d8ed24d13a82a8068d5bd337d30ec45cea4e506ae888834856040516115059493929190612b79565b60405180910390a250505050505050565b80516020820120600090611529836112b1565b80156115d257506040517f96e494e8000000000000000000000000000000000000000000000000000000008152600481018290527f0000000000000000000000006e84390dcc5195414ec91a8c56a5c91021b957046001600160a01b0316906396e494e890602401602060405180830381865afa1580156115ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d2919061296e565b9392505050565b6000818152600160205260409020544290611615907f000000000000000000000000000000000000000000000000000000000001518090612ac1565b1061164f576040517f0a059d7100000000000000000000000000000000000000000000000000000000815260048101829052602401610982565b6000908152600160205260409020429055565b61166a611b80565b6001600160a01b0381166116e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610982565b61072081611da3565b8051600090819081905b8082101561187557600085838151811061171557611715612ba0565b01602001516001600160f81b03191690507f800000000000000000000000000000000000000000000000000000000000000081101561176057611759600184612ac1565b9250611862565b7fe0000000000000000000000000000000000000000000000000000000000000006001600160f81b03198216101561179d57611759600284612ac1565b7ff0000000000000000000000000000000000000000000000000000000000000006001600160f81b0319821610156117da57611759600384612ac1565b7ff8000000000000000000000000000000000000000000000000000000000000006001600160f81b03198216101561181757611759600484612ac1565b7ffc000000000000000000000000000000000000000000000000000000000000006001600160f81b03198216101561185457611759600584612ac1565b61185f600684612ac1565b92505b508261186d81612bb6565b9350506116f9565b50909392505050565b606083600061188d85856129ba565b67ffffffffffffffff8111156118a5576118a5612359565b6040519080825280601f01601f1916602001820160405280156118cf576020820181803683370190505b509050845b84811015611941578281815181106118ee576118ee612ba0565b01602001516001600160f81b0319168261190888846129ba565b8151811061191857611918612ba0565b60200101906001600160f81b031916908160001a9053508061193981612bb6565b9150506118d4565b5095945050505050565b805160609060009081908490611962816002612ac1565b67ffffffffffffffff81111561197a5761197a612359565b6040519080825280601f01601f1916602001820160405280156119a4576020820181803683370190505b509450600093508084036119e957600060f81b856000815181106119ca576119ca612ba0565b60200101906001600160f81b031916908160001a905350505050915091565b60001981015b828181518110611a0157611a01612ba0565b01602001516001600160f81b0319167f2e0000000000000000000000000000000000000000000000000000000000000003611aab578360f81b868260010181518110611a4f57611a4f612ba0565b60200101906001600160f81b031916908160001a90535084611a78846001840160ff8816611b5c565b60408051602081019390935282015260600160405160208183030381529060405280519060200120945060009350611afb565b600184019350828181518110611ac357611ac3612ba0565b602001015160f81c60f81b868260010181518110611ae357611ae3612ba0565b60200101906001600160f81b031916908160001a9053505b8015611b0a57600019016119ef565b5083611b1b83600060ff8716611b5c565b6040805160208101939093528201526060016040516020818303038152906040528051906020012093508260f81b856000815181106119ca576119ca612ba0565b8251600090611b6b8385612ac1565b1115611b7657600080fd5b5091016020012090565b6000546001600160a01b03163314610d7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610982565b600081611c8457611c848c8c8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508a611c7f8f8f8080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050508e8e8e8e8e8e8e8e610ca2565b611e0b565b60007f000000000000000000000000a53cca02f98d590819141aa85c891e2af713c2236001600160a01b031663f51c32f58e8e8e8e8d8a6040518763ffffffff1660e01b8152600401611cdc96959493929190612bcf565b6020604051808303816000875af1158015611cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1f919061298b565b90508515611d4a57611d4a888e8e604051611d3b929190612883565b60405180910390208989611f75565b8415611d9357611d938d8d8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508c92503391506120589050565b9c9b505050505050505050505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816224ea00811015611e3357604051639a71997b60e01b815260048101829052602401610982565b6000828152600160205260409020544290611e6f907f000000000000000000000000000000000000000000000000000000000000003c90612ac1565b1115611eaa576040517f5320bcf900000000000000000000000000000000000000000000000000000000815260048101839052602401610982565b6000828152600160205260409020544290611ee6907f000000000000000000000000000000000000000000000000000000000001518090612ac1565b11611f20576040517fcb7690d700000000000000000000000000000000000000000000000000000000815260048101839052602401610982565b611f2984611516565b611f6157836040517f477707e800000000000000000000000000000000000000000000000000000000815260040161098291906121a1565b506000908152600160205260408120555050565b604080517f527aac89ac1d1de5dd84cff89ec92c69b028ce9ce3fa3d654882474ab4402ec3602080830191909152818301869052825180830384018152606083019384905280519101207fe32954eb0000000000000000000000000000000000000000000000000000000090925285906001600160a01b0382169063e32954eb9061200890859088908890606401612c19565b6000604051808303816000875af1158015612027573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261204f9190810190612c3c565b50505050505050565b7f00000000000000000000000008d3ff6e65f680844fd2465393ff6f0d742b67d56001600160a01b0316637a806d6b33838587600260405160200161209e929190612d3b565b6040516020818303038152906040526040518563ffffffff1660e01b81526004016120cc9493929190612def565b6020604051808303816000875af11580156120eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9c919061298b565b60006020828403121561212157600080fd5b81357fffffffff00000000000000000000000000000000000000000000000000000000811681146115d257600080fd5b60005b8381101561216c578181015183820152602001612154565b50506000910152565b6000815180845261218d816020860160208601612151565b601f01601f19169290920160200192915050565b6020815260006115d26020830184612175565b60008083601f8401126121c657600080fd5b50813567ffffffffffffffff8111156121de57600080fd5b6020830191508360208285010111156121f657600080fd5b9250929050565b6001600160a01b038116811461072057600080fd5b803561221d816121fd565b919050565b60008083601f84011261223457600080fd5b50813567ffffffffffffffff81111561224c57600080fd5b6020830191508360208260051b85010111156121f657600080fd5b803561ffff8116811461221d57600080fd5b801515811461072057600080fd5b803561221d81612279565b600080600080600080600080600060e08a8c0312156122b057600080fd5b893567ffffffffffffffff808211156122c857600080fd5b6122d48d838e016121b4565b909b50995060208c013591506122e9826121fd565b90975060408b0135965060608b013590612302826121fd565b90955060808b0135908082111561231857600080fd5b506123258c828d01612222565b9095509350612338905060a08b01612267565b915060c08a013561234881612279565b809150509295985092959850929598565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561239857612398612359565b604052919050565b600067ffffffffffffffff8211156123ba576123ba612359565b50601f01601f191660200190565b600082601f8301126123d957600080fd5b81356123ec6123e7826123a0565b61236f565b81815284602083860101111561240157600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006040848603121561243357600080fd5b833567ffffffffffffffff8082111561244b57600080fd5b612457878388016121b4565b9095509350602086013591508082111561247057600080fd5b5061247d868287016123c8565b9150509250925092565b60008060006060848603121561249c57600080fd5b83356124a7816121fd565b925060208401356124b7816121fd565b929592945050506040919091013590565b60008060008060008060008060006101008a8c0312156124e757600080fd5b893567ffffffffffffffff808211156124ff57600080fd5b61250b8d838e016123c8565b9a5060208c0135915061251d826121fd565b90985060408b0135975060608b0135965060808b01359061253d826121fd565b90955060a08b0135908082111561255357600080fd5b506125608c828d01612222565b90955093505060c08a013561257481612279565b915061258260e08b01612267565b90509295985092959850929598565b6000806000806000806000806000806101008b8d0312156125b157600080fd5b8a3567ffffffffffffffff808211156125c957600080fd5b6125d58e838f016121b4565b909c509a5060208d013591506125ea826121fd565b90985060408c0135975060608c0135965060808c01359061260a826121fd565b90955060a08c0135908082111561262057600080fd5b5061262d8d828e01612222565b90955093505060c08b013561264181612279565b915061264f60e08c01612267565b90509295989b9194979a5092959850565b60008060008060008060008060008060006101208c8e03121561268257600080fd5b67ffffffffffffffff808d35111561269957600080fd5b6126a68e8e358f016121b4565b909c509a506126b760208e01612212565b995060408d0135985060608d013597506126d360808e01612212565b96508060a08e013511156126e657600080fd5b6126f68e60a08f01358f01612222565b909650945061270760c08e01612287565b935061271560e08e01612267565b9250806101008e0135111561272957600080fd5b5061273b8d6101008e01358e016123c8565b90509295989b509295989b9093969950565b60006020828403121561275f57600080fd5b5035919050565b6000806040838503121561277957600080fd5b823567ffffffffffffffff81111561279057600080fd5b61279c858286016123c8565b95602094909401359450505050565b6000602082840312156127bd57600080fd5b813567ffffffffffffffff8111156127d457600080fd5b6112a9848285016123c8565b6000602082840312156127f257600080fd5b81356115d2816121fd565b60008060006040848603121561281257600080fd5b833567ffffffffffffffff81111561282957600080fd5b612835868287016121b4565b909790965060209590950135949350505050565b600181811c9082168061285d57607f821691505b60208210810361287d57634e487b7160e01b600052602260045260246000fd5b50919050565b8183823760009101908152919050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6040815260006128d0604083018587612893565b9050826020830152949350505050565b6000806000606084860312156128f557600080fd5b8351612900816121fd565b602085015190935063ffffffff8116811461291a57600080fd5b604085015190925067ffffffffffffffff8116811461293857600080fd5b809150509250925092565b6040815260006129566040830185612175565b90506001600160a01b03831660208301529392505050565b60006020828403121561298057600080fd5b81516115d281612279565b60006020828403121561299d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156106e0576106e06129a4565b81835260006020808501808196508560051b810191508460005b87811015612a525782840389528135601e19883603018112612a0857600080fd5b8701858101903567ffffffffffffffff811115612a2457600080fd5b803603821315612a3357600080fd5b612a3e868284612893565b9a87019a95505050908401906001016129e7565b5091979650505050505050565b60006101008b83526001600160a01b03808c1660208501528a60408501528960608501528089166080850152508060a0840152612a9f81840187896129cd565b94151560c0840152505061ffff9190911660e090910152979650505050505050565b808201808211156106e0576106e06129a4565b608081526000612ae8608083018789612893565b602083019590955250604081019290925260609091015292915050565b606081526000612b186060830186612175565b60208301949094525060400152919050565b600060408284031215612b3c57600080fd5b6040516040810181811067ffffffffffffffff82111715612b5f57612b5f612359565b604052825181526020928301519281019290925250919050565b606081526000612b8d606083018688612893565b6020830194909452506040015292915050565b634e487b7160e01b600052603260045260246000fd5b600060018201612bc857612bc86129a4565b5060010190565b60a081526000612be360a08301888a612893565b90506001600160a01b03808716602084015285604084015280851660608401525061ffff83166080830152979650505050505050565b838152604060208201526000612c336040830184866129cd565b95945050505050565b60006020808385031215612c4f57600080fd5b825167ffffffffffffffff80821115612c6757600080fd5b818501915085601f830112612c7b57600080fd5b815181811115612c8d57612c8d612359565b8060051b612c9c85820161236f565b9182528381018501918581019089841115612cb657600080fd5b86860192505b83831015612d2e57825185811115612cd45760008081fd5b8601603f81018b13612ce65760008081fd5b878101516040612cf86123e7836123a0565b8281528d82848601011115612d0d5760008081fd5b612d1c838c8301848701612151565b85525050509186019190860190612cbc565b9998505050505050505050565b600083516020612d4e8285838901612151565b845491840191600090600181811c9080831680612d6c57607f831692505b8583108103612d8957634e487b7160e01b85526022600452602485fd5b808015612d9d5760018114612db257612ddf565b60ff1985168852831515840288019550612ddf565b60008b81526020902060005b85811015612dd75781548a820152908401908801612dbe565b505083880195505b50939a9950505050505050505050565b60006001600160a01b038087168352808616602084015280851660408401525060806060830152612e236080830184612175565b969550505050505056fea2646970667358221220b5ad2f9ab025fc86e44fb8fc1f1d35c7007fb0fc9eceef8b949fb196b54a890264736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006e84390dcc5195414ec91a8c56a5c91021b957040000000000000000000000008f93ff76ed8ce41e47a90ff4e3544783db795610000000000000000000000000000000000000000000000000000000000000003c000000000000000000000000000000000000000000000000000000000001518000000000000000000000000008d3ff6e65f680844fd2465393ff6f0d742b67d5000000000000000000000000a53cca02f98d590819141aa85c891e2af713c22300000000000000000000000050130b669b28c339991d8676fa73cf122a121267000000000000000000000000bf14cfafd7b83f6de881ae6dc10796ddd7220831000000000000000000000000e5fc544002067dfd69adf8854d026217be67bbb3527aac89ac1d1de5dd84cff89ec92c69b028ce9ce3fa3d654882474ab4402ec30000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a2e6c696e65612e65746800000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _base (address): 0x6e84390dCc5195414eC91A8c56A5c91021B95704
Arg [1] : _prices (address): 0x8F93FF76eD8CE41e47a90FF4E3544783DB795610
Arg [2] : _minCommitmentAge (uint256): 60
Arg [3] : _maxCommitmentAge (uint256): 86400
Arg [4] : _reverseRegistrar (address): 0x08D3fF6E65f680844fd2465393ff6f0d742b67D5
Arg [5] : _nameWrapper (address): 0xA53cca02F98D590819141Aa85C891e2Af713C223
Arg [6] : _ens (address): 0x50130b669B28C339991d8676FA73CF122a121267
Arg [7] : _pohVerifier (address): 0xBf14cFAFD7B83f6de881ae6dc10796ddD7220831
Arg [8] : _pohRegistrationManager (address): 0xE5fC544002067dFD69ADF8854D026217bE67BbB3
Arg [9] : _baseNode (bytes32): 0x527aac89ac1d1de5dd84cff89ec92c69b028ce9ce3fa3d654882474ab4402ec3
Arg [10] : _baseDomain (string): .linea.eth
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 0000000000000000000000006e84390dcc5195414ec91a8c56a5c91021b95704
Arg [1] : 0000000000000000000000008f93ff76ed8ce41e47a90ff4e3544783db795610
Arg [2] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000015180
Arg [4] : 00000000000000000000000008d3ff6e65f680844fd2465393ff6f0d742b67d5
Arg [5] : 000000000000000000000000a53cca02f98d590819141aa85c891e2af713c223
Arg [6] : 00000000000000000000000050130b669b28c339991d8676fa73cf122a121267
Arg [7] : 000000000000000000000000bf14cfafd7b83f6de881ae6dc10796ddd7220831
Arg [8] : 000000000000000000000000e5fc544002067dfd69adf8854d026217be67bbb3
Arg [9] : 527aac89ac1d1de5dd84cff89ec92c69b028ce9ce3fa3d654882474ab4402ec3
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [11] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [12] : 2e6c696e65612e65746800000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.