Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ERC721LazyMintTransferProxy
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* .......... .(MMMMMMMMMMMMMMa,. .(MMMMMMMMMMMMMMMMMMMMN, .+MMMMMMMMMMMMMMMMMMMMMMMMN, .MMMMMMMMMMMMMMMMMMMMMMMMMMMMb .MMMMMMMMMMMMMMMMMMMMMMMMMMMMMMh .MMMMMMMF TMMMMMMMMMMMMF` ?MMMMb MMMMMMMa, .+MMMMMMMMMM# ,MMMM, .MMMMMMMMMgMMMMMMMMMMMMN, .MMMM] ,MMMMMMMMMMMMMMMMMMMMMB^ .J.JMMMMMMF .MMMMMMMMMMMMMMMMMMM#= .JMMMMMMMMMMF .JMMMMMMMMMMMMMMMMMB= .(MMMMMMMMMMMM> MMMMMMMMMMMMMMM#"! .JMMMMMMMMMMMMMF ,MMMMMMMMMMMB"` .dMMMMMM9`7MMMMM# .""""""! .(MMMMMMMMMMaMMMMM@ ..MMMMMMMMMMMMMMMMMM3 .&MMMMMMMMMMMMMMMMMMM" ?YMMMMMMMMMMMMMM#"` _7"""""""! */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../erc721/interfaces/IERC721LazyMint.sol"; import "../erc721/libraries/MintERC721Lib.sol"; import "../erc721/libraries/SecurityLib.sol"; import "../utils/extensions/OperatorControllerUpgradeable.sol"; import "./interfaces/ITransferProxy.sol"; /** * @title Transfer proxy for NFT on Recomet. */ contract ERC721LazyMintTransferProxy is OperatorControllerUpgradeable, ITransferProxy { function __ERC721LazyMintTransferProxy_init(address account) external initializer { __Context_init_unchained(); __Ownable_init_unchained(); __OperatorController_init_unchained(account); } function transfer( AssetLib.AssetData memory asset, address from, address to ) external override onlyOperator { (bool isValid, string memory errorMessage) = _validate(asset, from, to); require(isValid, errorMessage); ( address token, MintERC721Lib.MintERC721Data memory mintERC721Data, SignatureLib.SignatureData memory signatureData ) = _decodeAssetTypeData(asset); IERC721LazyMint(token).lazyMint(mintERC721Data, signatureData); } function _decodeAssetTypeData(AssetLib.AssetData memory asset) private pure returns ( address, MintERC721Lib.MintERC721Data memory, SignatureLib.SignatureData memory ) { ( address token, MintERC721Lib.MintERC721Data memory mintERC721Data, SignatureLib.SignatureData memory signatureData ) = abi.decode( asset.assetType.data, ( address, MintERC721Lib.MintERC721Data, SignatureLib.SignatureData ) ); return (token, mintERC721Data, signatureData); } function _validate( AssetLib.AssetData memory asset, address from, address to ) private pure returns (bool, string memory) { ( , MintERC721Lib.MintERC721Data memory mintERC721Data, ) = _decodeAssetTypeData(asset); if (from == address(0) || from != mintERC721Data.minter) { return ( false, "ERC721LazyMintTransferProxy: from verification failed" ); } else if (to == address(0)) { return ( false, "ERC721LazyMintTransferProxy: to verification failed" ); } return (true, ""); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol"; import "../../utils/libraries/PartLib.sol"; import "../libraries/MintERC721Lib.sol"; import "../libraries/SignatureLib.sol"; interface IERC721LazyMint is IERC721Upgradeable { event Minted(bytes32 indexed mintERC721Hash); function lazyMint( MintERC721Lib.MintERC721Data memory mintERC721Data, SignatureLib.SignatureData memory signatureData ) external; function isMinted(uint256 tokenId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../interfaces/IERC721LazyMint.sol"; import "./SecurityLib.sol"; import "./SignatureLib.sol"; library MintERC721Lib { bytes4 constant _INTERFACE_ID_LAZY_MINT = type(IERC721LazyMint).interfaceId; struct MintERC721Data { SecurityLib.SecurityData securityData; address minter; address to; uint256 tokenId; bytes data; } bytes32 private constant _MINT_ERC721_TYPEHASH = keccak256( bytes( "MintERC721Data(SecurityData securityData,address minter,address to,uint256 tokenId,bytes data)SecurityData(uint256 validFrom,uint256 validTo,uint256 salt)" ) ); function validate(MintERC721Data memory mintERC721Data) internal view returns (bool, string memory) { address minter = address(uint160(mintERC721Data.tokenId >> 96)); if (minter != mintERC721Data.minter) { return (false, "MintERC721Lib: valid tokenId verification failed"); } ( bool isSecurityDataValid, string memory securityDataErrorMessage ) = SecurityLib.validate(mintERC721Data.securityData); if (!isSecurityDataValid) { return (false, securityDataErrorMessage); } return (true, ""); } function hash(MintERC721Data memory mintERC721Data) internal pure returns (bytes32) { return keccak256( abi.encode( _MINT_ERC721_TYPEHASH, SecurityLib.hash(mintERC721Data.securityData), mintERC721Data.minter, mintERC721Data.to, mintERC721Data.tokenId, keccak256(mintERC721Data.data) ) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SecurityLib { struct SecurityData { uint256 validFrom; uint256 validTo; uint256 salt; } bytes32 private constant _SECURITY_TYPEHASH = keccak256( abi.encodePacked( "SecurityData(uint256 validFrom,uint256 validTo,uint256 salt)" ) ); function validate(SecurityData memory securityData) internal view returns (bool, string memory) { if (securityData.validFrom > block.timestamp) { return (false, "SecurityLib: valid from verification failed"); } else if (securityData.validTo < block.timestamp) { return (false, "SecurityLib: valid to verification failed"); } return (true, ""); } function hash(SecurityData memory securityData) internal pure returns (bytes32) { return keccak256( abi.encode( _SECURITY_TYPEHASH, securityData.validFrom, securityData.validTo, securityData.salt ) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; contract OperatorControllerUpgradeable is OwnableUpgradeable { mapping(address => bool) _operators; event OperatorSet(address indexed account, bool indexed status); modifier onlyOperator() { address sender = _msgSender(); (bool isValid, string memory errorMessage) = _validateOperator(sender); require(isValid, errorMessage); _; } modifier onlyOperatorOrOwner() { address sender = _msgSender(); (bool isValid, string memory errorMessage) = _validateOperatorOrOwner( sender ); require(isValid, errorMessage); _; } function __OperatorController_init_unchained(address account) internal { _setOperator(account, true); } function addOperator(address account) external onlyOwner { _setOperator(account, true); } function removeOperator(address account) external onlyOwner { _setOperator(account, false); } function isOperator(address account) external view returns (bool) { return _isOperator(account); } function _setOperator(address account, bool status) internal { _operators[account] = status; emit OperatorSet(account, status); } function _isOperator(address account) internal view returns (bool) { return _operators[account]; } function _isOperatorOrOwner(address account) internal view returns (bool) { return owner() == account || _isOperator(account); } function _validateOperator(address account) internal view returns (bool, string memory) { if (!_isOperator(account)) { return ( false, "OperatorControllerUpgradeable: operator verification failed" ); } return (true, ""); } function _validateOperatorOrOwner(address account) internal view returns (bool, string memory) { if (!_isOperatorOrOwner(account)) { return ( false, "OperatorControllerUpgradeable: operator or owner verification failed" ); } return (true, ""); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/libraries/AssetLib.sol"; interface ITransferProxy { function transfer( AssetLib.AssetData calldata asset, address from, address to ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @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`, 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 be 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./BasisPointLib.sol"; library PartLib { bytes32 public constant TYPE_HASH = keccak256("PartData(address account,uint256 value)"); struct PartData { address payable account; uint256 value; } function hash(PartData memory part) internal pure returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, part.account, part.value)); } function validate(PartData memory part) internal pure returns (bool, string memory) { if (part.account == address(0x0)) { return (false, "PartLib: account verification failed"); } if (part.value == 0 || part.value > BasisPointLib._BPS_BASE) { return (false, "PartLib: value verification failed"); } return (true, ""); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SignatureLib { struct SignatureData { bytes32 root; bytes32[] proof; bytes signature; } bytes32 private constant _SIGNATURE_TYPEHASH = keccak256("SignatureData(bytes32 root)"); function hash(SignatureData memory signatureData) internal pure returns (bytes32) { return keccak256(abi.encode(_SIGNATURE_TYPEHASH, signatureData.root)); } }
// 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 IERC165Upgradeable { /** * @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 pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; library BasisPointLib { using SafeMath for uint256; uint256 constant _BPS_BASE = 10000; function bp(uint256 value, uint256 bpValue) internal pure returns (uint256) { return value.mul(bpValue).div(_BPS_BASE); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ 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 substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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. * * _Available since v3.4._ */ 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 addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library AssetLib { bytes4 public constant ETH_ASSET_CLASS = bytes4(keccak256("ETH")); bytes4 public constant ERC20_ASSET_CLASS = bytes4(keccak256("ERC20")); bytes4 public constant ERC721_ASSET_CLASS = bytes4(keccak256("ERC721")); bytes4 public constant ERC1155_ASSET_CLASS = bytes4(keccak256("ERC1155")); bytes4 public constant COLLECTION = bytes4(keccak256("COLLECTION")); bytes32 constant ASSET_TYPE_TYPEHASH = keccak256("AssetType(bytes4 assetClass,bytes data)"); bytes32 constant ASSET_TYPEHASH = keccak256( "AssetData(AssetType assetType,uint256 value)AssetType(bytes4 assetClass,bytes data)" ); struct AssetType { bytes4 assetClass; bytes data; } struct AssetData { AssetType assetType; uint256 value; } function decodeAssetTypeData(AssetType memory assetType) internal pure returns (address, uint256) { if (assetType.assetClass == AssetLib.ERC20_ASSET_CLASS) { address token = abi.decode(assetType.data, (address)); return (token, 0); } else if ( assetType.assetClass == AssetLib.ERC721_ASSET_CLASS || assetType.assetClass == AssetLib.ERC1155_ASSET_CLASS ) { (address token, uint256 tokenId) = abi.decode( assetType.data, (address, uint256) ); return (token, tokenId); } return (address(0), 0); } function hash(AssetType memory assetType) internal pure returns (bytes32) { return keccak256( abi.encode( ASSET_TYPE_TYPEHASH, assetType.assetClass, keccak256(assetType.data) ) ); } function hash(AssetData memory asset) internal pure returns (bytes32) { return keccak256( abi.encode(ASSET_TYPEHASH, hash(asset.assetType), asset.value) ); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"OperatorSet","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"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"__ERC721LazyMintTransferProxy_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"components":[{"internalType":"bytes4","name":"assetClass","type":"bytes4"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct AssetLib.AssetType","name":"assetType","type":"tuple"},{"internalType":"uint256","name":"value","type":"uint256"}],"internalType":"struct AssetLib.AssetData","name":"asset","type":"tuple"},{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50610e0c806100206000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100e55780639870d7fe14610100578063ac8a584a14610113578063f2fde38b1461012657610088565b806348c269f11461008d57806354bc0cf1146100a25780636d70f7ae146100b5578063715018a6146100dd575b600080fd5b6100a061009b36600461087d565b610139565b005b6100a06100b03660046109ac565b61021a565b6100c86100c336600461087d565b610300565b60405190151581526020015b60405180910390f35b6100a0610322565b6033546040516001600160a01b0390911681526020016100d4565b6100a061010e36600461087d565b610358565b6100a061012136600461087d565b610390565b6100a061013436600461087d565b6103c5565b600054610100900460ff166101545760005460ff1615610158565b303b155b6101c05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600054610100900460ff161580156101eb576000805460ff1961ff0019909116610100171660011790555b6101f361045d565b6101fb610484565b61020482610382565b8015610216576000805461ff00191690555b5050565b33600080610227836104b4565b9150915081819061024b5760405162461bcd60e51b81526004016101b79190610b64565b5060008061025a888888610515565b9150915081819061027e5760405162461bcd60e51b81526004016101b79190610b64565b50600080600061028d8b6105cf565b925092509250826001600160a01b031663c2046e4683836040518363ffffffff1660e01b81526004016102c1929190610bf7565b600060405180830381600087803b1580156102db57600080fd5b505af11580156102ef573d6000803e3d6000fd5b505050505050505050505050505050565b6001600160a01b03811660009081526065602052604090205460ff165b919050565b6033546001600160a01b0316331461034c5760405162461bcd60e51b81526004016101b790610b77565b6103566000610627565b565b6033546001600160a01b031633146103825760405162461bcd60e51b81526004016101b790610b77565b61038d816001610679565b50565b6033546001600160a01b031633146103ba5760405162461bcd60e51b81526004016101b790610b77565b61038d816000610679565b6033546001600160a01b031633146103ef5760405162461bcd60e51b81526004016101b790610b77565b6001600160a01b0381166104545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101b7565b61038d81610627565b600054610100900460ff166103565760405162461bcd60e51b81526004016101b790610bac565b600054610100900460ff166104ab5760405162461bcd60e51b81526004016101b790610bac565b61035633610627565b6001600160a01b03811660009081526065602052604081205460609060ff166104fb5760006040518060600160405280603b8152602001610d34603b913991509150610510565b50506040805160208101909152600081526001905b915091565b600060606000610524866105cf565b509150506001600160a01b0385161580610554575080602001516001600160a01b0316856001600160a01b031614155b1561057e576000604051806060016040528060358152602001610d6f6035913992509250506105c7565b6001600160a01b0384166105b1576000604051806060016040528060338152602001610da46033913992509250506105c7565b5050604080516020810190915260008152600191505b935093915050565b60006105d96106cd565b6040805160608082018352600082526020820181905291810191909152600080600086600001516020015180602001905181019061061791906108a0565b9199909850909650945050505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260656020526040808220805460ff191685151590811790915590519092917f1a594081ae893ab78e67d9b9e843547318164322d32c65369d78a96172d9dc8f91a35050565b6040518060a001604052806106fc60405180606001604052806000815260200160008152602001600081525090565b815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001606081525090565b803561031d81610d1e565b805161031d81610d1e565b600082601f830112610756578081fd5b815161076961076482610cb0565b610c7f565b81815284602083860101111561077d578283fd5b61078e826020830160208701610cd8565b949350505050565b6000606082840312156107a7578081fd5b6107b16060610c7f565b90508151815260208083015167ffffffffffffffff808211156107d357600080fd5b818501915085601f8301126107e757600080fd5b8151818111156107f9576107f9610d08565b838102610807858201610c7f565b8281528581019085870183870188018b101561082257600080fd5b600096505b84871015610845578051835260019690960195918701918701610827565b50808789015250505050604085015192508083111561086357600080fd5b505061087184828501610746565b60408301525092915050565b60006020828403121561088e578081fd5b813561089981610d1e565b9392505050565b6000806000606084860312156108b4578182fd5b83516108bf81610d1e565b602085015190935067ffffffffffffffff808211156108dc578384fd5b9085019081870360e08112156108f0578485fd5b6108fa60a0610c7f565b6060821215610907578586fd5b6109116060610c7f565b915083518252602084015160208301526040840151604083015281815261093a6060850161073b565b602082015261094b6080850161073b565b604082015260a0840151606082015260c084015191508282111561096d578586fd5b61097989838601610746565b6080820152604088015190955092505080821115610995578283fd5b506109a286828701610796565b9150509250925092565b6000806000606084860312156109c0578283fd5b833567ffffffffffffffff808211156109d7578485fd5b90850190604082880312156109ea578485fd5b6109f46040610c7f565b823582811115610a02578687fd5b83016040818a031215610a13578687fd5b610a1d6040610c7f565b81356001600160e01b031981168114610a34578889fd5b815260208281013585811115610a4857898afd5b83019450601f85018b13610a5a578889fd5b84359250610a6a61076484610cb0565b8381528b82858801011115610a7d57898afd5b8382870183830137898285830101528082840152508184528086013581850152839850610aab818b01610730565b9750505050505050610abf60408501610730565b90509250925092565b60008151808452610ae0816020860160208601610cd8565b601f01601f19169290920160200192915050565b6000606083018251845260208084015160608287015282815180855260808801915083830194508592505b80831015610b3f5784518252938301936001929092019190830190610b1f565b50604086015193508681036040880152610b598185610ac8565b979650505050505050565b6000602082526108996020830184610ac8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b600060408252835180516040840152602081015160608401526040810151608084015250602084015160018060a01b0380821660a08501528060408701511660c08501525050606084015160e0830152608084015160e0610100840152610c62610120840182610ac8565b90508281036020840152610c768185610af4565b95945050505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610ca857610ca8610d08565b604052919050565b600067ffffffffffffffff821115610cca57610cca610d08565b50601f01601f191660200190565b60005b83811015610cf3578181015183820152602001610cdb565b83811115610d02576000848401525b50505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461038d57600080fdfe4f70657261746f72436f6e74726f6c6c65725570677261646561626c653a206f70657261746f7220766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a2066726f6d20766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a20746f20766572696669636174696f6e206661696c6564a264697066735822122043121325025b0540a677c5579b2f9a9e6a2540a84debd8f969d69e7d26b408e064736f6c63430008020033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100e55780639870d7fe14610100578063ac8a584a14610113578063f2fde38b1461012657610088565b806348c269f11461008d57806354bc0cf1146100a25780636d70f7ae146100b5578063715018a6146100dd575b600080fd5b6100a061009b36600461087d565b610139565b005b6100a06100b03660046109ac565b61021a565b6100c86100c336600461087d565b610300565b60405190151581526020015b60405180910390f35b6100a0610322565b6033546040516001600160a01b0390911681526020016100d4565b6100a061010e36600461087d565b610358565b6100a061012136600461087d565b610390565b6100a061013436600461087d565b6103c5565b600054610100900460ff166101545760005460ff1615610158565b303b155b6101c05760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084015b60405180910390fd5b600054610100900460ff161580156101eb576000805460ff1961ff0019909116610100171660011790555b6101f361045d565b6101fb610484565b61020482610382565b8015610216576000805461ff00191690555b5050565b33600080610227836104b4565b9150915081819061024b5760405162461bcd60e51b81526004016101b79190610b64565b5060008061025a888888610515565b9150915081819061027e5760405162461bcd60e51b81526004016101b79190610b64565b50600080600061028d8b6105cf565b925092509250826001600160a01b031663c2046e4683836040518363ffffffff1660e01b81526004016102c1929190610bf7565b600060405180830381600087803b1580156102db57600080fd5b505af11580156102ef573d6000803e3d6000fd5b505050505050505050505050505050565b6001600160a01b03811660009081526065602052604090205460ff165b919050565b6033546001600160a01b0316331461034c5760405162461bcd60e51b81526004016101b790610b77565b6103566000610627565b565b6033546001600160a01b031633146103825760405162461bcd60e51b81526004016101b790610b77565b61038d816001610679565b50565b6033546001600160a01b031633146103ba5760405162461bcd60e51b81526004016101b790610b77565b61038d816000610679565b6033546001600160a01b031633146103ef5760405162461bcd60e51b81526004016101b790610b77565b6001600160a01b0381166104545760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101b7565b61038d81610627565b600054610100900460ff166103565760405162461bcd60e51b81526004016101b790610bac565b600054610100900460ff166104ab5760405162461bcd60e51b81526004016101b790610bac565b61035633610627565b6001600160a01b03811660009081526065602052604081205460609060ff166104fb5760006040518060600160405280603b8152602001610d34603b913991509150610510565b50506040805160208101909152600081526001905b915091565b600060606000610524866105cf565b509150506001600160a01b0385161580610554575080602001516001600160a01b0316856001600160a01b031614155b1561057e576000604051806060016040528060358152602001610d6f6035913992509250506105c7565b6001600160a01b0384166105b1576000604051806060016040528060338152602001610da46033913992509250506105c7565b5050604080516020810190915260008152600191505b935093915050565b60006105d96106cd565b6040805160608082018352600082526020820181905291810191909152600080600086600001516020015180602001905181019061061791906108a0565b9199909850909650945050505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260656020526040808220805460ff191685151590811790915590519092917f1a594081ae893ab78e67d9b9e843547318164322d32c65369d78a96172d9dc8f91a35050565b6040518060a001604052806106fc60405180606001604052806000815260200160008152602001600081525090565b815260200160006001600160a01b0316815260200160006001600160a01b0316815260200160008152602001606081525090565b803561031d81610d1e565b805161031d81610d1e565b600082601f830112610756578081fd5b815161076961076482610cb0565b610c7f565b81815284602083860101111561077d578283fd5b61078e826020830160208701610cd8565b949350505050565b6000606082840312156107a7578081fd5b6107b16060610c7f565b90508151815260208083015167ffffffffffffffff808211156107d357600080fd5b818501915085601f8301126107e757600080fd5b8151818111156107f9576107f9610d08565b838102610807858201610c7f565b8281528581019085870183870188018b101561082257600080fd5b600096505b84871015610845578051835260019690960195918701918701610827565b50808789015250505050604085015192508083111561086357600080fd5b505061087184828501610746565b60408301525092915050565b60006020828403121561088e578081fd5b813561089981610d1e565b9392505050565b6000806000606084860312156108b4578182fd5b83516108bf81610d1e565b602085015190935067ffffffffffffffff808211156108dc578384fd5b9085019081870360e08112156108f0578485fd5b6108fa60a0610c7f565b6060821215610907578586fd5b6109116060610c7f565b915083518252602084015160208301526040840151604083015281815261093a6060850161073b565b602082015261094b6080850161073b565b604082015260a0840151606082015260c084015191508282111561096d578586fd5b61097989838601610746565b6080820152604088015190955092505080821115610995578283fd5b506109a286828701610796565b9150509250925092565b6000806000606084860312156109c0578283fd5b833567ffffffffffffffff808211156109d7578485fd5b90850190604082880312156109ea578485fd5b6109f46040610c7f565b823582811115610a02578687fd5b83016040818a031215610a13578687fd5b610a1d6040610c7f565b81356001600160e01b031981168114610a34578889fd5b815260208281013585811115610a4857898afd5b83019450601f85018b13610a5a578889fd5b84359250610a6a61076484610cb0565b8381528b82858801011115610a7d57898afd5b8382870183830137898285830101528082840152508184528086013581850152839850610aab818b01610730565b9750505050505050610abf60408501610730565b90509250925092565b60008151808452610ae0816020860160208601610cd8565b601f01601f19169290920160200192915050565b6000606083018251845260208084015160608287015282815180855260808801915083830194508592505b80831015610b3f5784518252938301936001929092019190830190610b1f565b50604086015193508681036040880152610b598185610ac8565b979650505050505050565b6000602082526108996020830184610ac8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b600060408252835180516040840152602081015160608401526040810151608084015250602084015160018060a01b0380821660a08501528060408701511660c08501525050606084015160e0830152608084015160e0610100840152610c62610120840182610ac8565b90508281036020840152610c768185610af4565b95945050505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610ca857610ca8610d08565b604052919050565b600067ffffffffffffffff821115610cca57610cca610d08565b50601f01601f191660200190565b60005b83811015610cf3578181015183820152602001610cdb565b83811115610d02576000848401525b50505050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461038d57600080fdfe4f70657261746f72436f6e74726f6c6c65725570677261646561626c653a206f70657261746f7220766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a2066726f6d20766572696669636174696f6e206661696c65644552433732314c617a794d696e745472616e7366657250726f78793a20746f20766572696669636174696f6e206661696c6564a264697066735822122043121325025b0540a677c5579b2f9a9e6a2540a84debd8f969d69e7d26b408e064736f6c63430008020033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.