Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4973075 | 12 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
CommunityList
Compiler Version
v0.8.25+commit.b61c2a91
ZkSolc Version
v1.5.12
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.25; import "@openzeppelin/contracts/access/extensions/AccessControlEnumerable.sol"; import "./Versionable/IVersionable.sol"; contract CommunityList is AccessControlEnumerable, IVersionable { function version() external pure returns (uint256) { return 2024040301; } bytes32 public constant CONTRACT_ADMIN = keccak256("CONTRACT_ADMIN"); uint256 public numberOfEntries; struct community_entry { string name; address registry; uint32 id; } mapping(uint32 => community_entry) public communities; // community_id => record mapping(uint256 => uint32) public index; // entryNumber => community_id for enumeration event CommunityAdded(uint256 pos, string community_name, address community_registry, uint32 community_id); constructor() { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(CONTRACT_ADMIN,msg.sender); } function addCommunity(uint32 community_id, string memory community_name, address community_registry) external onlyRole(CONTRACT_ADMIN) { uint256 pos = numberOfEntries++; index[pos] = community_id; communities[community_id] = community_entry(community_name, community_registry, community_id); emit CommunityAdded(pos, community_name, community_registry, community_id); } }
//SPDX-License-Identifier: Unlicensed pragma solidity 0.8.25; /** * @title IVersionable * @dev Interface for versionable contracts. */ interface IVersionable { /** * @notice Get the current version of the contract. * @return The current version. */ function version() external pure returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/AccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControlEnumerable} from "./IAccessControlEnumerable.sol"; import {AccessControl} from "../AccessControl.sol"; import {EnumerableSet} from "../../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 role => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view virtual returns (uint256) { return _roleMembers[role].length(); } /** * @dev Return all accounts that have `role` * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function getRoleMembers(bytes32 role) public view virtual returns (address[] memory) { return _roleMembers[role].values(); } /** * @dev Overload {AccessControl-_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override returns (bool) { bool granted = super._grantRole(role, account); if (granted) { _roleMembers[role].add(account); } return granted; } /** * @dev Overload {AccessControl-_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override returns (bool) { bool revoked = super._revokeRole(role, account); if (revoked) { _roleMembers[role].remove(account); } return revoked; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol) pragma solidity ^0.8.20; import {IAccessControl} from "./IAccessControl.sol"; import {Context} from "../utils/Context.sol"; import {ERC165} from "../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.1.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.20; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position is the index of the value in the `values` array plus 1. // Position 0 is used to mean a value is not in the set. mapping(bytes32 value => uint256) _positions; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._positions[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We cache the value's position to prevent multiple reads from the same storage slot uint256 position = set._positions[value]; if (position != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 valueIndex = position - 1; uint256 lastIndex = set._values.length - 1; if (valueIndex != lastIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the lastValue to the index where the value to delete is set._values[valueIndex] = lastValue; // Update the tracked position of the lastValue (that was just moved) set._positions[lastValue] = position; } // Delete the slot where the moved value was stored set._values.pop(); // Delete the tracked position for the deleted slot delete set._positions[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._positions[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; assembly ("memory-safe") { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly ("memory-safe") { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly ("memory-safe") { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.1.0) (access/extensions/IAccessControlEnumerable.sol) pragma solidity ^0.8.20; import {IAccessControl} from "../IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC-165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// 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.1.0) (access/IAccessControl.sol) pragma solidity ^0.8.20; /** * @dev External interface of AccessControl declared to support ERC-165 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. This account bears the admin role (for the granted role). * Expected in cases where the role was granted using the internal {AccessControl-_grantRole}. */ 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.1.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC-165 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.1.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC-165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[ERC]. * * 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[ERC 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": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pos","type":"uint256"},{"indexed":false,"internalType":"string","name":"community_name","type":"string"},{"indexed":false,"internalType":"address","name":"community_registry","type":"address"},{"indexed":false,"internalType":"uint32","name":"community_id","type":"uint32"}],"name":"CommunityAdded","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"},{"inputs":[],"name":"CONTRACT_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"community_id","type":"uint32"},{"internalType":"string","name":"community_name","type":"string"},{"internalType":"address","name":"community_registry","type":"address"}],"name":"addCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"","type":"uint32"}],"name":"communities","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"registry","type":"address"},{"internalType":"uint32","name":"id","type":"uint32"}],"stateMutability":"view","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMembers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"index","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfEntries","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"callerConfirmation","type":"address"}],"name":"renounceRole","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":[],"name":"version","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001cd037f3a7c6ca42d818e12c08c74c504ef56b5d2af58c68871d530437500000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x000a0000000000020000008003000039000000400030043f0000000100200190000000220000c13d00000060021002700000018e02200197000000040020008c000004c80000413d000000000301043b000000e0033002700000019e0030009c000000fe0000213d000001aa0030009c000001240000213d000001b00030009c000001950000213d000001b30030009c000001dd0000613d000001b40030009c000004c80000c13d000000240020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000401100370000000000101043b000000000010043f000000200000043f00000040010000390635061a0000040f0000000101100039000001bc0000013d0000000001000416000000000001004b000004c80000c13d00000000010004110000018f01100197000a00000001001d000000000010043f0000019001000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000ff00100190000000900000c13d0000000a01000029000000000010043f0000019001000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000201041a000001c80220019700000001022001bf000000000021041b00000000010004140000018e0010009c0000018e01008041000000c00110021000000192011001c70000800d020000390000000403000039000001930400004100000000050000190000000a0600002900000000070004110635062b0000040f0000000100200190000004c80000613d0000000001000411000000000010043f0000019401000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000000001004b000000900000c13d0000019501000041000000000201041a000001960020009c000003f50000813d000900000002001d0000000102200039000000000021041b000000000010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b00000009011000290000000002000411000000000021041b0000019501000041000000000101041a000900000001001d000000000020043f0000019401000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000902000029000000000021041b0000000a01000029000000000010043f0000019801000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000ff00100190000000f90000c13d0000000a01000029000000000010043f0000019801000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000201041a000001c80220019700000001022001bf000000000021041b00000000010004140000018e0010009c0000018e01008041000000c00110021000000192011001c70000800d020000390000000403000039000001930400004100000199050000410000000a0600002900000000070004110635062b0000040f0000000100200190000004c80000613d0000000001000411000000000010043f0000019a01000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000000001004b000000f90000c13d0000019b01000041000000000201041a0000019c0020009c000003f50000213d000a00000002001d0000000102200039000000000021041b000000000010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000a011000290000000002000411000000000021041b0000019b01000041000000000101041a000a00000001001d000000000020043f0000019a01000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000a02000029000000000021041b0000002001000039000001000010044300000120000004430000019d01000041000006360001042e0000019f0030009c000001820000213d000001a50030009c000001aa0000213d000001a80030009c000001ea0000613d000001a90030009c000004c80000c13d000000440020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000402100370000000000202043b000000000020043f0000000102000039000000200020043f0000002401100370000000000101043b000a00000001001d00000040010000390635061a0000040f0000000a02000029063505ff0000040f0000000302200210000000000101041a000000000121022f0000018f01100197000000ff0020008c0000000001002019000000400200043d00000000001204350000018e0020009c0000018e020080410000004001200210000001b6011001c7000006360001042e000001ab0030009c000001b40000213d000001ae0030009c000001f10000613d000001af0030009c000004c80000c13d000000640020008c000004c80000413d0000000003000416000000000003004b000004c80000c13d0000000403100370000000000303043b000a00000003001d0000018e0030009c000004c80000213d0000002403100370000000000403043b0000019c0040009c000004c80000213d0000002303400039000000000023004b000004c80000813d0000000405400039000000000351034f000000000303043b0000019c0030009c000003f50000213d0000001f06300039000001c9066001970000003f06600039000001c906600197000001b80060009c000003f50000213d0000008006600039000000400060043f000000800030043f00000000043400190000002404400039000000000024004b000004c80000213d0000002002500039000000000421034f000001c9053001980000001f0630018f000000a002500039000001590000613d000000a007000039000000000804034f000000008908043c0000000007970436000000000027004b000001550000c13d000000000006004b000001660000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000420435000000a00230003900000000000204350000004401100370000000000101043b000900000001001d0000018f0010009c000004c80000213d0000000001000411000000000010043f0000019801000041000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000ff00100190000003d20000c13d000000400100043d00000024021000390000019903000041000002940000013d000001a00030009c000001c00000213d000001a30030009c000002020000613d000001a40030009c000004c80000c13d000000240020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f00000040010000390635061a0000040f000001bc0000013d000001b10030009c000002580000613d000001b20030009c000004c80000c13d000000240020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000401100370000000000101043b000000000010043f0000000401000039000000200010043f00000040010000390635061a0000040f000000000101041a0000018e01100197000000800010043f000001b501000041000006360001042e000001a60030009c0000029f0000613d000001a70030009c000004c80000c13d0000000001000416000000000001004b000004c80000c13d000000800000043f000001b501000041000006360001042e000001ac0030009c000002bb0000613d000001ad0030009c000004c80000c13d0000000001000416000000000001004b000004c80000c13d0000000201000039000000000101041a000000800010043f000001b501000041000006360001042e000001a10030009c000002c20000613d000001a20030009c000004c80000c13d000000440020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000002402100370000000000202043b000a00000002001d0000018f0020009c000004c80000213d0000000401100370000000000101043b000900000001001d000000000010043f000000200000043f00000040010000390635061a0000040f0000000101100039000000000101041a063504ee0000040f00000009010000290000000a020000290635051d0000040f0000000001000019000006360001042e000000240020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000401100370000000000101043b000001c400100198000004c80000c13d000001c50010009c000002e80000c13d0000000102000039000002ed0000013d0000000001000416000000000001004b000004c80000c13d0000019901000041000000800010043f000001b501000041000006360001042e000000440020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000002402100370000000000302043b0000018f0030009c000004c80000213d0000000002000411000000000023004b000002f10000c13d0000000401100370000000000101043b0635051d0000040f0000000001000019000006360001042e000000240020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000401100370000000000101043b000000000010043f0000000101000039000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000301041a000000400200043d000900000002001d000800000003001d0000000002320436000a00000002001d000000000010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000004c80000613d0000000805000029000000000005004b0000000a060000290000000002060019000002340000613d000000000101043b00000000030000190000000002060019000000000401041a000000000242043600000001011000390000000103300039000000000053004b0000022e0000413d000000090300002900000000013200490000001f01100039000001c9021001970000000001320019000000000021004b000000000200003900000001020040390000019c0010009c000003f50000213d0000000100200190000003f50000c13d000000400010043f00000020020000390000000002210436000000000303043300000000003204350000004002100039000000000003004b0000024f0000613d000000000400001900000000650604340000018f0550019700000000025204360000000104400039000000000034004b000002490000413d00000000021200490000018e0020009c0000018e0200804100000060022002100000018e0010009c0000018e010080410000004001100210000000000112019f000006360001042e000000440020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000402100370000000000202043b000a00000002001d0000002401100370000000000101043b000900000001001d0000018f0010009c000004c80000213d0000000a01000029000000000010043f000000200000043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000101100039000000000101041a000800000001001d000000000010043f000000200000043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000ff001001900000033d0000c13d000000400100043d000000240210003900000008030000290000000000320435000001c00200004100000000002104350000000402100039000000000300041100000000003204350000018e0010009c0000018e010080410000004001100210000001c1011001c70000063700010430000000440020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000002402100370000000000202043b000a00000002001d0000018f0020009c000004c80000213d0000000401100370000000000101043b000000000010043f000000200000043f00000040010000390635061a0000040f0000000a02000029000000000020043f000000200010043f00000040010000390635061a0000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000001b501000041000006360001042e0000000001000416000000000001004b000004c80000c13d000001b701000041000000800010043f000001b501000041000006360001042e000000240020008c000004c80000413d0000000002000416000000000002004b000004c80000c13d0000000401100370000000000101043b0000018e0010009c000004c80000213d000000000010043f0000000301000039000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000401043b000000000104041a000000010210019000000001061002700000007f0660618f0000001f0060008c00000000030000390000000103002039000000000331013f0000000100300190000002f50000613d000001be01000041000000000010043f0000002201000039000000040010043f000001bf010000410000063700010430000001c60010009c00000000020000390000000102006039000001c70010009c00000001022061bf000000010120018f000000800010043f000001b501000041000006360001042e000001c201000041000000800010043f000001c3010000410000063700010430000000400500043d0000000003650436000000000002004b000900000004001d000a00000005001d000003170000613d000700000003001d000800000006001d000000000040043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000004c80000613d0000000806000029000000000006004b00000000020000190000000a0500002900000007070000290000031c0000613d000000000101043b00000000020000190000000003270019000000000401041a000000000043043500000001011000390000002002200039000000000062004b0000030f0000413d0000031c0000013d000001c8011001970000000000130435000000000006004b0000002002000039000000000200603900000020022000390000000001050019063504ca0000040f00000009010000290000000101100039000000000101041a000800000001001d000000400200043d000700000002001d00000060010000390000000001120436000900000001001d00000060022000390000000a01000029063504dc0000040f0000000805000029000000a0025002700000018e022001970000000704000029000000400340003900000000002304350000018f025001970000000903000029000000000023043500000000014100490000018e0010009c0000018e0100804100000060011002100000018e0040009c0000018e040080410000004002400210000000000121019f000006360001042e0000000a01000029000000000010043f000000200000043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000ff00100190000004c60000c13d0000000a01000029000000000010043f000000200000043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000201041a000001c80220019700000001022001bf000000000021041b00000000010004140000018e0010009c0000018e01008041000000c00110021000000192011001c70000800d02000039000000040300003900000193040000410000000a05000029000000090600002900000000070004110635062b0000040f0000000100200190000004c80000613d0000000a01000029000000000010043f0000000101000039000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000201043b0000000901000029000000000010043f000a00000002001d0000000101200039000800000001001d000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000000000101041a000000000001004b000004c60000c13d0000000a01000029000000000101041a000700000001001d0000019c0010009c000003f50000213d000000070100002900000001011000390000000a02000029000000000012041b000000000020043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b00000007011000290000000902000029000000000021041b0000000a01000029000000000101041a000a00000001001d000000000020043f0000000801000029000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b0000000a02000029000000000021041b0000000001000019000006360001042e0000000201000039000000000201041a000800000002001d000000010220003a000003dd0000c13d000001be01000041000000000010043f0000001101000039000000040010043f000001bf010000410000063700010430000000000021041b0000000801000029000000000010043f0000000401000039000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f00000001002001900000008003000039000004c80000613d000000000101043b000000000201041a000001b9022001970000000a022001af000000000021041b000000400100043d000700000001001d000001ba0010009c000003fb0000a13d000001be01000041000000000010043f0000004101000039000000040010043f000001bf01000041000006370001043000000007040000290000006001400039000000400010043f00000020024000390000000901000029000500000002001d0000000000120435000000000034043500000040024000390000000a01000029000600000002001d0000000000120435000000000010043f0000000301000039000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000000101043b000400000001001d00000007010000290000000001010433000300000001001d0000000021010434000200000002001d000700000001001d0000019c0010009c000003f50000213d0000000401000029000000000101041a000000010210019000000001011002700000007f0110618f000100000001001d0000001f0010008c00000000010000390000000101002039000000000012004b000002e20000c13d0000000101000029000000200010008c000004470000413d0000000401000029000000000010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000004c80000613d00000007030000290000001f023000390000000502200270000000200030008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b000004470000813d000000000002041b0000000102200039000000000012004b000004430000413d00000007010000290000001f0010008c0000045b0000a13d0000000401000029000000000010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000004c80000613d000000200200008a0000000703200180000000000101043b000004680000c13d0000002002000039000004750000013d000000070000006b0000000001000019000004600000613d0000000201000029000000000101043300000007040000290000000302400210000001ca0220027f000001ca02200167000000000121016f0000000102400210000000000121019f000004830000013d000000010230008a0000000502200270000000000421001900000020020000390000000104400039000000030600002900000000056200190000000005050433000000000051041b00000020022000390000000101100039000000000041004b0000046e0000c13d000000070030006c000004800000813d00000007030000290000000303300210000000f80330018f000001ca0330027f000001ca0330016700000003022000290000000002020433000000000232016f000000000021041b0000000701000029000000010110021000000001011001bf0000000402000029000000000012041b000000050100002900000000010104330000018f011001970000000102200039000000000302041a000001bb03300197000000000113019f00000006030000290000000003030433000000a003300210000001bc03300197000000000131019f000000000012041b000000400100043d000000200210003900000080030000390000000000320435000000080200002900000000002104350000008003100039000000800200043d0000000000230435000000a003100039000000000002004b000004a60000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000024004b0000049f0000413d000000000332001900000000000304350000000a030000290000018e033001970000006004100039000000000034043500000009030000290000018f03300197000000400410003900000000003404350000001f02200039000001c902200197000000a0022000390000018e0020009c0000018e0200804100000060022002100000018e0010009c0000018e010080410000004001100210000000000112019f00000000020004140000018e0020009c0000018e02008041000000c002200210000000000112019f00000192011001c70000800d020000390000000103000039000001bd040000410635062b0000040f0000000100200190000004c80000613d0000000001000019000006360001042e000000000100001900000637000104300000001f02200039000001c9022001970000000001120019000000000021004b000000000200003900000001020040390000019c0010009c000004d60000213d0000000100200190000004d60000c13d000000400010043f000000000001042d000001be01000041000000000010043f0000004101000039000000040010043f000001bf01000041000006370001043000000000430104340000000001320436000000000003004b000004e80000613d000000000200001900000000052100190000000006240019000000000606043300000000006504350000002002200039000000000032004b000004e10000413d000000000231001900000000000204350000001f02300039000001c9022001970000000001210019000000000001042d0001000000000002000100000001001d000000000010043f000000200000043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f00000001002001900000050d0000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f00000001002001900000050d0000613d000000000101043b000000000101041a000000ff001001900000050f0000613d000000000001042d00000000010000190000063700010430000000400100043d000000240210003900000001030000290000000000320435000001c00200004100000000002104350000000402100039000000000300041100000000003204350000018e0010009c0000018e010080410000004001100210000001c1011001c700000637000104300006000000000002000600000002001d000500000001001d000000000010043f000000200000043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000101043b00000006020000290000018f02200197000600000002001d000000000020043f000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000101043b000000000101041a000000ff00100190000005ea0000613d0000000501000029000000000010043f000000200000043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000101043b0000000602000029000000000020043f000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000101043b000000000201041a000001c802200197000000000021041b00000000010004140000018e0010009c0000018e01008041000000c00110021000000192011001c70000800d0200003900000004030000390000000007000411000001cb04000041000000050500002900000006060000290635062b0000040f0000000100200190000005eb0000613d0000000501000029000000000010043f0000000101000039000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000201043b0000000601000029000000000010043f000500000002001d0000000101200039000300000001001d000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d0000000503000029000000000101043b000000000101041a000000000001004b000005ea0000613d000000000203041a000000000002004b000005ed0000613d000000000021004b000400000001001d000005ca0000613d000200000002001d000000000030043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000005eb0000613d00000004020000290001000100200092000000000101043b0000000504000029000000000204041a000000010020006c000005f30000a13d0000000202000029000000010220008a0000000001120019000000000101041a000200000001001d000000000040043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000101043b00000001011000290000000202000029000000000021041b000000000020043f0000000301000029000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000101043b0000000402000029000000000021041b0000000503000029000000000103041a000400000001001d000000000001004b000005f90000613d000000000030043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000005eb0000613d0000000402000029000000010220008a000000000101043b0000000001210019000000000001041b0000000501000029000000000021041b0000000601000029000000000010043f0000000301000029000000200010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000191011001c70000801002000039063506300000040f0000000100200190000005eb0000613d000000000101043b000000000001041b000000000001042d00000000010000190000063700010430000001be01000041000000000010043f0000001101000039000000040010043f000001bf010000410000063700010430000001be01000041000000000010043f0000003201000039000000040010043f000001bf010000410000063700010430000001be01000041000000000010043f0000003101000039000000040010043f000001bf0100004100000637000104300001000000000002000000000301041a000100000002001d000000000023004b000006120000a13d000000000010043f00000000010004140000018e0010009c0000018e01008041000000c00110021000000197011001c70000801002000039063506300000040f0000000100200190000006180000613d000000000101043b00000001011000290000000002000019000000000001042d000001be01000041000000000010043f0000003201000039000000040010043f000001bf010000410000063700010430000000000100001900000637000104300000018e0010009c0000018e01008041000000600110021000000000020004140000018e0020009c0000018e02008041000000c002200210000000000112019f00000192011001c70000801002000039063506300000040f0000000100200190000006290000613d000000000101043b000000000001042d000000000100001900000637000104300000062e002104210000000102000039000000000001042d0000000002000019000000000001042d00000633002104230000000102000039000000000001042d0000000002000019000000000001042d0000063500000432000006360001042e000006370001043000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000ffffffffffffffffffffffffffffffffffffffffad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5020000000000000000000000000000000000004000000000000000000000000002000000000000000000000000000000000000000000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0da6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4aa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb4900000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000e663f9f05d99e12791b1587bde83a76c27cabb61ea2416ee50452d6ddfa505f9cc3e15b6937a2f69a6f5452031b5fbab5ab7de91ec2efae0db33241e870e61213af7f0310bda25ebf6a91358c0e506d5381a9b7c2a77a2c36d9ac18cbec0b51f3af7f0310bda25ebf6a91358c0e506d5381a9b7c2a77a2c36d9ac18cbec0b51e000000000000000000000000000000000000000000000000ffffffffffffffff0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000008fc5901300000000000000000000000000000000000000000000000000000000a3246ad200000000000000000000000000000000000000000000000000000000d0f4a53600000000000000000000000000000000000000000000000000000000d0f4a53700000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000a3246ad300000000000000000000000000000000000000000000000000000000ca15c8730000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000091d1485400000000000000000000000000000000000000000000000000000000a217fddf000000000000000000000000000000000000000000000000000000008fc59014000000000000000000000000000000000000000000000000000000009010d07c0000000000000000000000000000000000000000000000000000000036568abd0000000000000000000000000000000000000000000000000000000054fd4d4f0000000000000000000000000000000000000000000000000000000054fd4d5000000000000000000000000000000000000000000000000000000000825f78720000000000000000000000000000000000000000000000000000000036568abe0000000000000000000000000000000000000000000000000000000037e228e1000000000000000000000000000000000000000000000000000000002f2ff15c000000000000000000000000000000000000000000000000000000002f2ff15d00000000000000000000000000000000000000000000000000000000335932fc0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000002000000080000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000078a4676d000000000000000000000000000000000000000000000000ffffffffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000ffffffffffffff9fffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000001b3fb8daf0ae6a70fa0514dabcc0007232f7e842357d9964bd13c9d5d2fdb2134e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000e2517d3f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000440000000000000000000000006697b23200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000080000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff5a05180f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b6b7534093a4bbcfaac35eac79ed619e810282f0f860d7c1cc9a655aebe07e87b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.