Latest 25 from a total of 75 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21410169 | 11 days ago | IN | 0 ETH | 0.00051313 | ||||
Approve | 21292360 | 28 days ago | IN | 0 ETH | 0.00044649 | ||||
Approve | 21007990 | 68 days ago | IN | 0 ETH | 0.00068867 | ||||
Approve | 20961894 | 74 days ago | IN | 0 ETH | 0.00042171 | ||||
Approve | 20956781 | 75 days ago | IN | 0 ETH | 0.00105453 | ||||
Transfer Ownersh... | 20873230 | 86 days ago | IN | 0 ETH | 0.00071334 | ||||
Grant Role | 20873229 | 86 days ago | IN | 0 ETH | 0.00076157 | ||||
Grant Role | 20873228 | 86 days ago | IN | 0 ETH | 0.00080581 | ||||
Approve | 20681686 | 113 days ago | IN | 0 ETH | 0.00065502 | ||||
Set Original Tok... | 20679161 | 113 days ago | IN | 0 ETH | 0.0003286 | ||||
Replace Implemen... | 20679049 | 113 days ago | IN | 0 ETH | 0.00037465 | ||||
Approve | 20675932 | 114 days ago | IN | 0 ETH | 0.00008659 | ||||
Approve | 20672060 | 114 days ago | IN | 0 ETH | 0.00011993 | ||||
Approve | 20672024 | 114 days ago | IN | 0 ETH | 0.00016914 | ||||
Approve | 20672018 | 114 days ago | IN | 0 ETH | 0.0001801 | ||||
Approve | 20672016 | 114 days ago | IN | 0 ETH | 0.00012686 | ||||
Approve | 20672016 | 114 days ago | IN | 0 ETH | 0.00015259 | ||||
Approve | 20672016 | 114 days ago | IN | 0 ETH | 0.00023072 | ||||
Approve | 20672016 | 114 days ago | IN | 0 ETH | 0.00033446 | ||||
Approve | 20672015 | 114 days ago | IN | 0 ETH | 0.00017227 | ||||
Approve | 20672013 | 114 days ago | IN | 0 ETH | 0.00049024 | ||||
Approve | 20672011 | 114 days ago | IN | 0 ETH | 0.00022881 | ||||
Approve | 20672009 | 114 days ago | IN | 0 ETH | 0.00023195 | ||||
Approve | 20672009 | 114 days ago | IN | 0 ETH | 0.00023195 | ||||
Approve | 20672008 | 114 days ago | IN | 0 ETH | 0.00015 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
NftIndexProxy
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.26; import "contracts/proxies/Proxy2Step.sol"; import "contracts/access/AccessControl.sol"; contract NftIndexProxy is Proxy2Step, AccessControl { constructor(address impl_, address admin) Proxy2Step(impl_) { _grantRole(DEFAULT_ADMIN_ROLE, admin); } receive() external override payable { (bool success,) = implementation.delegatecall(""); require(success, "subcall failed"); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.26; import "contracts/proxies/Upgradeable2Step.sol"; contract Proxy2Step is Upgradeable2Step { constructor(address impl_) { implementation = impl_; } fallback() external virtual payable { assembly { calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), sload(implementation.slot), 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } receive() external virtual payable {} }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.26; import "contracts/access/Ownable2Step.sol"; event ReplaceImplementationStarted(address indexed previousImplementation, address indexed newImplementation); event ReplaceImplementation(address indexed previousImplementation, address indexed newImplementation); error Unauthorized(); contract Upgradeable2Step is Ownable2Step { address public pendingImplementation; address public implementation; constructor() Ownable(msg.sender) {} // called on an inheriting proxy contract function replaceImplementation(address impl_) public onlyOwner { pendingImplementation = impl_; emit ReplaceImplementationStarted(implementation, impl_); } // called from an inheriting implementation contract function acceptImplementation() public { if (msg.sender != pendingImplementation) { revert OwnableUnauthorizedAccount(msg.sender); } emit ReplaceImplementation(implementation, msg.sender); delete pendingImplementation; implementation = msg.sender; } // called on an inheriting implementation contract function becomeImplementation(Upgradeable2Step proxy) public { if (msg.sender != proxy.owner()) { revert Unauthorized(); } proxy.acceptImplementation(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {Ownable} from "contracts/access/Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "contracts/utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "contracts/access/IAccessControl.sol"; import {Context} from "contracts/utils/Context.sol"; import {ERC165} from "contracts/utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ```solidity * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ```solidity * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. We recommend using {AccessControlDefaultAdminRules} * to enforce additional security measures for this role. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address account => bool) hasRole; bytes32 adminRole; } mapping(bytes32 role => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with an {AccessControlUnauthorizedAccount} error including the required role. */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual returns (bool) { return _roles[role].hasRole[account]; } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()` * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier. */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `account` * is missing `role`. */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert AccessControlUnauthorizedAccount(account, role); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleGranted} event. */ function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. * * May emit a {RoleRevoked} event. */ function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. * * May emit a {RoleRevoked} event. */ function renounceRole(bytes32 role, address callerConfirmation) public virtual { if (callerConfirmation != _msgSender()) { revert AccessControlBadConfirmation(); } _revokeRole(role, callerConfirmation); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Attempts to grant `role` to `account` and returns a boolean indicating if `role` was granted. * * Internal function without access restriction. * * May emit a {RoleGranted} event. */ function _grantRole(bytes32 role, address account) internal virtual returns (bool) { if (!hasRole(role, account)) { _roles[role].hasRole[account] = true; emit RoleGranted(role, account, _msgSender()); return true; } else { return false; } } /** * @dev Attempts to revoke `role` to `account` and returns a boolean indicating if `role` was revoked. * * Internal function without access restriction. * * May emit a {RoleRevoked} event. */ function _revokeRole(bytes32 role, address account) internal virtual returns (bool) { if (hasRole(role, account)) { _roles[role].hasRole[account] = false; emit RoleRevoked(role, account, _msgSender()); return true; } else { return false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev The `account` is missing a role. */ error AccessControlUnauthorizedAccount(address account, bytes32 neededRole); /** * @dev The caller of a function is not the expected one. * * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}. */ error AccessControlBadConfirmation(); /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `callerConfirmation`. */ function renounceRole(bytes32 role, address callerConfirmation) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "contracts/utils/introspection/IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "evmVersion": "shanghai", "optimizer": { "enabled": true, "runs": 200 }, "libraries": { "NftIndexProxy.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"impl_","type":"address"},{"internalType":"address","name":"admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccessControlBadConfirmation","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"neededRole","type":"bytes32"}],"name":"AccessControlUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousImplementation","type":"address"},{"indexed":true,"internalType":"address","name":"newImplementation","type":"address"}],"name":"ReplaceImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousImplementation","type":"address"},{"indexed":true,"internalType":"address","name":"newImplementation","type":"address"}],"name":"ReplaceImplementationStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Upgradeable2Step","name":"proxy","type":"address"}],"name":"becomeImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"impl_","type":"address"}],"name":"replaceImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561000f575f80fd5b50604051610c17380380610c1783398101604081905261002e916101c3565b81338061005457604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b61005d81610090565b50600380546001600160a01b0319166001600160a01b03929092169190911790556100885f826100ac565b5050506101f4565b600180546001600160a01b03191690556100a981610159565b50565b5f8281526004602090815260408083206001600160a01b038516845290915281205460ff16610150575f8381526004602090815260408083206001600160a01b03861684529091529020805460ff191660011790556101083390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610153565b505f5b92915050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b03811681146101be575f80fd5b919050565b5f80604083850312156101d4575f80fd5b6101dd836101a8565b91506101eb602084016101a8565b90509250929050565b610a16806102015f395ff3fe608060405260043610610101575f3560e01c806379ba509711610094578063d547741f11610063578063d547741f14610348578063d69efdc514610367578063e30c397814610386578063eaac8c32146103a3578063f2fde38b146103c25761019a565b806379ba5097146102e65780638da5cb5b146102fa57806391d1485414610316578063a217fddf146103355761019a565b806336568abe116100d057806336568abe1461025d578063396f7b231461027c5780635c60da1b146102b3578063715018a6146102d25761019a565b806301ffc9a7146101ba57806315ba56e5146101ee578063248a9ca3146102025780632f2ff15d1461023e5761019a565b3661019a576003546040515f916001600160a01b03169082818181855af49150503d805f811461014c576040519150601f19603f3d011682016040523d82523d5f602084013e610151565b606091505b50509050806101985760405162461bcd60e51b815260206004820152600e60248201526d1cdd5898d85b1b0819985a5b195960921b60448201526064015b60405180910390fd5b005b365f80375f80365f6003545af43d5f803e8080156101b6573d5ff35b3d5ffd5b3480156101c5575f80fd5b506101d96101d4366004610923565b6103e1565b60405190151581526020015b60405180910390f35b3480156101f9575f80fd5b50610198610417565b34801561020d575f80fd5b5061023061021c366004610951565b5f9081526004602052604090206001015490565b6040519081526020016101e5565b348015610249575f80fd5b5061019861025836600461097c565b61049b565b348015610268575f80fd5b5061019861027736600461097c565b6104c5565b348015610287575f80fd5b5060025461029b906001600160a01b031681565b6040516001600160a01b0390911681526020016101e5565b3480156102be575f80fd5b5060035461029b906001600160a01b031681565b3480156102dd575f80fd5b506101986104fd565b3480156102f1575f80fd5b50610198610510565b348015610305575f80fd5b505f546001600160a01b031661029b565b348015610321575f80fd5b506101d961033036600461097c565b610554565b348015610340575f80fd5b506102305f81565b348015610353575f80fd5b5061019861036236600461097c565b61057e565b348015610372575f80fd5b506101986103813660046109aa565b6105a2565b348015610391575f80fd5b506001546001600160a01b031661029b565b3480156103ae575f80fd5b506101986103bd3660046109aa565b6105fb565b3480156103cd575f80fd5b506101986103dc3660046109aa565b6106dc565b5f6001600160e01b03198216637965db0b60e01b148061041157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6002546001600160a01b031633146104445760405163118cdaa760e01b815233600482015260240161018f565b60035460405133916001600160a01b0316907feb7a7d62743daf8cf4055aea544d0a89e2011279ed4105567d010759e6fa4de2905f90a3600280546001600160a01b03199081169091556003805490911633179055565b5f828152600460205260409020600101546104b58161074c565b6104bf8383610756565b50505050565b6001600160a01b03811633146104ee5760405163334bd91960e11b815260040160405180910390fd5b6104f882826107e7565b505050565b610505610852565b61050e5f61087e565b565b60015433906001600160a01b031681146105485760405163118cdaa760e01b81526001600160a01b038216600482015260240161018f565b6105518161087e565b50565b5f9182526004602090815260408084206001600160a01b0393909316845291905290205460ff1690565b5f828152600460205260409020600101546105988161074c565b6104bf83836107e7565b6105aa610852565b600280546001600160a01b0319166001600160a01b03838116918217909255600354604051919216907f67f679e13fe9dca16f3079221965ec41838cb8881cbc0f440bc13507c6b214c2905f90a350565b806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065b91906109c5565b6001600160a01b0316336001600160a01b03161461068b576040516282b42960e81b815260040160405180910390fd5b806001600160a01b03166315ba56e56040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156106c3575f80fd5b505af11580156106d5573d5f803e3d5ffd5b5050505050565b6106e4610852565b600180546001600160a01b0383166001600160a01b031990911681179091556107145f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6105518133610897565b5f6107618383610554565b6107e0575f8381526004602090815260408083206001600160a01b03861684529091529020805460ff191660011790556107983390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610411565b505f610411565b5f6107f28383610554565b156107e0575f8381526004602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610411565b5f546001600160a01b0316331461050e5760405163118cdaa760e01b815233600482015260240161018f565b600180546001600160a01b0319169055610551816108d4565b6108a18282610554565b6108d05760405163e2517d3f60e01b81526001600160a01b03821660048201526024810183905260440161018f565b5050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60208284031215610933575f80fd5b81356001600160e01b03198116811461094a575f80fd5b9392505050565b5f60208284031215610961575f80fd5b5035919050565b6001600160a01b0381168114610551575f80fd5b5f806040838503121561098d575f80fd5b82359150602083013561099f81610968565b809150509250929050565b5f602082840312156109ba575f80fd5b813561094a81610968565b5f602082840312156109d5575f80fd5b815161094a8161096856fea2646970667358221220c1cb03d4d44bcf87607028a84cc9abdf23b324f555e5c6928e7e57a7ab11ab1564736f6c634300081a003300000000000000000000000007994f35b2cc5e715b458db17e046b7bed58acb1000000000000000000000000b264487a1dd28b9ee3e6027d505951f180f57078
Deployed Bytecode
0x608060405260043610610101575f3560e01c806379ba509711610094578063d547741f11610063578063d547741f14610348578063d69efdc514610367578063e30c397814610386578063eaac8c32146103a3578063f2fde38b146103c25761019a565b806379ba5097146102e65780638da5cb5b146102fa57806391d1485414610316578063a217fddf146103355761019a565b806336568abe116100d057806336568abe1461025d578063396f7b231461027c5780635c60da1b146102b3578063715018a6146102d25761019a565b806301ffc9a7146101ba57806315ba56e5146101ee578063248a9ca3146102025780632f2ff15d1461023e5761019a565b3661019a576003546040515f916001600160a01b03169082818181855af49150503d805f811461014c576040519150601f19603f3d011682016040523d82523d5f602084013e610151565b606091505b50509050806101985760405162461bcd60e51b815260206004820152600e60248201526d1cdd5898d85b1b0819985a5b195960921b60448201526064015b60405180910390fd5b005b365f80375f80365f6003545af43d5f803e8080156101b6573d5ff35b3d5ffd5b3480156101c5575f80fd5b506101d96101d4366004610923565b6103e1565b60405190151581526020015b60405180910390f35b3480156101f9575f80fd5b50610198610417565b34801561020d575f80fd5b5061023061021c366004610951565b5f9081526004602052604090206001015490565b6040519081526020016101e5565b348015610249575f80fd5b5061019861025836600461097c565b61049b565b348015610268575f80fd5b5061019861027736600461097c565b6104c5565b348015610287575f80fd5b5060025461029b906001600160a01b031681565b6040516001600160a01b0390911681526020016101e5565b3480156102be575f80fd5b5060035461029b906001600160a01b031681565b3480156102dd575f80fd5b506101986104fd565b3480156102f1575f80fd5b50610198610510565b348015610305575f80fd5b505f546001600160a01b031661029b565b348015610321575f80fd5b506101d961033036600461097c565b610554565b348015610340575f80fd5b506102305f81565b348015610353575f80fd5b5061019861036236600461097c565b61057e565b348015610372575f80fd5b506101986103813660046109aa565b6105a2565b348015610391575f80fd5b506001546001600160a01b031661029b565b3480156103ae575f80fd5b506101986103bd3660046109aa565b6105fb565b3480156103cd575f80fd5b506101986103dc3660046109aa565b6106dc565b5f6001600160e01b03198216637965db0b60e01b148061041157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6002546001600160a01b031633146104445760405163118cdaa760e01b815233600482015260240161018f565b60035460405133916001600160a01b0316907feb7a7d62743daf8cf4055aea544d0a89e2011279ed4105567d010759e6fa4de2905f90a3600280546001600160a01b03199081169091556003805490911633179055565b5f828152600460205260409020600101546104b58161074c565b6104bf8383610756565b50505050565b6001600160a01b03811633146104ee5760405163334bd91960e11b815260040160405180910390fd5b6104f882826107e7565b505050565b610505610852565b61050e5f61087e565b565b60015433906001600160a01b031681146105485760405163118cdaa760e01b81526001600160a01b038216600482015260240161018f565b6105518161087e565b50565b5f9182526004602090815260408084206001600160a01b0393909316845291905290205460ff1690565b5f828152600460205260409020600101546105988161074c565b6104bf83836107e7565b6105aa610852565b600280546001600160a01b0319166001600160a01b03838116918217909255600354604051919216907f67f679e13fe9dca16f3079221965ec41838cb8881cbc0f440bc13507c6b214c2905f90a350565b806001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610637573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065b91906109c5565b6001600160a01b0316336001600160a01b03161461068b576040516282b42960e81b815260040160405180910390fd5b806001600160a01b03166315ba56e56040518163ffffffff1660e01b81526004015f604051808303815f87803b1580156106c3575f80fd5b505af11580156106d5573d5f803e3d5ffd5b5050505050565b6106e4610852565b600180546001600160a01b0383166001600160a01b031990911681179091556107145f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6105518133610897565b5f6107618383610554565b6107e0575f8381526004602090815260408083206001600160a01b03861684529091529020805460ff191660011790556107983390565b6001600160a01b0316826001600160a01b0316847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a4506001610411565b505f610411565b5f6107f28383610554565b156107e0575f8381526004602090815260408083206001600160a01b0386168085529252808320805460ff1916905551339286917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a4506001610411565b5f546001600160a01b0316331461050e5760405163118cdaa760e01b815233600482015260240161018f565b600180546001600160a01b0319169055610551816108d4565b6108a18282610554565b6108d05760405163e2517d3f60e01b81526001600160a01b03821660048201526024810183905260440161018f565b5050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f60208284031215610933575f80fd5b81356001600160e01b03198116811461094a575f80fd5b9392505050565b5f60208284031215610961575f80fd5b5035919050565b6001600160a01b0381168114610551575f80fd5b5f806040838503121561098d575f80fd5b82359150602083013561099f81610968565b809150509250929050565b5f602082840312156109ba575f80fd5b813561094a81610968565b5f602082840312156109d5575f80fd5b815161094a8161096856fea2646970667358221220c1cb03d4d44bcf87607028a84cc9abdf23b324f555e5c6928e7e57a7ab11ab1564736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000007994f35b2cc5e715b458db17e046b7bed58acb1000000000000000000000000b264487a1dd28b9ee3e6027d505951f180f57078
-----Decoded View---------------
Arg [0] : impl_ (address): 0x07994f35B2Cc5E715b458db17E046B7BED58acB1
Arg [1] : admin (address): 0xB264487A1dD28B9Ee3e6027d505951F180F57078
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000007994f35b2cc5e715b458db17e046b7bed58acb1
Arg [1] : 000000000000000000000000b264487a1dd28b9ee3e6027d505951f180f57078
Loading...
Loading
Loading...
Loading
OVERVIEW
The Index is a non-custodial marketcap weighted NFT index and algorithmic lending protocol, allowing for instant NFT sales, immediate NFT-backed loans, and a yield-bearing NFT index token.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BASE | 100.00% | $0.021054 | 300 | $6.32 |
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.