Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 28 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 19562398 | 213 days ago | IN | 0 ETH | 0.00145374 | ||||
Set Approval For... | 19526337 | 219 days ago | IN | 0 ETH | 0.00133109 | ||||
Set Approval For... | 19526235 | 219 days ago | IN | 0 ETH | 0.00238281 | ||||
Set Approval For... | 19514938 | 220 days ago | IN | 0 ETH | 0.00099151 | ||||
Set Approval For... | 19513449 | 220 days ago | IN | 0 ETH | 0.00153118 | ||||
Set Approval For... | 19508828 | 221 days ago | IN | 0 ETH | 0.00073604 | ||||
Set Approval For... | 19483636 | 225 days ago | IN | 0 ETH | 0.00159734 | ||||
Set Approval For... | 18964175 | 297 days ago | IN | 0 ETH | 0.00173517 | ||||
Set Approval For... | 18929125 | 302 days ago | IN | 0 ETH | 0.00134058 | ||||
Set Approval For... | 18841229 | 315 days ago | IN | 0 ETH | 0.00131113 | ||||
Set Approval For... | 18731129 | 330 days ago | IN | 0 ETH | 0.00217916 | ||||
Set Approval For... | 18720739 | 332 days ago | IN | 0 ETH | 0.0037097 | ||||
Set Approval For... | 18697939 | 335 days ago | IN | 0 ETH | 0.0019629 | ||||
Set Approval For... | 18697933 | 335 days ago | IN | 0 ETH | 0.00213074 | ||||
Set Approval For... | 18635765 | 343 days ago | IN | 0 ETH | 0.00192676 | ||||
Set Approval For... | 18536857 | 357 days ago | IN | 0 ETH | 0.00182399 | ||||
Set Approval For... | 18336015 | 385 days ago | IN | 0 ETH | 0.00065544 | ||||
Set Approval For... | 17236763 | 540 days ago | IN | 0 ETH | 0.0043805 | ||||
Set Approval For... | 16236605 | 680 days ago | IN | 0 ETH | 0.00067271 | ||||
Set Approval For... | 16149504 | 692 days ago | IN | 0 ETH | 0.00309976 | ||||
Set Approval For... | 16149398 | 692 days ago | IN | 0 ETH | 0.00903165 | ||||
Set Approval For... | 16144377 | 693 days ago | IN | 0 ETH | 0.00066702 | ||||
Set Approval For... | 16119158 | 697 days ago | IN | 0 ETH | 0.00068735 | ||||
Set Registrar | 15976667 | 716 days ago | IN | 0 ETH | 0.00067551 | ||||
Register Module | 15969505 | 717 days ago | IN | 0 ETH | 0.00180648 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RealNiftyModuleManager
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import {RealNiftyProtocolFeeSettings} from "./auxiliary/RealNiftyProtocolFeeSettings/RealNiftyProtocolFeeSettings.sol"; /// @title RealNiftyModuleManager /// @author tbtstl <[email protected]> modified by wipiway.eth /// @notice This contract allows users to approve registered modules on ZORA V3 contract RealNiftyModuleManager { /// @notice The EIP-712 type for a signed approval /// @dev keccak256("SignedApproval(address module,address user,bool approved,uint256 deadline,uint256 nonce)") bytes32 private constant SIGNED_APPROVAL_TYPEHASH = 0x8413132cc7aa5bd2ce1a1b142a3f09e2baeda86addf4f9a5dacd4679f56e7cec; /// @notice The EIP-712 domain separator bytes32 private immutable EIP_712_DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes("ZORA")), keccak256(bytes("3")), _chainID(), address(this) ) ); /// @notice The module fee NFT contract to mint from upon module registration RealNiftyProtocolFeeSettings public immutable moduleFeeToken; /// @notice The registrar address that can register modules address public registrar; /// @notice Mapping of users and modules to approved status /// @dev User address => Module address => Approved mapping(address => mapping(address => bool)) public userApprovals; /// @notice Mapping of modules to registered status /// @dev Module address => Registered mapping(address => bool) public moduleRegistered; /// @notice The signature nonces for 3rd party module approvals mapping(address => uint256) public sigNonces; /// @notice Ensures only the registrar can register modules modifier onlyRegistrar() { require(msg.sender == registrar, "ZMM::onlyRegistrar must be registrar"); _; } /// @notice Emitted when a user's module approval is updated /// @param user The address of the user /// @param module The address of the module /// @param approved Whether the user added or removed approval event ModuleApprovalSet(address indexed user, address indexed module, bool approved); /// @notice Emitted when a module is registered /// @param module The address of the module event ModuleRegistered(address indexed module); /// @notice Emitted when the registrar address is updated /// @param newRegistrar The address of the new registrar event RegistrarChanged(address indexed newRegistrar); /// @param _registrar The initial registrar for the manager /// @param _feeToken The module fee token contract to mint from upon module registration constructor(address _registrar, address _feeToken) { require(_registrar != address(0), "ZMM::must set registrar to non-zero address"); registrar = _registrar; moduleFeeToken = RealNiftyProtocolFeeSettings(_feeToken); } /// @notice Returns true if the user has approved a given module, false otherwise /// @param _user The user to check approvals for /// @param _module The module to check approvals for /// @return True if the module has been approved by the user, false otherwise function isModuleApproved(address _user, address _module) external view returns (bool) { return userApprovals[_user][_module]; } // ,-. // `-' // /|\ // | ,-----------------. // / \ |RealNiftyModuleManager| // Caller `--------+--------' // | setApprovalForModule()| // | ----------------------> // | | // | |----. // | | | set approval for module // | |<---' // | | // | |----. // | | | emit ModuleApprovalSet() // | |<---' // Caller ,--------+--------. // ,-. |RealNiftyModuleManager| // `-' `-----------------' // /|\ // | // / \ /// @notice Allows a user to set the approval for a given module /// @param _module The module to approve /// @param _approved A boolean, whether or not to approve a module function setApprovalForModule(address _module, bool _approved) public { _setApprovalForModule(_module, msg.sender, _approved); } // ,-. // `-' // /|\ // | ,-----------------. // / \ |RealNiftyModuleManager| // Caller `--------+--------' // | setBatchApprovalForModule()| // | ---------------------------> // | | // | | // | _____________________________________________________ // | ! LOOP / for each module ! // | !______/ | ! // | ! |----. ! // | ! | | set approval for module ! // | ! |<---' ! // | ! | ! // | ! |----. ! // | ! | | emit ModuleApprovalSet() ! // | ! |<---' ! // | !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~! // Caller ,--------+--------. // ,-. |RealNiftyModuleManager| // `-' `-----------------' // /|\ // | // / \ /// @notice Sets approvals for multiple modules at once /// @param _modules The list of module addresses to set approvals for /// @param _approved A boolean, whether or not to approve the modules function setBatchApprovalForModules(address[] memory _modules, bool _approved) public { // Store the number of module addresses provided uint256 numModules = _modules.length; // Loop through each address for (uint256 i = 0; i < numModules; ) { // Ensure that it's a registered module and set the approval _setApprovalForModule(_modules[i], msg.sender, _approved); // Cannot overflow as array length cannot exceed uint256 max unchecked { ++i; } } } // ,-. // `-' // /|\ // | ,-----------------. // / \ |RealNiftyModuleManager| // Caller `--------+--------' // | setApprovalForModuleBySig()| // | ---------------------------> // | | // | |----. // | | | recover user address from signature // | |<---' // | | // | |----. // | | | set approval for module // | |<---' // | | // | |----. // | | | emit ModuleApprovalSet() // | |<---' // Caller ,--------+--------. // ,-. |RealNiftyModuleManager| // `-' `-----------------' // /|\ // | // / \ /// @notice Sets approval for a module given an EIP-712 signature /// @param _module The module to approve /// @param _user The user to approve the module for /// @param _approved A boolean, whether or not to approve a module /// @param _deadline The deadline at which point the given signature expires /// @param _v The 129th byte and chain ID of the signature /// @param _r The first 64 bytes of the signature /// @param _s Bytes 64-128 of the signature function setApprovalForModuleBySig( address _module, address _user, bool _approved, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) public { require(_deadline == 0 || _deadline >= block.timestamp, "ZMM::setApprovalForModuleBySig deadline expired"); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", EIP_712_DOMAIN_SEPARATOR, keccak256(abi.encode(SIGNED_APPROVAL_TYPEHASH, _module, _user, _approved, _deadline, sigNonces[_user]++)) ) ); address recoveredAddress = ecrecover(digest, _v, _r, _s); require(recoveredAddress != address(0) && recoveredAddress == _user, "ZMM::setApprovalForModuleBySig invalid signature"); _setApprovalForModule(_module, _user, _approved); } // ,-. // `-' // /|\ // | ,-----------------. ,-----------------------. // / \ |RealNiftyModuleManager| |RealNiftyProtocolFeeSettings| // Registrar `--------+--------' `-----------+-----------' // | registerModule() | | // |----------------------->| | // | | | // | ----. | // | | register module | // | <---' | // | | | // | | mint() | // | |------------------------------>| // | | | // | | ----. // | | | mint token to registrar // | | <---' // | | | // | ----. | // | | emit ModuleRegistered() | // | <---' | // Registrar ,--------+--------. ,-----------+-----------. // ,-. |RealNiftyModuleManager| |RealNiftyProtocolFeeSettings| // `-' `-----------------' `-----------------------' // /|\ // | // / \ /// @notice Registers a module /// @param _module The address of the module function registerModule(address _module) public onlyRegistrar { require(!moduleRegistered[_module], "ZMM::registerModule module already registered"); moduleRegistered[_module] = true; moduleFeeToken.mint(registrar, _module); emit ModuleRegistered(_module); } // ,-. // `-' // /|\ // | ,-----------------. // / \ |RealNiftyModuleManager| // Registrar `--------+--------' // | setRegistrar() | // |----------------------->| // | | // | ----. // | | set registrar // | <---' // | | // | ----. // | | emit RegistrarChanged() // | <---' // Registrar ,--------+--------. // ,-. |RealNiftyModuleManager| // `-' `-----------------' // /|\ // | // / \ /// @notice Sets the registrar for the ZORA Module Manager /// @param _registrar the address of the new registrar function setRegistrar(address _registrar) public onlyRegistrar { require(_registrar != address(0), "ZMM::setRegistrar must set registrar to non-zero address"); registrar = _registrar; emit RegistrarChanged(_registrar); } /// @notice Updates a module approval for a user /// @param _module The address of the module /// @param _user The address of the user /// @param _approved Whether the user is adding or removing approval function _setApprovalForModule( address _module, address _user, bool _approved ) private { require(moduleRegistered[_module], "ZMM::must be registered module"); userApprovals[_user][_module] = _approved; emit ModuleApprovalSet(msg.sender, _module, _approved); } /// @notice The EIP-155 chain id function _chainID() private view returns (uint256 id) { assembly { id := chainid() } } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.10; import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol"; interface IERC721TokenURI { function tokenURI(uint256 tokenId) external view returns (string memory); } /// @title RealNiftyProtocolFeeSettings /// @author tbtstl <[email protected]> modified by wipiway.eth /// @notice This contract allows an optional fee percentage and recipient to be set for individual ZORA modules contract RealNiftyProtocolFeeSettings is ERC721 { /// @notice The address of the contract metadata address public metadata; /// @notice The address of the contract owner address public owner; /// @notice The address of the ZORA Module Manager address public minter; /// @notice The metadata of a module fee setting /// @param feeBps The basis points fee /// @param feeRecipient The recipient of the fee struct FeeSetting { uint16 feeBps; address feeRecipient; } /// @notice Mapping of modules to fee settings /// @dev Module address => FeeSetting mapping(address => FeeSetting) public moduleFeeSetting; /// @notice Ensures only the owner of a module fee NFT can set its fee /// @param _module The address of the module modifier onlyModuleOwner(address _module) { uint256 tokenId = moduleToTokenId(_module); require(ownerOf(tokenId) == msg.sender, "onlyModuleOwner"); _; } /// @notice Emitted when the fee for a module is updated /// @param module The address of the module /// @param feeRecipient The address of the fee recipient /// @param feeBps The basis points of the fee event ProtocolFeeUpdated(address indexed module, address feeRecipient, uint16 feeBps); /// @notice Emitted when the contract metadata is updated /// @param newMetadata The address of the new metadata event MetadataUpdated(address indexed newMetadata); /// @notice Emitted when the contract owner is updated /// @param newOwner The address of the new owner event OwnerUpdated(address indexed newOwner); constructor() ERC721("RealNifty Module Fee Switch", "RNMF") { _setOwner(msg.sender); } /// @notice Initialize the Protocol Fee Settings /// @param _minter The address that can mint new NFTs (expected RealNiftyModuleManager address) function init(address _minter, address _metadata) external { require(msg.sender == owner, "init only owner"); require(minter == address(0), "init already initialized"); minter = _minter; metadata = _metadata; } // ,-. // `-' // /|\ // | ,-----------------------. // / \ |RealNiftyProtocolFeeSettings| // Minter `-----------+-----------' // | mint() | // | ------------------------>| // | | // | ----. // | | derive token ID from module address // | <---' // | | // | ----. // | | mint token to given address // | <---' // | | // | return token ID | // | <------------------------| // Minter ,-----------+-----------. // ,-. |RealNiftyProtocolFeeSettings| // `-' `-----------------------' // /|\ // | // / \ /// @notice Mint a new protocol fee setting for a module /// @param _to The address to send the protocol fee setting token to /// @param _module The module for which the minted token will represent function mint(address _to, address _module) external returns (uint256) { require(msg.sender == minter, "mint onlyMinter"); uint256 tokenId = moduleToTokenId(_module); _mint(_to, tokenId); return tokenId; } // ,-. // `-' // /|\ // | ,-----------------------. // / \ |RealNiftyProtocolFeeSettings| // ModuleOwner `-----------+-----------' // | setFeeParams() | // |--------------------------->| // | | // | ----. // | | set fee parameters // | <---' // | | // | ----. // | | emit ProtocolFeeUpdated() // | <---' // ModuleOwner ,-----------+-----------. // ,-. |RealNiftyProtocolFeeSettings| // `-' `-----------------------' // /|\ // | // / \ /// @notice Sets fee parameters for a module fee NFT /// @param _module The module to apply the fee settings to /// @param _feeRecipient The fee recipient address to send fees to /// @param _feeBps The bps of transaction value to send to the fee recipient function setFeeParams( address _module, address _feeRecipient, uint16 _feeBps ) external onlyModuleOwner(_module) { require(_feeBps <= 10000, "setFeeParams must set fee <= 100%"); require(_feeRecipient != address(0) || _feeBps == 0, "setFeeParams fee recipient cannot be 0 address if fee is greater than 0"); moduleFeeSetting[_module] = FeeSetting(_feeBps, _feeRecipient); emit ProtocolFeeUpdated(_module, _feeRecipient, _feeBps); } // ,-. // `-' // /|\ // | ,-----------------------. // / \ |RealNiftyProtocolFeeSettings| // Owner `-----------+-----------' // | setOwner() | // |------------------------>| // | | // | ----. // | | set owner // | <---' // | | // | ----. // | | emit OwnerUpdated() // | <---' // Owner ,-----------+-----------. // ,-. |RealNiftyProtocolFeeSettings| // `-' `-----------------------' // /|\ // | // / \ /// @notice Sets the owner of the contract /// @param _owner The address of the owner function setOwner(address _owner) external { require(msg.sender == owner, "setOwner onlyOwner"); _setOwner(_owner); } // ,-. // `-' // /|\ // | ,-----------------------. // / \ |RealNiftyProtocolFeeSettings| // Owner `-----------+-----------' // | setMetadata() | // |------------------------>| // | | // | ----. // | | set metadata // | <---' // | | // | ----. // | | emit MetadataUpdated() // | <---' // Owner ,-----------+-----------. // ,-. |RealNiftyProtocolFeeSettings| // `-' `-----------------------' // /|\ // | // / \ /// @notice Sets the metadata of the contract /// @param _metadata The address of the metadata function setMetadata(address _metadata) external { require(msg.sender == owner, "setMetadata onlyOwner"); _setMetadata(_metadata); } /// @notice Computes the fee for a given uint256 amount /// @param _module The module to compute the fee for /// @param _amount The amount to compute the fee for /// @return The amount to be paid out to the fee recipient function getFeeAmount(address _module, uint256 _amount) external view returns (uint256) { return (_amount * moduleFeeSetting[_module].feeBps) / 10000; } /// @notice Returns the module address for a given token ID /// @param _tokenId The token ID /// @return The module address function tokenIdToModule(uint256 _tokenId) public pure returns (address) { return address(uint160(_tokenId)); } /// @notice Returns the token ID for a given module /// @dev We don't worry about losing the top 20 bytes when going from uint256 -> uint160 since we know token ID must have derived from an address /// @param _module The module address /// @return The token ID function moduleToTokenId(address _module) public pure returns (uint256) { return uint256(uint160(_module)); } /// @notice Returns the token URI for a given token ID /// @param _tokenId The token ID /// @return The token URI function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); require(metadata != address(0), "ERC721Metadata: no metadata address"); return IERC721TokenURI(metadata).tokenURI(_tokenId); } /// @notice Sets the contract metadata in `setMetadata` /// @param _metadata The address of the metadata function _setMetadata(address _metadata) private { metadata = _metadata; emit MetadataUpdated(_metadata); } /// @notice Sets the contract owner in `setOwner` /// @param _owner The address of the owner function _setOwner(address _owner) private { owner = _owner; emit OwnerUpdated(_owner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), 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 virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_registrar","type":"address"},{"internalType":"address","name":"_feeToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"module","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ModuleApprovalSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"module","type":"address"}],"name":"ModuleRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newRegistrar","type":"address"}],"name":"RegistrarChanged","type":"event"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"address","name":"_module","type":"address"}],"name":"isModuleApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moduleFeeToken","outputs":[{"internalType":"contract RealNiftyProtocolFeeSettings","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"moduleRegistered","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"}],"name":"registerModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"registrar","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setApprovalForModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_module","type":"address"},{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_approved","type":"bool"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"setApprovalForModuleBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_modules","type":"address[]"},{"internalType":"bool","name":"_approved","type":"bool"}],"name":"setBatchApprovalForModules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_registrar","type":"address"}],"name":"setRegistrar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"sigNonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userApprovals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
600460c052635a4f524160e01b60e052600161010052603360f81b610120527f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6101609081527fce58904c16226b928edd08e5ee91745b8b749acafb24ab016c32bb2f06593481610180527f2a80e1ef1d7842f27f2e6be0972bb708b9a135c38860dbe73c27c3486c34f4de6101a052466101c052306101e05260a061014081905261020060405290206080523480156100b857600080fd5b50604051610d1e380380610d1e8339810160408190526100d791610186565b6001600160a01b0382166101455760405162461bcd60e51b815260206004820152602b60248201527f5a4d4d3a3a6d757374207365742072656769737472617220746f206e6f6e2d7a60448201526a65726f206164647265737360a81b606482015260840160405180910390fd5b600080546001600160a01b0319166001600160a01b039384161790551660a0526101b9565b80516001600160a01b038116811461018157600080fd5b919050565b6000806040838503121561019957600080fd5b6101a28361016a565b91506101b06020840161016a565b90509250929050565b60805160a051610b396101e56000396000818161018501526105aa015260006102d20152610b396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80639e4a400c116100715780639e4a400c14610180578063ad64ae4b146101a7578063bcb11ad3146101ba578063f990ccd7146101cd578063faab9d39146101fb578063fbef5f521461020e57600080fd5b8063152c1b5b146100ae5780631be50153146100c35780632b20e3971461010657806337436c98146101315780639dbb83a71461016d575b600080fd5b6100c16100bc366004610881565b610231565b005b6100f16100d13660046108b4565b600160209081526000928352604080842090915290825290205460ff1681565b60405190151581526020015b60405180910390f35b600054610119906001600160a01b031681565b6040516001600160a01b0390911681526020016100fd565b6100f161013f3660046108b4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6100c161017b3660046108de565b610240565b6101197f000000000000000000000000000000000000000000000000000000000000000081565b6100c16101b5366004610958565b6104bc565b6100c16101c8366004610990565b610651565b6101ed6101db366004610958565b60036020526000908152604090205481565b6040519081526020016100fd565b6100c1610209366004610958565b610690565b6100f161021c366004610958565b60026020526000908152604090205460ff1681565b61023c82338361077e565b5050565b83158061024d5750428410155b6102b65760405162461bcd60e51b815260206004820152602f60248201527f5a4d4d3a3a736574417070726f76616c466f724d6f64756c654279536967206460448201526e1958591b1a5b9948195e1c1a5c9959608a1b60648201526084015b60405180910390fd5b6001600160a01b038616600090815260036020526040812080547f0000000000000000000000000000000000000000000000000000000000000000917f8413132cc7aa5bd2ce1a1b142a3f09e2baeda86addf4f9a5dacd4679f56e7cec918b918b918b918b91908861032783610a67565b909155506040805160208101979097526001600160a01b03958616908701529390921660608501521515608084015260a083015260c082015260e001604051602081830303815290604052805190602001206040516020016103a092919061190160f01b81526002810192909252602282015260420190565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa15801561040b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906104415750876001600160a01b0316816001600160a01b0316145b6104a65760405162461bcd60e51b815260206004820152603060248201527f5a4d4d3a3a736574417070726f76616c466f724d6f64756c654279536967206960448201526f6e76616c6964207369676e617475726560801b60648201526084016102ad565b6104b189898961077e565b505050505050505050565b6000546001600160a01b031633146104e65760405162461bcd60e51b81526004016102ad90610a90565b6001600160a01b03811660009081526002602052604090205460ff16156105655760405162461bcd60e51b815260206004820152602d60248201527f5a4d4d3a3a72656769737465724d6f64756c65206d6f64756c6520616c72656160448201526c191e481c9959da5cdd195c9959609a1b60648201526084016102ad565b6001600160a01b03818116600081815260026020526040808220805460ff191660011790559054905163ee1fe2ad60e01b8152908316600482015260248101919091527f00000000000000000000000000000000000000000000000000000000000000009091169063ee1fe2ad906044016020604051808303816000875af11580156105f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106199190610ad4565b506040516001600160a01b038216907f0961fbae397458c42f3f186eaabee4a989aafde93ac5d8d122cff462423a241e90600090a250565b815160005b8181101561068a5761068284828151811061067357610673610aed565b6020026020010151338561077e565b600101610656565b50505050565b6000546001600160a01b031633146106ba5760405162461bcd60e51b81526004016102ad90610a90565b6001600160a01b0381166107365760405162461bcd60e51b815260206004820152603860248201527f5a4d4d3a3a736574526567697374726172206d7573742073657420726567697360448201527f7472617220746f206e6f6e2d7a65726f2061646472657373000000000000000060648201526084016102ad565b600080546001600160a01b0319166001600160a01b038316908117825560405190917f6e4c52923c1e70447ecc72995ce26bf2400d9c26b1a7c21ab433e7caff8d40a291a250565b6001600160a01b03831660009081526002602052604090205460ff166107e65760405162461bcd60e51b815260206004820152601e60248201527f5a4d4d3a3a6d7573742062652072656769737465726564206d6f64756c65000060448201526064016102ad565b6001600160a01b03828116600090815260016020908152604080832093871680845293825291829020805460ff1916851515908117909155915191825233917fae7dcf035464e268e998bd5ac0ac831ce45a68f2c2fbd438d6c1c5965eba79f2910160405180910390a3505050565b80356001600160a01b038116811461086c57600080fd5b919050565b8035801515811461086c57600080fd5b6000806040838503121561089457600080fd5b61089d83610855565b91506108ab60208401610871565b90509250929050565b600080604083850312156108c757600080fd5b6108d083610855565b91506108ab60208401610855565b600080600080600080600060e0888a0312156108f957600080fd5b61090288610855565b965061091060208901610855565b955061091e60408901610871565b945060608801359350608088013560ff8116811461093b57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60006020828403121561096a57600080fd5b61097382610855565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156109a357600080fd5b823567ffffffffffffffff808211156109bb57600080fd5b818501915085601f8301126109cf57600080fd5b81356020828211156109e3576109e361097a565b8160051b604051601f19603f83011681018181108682111715610a0857610a0861097a565b604052928352818301935084810182019289841115610a2657600080fd5b948201945b83861015610a4b57610a3c86610855565b85529482019493820193610a2b565b9650610a5a9050878201610871565b9450505050509250929050565b6000600019821415610a8957634e487b7160e01b600052601160045260246000fd5b5060010190565b60208082526024908201527f5a4d4d3a3a6f6e6c79526567697374726172206d7573742062652072656769736040820152633a3930b960e11b606082015260800190565b600060208284031215610ae657600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206adcd116582a35724193dd227558bf00bb0d16fbbb6173120bfc1cf148ae641664736f6c634300080a0033000000000000000000000000fa36de276d0ebfb9bcb9e64f386822ddd7d458140000000000000000000000005985760845cb50012bda0ec5fb8db37ffcd28d1c
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80639e4a400c116100715780639e4a400c14610180578063ad64ae4b146101a7578063bcb11ad3146101ba578063f990ccd7146101cd578063faab9d39146101fb578063fbef5f521461020e57600080fd5b8063152c1b5b146100ae5780631be50153146100c35780632b20e3971461010657806337436c98146101315780639dbb83a71461016d575b600080fd5b6100c16100bc366004610881565b610231565b005b6100f16100d13660046108b4565b600160209081526000928352604080842090915290825290205460ff1681565b60405190151581526020015b60405180910390f35b600054610119906001600160a01b031681565b6040516001600160a01b0390911681526020016100fd565b6100f161013f3660046108b4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b6100c161017b3660046108de565b610240565b6101197f0000000000000000000000005985760845cb50012bda0ec5fb8db37ffcd28d1c81565b6100c16101b5366004610958565b6104bc565b6100c16101c8366004610990565b610651565b6101ed6101db366004610958565b60036020526000908152604090205481565b6040519081526020016100fd565b6100c1610209366004610958565b610690565b6100f161021c366004610958565b60026020526000908152604090205460ff1681565b61023c82338361077e565b5050565b83158061024d5750428410155b6102b65760405162461bcd60e51b815260206004820152602f60248201527f5a4d4d3a3a736574417070726f76616c466f724d6f64756c654279536967206460448201526e1958591b1a5b9948195e1c1a5c9959608a1b60648201526084015b60405180910390fd5b6001600160a01b038616600090815260036020526040812080547fb2f00ff2c7fed9e1e212d1325893256238f346b4a165f79c570ed12673a82a5a917f8413132cc7aa5bd2ce1a1b142a3f09e2baeda86addf4f9a5dacd4679f56e7cec918b918b918b918b91908861032783610a67565b909155506040805160208101979097526001600160a01b03958616908701529390921660608501521515608084015260a083015260c082015260e001604051602081830303815290604052805190602001206040516020016103a092919061190160f01b81526002810192909252602282015260420190565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa15801561040b573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906104415750876001600160a01b0316816001600160a01b0316145b6104a65760405162461bcd60e51b815260206004820152603060248201527f5a4d4d3a3a736574417070726f76616c466f724d6f64756c654279536967206960448201526f6e76616c6964207369676e617475726560801b60648201526084016102ad565b6104b189898961077e565b505050505050505050565b6000546001600160a01b031633146104e65760405162461bcd60e51b81526004016102ad90610a90565b6001600160a01b03811660009081526002602052604090205460ff16156105655760405162461bcd60e51b815260206004820152602d60248201527f5a4d4d3a3a72656769737465724d6f64756c65206d6f64756c6520616c72656160448201526c191e481c9959da5cdd195c9959609a1b60648201526084016102ad565b6001600160a01b03818116600081815260026020526040808220805460ff191660011790559054905163ee1fe2ad60e01b8152908316600482015260248101919091527f0000000000000000000000005985760845cb50012bda0ec5fb8db37ffcd28d1c9091169063ee1fe2ad906044016020604051808303816000875af11580156105f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106199190610ad4565b506040516001600160a01b038216907f0961fbae397458c42f3f186eaabee4a989aafde93ac5d8d122cff462423a241e90600090a250565b815160005b8181101561068a5761068284828151811061067357610673610aed565b6020026020010151338561077e565b600101610656565b50505050565b6000546001600160a01b031633146106ba5760405162461bcd60e51b81526004016102ad90610a90565b6001600160a01b0381166107365760405162461bcd60e51b815260206004820152603860248201527f5a4d4d3a3a736574526567697374726172206d7573742073657420726567697360448201527f7472617220746f206e6f6e2d7a65726f2061646472657373000000000000000060648201526084016102ad565b600080546001600160a01b0319166001600160a01b038316908117825560405190917f6e4c52923c1e70447ecc72995ce26bf2400d9c26b1a7c21ab433e7caff8d40a291a250565b6001600160a01b03831660009081526002602052604090205460ff166107e65760405162461bcd60e51b815260206004820152601e60248201527f5a4d4d3a3a6d7573742062652072656769737465726564206d6f64756c65000060448201526064016102ad565b6001600160a01b03828116600090815260016020908152604080832093871680845293825291829020805460ff1916851515908117909155915191825233917fae7dcf035464e268e998bd5ac0ac831ce45a68f2c2fbd438d6c1c5965eba79f2910160405180910390a3505050565b80356001600160a01b038116811461086c57600080fd5b919050565b8035801515811461086c57600080fd5b6000806040838503121561089457600080fd5b61089d83610855565b91506108ab60208401610871565b90509250929050565b600080604083850312156108c757600080fd5b6108d083610855565b91506108ab60208401610855565b600080600080600080600060e0888a0312156108f957600080fd5b61090288610855565b965061091060208901610855565b955061091e60408901610871565b945060608801359350608088013560ff8116811461093b57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60006020828403121561096a57600080fd5b61097382610855565b9392505050565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156109a357600080fd5b823567ffffffffffffffff808211156109bb57600080fd5b818501915085601f8301126109cf57600080fd5b81356020828211156109e3576109e361097a565b8160051b604051601f19603f83011681018181108682111715610a0857610a0861097a565b604052928352818301935084810182019289841115610a2657600080fd5b948201945b83861015610a4b57610a3c86610855565b85529482019493820193610a2b565b9650610a5a9050878201610871565b9450505050509250929050565b6000600019821415610a8957634e487b7160e01b600052601160045260246000fd5b5060010190565b60208082526024908201527f5a4d4d3a3a6f6e6c79526567697374726172206d7573742062652072656769736040820152633a3930b960e11b606082015260800190565b600060208284031215610ae657600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fdfea26469706673582212206adcd116582a35724193dd227558bf00bb0d16fbbb6173120bfc1cf148ae641664736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fa36de276d0ebfb9bcb9e64f386822ddd7d458140000000000000000000000005985760845cb50012bda0ec5fb8db37ffcd28d1c
-----Decoded View---------------
Arg [0] : _registrar (address): 0xFA36de276d0eBfb9bcB9E64F386822dDd7d45814
Arg [1] : _feeToken (address): 0x5985760845CB50012bdA0ec5fb8DB37FFCD28D1c
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000fa36de276d0ebfb9bcb9e64f386822ddd7d45814
Arg [1] : 0000000000000000000000005985760845cb50012bda0ec5fb8db37ffcd28d1c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.