More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,022 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Register Label | 21171100 | 6 days ago | IN | 0 ETH | 0.01007405 | ||||
Register Label | 21171022 | 6 days ago | IN | 0 ETH | 0.00737138 | ||||
Register Label | 21170883 | 6 days ago | IN | 0 ETH | 0.00910802 | ||||
Register Label | 21170738 | 6 days ago | IN | 0 ETH | 0.00598082 | ||||
Register Label | 21170614 | 6 days ago | IN | 0 ETH | 0.00844544 | ||||
Register Label | 21170542 | 6 days ago | IN | 0 ETH | 0.00594034 | ||||
Register Label | 21170504 | 6 days ago | IN | 0 ETH | 0.00535353 | ||||
Register Label | 21170386 | 6 days ago | IN | 0 ETH | 0.00496745 | ||||
Register Label | 21170328 | 6 days ago | IN | 0 ETH | 0.00446448 | ||||
Register Label | 21170274 | 6 days ago | IN | 0 ETH | 0.00550691 | ||||
Register Label | 21170199 | 6 days ago | IN | 0 ETH | 0.00544701 | ||||
Register Label | 21170169 | 6 days ago | IN | 0 ETH | 0.00492949 | ||||
Register Label | 21170053 | 6 days ago | IN | 0 ETH | 0.00568692 | ||||
Register Label | 21169974 | 6 days ago | IN | 0 ETH | 0.00510246 | ||||
Register Label | 21169633 | 6 days ago | IN | 0 ETH | 0.00466624 | ||||
Register Label | 21169574 | 6 days ago | IN | 0 ETH | 0.00527403 | ||||
Register Label | 21169451 | 6 days ago | IN | 0 ETH | 0.00590914 | ||||
Register Label | 21169376 | 6 days ago | IN | 0 ETH | 0.00456589 | ||||
Register Label | 21169278 | 6 days ago | IN | 0 ETH | 0.0041707 | ||||
Register Label | 21169257 | 6 days ago | IN | 0 ETH | 0.00436089 | ||||
Register Label | 21169190 | 6 days ago | IN | 0 ETH | 0.00438131 | ||||
Register Label | 21169131 | 6 days ago | IN | 0 ETH | 0.00406163 | ||||
Register Label | 21169097 | 6 days ago | IN | 0 ETH | 0.00407939 | ||||
Register Label | 21169028 | 6 days ago | IN | 0 ETH | 0.00401567 | ||||
Register Label | 21169008 | 6 days ago | IN | 0 ETH | 0.00414001 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
GdnRegistrationService
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.26; import "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; import "lib/openzeppelin-contracts/contracts/utils/cryptography/ECDSA.sol"; import "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; import "lib/openzeppelin-contracts/contracts/token/ERC20/utils/SafeERC20.sol"; import "./GdnRegistrar.sol"; import "./GdnRegistry.sol"; contract GdnRegistrationService is Ownable { using ECDSA for bytes32; GdnRegistrar public registrar; GdnRegistry public registry; address public signer; IERC20 public usdtToken; using SafeERC20 for IERC20; address public beneficiary; event Withdrawn(address indexed beneficiary, uint256 amount); event LabelAction( string label, address indexed userAddress, uint256 expiry, string action, uint256 timestamp, string orderId, uint256 amountPaid ); modifier onlyBeneficiary() { require( msg.sender == beneficiary, "Only beneficiary can call this function" ); _; } constructor( address usdtTokenAddress, address initialOwner ) Ownable(initialOwner) { usdtToken = IERC20(usdtTokenAddress); beneficiary = initialOwner; } function setRegistrar(address registrarAddress) external onlyOwner { registrar = GdnRegistrar(registrarAddress); } function setRegistry(address registryAddress) external onlyOwner { registry = GdnRegistry(registryAddress); } function setSigner(address _signer) external onlyOwner { signer = _signer; } function setBeneficiary(address newBeneficiary) external onlyOwner { require(newBeneficiary != address(0), "Invalid address"); beneficiary = newBeneficiary; } function registerLabel( string memory label, uint256 durationInYears, uint256 amountPaid, uint256 timestamp, string memory orderId, bytes memory signature ) external { require(_validateLabel(label), "Invalid label"); require(bytes(orderId).length > 0, "Order ID cannot be empty"); if (amountPaid > 0) { require( usdtToken.balanceOf(msg.sender) >= amountPaid, "Insufficient USDT balance" ); } require( _verifySignature( label, durationInYears, amountPaid, timestamp, msg.sender, orderId, signature ), "Invalid signature" ); uint256 durationInSeconds = durationInYears * 365 days; uint256 expiry = block.timestamp + durationInSeconds; require(expiry > block.timestamp, "Duration overflow"); registrar.mint(label, msg.sender, expiry); if (amountPaid > 0) { usdtToken.safeTransferFrom(msg.sender, address(this), amountPaid); } emit LabelAction( label, msg.sender, expiry, "register", timestamp, orderId, amountPaid ); } function renewLabel( string memory label, uint256 durationInYears, uint256 amountPaid, uint256 timestamp, string memory orderId, bytes memory signature ) external { require(bytes(orderId).length > 0, "Order ID cannot be empty"); require( usdtToken.balanceOf(msg.sender) >= amountPaid, "Insufficient USDT balance" ); require( _verifySignature( label, durationInYears, amountPaid, timestamp, msg.sender, orderId, signature ), "Invalid signature" ); uint256 durationInSeconds = durationInYears * 365 days; registrar.renew(label, durationInSeconds); if (amountPaid > 0) { usdtToken.safeTransferFrom(msg.sender, address(this), amountPaid); } (, uint256 newExpiry) = registry.getLabelInfo(label); emit LabelAction( label, msg.sender, newExpiry, "renew", timestamp, orderId, amountPaid ); } function _validateLabel(string memory label) internal pure returns (bool) { bytes memory labelBytes = bytes(label); uint256 length = labelBytes.length; if (length < 4 || length > 20) { return false; } for (uint256 i = 0; i < length; i++) { bytes1 char = labelBytes[i]; if ((char >= 0x61 && char <= 0x7A)) { continue; } if ((char >= 0x30 && char <= 0x39)) { continue; } if (char == 0x2D) { if (i == 0 || i == length - 1 || labelBytes[i - 1] == 0x2D) { return false; } continue; } return false; } return true; } function _verifySignature( string memory label, uint256 durationInYears, uint256 amountPaid, uint256 timestamp, address userAddress, string memory orderId, bytes memory signature ) internal view returns (bool) { bytes32 messageHash = keccak256( abi.encodePacked( label, durationInYears, amountPaid, timestamp, userAddress, orderId ) ); require(timestamp <= block.timestamp, "Invalid timestamp"); require(block.timestamp - timestamp < 15 minutes, "Expired signature"); bytes32 ethSignedMessageHash = _toEthSignedMessageHash(messageHash); return ECDSA.recover(ethSignedMessageHash, signature) == signer; } function _toEthSignedMessageHash( bytes32 hash ) internal pure returns (bytes32) { return keccak256( abi.encodePacked("\x19Ethereum Signed Message:\n32", hash) ); } function withdrawUSDT(uint256 amount) external onlyBeneficiary { require(amount > 0, "Amount must be greater than 0"); require( usdtToken.balanceOf(address(this)) >= amount, "Insufficient balance" ); usdtToken.safeTransfer(beneficiary, amount); // Emit the event to log the withdrawal emit Withdrawn(beneficiary, amount); } function getContractBalance() external view returns (uint256) { return usdtToken.balanceOf(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @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 } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile 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 {MessageHashUtils-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] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { 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, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile 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 {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); 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] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. 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. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // 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, s); } // 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, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @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, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.26; import "lib/openzeppelin-contracts/contracts/token/ERC721/ERC721.sol"; import "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; import "./GdnRegistry.sol"; import {TokenIdCodec} from "../src/TokenIdCodec.sol"; contract GdnRegistrar is ERC721, Ownable { using Strings for uint256; GdnRegistry public registry; address public registrationService; string private baseTokenURI = "https://api.gaianet-test.link/api/v1/gdn/nft/"; string private tokenURIExtension = ".json"; event NftAction( uint8 labelAction, string label, address indexed to, uint256 expiry ); constructor( address ownerAddress ) ERC721("GaiaDomainName", "GDN") Ownable(ownerAddress) {} modifier onlyRegistrationService() { require( msg.sender == registrationService, "Only registration service can call this" ); _; } function setRegistry(address registryAddress) external onlyOwner { registry = GdnRegistry(registryAddress); } function setRegistrationService( address registrationServiceAddress ) external onlyOwner { registrationService = registrationServiceAddress; } function mint( string memory label, address to, uint256 expiry ) external onlyRegistrationService { require( registry.isLabelAvailable(label), "Label is already registered or not available" ); uint256 tokenId = TokenIdCodec.encode(label, expiry); _mint(to, tokenId); registry.setLabel(label, to, expiry); emit NftAction(1, label, to, expiry); } function renew( string memory label, uint256 duration ) external onlyRegistrationService { (address owner, uint256 expiry) = registry.getLabelInfo(label); require(!isExpired(label), "Label is expired"); expiry += duration; uint256 tokenId = TokenIdCodec.encode(label, expiry); _mint(owner, tokenId); registry.setLabel(label, owner, expiry); emit NftAction(2, label, owner, expiry); } function transferFrom( address from, address to, uint256 tokenId ) public override { (string memory label, uint256 nftExpiry) = TokenIdCodec.decode(tokenId); require(!isExpired(label), "Label expired"); (address owner, uint256 labelExpiry) = registry.getLabelInfo(label); require(owner == from, "Sender not current owner"); super.transferFrom(from, to, tokenId); require(labelExpiry == nftExpiry, "NFT and label expiry mismatch"); registry.setLabel(label, to, labelExpiry); emit NftAction(3, label, to, labelExpiry); } function isExpired(string memory label) public view returns (bool) { (, uint256 expiry) = registry.getLabelInfo(label); return expiry < block.timestamp; } function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; } function getBaseTokenURI() external view returns (string memory) { return baseTokenURI; } //set tokenURIExtension onlyOwner function setTokenURIExtension( string memory _tokenURIExtension ) external onlyOwner { tokenURIExtension = _tokenURIExtension; } function getTokenURIExtension() external view returns (string memory) { return tokenURIExtension; } // Return the fixed token URI for all tokens function tokenURI( uint256 tokenId ) public view virtual override returns (string memory) { string memory fullHex = tokenId.toHexString(); bytes memory fullHexBytes = bytes(fullHex); uint256 newLength = fullHexBytes.length; while ( newLength > 0 && fullHexBytes[newLength - 1] == "0" && fullHexBytes[newLength - 2] == "0" ) { newLength -= 2; } string memory trimmedHex = new string(newLength); for (uint256 i = 0; i < newLength; i++) { bytes(trimmedHex)[i] = fullHexBytes[i]; } return string(abi.encodePacked(baseTokenURI, trimmedHex, ".json")); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.26; import "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; contract GdnRegistry is Ownable { struct Label { address owner; uint256 expiry; } mapping(string => Label) private labels; address public registrar; uint256 public totalLabels; event LabelRegistered( string indexed label, address indexed owner, uint256 expiry ); event LabelRenewed(string indexed label, uint256 newExpiry); constructor(address ownerAddress) Ownable(ownerAddress) {} modifier onlyRegistrar() { require(msg.sender == registrar, "Only registrar can call this"); _; } function setRegistrar(address registrarAddress) external onlyOwner { registrar = registrarAddress; } function setLabel( string memory label, address labelOwner, uint256 expiry ) external onlyRegistrar { Label memory currentLabel = labels[label]; bool isNewLabel = currentLabel.owner == address(0); bool isExpiredLabel = !isNewLabel && currentLabel.expiry < block.timestamp; if (isNewLabel) { totalLabels++; emit LabelRegistered(label, labelOwner, expiry); } else if (isExpiredLabel) { if (currentLabel.owner == labelOwner) { emit LabelRenewed(label, expiry); } else { emit LabelRegistered(label, labelOwner, expiry); } } else { emit LabelRenewed(label, expiry); } labels[label] = Label({owner: labelOwner, expiry: expiry}); } function getLabelInfo( string memory label ) external view returns (address, uint256) { Label memory labelInfo = labels[label]; return (labelInfo.owner, labelInfo.expiry); } function isLabelAvailable(string memory label) public view returns (bool) { Label memory labelInfo = labels[label]; if (labelInfo.owner == address(0)) { return true; // Label is available if it has no owner } if (labelInfo.expiry < block.timestamp) { return true; // Label is available if it has expired } return false; // Label is not available } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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 v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.20; import {IERC721} from "./IERC721.sol"; import {IERC721Receiver} from "./IERC721Receiver.sol"; import {IERC721Metadata} from "./extensions/IERC721Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {Strings} from "../../utils/Strings.sol"; import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol"; import {IERC721Errors} from "../../interfaces/draft-IERC6093.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}. */ abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors { using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; mapping(uint256 tokenId => address) private _owners; mapping(address owner => uint256) private _balances; mapping(uint256 tokenId => address) private _tokenApprovals; mapping(address owner => mapping(address operator => 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 returns (uint256) { if (owner == address(0)) { revert ERC721InvalidOwner(address(0)); } return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual returns (address) { return _requireOwned(tokenId); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual returns (string memory) { _requireOwned(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string.concat(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 { _approve(to, tokenId, _msgSender()); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual returns (address) { _requireOwned(tokenId); return _getApproved(tokenId); } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here. address previousOwner = _update(to, tokenId, _msgSender()); if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual { transferFrom(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist * * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances * consistent with ownership. The invariant to preserve is 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`. */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted. */ function _getApproved(uint256 tokenId) internal view virtual returns (address) { return _tokenApprovals[tokenId]; } /** * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in * particular (ignoring whether it is owned by `owner`). * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) { return spender != address(0) && (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender); } /** * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner. * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets * the `spender` for the specific `tokenId`. * * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this * assumption. */ function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual { if (!_isAuthorized(owner, spender, tokenId)) { if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } else { revert ERC721InsufficientApproval(spender, tokenId); } } } /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that * a uint256 would ever overflow from increments when these increments are bounded to uint128 values. * * WARNING: Increasing an account's balance using this function tends to be paired with an override of the * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership * remain consistent with one another. */ function _increaseBalance(address account, uint128 value) internal virtual { unchecked { _balances[account] += value; } } /** * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update. * * The `auth` argument is optional. If the value passed is non 0, then this function will check that * `auth` is either the owner of the token, or approved to operate on the token (by the owner). * * Emits a {Transfer} event. * * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}. */ function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) { address from = _ownerOf(tokenId); // Perform (optional) operator check if (auth != address(0)) { _checkAuthorized(from, auth, tokenId); } // Execute the update if (from != address(0)) { // Clear approval. No need to re-authorize or emit the Approval event _approve(address(0), tokenId, address(0), false); unchecked { _balances[from] -= 1; } } if (to != address(0)) { unchecked { _balances[to] += 1; } } _owners[tokenId] = to; emit Transfer(from, to, tokenId); return from; } /** * @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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner != address(0)) { revert ERC721InvalidSender(address(0)); } } /** * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance. * * 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 { _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); _checkOnERC721Received(address(0), to, tokenId, data); } /** * @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 { address previousOwner = _update(address(0), tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } } /** * @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 { if (to == address(0)) { revert ERC721InvalidReceiver(address(0)); } address previousOwner = _update(to, tokenId, address(0)); if (previousOwner == address(0)) { revert ERC721NonexistentToken(tokenId); } else if (previousOwner != from) { revert ERC721IncorrectOwner(from, tokenId, previousOwner); } } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `tokenId` token must exist and be owned by `from`. * - `to` cannot be the zero address. * - `from` cannot be the zero address. * - 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) internal { _safeTransfer(from, to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); _checkOnERC721Received(from, to, tokenId, data); } /** * @dev Approve `to` to operate on `tokenId` * * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is * either the owner of the token, or approved to operate on all tokens held by this owner. * * Emits an {Approval} event. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address to, uint256 tokenId, address auth) internal { _approve(to, tokenId, auth, true); } /** * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not * emitted in the context of transfers. */ function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual { // Avoid reading the owner unless necessary if (emitEvent || auth != address(0)) { address owner = _requireOwned(tokenId); // We do not use _isAuthorized because single-token approvals should not be able to call approve if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) { revert ERC721InvalidApprover(auth); } if (emitEvent) { emit Approval(owner, to, tokenId); } } _tokenApprovals[tokenId] = to; } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Requirements: * - operator can't be the address zero. * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { if (operator == address(0)) { revert ERC721InvalidOperator(operator); } _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned). * Returns the owner. * * Overrides to ownership logic should be done to {_ownerOf}. */ function _requireOwned(uint256 tokenId) internal view returns (address) { address owner = _ownerOf(tokenId); if (owner == address(0)) { revert ERC721NonexistentToken(tokenId); } return owner; } /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the * recipient doesn't accept the token transfer. 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 */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private { if (to.code.length > 0) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { if (retval != IERC721Receiver.onERC721Received.selector) { revert ERC721InvalidReceiver(to); } } catch (bytes memory reason) { if (reason.length == 0) { revert ERC721InvalidReceiver(to); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.26; library TokenIdCodec { function encode( string memory label, uint256 expiry ) public pure returns (uint256) { bytes memory labelBytes = bytes(label); require(labelBytes.length <= 20, "Label is too long"); bytes memory expiryHex = trimExpiry(expiry); require(expiryHex.length <= 10, "Expiry is too long"); bytes memory encodedData = new bytes(64); uint256 cursor = 0; // Store label length encodedData[cursor] = bytes1(uint8(labelBytes.length)); cursor++; // Store label data for (uint i = 0; i < labelBytes.length; i++) { encodedData[cursor] = labelBytes[i]; cursor++; } // Store expiry length encodedData[cursor] = bytes1(uint8(expiryHex.length)); cursor++; // Store expiry data for (uint i = 0; i < expiryHex.length; i++) { encodedData[cursor] = expiryHex[i]; cursor++; } // Convert to uint256 return uint256(bytes32(encodedData)); } function decode( uint256 tokenId ) public pure returns (string memory label, uint256 expiry) { bytes32 encodedData = bytes32(tokenId); // decode label uint8 labelLength = uint8(encodedData[0]); bytes memory labelBytes = new bytes(labelLength); for (uint8 i = 0; i < labelLength; i++) { labelBytes[i] = encodedData[i + 1]; } label = string(labelBytes); // decode expiry uint8 expiryLength = uint8(encodedData[1 + labelLength]); bytes memory expiryBytes = new bytes(expiryLength); for (uint8 i = 0; i < expiryLength; i++) { expiryBytes[i] = encodedData[1 + labelLength + 1 + i]; } expiry = toUint256(expiryBytes); } function toUint256(bytes memory b) internal pure returns (uint256) { uint256 number; for (uint i = 0; i < b.length; i++) { number = number * 256 + uint8(b[i]); } return number; } function trimExpiry(uint256 expiry) internal pure returns (bytes memory) { bytes memory expiryBytes = abi.encodePacked(expiry); uint8 i = 0; while (i < expiryBytes.length && expiryBytes[i] == 0) { i++; } bytes memory trimmed = new bytes(expiryBytes.length - i); for (uint8 j = 0; j < trimmed.length; j++) { trimmed[j] = expiryBytes[i + j]; } return trimmed; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.20; import {IERC165} from "../../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 address zero. * * 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 v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @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 v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.20; import {IERC721} from "../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 v5.0.0) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @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), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(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) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } 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 bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./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); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @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 v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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 towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (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 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) 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. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 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. uint256 twos = denominator & (0 - denominator); 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 (unsignedRoundsUp(rounding) && 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 * towards zero. * * 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @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); } } }
{ "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"usdtTokenAddress","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"label","type":"string"},{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"expiry","type":"uint256"},{"indexed":false,"internalType":"string","name":"action","type":"string"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"string","name":"orderId","type":"string"},{"indexed":false,"internalType":"uint256","name":"amountPaid","type":"uint256"}],"name":"LabelAction","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":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"beneficiary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"label","type":"string"},{"internalType":"uint256","name":"durationInYears","type":"uint256"},{"internalType":"uint256","name":"amountPaid","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"string","name":"orderId","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"registerLabel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"registrar","outputs":[{"internalType":"contract GdnRegistrar","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registry","outputs":[{"internalType":"contract GdnRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"label","type":"string"},{"internalType":"uint256","name":"durationInYears","type":"uint256"},{"internalType":"uint256","name":"amountPaid","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"string","name":"orderId","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"renewLabel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBeneficiary","type":"address"}],"name":"setBeneficiary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"registrarAddress","type":"address"}],"name":"setRegistrar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"registryAddress","type":"address"}],"name":"setRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"usdtToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawUSDT","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516118c93803806118c983398101604081905261002f91610105565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61006781610099565b50600480546001600160a01b039384166001600160a01b03199182161790915560058054929093169116179055610138565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811461010057600080fd5b919050565b6000806040838503121561011857600080fd5b610121836100e9565b915061012f602084016100e9565b90509250929050565b611782806101476000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a98184fd11610066578063a98184fd146101fe578063a98ad46c14610211578063f2fde38b14610224578063faab9d391461023757600080fd5b8063715018a6146101bf5780637b103999146101c75780638da5cb5b146101da578063a91ee0dc146101eb57600080fd5b806338af3eed116100d357806338af3eed146101705780633ea521ef146101835780636c19e783146101965780636f9fb98a146101a957600080fd5b80630f9dc70c146101055780631c31f7101461011a578063238ac9331461012d5780632b20e3971461015d575b600080fd5b61011861011336600461136d565b61024a565b005b610118610128366004611446565b610502565b600354610140906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b600154610140906001600160a01b031681565b600554610140906001600160a01b031681565b610118610191366004611463565b610574565b6101186101a4366004611446565b610746565b6101b1610770565b604051908152602001610154565b6101186107e7565b600254610140906001600160a01b031681565b6000546001600160a01b0316610140565b6101186101f9366004611446565b6107fb565b61011861020c36600461136d565b610825565b600454610140906001600160a01b031681565b610118610232366004611446565b610af1565b610118610245366004611446565b610b2f565b600082511161029b5760405162461bcd60e51b81526020600482015260186024820152774f726465722049442063616e6e6f7420626520656d70747960401b60448201526064015b60405180910390fd5b600480546040516370a0823160e01b8152339281019290925285916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156102e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030c919061147c565b10156103565760405162461bcd60e51b8152602060048201526019602482015278496e73756666696369656e7420555344542062616c616e636560381b6044820152606401610292565b61036586868686338787610b59565b6103a55760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610292565b60006103b5866301e133806114ab565b60015460405163acf1a84160e01b81529192506001600160a01b03169063acf1a841906103e8908a908590600401611512565b600060405180830381600087803b15801561040257600080fd5b505af1158015610416573d6000803e3d6000fd5b50505050600085111561043b5760045461043b906001600160a01b0316333088610cab565b60025460405163f2d9d3ed60e01b81526000916001600160a01b03169063f2d9d3ed9061046c908b90600401611534565b6040805180830381865afa158015610488573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ac9190611547565b915050336001600160a01b03167f41c4c914d5aa50a0d6d6ca12651c6a76cfd10c98da11b3d751f04255d55ad983898388888b6040516104f0959493929190611575565b60405180910390a25050505050505050565b61050a610d18565b6001600160a01b0381166105525760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610292565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146105de5760405162461bcd60e51b815260206004820152602760248201527f4f6e6c792062656e65666963696172792063616e2063616c6c207468697320666044820152663ab731ba34b7b760c91b6064820152608401610292565b6000811161062e5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610292565b600480546040516370a0823160e01b8152309281019290925282916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561067b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069f919061147c565b10156106e45760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610292565b600554600454610701916001600160a01b03918216911683610d45565b6005546040518281526001600160a01b03909116907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a250565b61074e610d18565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600480546040516370a0823160e01b815230928101929092526000916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e2919061147c565b905090565b6107ef610d18565b6107f96000610d7b565b565b610803610d18565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61082e86610dcb565b61086a5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081b1858995b609a1b6044820152606401610292565b60008251116108b65760405162461bcd60e51b81526020600482015260186024820152774f726465722049442063616e6e6f7420626520656d70747960401b6044820152606401610292565b831561097757600480546040516370a0823160e01b8152339281019290925285916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092d919061147c565b10156109775760405162461bcd60e51b8152602060048201526019602482015278496e73756666696369656e7420555344542062616c616e636560381b6044820152606401610292565b61098686868686338787610b59565b6109c65760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610292565b60006109d6866301e133806114ab565b905060006109e482426115d9565b9050428111610a295760405162461bcd60e51b81526020600482015260116024820152704475726174696f6e206f766572666c6f7760781b6044820152606401610292565b600154604051637e8816b960e01b81526001600160a01b0390911690637e8816b990610a5d908b90339086906004016115ec565b600060405180830381600087803b158015610a7757600080fd5b505af1158015610a8b573d6000803e3d6000fd5b505050506000861115610ab057600454610ab0906001600160a01b0316333089610cab565b336001600160a01b03167f41c4c914d5aa50a0d6d6ca12651c6a76cfd10c98da11b3d751f04255d55ad983898388888b6040516104f095949392919061161a565b610af9610d18565b6001600160a01b038116610b2357604051631e4fbdf760e01b815260006004820152602401610292565b610b2c81610d7b565b50565b610b37610d18565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600080888888888888604051602001610b779695949392919061166e565b60405160208183030381529060405280519060200120905042861115610bd35760405162461bcd60e51b81526020600482015260116024820152700496e76616c69642074696d657374616d7607c1b6044820152606401610292565b610384610be087426116cf565b10610c215760405162461bcd60e51b815260206004820152601160248201527045787069726564207369676e617475726560781b6044820152606401610292565b6000610c7a826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6003549091506001600160a01b0316610c938286610f1e565b6001600160a01b0316149a9950505050505050505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610d129186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610f4a565b50505050565b6000546001600160a01b031633146107f95760405163118cdaa760e01b8152336004820152602401610292565b6040516001600160a01b03838116602483015260448201839052610d7691859182169063a9059cbb90606401610ce0565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b805160009082906004811080610de15750601481115b15610df0575060009392505050565b60005b81811015610f13576000838281518110610e0f57610e0f6116e2565b01602001516001600160f81b0319169050606160f81b8110801590610e425750603d60f91b6001600160f81b0319821611155b15610e4d5750610f0b565b600360fc1b6001600160f81b0319821610801590610e795750603960f81b6001600160f81b0319821611155b15610e845750610f0b565b6001600160f81b03198116602d60f81b03610eff57811580610eaf5750610eac6001846116cf565b82145b80610ee8575083610ec16001846116cf565b81518110610ed157610ed16116e2565b6020910101516001600160f81b031916602d60f81b145b15610ef95750600095945050505050565b50610f0b565b50600095945050505050565b600101610df3565b506001949350505050565b600080600080610f2e8686610fad565b925092509250610f3e8282610ffa565b50909150505b92915050565b6000610f5f6001600160a01b038416836110b7565b90508051600014158015610f84575080806020019051810190610f8291906116f8565b155b15610d7657604051635274afe760e01b81526001600160a01b0384166004820152602401610292565b60008060008351604103610fe75760208401516040850151606086015160001a610fd9888285856110cc565b955095509550505050610ff3565b50508151600091506002905b9250925092565b600082600381111561100e5761100e61171a565b03611017575050565b600182600381111561102b5761102b61171a565b036110495760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561105d5761105d61171a565b0361107e5760405163fce698f760e01b815260048101829052602401610292565b60038260038111156110925761109261171a565b036110b3576040516335e2f38360e21b815260048101829052602401610292565b5050565b60606110c58383600061119b565b9392505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156111075750600091506003905082611191565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa15801561115b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661118757506000925060019150829050611191565b9250600091508190505b9450945094915050565b6060814710156111c05760405163cd78605960e01b8152306004820152602401610292565b600080856001600160a01b031684866040516111dc9190611730565b60006040518083038185875af1925050503d8060008114611219576040519150601f19603f3d011682016040523d82523d6000602084013e61121e565b606091505b509150915061122e868383611238565b9695505050505050565b60608261124d5761124882611294565b6110c5565b815115801561126457506001600160a01b0384163b155b1561128d57604051639996b31560e01b81526001600160a01b0385166004820152602401610292565b50806110c5565b8051156112a45780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b634e487b7160e01b600052604160045260246000fd5b60008067ffffffffffffffff8411156112ee576112ee6112bd565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561131d5761131d6112bd565b60405283815290508082840185101561133557600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261135e57600080fd5b6110c5838335602085016112d3565b60008060008060008060c0878903121561138657600080fd5b863567ffffffffffffffff81111561139d57600080fd5b6113a989828a0161134d565b965050602087013594506040870135935060608701359250608087013567ffffffffffffffff8111156113db57600080fd5b6113e789828a0161134d565b92505060a087013567ffffffffffffffff81111561140457600080fd5b8701601f8101891361141557600080fd5b611424898235602084016112d3565b9150509295509295509295565b6001600160a01b0381168114610b2c57600080fd5b60006020828403121561145857600080fd5b81356110c581611431565b60006020828403121561147557600080fd5b5035919050565b60006020828403121561148e57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610f4457610f44611495565b60005b838110156114dd5781810151838201526020016114c5565b50506000910152565b600081518084526114fe8160208601602086016114c2565b601f01601f19169290920160200192915050565b60408152600061152560408301856114e6565b90508260208301529392505050565b6020815260006110c560208301846114e6565b6000806040838503121561155a57600080fd5b825161156581611431565b6020939093015192949293505050565b60c08152600061158860c08301886114e6565b866020840152828103806040850152600582526472656e657760d81b6020830152866060850152604081016080850152506115c660408201866114e6565b9150508260a08301529695505050505050565b80820180821115610f4457610f44611495565b6060815260006115ff60608301866114e6565b6001600160a01b039490941660208301525060400152919050565b60c08152600061162d60c08301886114e6565b86602084015282810380604085015260088252673932b3b4b9ba32b960c11b6020830152866060850152604081016080850152506115c660408201866114e6565b60008751611680818460208c016114c2565b80830190508781528660208201528560408201526bffffffffffffffffffffffff198560601b16606082015283516116bf8160748401602088016114c2565b0160740198975050505050505050565b81810381811115610f4457610f44611495565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561170a57600080fd5b815180151581146110c557600080fd5b634e487b7160e01b600052602160045260246000fd5b600082516117428184602087016114c2565b919091019291505056fea26469706673582212208f0a942f445ff61fa2cc8d9ee9b41028783ef415b5e7c48f9069bd3e554683eb64736f6c634300081a0033000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000859b5d2860f59ae457f3d6dfd9bdd9ec59f09115
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a98184fd11610066578063a98184fd146101fe578063a98ad46c14610211578063f2fde38b14610224578063faab9d391461023757600080fd5b8063715018a6146101bf5780637b103999146101c75780638da5cb5b146101da578063a91ee0dc146101eb57600080fd5b806338af3eed116100d357806338af3eed146101705780633ea521ef146101835780636c19e783146101965780636f9fb98a146101a957600080fd5b80630f9dc70c146101055780631c31f7101461011a578063238ac9331461012d5780632b20e3971461015d575b600080fd5b61011861011336600461136d565b61024a565b005b610118610128366004611446565b610502565b600354610140906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b600154610140906001600160a01b031681565b600554610140906001600160a01b031681565b610118610191366004611463565b610574565b6101186101a4366004611446565b610746565b6101b1610770565b604051908152602001610154565b6101186107e7565b600254610140906001600160a01b031681565b6000546001600160a01b0316610140565b6101186101f9366004611446565b6107fb565b61011861020c36600461136d565b610825565b600454610140906001600160a01b031681565b610118610232366004611446565b610af1565b610118610245366004611446565b610b2f565b600082511161029b5760405162461bcd60e51b81526020600482015260186024820152774f726465722049442063616e6e6f7420626520656d70747960401b60448201526064015b60405180910390fd5b600480546040516370a0823160e01b8152339281019290925285916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156102e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030c919061147c565b10156103565760405162461bcd60e51b8152602060048201526019602482015278496e73756666696369656e7420555344542062616c616e636560381b6044820152606401610292565b61036586868686338787610b59565b6103a55760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610292565b60006103b5866301e133806114ab565b60015460405163acf1a84160e01b81529192506001600160a01b03169063acf1a841906103e8908a908590600401611512565b600060405180830381600087803b15801561040257600080fd5b505af1158015610416573d6000803e3d6000fd5b50505050600085111561043b5760045461043b906001600160a01b0316333088610cab565b60025460405163f2d9d3ed60e01b81526000916001600160a01b03169063f2d9d3ed9061046c908b90600401611534565b6040805180830381865afa158015610488573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ac9190611547565b915050336001600160a01b03167f41c4c914d5aa50a0d6d6ca12651c6a76cfd10c98da11b3d751f04255d55ad983898388888b6040516104f0959493929190611575565b60405180910390a25050505050505050565b61050a610d18565b6001600160a01b0381166105525760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610292565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146105de5760405162461bcd60e51b815260206004820152602760248201527f4f6e6c792062656e65666963696172792063616e2063616c6c207468697320666044820152663ab731ba34b7b760c91b6064820152608401610292565b6000811161062e5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610292565b600480546040516370a0823160e01b8152309281019290925282916001600160a01b03909116906370a0823190602401602060405180830381865afa15801561067b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069f919061147c565b10156106e45760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610292565b600554600454610701916001600160a01b03918216911683610d45565b6005546040518281526001600160a01b03909116907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a250565b61074e610d18565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b600480546040516370a0823160e01b815230928101929092526000916001600160a01b03909116906370a0823190602401602060405180830381865afa1580156107be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e2919061147c565b905090565b6107ef610d18565b6107f96000610d7b565b565b610803610d18565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61082e86610dcb565b61086a5760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081b1858995b609a1b6044820152606401610292565b60008251116108b65760405162461bcd60e51b81526020600482015260186024820152774f726465722049442063616e6e6f7420626520656d70747960401b6044820152606401610292565b831561097757600480546040516370a0823160e01b8152339281019290925285916001600160a01b03909116906370a0823190602401602060405180830381865afa158015610909573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092d919061147c565b10156109775760405162461bcd60e51b8152602060048201526019602482015278496e73756666696369656e7420555344542062616c616e636560381b6044820152606401610292565b61098686868686338787610b59565b6109c65760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964207369676e617475726560781b6044820152606401610292565b60006109d6866301e133806114ab565b905060006109e482426115d9565b9050428111610a295760405162461bcd60e51b81526020600482015260116024820152704475726174696f6e206f766572666c6f7760781b6044820152606401610292565b600154604051637e8816b960e01b81526001600160a01b0390911690637e8816b990610a5d908b90339086906004016115ec565b600060405180830381600087803b158015610a7757600080fd5b505af1158015610a8b573d6000803e3d6000fd5b505050506000861115610ab057600454610ab0906001600160a01b0316333089610cab565b336001600160a01b03167f41c4c914d5aa50a0d6d6ca12651c6a76cfd10c98da11b3d751f04255d55ad983898388888b6040516104f095949392919061161a565b610af9610d18565b6001600160a01b038116610b2357604051631e4fbdf760e01b815260006004820152602401610292565b610b2c81610d7b565b50565b610b37610d18565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600080888888888888604051602001610b779695949392919061166e565b60405160208183030381529060405280519060200120905042861115610bd35760405162461bcd60e51b81526020600482015260116024820152700496e76616c69642074696d657374616d7607c1b6044820152606401610292565b610384610be087426116cf565b10610c215760405162461bcd60e51b815260206004820152601160248201527045787069726564207369676e617475726560781b6044820152606401610292565b6000610c7a826040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b6003549091506001600160a01b0316610c938286610f1e565b6001600160a01b0316149a9950505050505050505050565b6040516001600160a01b038481166024830152838116604483015260648201839052610d129186918216906323b872dd906084015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050610f4a565b50505050565b6000546001600160a01b031633146107f95760405163118cdaa760e01b8152336004820152602401610292565b6040516001600160a01b03838116602483015260448201839052610d7691859182169063a9059cbb90606401610ce0565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b805160009082906004811080610de15750601481115b15610df0575060009392505050565b60005b81811015610f13576000838281518110610e0f57610e0f6116e2565b01602001516001600160f81b0319169050606160f81b8110801590610e425750603d60f91b6001600160f81b0319821611155b15610e4d5750610f0b565b600360fc1b6001600160f81b0319821610801590610e795750603960f81b6001600160f81b0319821611155b15610e845750610f0b565b6001600160f81b03198116602d60f81b03610eff57811580610eaf5750610eac6001846116cf565b82145b80610ee8575083610ec16001846116cf565b81518110610ed157610ed16116e2565b6020910101516001600160f81b031916602d60f81b145b15610ef95750600095945050505050565b50610f0b565b50600095945050505050565b600101610df3565b506001949350505050565b600080600080610f2e8686610fad565b925092509250610f3e8282610ffa565b50909150505b92915050565b6000610f5f6001600160a01b038416836110b7565b90508051600014158015610f84575080806020019051810190610f8291906116f8565b155b15610d7657604051635274afe760e01b81526001600160a01b0384166004820152602401610292565b60008060008351604103610fe75760208401516040850151606086015160001a610fd9888285856110cc565b955095509550505050610ff3565b50508151600091506002905b9250925092565b600082600381111561100e5761100e61171a565b03611017575050565b600182600381111561102b5761102b61171a565b036110495760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561105d5761105d61171a565b0361107e5760405163fce698f760e01b815260048101829052602401610292565b60038260038111156110925761109261171a565b036110b3576040516335e2f38360e21b815260048101829052602401610292565b5050565b60606110c58383600061119b565b9392505050565b600080807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08411156111075750600091506003905082611191565b604080516000808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa15801561115b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661118757506000925060019150829050611191565b9250600091508190505b9450945094915050565b6060814710156111c05760405163cd78605960e01b8152306004820152602401610292565b600080856001600160a01b031684866040516111dc9190611730565b60006040518083038185875af1925050503d8060008114611219576040519150601f19603f3d011682016040523d82523d6000602084013e61121e565b606091505b509150915061122e868383611238565b9695505050505050565b60608261124d5761124882611294565b6110c5565b815115801561126457506001600160a01b0384163b155b1561128d57604051639996b31560e01b81526001600160a01b0385166004820152602401610292565b50806110c5565b8051156112a45780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b634e487b7160e01b600052604160045260246000fd5b60008067ffffffffffffffff8411156112ee576112ee6112bd565b50604051601f19601f85018116603f0116810181811067ffffffffffffffff8211171561131d5761131d6112bd565b60405283815290508082840185101561133557600080fd5b83836020830137600060208583010152509392505050565b600082601f83011261135e57600080fd5b6110c5838335602085016112d3565b60008060008060008060c0878903121561138657600080fd5b863567ffffffffffffffff81111561139d57600080fd5b6113a989828a0161134d565b965050602087013594506040870135935060608701359250608087013567ffffffffffffffff8111156113db57600080fd5b6113e789828a0161134d565b92505060a087013567ffffffffffffffff81111561140457600080fd5b8701601f8101891361141557600080fd5b611424898235602084016112d3565b9150509295509295509295565b6001600160a01b0381168114610b2c57600080fd5b60006020828403121561145857600080fd5b81356110c581611431565b60006020828403121561147557600080fd5b5035919050565b60006020828403121561148e57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610f4457610f44611495565b60005b838110156114dd5781810151838201526020016114c5565b50506000910152565b600081518084526114fe8160208601602086016114c2565b601f01601f19169290920160200192915050565b60408152600061152560408301856114e6565b90508260208301529392505050565b6020815260006110c560208301846114e6565b6000806040838503121561155a57600080fd5b825161156581611431565b6020939093015192949293505050565b60c08152600061158860c08301886114e6565b866020840152828103806040850152600582526472656e657760d81b6020830152866060850152604081016080850152506115c660408201866114e6565b9150508260a08301529695505050505050565b80820180821115610f4457610f44611495565b6060815260006115ff60608301866114e6565b6001600160a01b039490941660208301525060400152919050565b60c08152600061162d60c08301886114e6565b86602084015282810380604085015260088252673932b3b4b9ba32b960c11b6020830152866060850152604081016080850152506115c660408201866114e6565b60008751611680818460208c016114c2565b80830190508781528660208201528560408201526bffffffffffffffffffffffff198560601b16606082015283516116bf8160748401602088016114c2565b0160740198975050505050505050565b81810381811115610f4457610f44611495565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561170a57600080fd5b815180151581146110c557600080fd5b634e487b7160e01b600052602160045260246000fd5b600082516117428184602087016114c2565b919091019291505056fea26469706673582212208f0a942f445ff61fa2cc8d9ee9b41028783ef415b5e7c48f9069bd3e554683eb64736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7000000000000000000000000859b5d2860f59ae457f3d6dfd9bdd9ec59f09115
-----Decoded View---------------
Arg [0] : usdtTokenAddress (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
Arg [1] : initialOwner (address): 0x859B5D2860F59AE457F3d6DfD9bDD9eC59f09115
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [1] : 000000000000000000000000859b5d2860f59ae457f3d6dfd9bdd9ec59f09115
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1 | 3,680 | $3,683.68 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.