Overview
ETH Balance
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Loading...
Loading
Contract Name:
NomisScorePortal
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { AbstractPortal } from "./interface/AbstractPortal.sol"; import { AttestationPayload } from "./types/Structs.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { Pausable } from "@openzeppelin/contracts/security/Pausable.sol"; /////////////////////////////////////////////////////////////// // ___ __ ______ ___ __ __ ________ ______ // // /__/\ /__/\ /_____/\ /__//_//_/\ /_______/\/_____/\ // // \::\_\\ \ \\:::_ \ \\::\| \| \ \ \__.::._\/\::::_\/_ // // \:. `-\ \ \\:\ \ \ \\:. \ \ \::\ \ \:\/___/\ // // \:. _ \ \\:\ \ \ \\:.\-/\ \ \ _\::\ \__\_::._\:\ // // \. \`-\ \ \\:\_\ \ \\. \ \ \ \/__\::\__/\ /____\:\ // // \__\/ \__\/ \_____\/ \__\/ \__\/\________\/ \_____\/ // // // /////////////////////////////////////////////////////////////// /** * @title NomisScore Portal * @author Nomis Labs * @notice This is an NomisScore portal, able to attest data on Verax. * @custom:security-contact [email protected] */ contract NomisScorePortal is Ownable, Pausable, AbstractPortal { /*######################### ## Structs ## ##########################*/ /** * @dev Attestation request data struct. * @param expirationTime The expiration time of the attestation. * @param revocable Whether the attestation is revocable or not. * @param tokenId The token id of the minted NomisScore. * @param updated The timestamp of the mint or last update of the NomisScore. * @param value The score value of the NomisScore. * @param chainId The chain id of the NomisScore. * @param calcModel The scoring calculation model of the NomisScore. */ struct AttestationRequestData { uint64 expirationTime; bool revocable; uint256 tokenId; uint256 updated; uint16 value; uint256 chainId; uint16 calcModel; } /** * @dev Attestation request struct. * @param schema The schema to attest. * @param data The attestation data. */ struct AttestationRequest { bytes32 schema; AttestationRequestData data; } /*######################### ## Errors ## ##########################*/ /// @dev Error thrown when the withdraw fails. error WithdrawFail(); /// @dev Error thrown when the attestation is expired. error AttestationExpired(); /*######################### ## Events ## ##########################*/ /** * @dev Event emitted when a NomisScore is attested. * @param schema The schema to attest. * @param expirationTime The expiration time of the attestation. * @param tokenId The token id of the minted NomisScore. * @param updated The timestamp of the mint or last update of the NomisScore. * @param value The score value of the NomisScore. * @param chainId The chain id of the NomisScore. * @param calcModel The scoring calculation model of the NomisScore. * @param attester The attester address. */ event Attestation( bytes32 indexed schema, uint64 expirationTime, uint256 tokenId, uint256 updated, uint16 value, uint256 chainId, uint16 calcModel, address indexed attester ); /*######################### ## Constructor ## ##########################*/ /** * @notice Contract constructor. * @param modules list of modules to use for the portal (can be empty). * @param router the Router's address. * @dev This sets the addresses for the AttestationRegistry, ModuleRegistry and PortalRegistry. */ constructor( address[] memory modules, address router ) AbstractPortal(modules, router) {} /*######################### ## Write Functions ## ##########################*/ /** * @dev Pauses the contract. * See {Pausable-_pause}. * Can only be called by the owner. */ function pause() external onlyOwner { _pause(); } /** * @dev Unpauses the contract. * See {Pausable-_unpause}. * Can only be called by the owner. */ function unpause() external onlyOwner { _unpause(); } /** * @dev Withdraws funds from the contract. * @param to the address to send the funds to. * @param amount the amount to withdraw. */ function withdraw( address payable to, uint256 amount ) external override onlyOwner { (bool s, ) = to.call{ value: amount }(""); if (!s) revert WithdrawFail(); } /** * @notice Issues a Verax attestation based on NomisScore data. * @param schema The schema to attest. * @param expirationTime The expiration time of the attestation. * @param revocable Whether the attestation is revocable or not. * @param tokenId The token id of the minted NomisScore. * @param updated The timestamp of the mint or last update of the NomisScore. * @param value The score value of the NomisScore. * @param chainId The chain id of the NomisScore. * @param calcModel The scoring calculation model of the NomisScore. */ function attestNomisScoreSimple( bytes32 schema, uint64 expirationTime, bool revocable, uint256 tokenId, uint256 updated, uint16 value, uint256 chainId, uint16 calcModel, bytes[] memory validationPayload ) public payable whenNotPaused { AttestationRequestData memory attestationRequestData = AttestationRequestData( expirationTime, revocable, tokenId, updated, value, chainId, calcModel ); AttestationRequest memory attestationRequest = AttestationRequest( schema, attestationRequestData ); attestNomisScore(attestationRequest, validationPayload); } /** * @notice Issues a Verax attestation based on NomisScore data. * @param attestationRequest The NomisScore payload to attest. * @param validationPayload The payload (for ex. signatures) to validate via the modules to issue the attestations. */ function attestNomisScore( AttestationRequest memory attestationRequest, bytes[] memory validationPayload ) public payable whenNotPaused { if (attestationRequest.data.expirationTime < block.timestamp) { revert AttestationExpired(); } bytes memory attestationData = abi.encode( attestationRequest.data.tokenId, attestationRequest.data.updated, attestationRequest.data.value, attestationRequest.data.chainId, attestationRequest.data.calcModel ); AttestationPayload memory attestationPayload = AttestationPayload( attestationRequest.schema, attestationRequest.data.expirationTime, abi.encode(msg.sender), attestationData ); super.attest(attestationPayload, validationPayload); emit Attestation( attestationRequest.schema, attestationRequest.data.expirationTime, attestationRequest.data.tokenId, attestationRequest.data.updated, attestationRequest.data.value, attestationRequest.data.chainId, attestationRequest.data.calcModel, msg.sender ); } /** * @notice Issues Verax attestations in bulk, based on a list of EAS attestations. * @param attestationsRequests The NomisScore payloads to attest. * @param validationPayload The payload (for ex. signatures) to validate via the modules to issue the attestations. */ function bulkAttestNomisScore( AttestationRequest[] memory attestationsRequests, bytes[] memory validationPayload ) external payable { for (uint256 i = 0; i < attestationsRequests.length; i++) { attestNomisScore(attestationsRequests[i], validationPayload); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev 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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/introspection/ERC165Checker.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; /** * @dev Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165CheckerUpgradeable { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /** * @dev Returns true if `account` supports the {IERC165} interface. */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return supportsERC165InterfaceUnchecked(account, type(IERC165Upgradeable).interfaceId) && !supportsERC165InterfaceUnchecked(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && supportsERC165InterfaceUnchecked(account, interfaceId); } /** * @dev Returns a boolean array where each value corresponds to the * interfaces passed in and whether they're supported or not. This allows * you to batch check interfaces for a contract where your expectation * is that some interfaces may not be supported. * * See {IERC165-supportsInterface}. * * _Available since v3.4._ */ function getSupportedInterfaces( address account, bytes4[] memory interfaceIds ) internal view returns (bool[] memory) { // an array of booleans corresponding to interfaceIds and whether they're supported or not bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length); // query support of ERC165 itself if (supportsERC165(account)) { // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { interfaceIdsSupported[i] = supportsERC165InterfaceUnchecked(account, interfaceIds[i]); } } return interfaceIdsSupported; } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!supportsERC165InterfaceUnchecked(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * * Some precompiled contracts will falsely indicate support for a given interface, so caution * should be exercised when using this function. * * Interface identification is specified in ERC-165. */ function supportsERC165InterfaceUnchecked(address account, bytes4 interfaceId) internal view returns (bool) { // prepare call bytes memory encodedParams = abi.encodeWithSelector(IERC165Upgradeable.supportsInterface.selector, interfaceId); // perform static call bool success; uint256 returnSize; uint256 returnValue; assembly { success := staticcall(30000, account, add(encodedParams, 0x20), mload(encodedParams), 0x00, 0x20) returnSize := returndatasize() returnValue := mload(0x00) } return success && returnSize >= 0x20 && returnValue > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import { Attestation, AttestationPayload } from "./types/Structs.sol"; import { PortalRegistry } from "./PortalRegistry.sol"; import { SchemaRegistry } from "./SchemaRegistry.sol"; import { IRouter } from "./interface/IRouter.sol"; /** * @title Attestation Registry * @author Consensys * @notice This contract stores a registry of all attestations */ contract AttestationRegistry is OwnableUpgradeable { IRouter public router; uint16 private version; uint32 private attestationIdCounter; mapping(bytes32 attestationId => Attestation attestation) private attestations; /// @notice Error thrown when a non-portal tries to call a method that can only be called by a portal error OnlyPortal(); /// @notice Error thrown when an invalid Router address is given error RouterInvalid(); /// @notice Error thrown when an attestation is not registered in the AttestationRegistry error AttestationNotAttested(); /// @notice Error thrown when an attempt is made to revoke an attestation by an entity other than the attesting portal error OnlyAttestingPortal(); /// @notice Error thrown when a schema id is not registered error SchemaNotRegistered(); /// @notice Error thrown when an attestation subject is empty error AttestationSubjectFieldEmpty(); /// @notice Error thrown when an attestation data field is empty error AttestationDataFieldEmpty(); /// @notice Error thrown when an attempt is made to bulk replace with mismatched parameter array lengths error ArrayLengthMismatch(); /// @notice Error thrown when an attempt is made to revoke an attestation that was already revoked error AlreadyRevoked(); /// @notice Error thrown when an attempt is made to revoke an attestation based on a non-revocable schema error AttestationNotRevocable(); /// @notice Event emitted when an attestation is registered event AttestationRegistered(bytes32 indexed attestationId); /// @notice Event emitted when an attestation is replaced event AttestationReplaced(bytes32 attestationId, bytes32 replacedBy); /// @notice Event emitted when an attestation is revoked event AttestationRevoked(bytes32 attestationId); /// @notice Event emitted when the version number is incremented event VersionUpdated(uint16 version); /** * @notice Checks if the caller is a registered portal * @param portal the portal address */ modifier onlyPortals(address portal) { bool isPortalRegistered = PortalRegistry(router.getPortalRegistry()).isRegistered(portal); if (!isPortalRegistered) revert OnlyPortal(); _; } /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } /** * @notice Contract initialization */ function initialize() public initializer { __Ownable_init(); } /** * @notice Changes the address for the Router * @dev Only the registry owner can call this method */ function updateRouter(address _router) public onlyOwner { if (_router == address(0)) revert RouterInvalid(); router = IRouter(_router); } /** * @notice Registers an attestation to the AttestationRegistry * @param attestationPayload the attestation payload to create attestation and register it * @param attester the account address issuing the attestation * @dev This method is only callable by a registered Portal */ function attest(AttestationPayload calldata attestationPayload, address attester) public onlyPortals(msg.sender) { // Verify the schema id exists SchemaRegistry schemaRegistry = SchemaRegistry(router.getSchemaRegistry()); if (!schemaRegistry.isRegistered(attestationPayload.schemaId)) revert SchemaNotRegistered(); // Verify the subject field is not blank if (attestationPayload.subject.length == 0) revert AttestationSubjectFieldEmpty(); // Verify the attestationData field is not blank if (attestationPayload.attestationData.length == 0) revert AttestationDataFieldEmpty(); // Auto increment attestation counter attestationIdCounter++; bytes32 id = bytes32(abi.encode(attestationIdCounter)); // Create attestation attestations[id] = Attestation( id, attestationPayload.schemaId, bytes32(0), attester, msg.sender, uint64(block.timestamp), attestationPayload.expirationDate, 0, version, false, attestationPayload.subject, attestationPayload.attestationData ); emit AttestationRegistered(id); } /** * @notice Registers attestations to the AttestationRegistry * @param attestationsPayloads the attestations payloads to create attestations and register them */ function bulkAttest(AttestationPayload[] calldata attestationsPayloads, address attester) public { for (uint256 i = 0; i < attestationsPayloads.length; i++) { attest(attestationsPayloads[i], attester); } } function massImport(AttestationPayload[] calldata attestationsPayloads, address portal) public onlyOwner { for (uint256 i = 0; i < attestationsPayloads.length; i++) { // Auto increment attestation counter attestationIdCounter++; bytes32 id = bytes32(abi.encode(attestationIdCounter)); // Create attestation attestations[id] = Attestation( id, attestationsPayloads[i].schemaId, bytes32(0), msg.sender, portal, uint64(block.timestamp), attestationsPayloads[i].expirationDate, 0, version, false, attestationsPayloads[i].subject, attestationsPayloads[i].attestationData ); emit AttestationRegistered(id); } } /** * @notice Replaces an attestation for the given identifier and replaces it with a new attestation * @param attestationId the ID of the attestation to replace * @param attestationPayload the attestation payload to create the new attestation and register it * @param attester the account address issuing the attestation */ function replace(bytes32 attestationId, AttestationPayload calldata attestationPayload, address attester) public { attest(attestationPayload, attester); revoke(attestationId); bytes32 replacedBy = bytes32(abi.encode(attestationIdCounter)); attestations[attestationId].replacedBy = replacedBy; emit AttestationReplaced(attestationId, replacedBy); } /** * @notice Replaces attestations for given identifiers and replaces them with new attestations * @param attestationIds the list of IDs of the attestations to replace * @param attestationPayloads the list of attestation payloads to create the new attestations and register them * @param attester the account address issuing the attestation */ function bulkReplace( bytes32[] calldata attestationIds, AttestationPayload[] calldata attestationPayloads, address attester ) public { if (attestationIds.length != attestationPayloads.length) revert ArrayLengthMismatch(); for (uint256 i = 0; i < attestationIds.length; i++) { replace(attestationIds[i], attestationPayloads[i], attester); } } /** * @notice Revokes an attestation for a given identifier * @param attestationId the ID of the attestation to revoke */ function revoke(bytes32 attestationId) public { if (!isRegistered(attestationId)) revert AttestationNotAttested(); if (attestations[attestationId].revoked) revert AlreadyRevoked(); if (msg.sender != attestations[attestationId].portal) revert OnlyAttestingPortal(); if (!isRevocable(attestations[attestationId].portal)) revert AttestationNotRevocable(); attestations[attestationId].revoked = true; attestations[attestationId].revocationDate = uint64(block.timestamp); emit AttestationRevoked(attestationId); } /** * @notice Bulk revokes a list of attestations for the given identifiers * @param attestationIds the IDs of the attestations to revoke */ function bulkRevoke(bytes32[] memory attestationIds) external { for (uint256 i = 0; i < attestationIds.length; i++) { revoke(attestationIds[i]); } } /** * @notice Checks if an attestation is registered * @param attestationId the attestation identifier * @return true if the attestation is registered, false otherwise */ function isRegistered(bytes32 attestationId) public view returns (bool) { return attestations[attestationId].attestationId != bytes32(0); } /** * @notice Checks whether a portal issues revocable attestations * @param portalId the portal address (ID) * @return true if the attestations issued by this portal are revocable, false otherwise */ function isRevocable(address portalId) public view returns (bool) { PortalRegistry portalRegistry = PortalRegistry(router.getPortalRegistry()); return portalRegistry.getPortalByAddress(portalId).isRevocable; } /** * @notice Gets an attestation by its identifier * @param attestationId the attestation identifier * @return the attestation */ function getAttestation(bytes32 attestationId) public view returns (Attestation memory) { if (!isRegistered(attestationId)) revert AttestationNotAttested(); return attestations[attestationId]; } /** * @notice Increments the registry version * @return The new version number */ function incrementVersionNumber() public onlyOwner returns (uint16) { ++version; emit VersionUpdated(version); return version; } /** * @notice Gets the registry version * @return The current version number */ function getVersionNumber() public view returns (uint16) { return version; } /** * @notice Gets the attestation id counter * @return The attestationIdCounter */ function getAttestationIdCounter() public view returns (uint32) { return attestationIdCounter; } /** * @notice Checks if an address owns a given attestation following ERC-1155 * @param account The address of the token holder * @param id ID of the attestation * @return The _owner's balance of the attestations on a given attestation ID */ function balanceOf(address account, uint256 id) public view returns (uint256) { bytes32 attestationId = bytes32(abi.encode(id)); Attestation memory attestation = attestations[attestationId]; if (attestation.subject.length > 20 && keccak256(attestation.subject) == keccak256(abi.encode(account))) return 1; if (attestation.subject.length == 20 && keccak256(attestation.subject) == keccak256(abi.encodePacked(account))) return 1; return 0; } /** * @notice Get the balance of multiple account/attestation pairs following ERC-1155 * @param accounts The addresses of the attestation holders * @param ids ID of the attestations * @return The _owner's balance of the attestation for a given address (i.e. balance for each (owner, id) pair) */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view returns (uint256[] memory) { if (accounts.length != ids.length) revert ArrayLengthMismatch(); uint256[] memory result = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; i++) { result[i] = balanceOf(accounts[i], ids[i]); } return result; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { AttestationPayload } from "../types/Structs.sol"; import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @title Abstract Module * @author Consensys * @notice Defines the minimal Module interface */ abstract contract AbstractModule is IERC165 { /** * @notice Executes the module's custom logic. * @param attestationPayload The incoming attestation data. * @param validationPayload Additional data required for verification. * @param txSender The transaction sender's address. * @param value The transaction value. */ function run( AttestationPayload memory attestationPayload, bytes memory validationPayload, address txSender, uint256 value ) public virtual; /** * @notice Checks if the contract implements the Module interface. * @param interfaceID The ID of the interface to check. * @return A boolean indicating interface support. */ function supportsInterface(bytes4 interfaceID) public pure virtual override returns (bool) { return interfaceID == type(AbstractModule).interfaceId || interfaceID == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { AttestationRegistry } from "../AttestationRegistry.sol"; import { ModuleRegistry } from "../ModuleRegistry.sol"; import { PortalRegistry } from "../PortalRegistry.sol"; import { AttestationPayload } from "../types/Structs.sol"; import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import { IRouter } from "./IRouter.sol"; import { IPortal } from "./IPortal.sol"; /** * @title Abstract Portal * @author Consensys * @notice This contract is an abstract contract with basic Portal logic * to be inherited. We strongly encourage all Portals to implement * this contract. */ abstract contract AbstractPortal is IPortal { IRouter public router; address[] public modules; ModuleRegistry public moduleRegistry; AttestationRegistry public attestationRegistry; PortalRegistry public portalRegistry; /// @notice Error thrown when someone else than the portal's owner is trying to revoke error OnlyPortalOwner(); /** * @notice Contract constructor * @param _modules list of modules to use for the portal (can be empty) * @param _router Router's address * @dev This sets the addresses for the AttestationRegistry, ModuleRegistry and PortalRegistry */ constructor(address[] memory _modules, address _router) { modules = _modules; router = IRouter(_router); attestationRegistry = AttestationRegistry(router.getAttestationRegistry()); moduleRegistry = ModuleRegistry(router.getModuleRegistry()); portalRegistry = PortalRegistry(router.getPortalRegistry()); } /** * @notice Optional method to withdraw funds from the Portal * @param to the address to send the funds to * @param amount the amount to withdraw */ function withdraw(address payable to, uint256 amount) external virtual; /** * @notice Attest the schema with given attestationPayload and validationPayload * @param attestationPayload the payload to attest * @param validationPayloads the payloads to validate via the modules to issue the attestations * @dev Runs all modules for the portal and registers the attestation using AttestationRegistry */ function attest(AttestationPayload memory attestationPayload, bytes[] memory validationPayloads) public payable { moduleRegistry.runModules(modules, attestationPayload, validationPayloads, msg.value); _onAttest(attestationPayload, getAttester(), msg.value); attestationRegistry.attest(attestationPayload, getAttester()); } /** * @notice Bulk attest the schema with payloads to attest and validation payloads * @param attestationsPayloads the payloads to attest * @param validationPayloads the payloads to validate via the modules to issue the attestations */ function bulkAttest(AttestationPayload[] memory attestationsPayloads, bytes[][] memory validationPayloads) public { moduleRegistry.bulkRunModules(modules, attestationsPayloads, validationPayloads); _onBulkAttest(attestationsPayloads, validationPayloads); attestationRegistry.bulkAttest(attestationsPayloads, getAttester()); } /** * @notice Replaces the attestation for the given identifier and replaces it with a new attestation * @param attestationId the ID of the attestation to replace * @param attestationPayload the attestation payload to create the new attestation and register it * @param validationPayloads the payloads to validate via the modules to issue the attestation * @dev Runs all modules for the portal and registers the attestation using AttestationRegistry */ function replace( bytes32 attestationId, AttestationPayload memory attestationPayload, bytes[] memory validationPayloads ) public payable { moduleRegistry.runModules(modules, attestationPayload, validationPayloads, msg.value); _onReplace(attestationId, attestationPayload, getAttester(), msg.value); attestationRegistry.replace(attestationId, attestationPayload, getAttester()); } /** * @notice Bulk replaces the attestation for the given identifiers and replaces them with new attestations * @param attestationIds the list of IDs of the attestations to replace * @param attestationsPayloads the list of attestation payloads to create the new attestations and register them * @param validationPayloads the payloads to validate via the modules to issue the attestations */ function bulkReplace( bytes32[] memory attestationIds, AttestationPayload[] memory attestationsPayloads, bytes[][] memory validationPayloads ) public { moduleRegistry.bulkRunModules(modules, attestationsPayloads, validationPayloads); _onBulkReplace(attestationIds, attestationsPayloads, validationPayloads); attestationRegistry.bulkReplace(attestationIds, attestationsPayloads, getAttester()); } /** * @notice Revokes an attestation for the given identifier * @param attestationId the ID of the attestation to revoke * @dev By default, revocation is only possible by the portal owner * We strongly encourage implementing such a rule in your Portal if you intend on overriding this method */ function revoke(bytes32 attestationId) public { _onRevoke(attestationId); attestationRegistry.revoke(attestationId); } /** * @notice Bulk revokes a list of attestations for the given identifiers * @param attestationIds the IDs of the attestations to revoke */ function bulkRevoke(bytes32[] memory attestationIds) public { _onBulkRevoke(attestationIds); attestationRegistry.bulkRevoke(attestationIds); } /** * @notice Get all the modules addresses used by the Portal * @return The list of modules addresses linked to the Portal */ function getModules() external view returns (address[] memory) { return modules; } /** * @notice Verifies that a specific interface is implemented by the Portal, following ERC-165 specification * @param interfaceID the interface identifier checked in this call * @return The list of modules addresses linked to the Portal */ function supportsInterface(bytes4 interfaceID) public pure virtual override returns (bool) { return interfaceID == type(AbstractPortal).interfaceId || interfaceID == type(IPortal).interfaceId || interfaceID == type(IERC165).interfaceId; } /** * @notice Defines the address of the entity issuing attestations to the subject * @dev We strongly encourage a reflection when overriding this rule: who should be set as the attester? */ function getAttester() public view virtual returns (address) { return msg.sender; } /** * @notice Optional method run before a payload is attested * @param attestationPayload the attestation payload supposed to be attested * @param attester the address of the attester * @param value the value sent with the attestation */ function _onAttest(AttestationPayload memory attestationPayload, address attester, uint256 value) internal virtual {} /** * @notice Optional method run when an attestation is replaced * @param attestationId the ID of the attestation being replaced * @param attestationPayload the attestation payload to create attestation and register it * @param attester the address of the attester * @param value the value sent with the attestation */ function _onReplace( bytes32 attestationId, AttestationPayload memory attestationPayload, address attester, uint256 value ) internal virtual {} /** * @notice Optional method run when attesting a batch of payloads * @param attestationsPayloads the payloads to attest * @param validationPayloads the payloads to validate in order to issue the attestations */ function _onBulkAttest( AttestationPayload[] memory attestationsPayloads, bytes[][] memory validationPayloads ) internal virtual {} function _onBulkReplace( bytes32[] memory attestationIds, AttestationPayload[] memory attestationsPayloads, bytes[][] memory validationPayloads ) internal virtual {} /** * @notice Optional method run when an attestation is revoked or replaced * @dev IMPORTANT NOTE: By default, revocation is only possible by the portal owner */ function _onRevoke(bytes32 /*attestationId*/) internal virtual { if (msg.sender != portalRegistry.getPortalByAddress(address(this)).ownerAddress) revert OnlyPortalOwner(); } /** * @notice Optional method run when a batch of attestations are revoked or replaced * @dev IMPORTANT NOTE: By default, revocation is only possible by the portal owner */ function _onBulkRevoke(bytes32[] memory /*attestationIds*/) internal virtual { if (msg.sender != portalRegistry.getPortalByAddress(address(this)).ownerAddress) revert OnlyPortalOwner(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @title IPortal * @author Consensys * @notice This contract is the interface to be implemented by any Portal. * NOTE: A portal must implement this interface to registered on * the PortalRegistry contract. */ interface IPortal is IERC165 { /** * @notice Get all the modules addresses used by the Portal * @return The list of modules addresses linked to the Portal */ function getModules() external view returns (address[] memory); /** * @notice Defines the address of the entity issuing attestations to the subject * @dev We strongly encourage a reflection when implementing this method */ function getAttester() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; /** * @title Router * @author Consensys * @notice This contract aims to provides a single entrypoint for the Verax registries */ interface IRouter { /** * @notice Gives the address for the AttestationRegistry contract * @return The current address of the AttestationRegistry contract */ function getAttestationRegistry() external view returns (address); /** * @notice Gives the address for the ModuleRegistry contract * @return The current address of the ModuleRegistry contract */ function getModuleRegistry() external view returns (address); /** * @notice Gives the address for the PortalRegistry contract * @return The current address of the PortalRegistry contract */ function getPortalRegistry() external view returns (address); /** * @notice Gives the address for the SchemaRegistry contract * @return The current address of the SchemaRegistry contract */ function getSchemaRegistry() external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { AttestationPayload, Module } from "./types/Structs.sol"; import { AbstractModule } from "./interface/AbstractModule.sol"; import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; // solhint-disable-next-line max-line-length import { ERC165CheckerUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165CheckerUpgradeable.sol"; import { PortalRegistry } from "./PortalRegistry.sol"; import { IRouter } from "./interface/IRouter.sol"; /** * @title Module Registry * @author Consensys * @notice This contract aims to manage the Modules used by the Portals, including their discoverability */ contract ModuleRegistry is OwnableUpgradeable { IRouter public router; /// @dev The list of Modules, accessed by their address mapping(address id => Module module) public modules; /// @dev The list of Module addresses address[] public moduleAddresses; /// @notice Error thrown when an invalid Router address is given error RouterInvalid(); /// @notice Error thrown when a non-issuer tries to call a method that can only be called by an issuer error OnlyIssuer(); /// @notice Error thrown when an identical Module was already registered error ModuleAlreadyExists(); /// @notice Error thrown when attempting to add a Module without a name error ModuleNameMissing(); /// @notice Error thrown when attempting to add a Module without an address of deployed smart contract error ModuleAddressInvalid(); /// @notice Error thrown when attempting to add a Module which has not implemented the IModule interface error ModuleInvalid(); /// @notice Error thrown when attempting to run modules with no attestation payload provided error AttestationPayloadMissing(); /// @notice Error thrown when module is not registered error ModuleNotRegistered(); /// @notice Error thrown when module addresses and validation payload length mismatch error ModuleValidationPayloadMismatch(); /// @notice Event emitted when a Module is registered event ModuleRegistered(string name, string description, address moduleAddress); /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } /** * @notice Contract initialization */ function initialize() public initializer { __Ownable_init(); } /** * @notice Checks if the caller is a registered issuer. * @param issuer the issuer address */ modifier onlyIssuers(address issuer) { bool isIssuerRegistered = PortalRegistry(router.getPortalRegistry()).isIssuer(issuer); if (!isIssuerRegistered) revert OnlyIssuer(); _; } /** * @notice Changes the address for the Router * @dev Only the registry owner can call this method */ function updateRouter(address _router) public onlyOwner { if (_router == address(0)) revert RouterInvalid(); router = IRouter(_router); } /** * Check if address is smart contract and not EOA * @param contractAddress address to be verified * @return the result as true if it is a smart contract else false */ function isContractAddress(address contractAddress) public view returns (bool) { return contractAddress.code.length > 0; } /** * @notice Registers a Module, with its metadata and run some checks: * - mandatory name * - mandatory module's deployed smart contract address * - the module must be unique * @param name the module name * @param description the module description * @param moduleAddress the address of the deployed smart contract * @dev the module is stored in a mapping, the number of modules is incremented and an event is emitted */ function register( string memory name, string memory description, address moduleAddress ) public onlyIssuers(msg.sender) { if (bytes(name).length == 0) revert ModuleNameMissing(); // Check if moduleAddress is a smart contract address if (!isContractAddress(moduleAddress)) revert ModuleAddressInvalid(); // Check if module has implemented AbstractModule if (!ERC165CheckerUpgradeable.supportsInterface(moduleAddress, type(AbstractModule).interfaceId)) revert ModuleInvalid(); // Module address is used to identify uniqueness of the module if (bytes(modules[moduleAddress].name).length > 0) revert ModuleAlreadyExists(); modules[moduleAddress] = Module(moduleAddress, name, description); moduleAddresses.push(moduleAddress); emit ModuleRegistered(name, description, moduleAddress); } /** * @notice Executes the run method for all given Modules that are registered * @param modulesAddresses the addresses of the registered modules * @param attestationPayload the payload to attest * @param validationPayloads the payloads to check for each module (one payload per module) * @dev check if modules are registered and execute run method for each module */ function runModules( address[] memory modulesAddresses, AttestationPayload memory attestationPayload, bytes[] memory validationPayloads, uint256 value ) public { // If no modules provided, bypass module validation if (modulesAddresses.length == 0) return; // Each module involved must have a corresponding item from the validation payload if (modulesAddresses.length != validationPayloads.length) revert ModuleValidationPayloadMismatch(); // For each module check if it is registered and call run method for (uint32 i = 0; i < modulesAddresses.length; i++) { if (!isRegistered(modulesAddresses[i])) revert ModuleNotRegistered(); AbstractModule(modulesAddresses[i]).run(attestationPayload, validationPayloads[i], tx.origin, value); } } /** * @notice Executes the modules validation for all attestations payloads for all given Modules that are registered * @param modulesAddresses the addresses of the registered modules * @param attestationsPayloads the payloads to attest * @param validationPayloads the payloads to check for each module * @dev NOTE: Currently the bulk run modules does not handle payable modules * a default value of 0 is used. */ function bulkRunModules( address[] memory modulesAddresses, AttestationPayload[] memory attestationsPayloads, bytes[][] memory validationPayloads ) public { for (uint32 i = 0; i < attestationsPayloads.length; i++) { runModules(modulesAddresses, attestationsPayloads[i], validationPayloads[i], 0); } } /** * @notice Get the number of Modules managed by the contract * @return The number of Modules already registered * @dev Returns the length of the `moduleAddresses` array */ function getModulesNumber() public view returns (uint256) { return moduleAddresses.length; } /** * @notice Checks that a module is registered in the module registry * @param moduleAddress The address of the Module to check * @return True if the Module is registered, False otherwise */ function isRegistered(address moduleAddress) public view returns (bool) { return bytes(modules[moduleAddress].name).length > 0; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { AbstractPortal } from "../interface/AbstractPortal.sol"; /** * @title Default Portal * @author Consensys * @notice This contract aims to provide a default portal * @dev This Portal does not add any logic to the AbstractPortal */ contract DefaultPortal is AbstractPortal { /** * @notice Contract constructor * @param modules list of modules to use for the portal (can be empty) * @param router the Router's address * @dev This sets the addresses for the AttestationRegistry, ModuleRegistry and PortalRegistry */ constructor(address[] memory modules, address router) AbstractPortal(modules, router) {} /// @inheritdoc AbstractPortal function withdraw(address payable to, uint256 amount) external override {} }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; // solhint-disable-next-line max-line-length import { ERC165CheckerUpgradeable } from "@openzeppelin/contracts-upgradeable/utils/introspection/ERC165CheckerUpgradeable.sol"; import { AbstractPortal } from "./interface/AbstractPortal.sol"; import { DefaultPortal } from "./portal/DefaultPortal.sol"; import { Portal } from "./types/Structs.sol"; import { IRouter } from "./interface/IRouter.sol"; import { IPortal } from "./interface/IPortal.sol"; /** * @title Portal Registry * @author Consensys * @notice This contract aims to manage the Portals used by attestation issuers */ contract PortalRegistry is OwnableUpgradeable { IRouter public router; mapping(address id => Portal portal) private portals; mapping(address issuerAddress => bool isIssuer) private issuers; address[] private portalAddresses; /// @notice Error thrown when an invalid Router address is given error RouterInvalid(); /// @notice Error thrown when a non-issuer tries to call a method that can only be called by an issuer error OnlyIssuer(); /// @notice Error thrown when attempting to register a Portal twice error PortalAlreadyExists(); /// @notice Error thrown when attempting to register a Portal that is not a smart contract error PortalAddressInvalid(); /// @notice Error thrown when attempting to register a Portal with an empty name error PortalNameMissing(); /// @notice Error thrown when attempting to register a Portal with an empty description error PortalDescriptionMissing(); /// @notice Error thrown when attempting to register a Portal with an empty owner name error PortalOwnerNameMissing(); /// @notice Error thrown when attempting to register a Portal that does not implement IPortal interface error PortalInvalid(); /// @notice Error thrown when attempting to get a Portal that is not registered error PortalNotRegistered(); /// @notice Event emitted when a Portal registered event PortalRegistered(string name, string description, address portalAddress); /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } /** * @notice Contract initialization */ function initialize() public initializer { __Ownable_init(); } /** * @notice Changes the address for the Router * @dev Only the registry owner can call this method */ function updateRouter(address _router) public onlyOwner { if (_router == address(0)) revert RouterInvalid(); router = IRouter(_router); } /** * @notice Registers an address as been an issuer * @param issuer the address to register as an issuer */ function setIssuer(address issuer) public onlyOwner { issuers[issuer] = true; } /** * @notice Revokes issuer status from an address * @param issuer the address to be revoked as an issuer */ function removeIssuer(address issuer) public onlyOwner { issuers[issuer] = false; } /** * @notice Checks if a given address is an issuer * @return A flag indicating whether the given address is an issuer */ function isIssuer(address issuer) public view returns (bool) { return issuers[issuer]; } /** * @notice Checks if the caller is a registered issuer. * @param issuer the issuer address */ modifier onlyIssuers(address issuer) { if (!isIssuer(issuer)) revert OnlyIssuer(); _; } /** * @notice Registers a Portal to the PortalRegistry * @param id the portal address * @param name the portal name * @param description the portal description * @param isRevocable whether the portal issues revocable attestations * @param ownerName name of this portal's owner */ function register( address id, string memory name, string memory description, bool isRevocable, string memory ownerName ) public onlyIssuers(msg.sender) { // Check if portal already exists if (portals[id].id != address(0)) revert PortalAlreadyExists(); // Check if portal is a smart contract if (!isContractAddress(id)) revert PortalAddressInvalid(); // Check if name is not empty if (bytes(name).length == 0) revert PortalNameMissing(); // Check if description is not empty if (bytes(description).length == 0) revert PortalDescriptionMissing(); // Check if the owner's name is not empty if (bytes(ownerName).length == 0) revert PortalOwnerNameMissing(); // Check if portal has implemented AbstractPortal if (!ERC165CheckerUpgradeable.supportsInterface(id, type(IPortal).interfaceId)) revert PortalInvalid(); // Get the array of modules implemented by the portal address[] memory modules = AbstractPortal(id).getModules(); // Add portal to mapping Portal memory newPortal = Portal(id, msg.sender, modules, isRevocable, name, description, ownerName); portals[id] = newPortal; portalAddresses.push(id); // Emit event emit PortalRegistered(name, description, id); } /** * @notice Deploys and registers a clone of default portal * @param modules the modules addresses * @param name the portal name * @param description the portal description * @param ownerName name of this portal's owner */ function deployDefaultPortal( address[] calldata modules, string memory name, string memory description, bool isRevocable, string memory ownerName ) external onlyIssuers(msg.sender) { DefaultPortal defaultPortal = new DefaultPortal(modules, address(router)); register(address(defaultPortal), name, description, isRevocable, ownerName); } /** * @notice Get a Portal by its address * @param id The address of the Portal * @return The Portal */ function getPortalByAddress(address id) public view returns (Portal memory) { if (!isRegistered(id)) revert PortalNotRegistered(); return portals[id]; } /** * @notice Check if a Portal is registered * @param id The address of the Portal * @return True if the Portal is registered, false otherwise */ function isRegistered(address id) public view returns (bool) { return portals[id].id != address(0); } /** * @notice Get the number of Portals managed by the contract * @return The number of Portals already registered * @dev Returns the length of the `portalAddresses` array */ function getPortalsCount() public view returns (uint256) { return portalAddresses.length; } /** * Check if address is smart contract and not EOA * @param contractAddress address to be verified * @return the result as true if it is a smart contract else false */ function isContractAddress(address contractAddress) internal view returns (bool) { return contractAddress.code.length > 0; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import { OwnableUpgradeable } from "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import { Schema } from "./types/Structs.sol"; import { PortalRegistry } from "./PortalRegistry.sol"; import { IRouter } from "./interface/IRouter.sol"; /** * @title Schema Registry * @author Consensys * @notice This contract aims to manage the Schemas used by the Portals, including their discoverability */ contract SchemaRegistry is OwnableUpgradeable { IRouter public router; /// @dev The list of Schemas, accessed by their ID mapping(bytes32 id => Schema schema) private schemas; /// @dev The list of Schema IDs bytes32[] public schemaIds; /// @notice Error thrown when an invalid Router address is given error RouterInvalid(); /// @notice Error thrown when a non-issuer tries to call a method that can only be called by an issuer error OnlyIssuer(); /// @notice Error thrown when an identical Schema was already registered error SchemaAlreadyExists(); /// @notice Error thrown when attempting to add a Schema without a name error SchemaNameMissing(); /// @notice Error thrown when attempting to add a Schema without a string to define it error SchemaStringMissing(); /// @notice Error thrown when attempting to get a Schema that is not registered error SchemaNotRegistered(); /// @notice Event emitted when a Schema is created and registered event SchemaCreated(bytes32 indexed id, string name, string description, string context, string schemaString); /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } /** * @notice Contract initialization */ function initialize() public initializer { __Ownable_init(); } /** * @notice Checks if the caller is a registered issuer. * @param issuer the issuer address */ modifier onlyIssuers(address issuer) { bool isIssuerRegistered = PortalRegistry(router.getPortalRegistry()).isIssuer(issuer); if (!isIssuerRegistered) revert OnlyIssuer(); _; } /** * @notice Changes the address for the Router * @dev Only the registry owner can call this method */ function updateRouter(address _router) public onlyOwner { if (_router == address(0)) revert RouterInvalid(); router = IRouter(_router); } /** * Generate an ID for a given schema * @param schema the string defining a schema * @return the schema ID * @dev encodes a schema string to unique bytes */ function getIdFromSchemaString(string memory schema) public pure returns (bytes32) { return keccak256(abi.encodePacked(schema)); } /** * @notice Creates a Schema, with its metadata and runs some checks: * - mandatory name * - mandatory string defining the schema * - the Schema must be unique * @param name the Schema name * @param description the Schema description * @param context the Schema context * @param schemaString the string defining a Schema * @dev the Schema is stored in a mapping, its ID is added to an array of IDs and an event is emitted */ function createSchema( string memory name, string memory description, string memory context, string memory schemaString ) public onlyIssuers(msg.sender) { if (bytes(name).length == 0) revert SchemaNameMissing(); if (bytes(schemaString).length == 0) revert SchemaStringMissing(); bytes32 schemaId = getIdFromSchemaString(schemaString); if (isRegistered(schemaId)) { revert SchemaAlreadyExists(); } schemas[schemaId] = Schema(name, description, context, schemaString); schemaIds.push(schemaId); emit SchemaCreated(schemaId, name, description, context, schemaString); } /** * @notice Updates the context of a given schema * @param schemaId the schema ID * @param context the Schema context * @dev Retrieve the Schema with given ID and update its context with new value */ function updateContext(bytes32 schemaId, string memory context) public onlyIssuers(msg.sender) { if (!isRegistered(schemaId)) revert SchemaNotRegistered(); schemas[schemaId].context = context; } /** * @notice Gets a schema by its identifier * @param schemaId the schema ID * @return the schema */ function getSchema(bytes32 schemaId) public view returns (Schema memory) { if (!isRegistered(schemaId)) revert SchemaNotRegistered(); return schemas[schemaId]; } /** * @notice Get the number of Schemas managed by the contract * @return The number of Schemas already registered * @dev Returns the length of the `schemaIds` array */ function getSchemasNumber() public view returns (uint256) { return schemaIds.length; } /** * @notice Check if a Schema is registered * @param schemaId The ID of the Schema * @return True if the Schema is registered, false otherwise */ function isRegistered(bytes32 schemaId) public view returns (bool) { return bytes(schemas[schemaId].name).length > 0; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; struct AttestationPayload { bytes32 schemaId; // The identifier of the schema this attestation adheres to. uint64 expirationDate; // The expiration date of the attestation. bytes subject; // The ID of the attestee, EVM address, DID, URL etc. bytes attestationData; // The attestation data. } struct Attestation { bytes32 attestationId; // The unique identifier of the attestation. bytes32 schemaId; // The identifier of the schema this attestation adheres to. bytes32 replacedBy; // Whether the attestation was replaced by a new one. address attester; // The address issuing the attestation to the subject. address portal; // The id of the portal that created the attestation. uint64 attestedDate; // The date the attestation is issued. uint64 expirationDate; // The expiration date of the attestation. uint64 revocationDate; // The date when the attestation was revoked. uint16 version; // Version of the registry when the attestation was created. bool revoked; // Whether the attestation is revoked or not. bytes subject; // The ID of the attestee, EVM address, DID, URL etc. bytes attestationData; // The attestation data. } struct Schema { string name; // The name of the schema. string description; // A description of the schema. string context; // The context of the schema. string schema; // The schema definition. } struct Portal { address id; // The unique identifier of the portal. address ownerAddress; // The address of the owner of this portal. address[] modules; // Addresses of modules implemented by the portal. bool isRevocable; // Whether attestations issued can be revoked. string name; // The name of the portal. string description; // A description of the portal. string ownerName; // The name of the owner of this portal. } struct Module { address moduleAddress; // The address of the module. string name; // The name of the module. string description; // A description of the module. }
{ "optimizer": { "enabled": true, "runs": 200 }, "viaIR": true, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address[]","name":"modules","type":"address[]"},{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AttestationExpired","type":"error"},{"inputs":[],"name":"OnlyPortalOwner","type":"error"},{"inputs":[],"name":"WithdrawFail","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"schema","type":"bytes32"},{"indexed":false,"internalType":"uint64","name":"expirationTime","type":"uint64"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"updated","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"value","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"uint16","name":"calcModel","type":"uint16"},{"indexed":true,"internalType":"address","name":"attester","type":"address"}],"name":"Attestation","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schemaId","type":"bytes32"},{"internalType":"uint64","name":"expirationDate","type":"uint64"},{"internalType":"bytes","name":"subject","type":"bytes"},{"internalType":"bytes","name":"attestationData","type":"bytes"}],"internalType":"struct AttestationPayload","name":"attestationPayload","type":"tuple"},{"internalType":"bytes[]","name":"validationPayloads","type":"bytes[]"}],"name":"attest","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"updated","type":"uint256"},{"internalType":"uint16","name":"value","type":"uint16"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"internalType":"struct NomisScorePortal.AttestationRequestData","name":"data","type":"tuple"}],"internalType":"struct NomisScorePortal.AttestationRequest","name":"attestationRequest","type":"tuple"},{"internalType":"bytes[]","name":"validationPayload","type":"bytes[]"}],"name":"attestNomisScore","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"updated","type":"uint256"},{"internalType":"uint16","name":"value","type":"uint16"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint16","name":"calcModel","type":"uint16"},{"internalType":"bytes[]","name":"validationPayload","type":"bytes[]"}],"name":"attestNomisScoreSimple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"attestationRegistry","outputs":[{"internalType":"contract AttestationRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schemaId","type":"bytes32"},{"internalType":"uint64","name":"expirationDate","type":"uint64"},{"internalType":"bytes","name":"subject","type":"bytes"},{"internalType":"bytes","name":"attestationData","type":"bytes"}],"internalType":"struct AttestationPayload[]","name":"attestationsPayloads","type":"tuple[]"},{"internalType":"bytes[][]","name":"validationPayloads","type":"bytes[][]"}],"name":"bulkAttest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"bytes32","name":"schema","type":"bytes32"},{"components":[{"internalType":"uint64","name":"expirationTime","type":"uint64"},{"internalType":"bool","name":"revocable","type":"bool"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"updated","type":"uint256"},{"internalType":"uint16","name":"value","type":"uint16"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"internalType":"struct NomisScorePortal.AttestationRequestData","name":"data","type":"tuple"}],"internalType":"struct NomisScorePortal.AttestationRequest[]","name":"attestationsRequests","type":"tuple[]"},{"internalType":"bytes[]","name":"validationPayload","type":"bytes[]"}],"name":"bulkAttestNomisScore","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"attestationIds","type":"bytes32[]"},{"components":[{"internalType":"bytes32","name":"schemaId","type":"bytes32"},{"internalType":"uint64","name":"expirationDate","type":"uint64"},{"internalType":"bytes","name":"subject","type":"bytes"},{"internalType":"bytes","name":"attestationData","type":"bytes"}],"internalType":"struct AttestationPayload[]","name":"attestationsPayloads","type":"tuple[]"},{"internalType":"bytes[][]","name":"validationPayloads","type":"bytes[][]"}],"name":"bulkReplace","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"attestationIds","type":"bytes32[]"}],"name":"bulkRevoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAttester","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getModules","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"moduleRegistry","outputs":[{"internalType":"contract ModuleRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"modules","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"portalRegistry","outputs":[{"internalType":"contract PortalRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"attestationId","type":"bytes32"},{"components":[{"internalType":"bytes32","name":"schemaId","type":"bytes32"},{"internalType":"uint64","name":"expirationDate","type":"uint64"},{"internalType":"bytes","name":"subject","type":"bytes"},{"internalType":"bytes","name":"attestationData","type":"bytes"}],"internalType":"struct AttestationPayload","name":"attestationPayload","type":"tuple"},{"internalType":"bytes[]","name":"validationPayloads","type":"bytes[]"}],"name":"replace","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"attestationId","type":"bytes32"}],"name":"revoke","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060409080825234620003565762001f43803803809162000022828562000371565b83398101908281830312620003565780516001600160401b039290838111620003565782019281601f8501121562000356578351926020928285116200035b578460051b95875195620000788689018862000371565b8652848601908582988201019283116200035657908580939201905b8282106200033857505050620000ab910162000395565b600080548751966001600160a01b03969294929091338882167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08880a36001600160a81b0319163360ff60a01b1916178555519182116200032457680100000000000000008211620003245760025482600255808310620002fb575b509085929160028552858520855b838110620002e35750505050169060018060a01b0319948286600154161760015563bfa6658560e01b81528381600481865afa908115620002955790859183916200029f575b50168560045416176004558551916376f63ca960e11b83528383600481845afa92831562000295579085859284956200024a575b5060049416876003541617600355875193848092635bed64bb60e11b82525afa9283156200023e578193620001fa575b5050501690600554161760055551611b989081620003ab8239f35b9091809350813d831162000236575b62000215818362000371565b810103126200023357506200022a9062000395565b388080620001df565b80fd5b503d62000209565b508551903d90823e3d90fd5b9280929495508391503d83116200028d575b62000268818362000371565b810103126200028957600492918562000282869362000395565b94620001af565b8280fd5b503d6200025c565b87513d84823e3d90fd5b809250858092503d8311620002db575b620002bb818362000371565b81010312620002d757620002d0859162000395565b386200017b565b5080fd5b503d620002af565b82519095168582015587949187019160010162000135565b600285528286862091820191015b81811062000318575062000127565b85815560010162000309565b634e487b7160e01b84526041600452602484fd5b9281929362000348829362000395565b815201910185929162000094565b600080fd5b634e487b7160e01b600052604160045260246000fd5b601f909101601f19168101906001600160401b038211908210176200035b57604052565b51906001600160a01b0382168203620003565756fe608060408181526004918236101561001657600080fd5b60009260e08435811c92836301ffc9a7146112f05750826307432196146112a15782630b99354e146111d5578483633cc30e2a146110c2575082633f4ba83a146110275782634ada807614610dfa57848363523ba7ca14610d02575082635c975abb14610cdc578263715018a614610c8257826381b2248a14610c2a5782638388e22614610c0e5782638456cb5914610bae578263884fdff3146109d85782638da5cb5b146109af578263b2494df3146108e8578263b6664934146108be578263b75c7dc6146106c0578263b95459e414610696578263dfcf57d3146104095750838263ecdbb4fd146102dc57508163ed6d73f9146102b4578163f2fde38b146101df578163f3fef3a314610160575063f887ea401461013557600080fd5b3461015c578160031936011261015c5760015490516001600160a01b039091168152602090f35b5080fd5b919050346101db57806003193601126101db578282356001600160a01b0381169081900361015c57818080926101946116fd565b602435905af13d156101d6573d6101aa81611426565b906101b7845192836113f1565b81528460203d92013e5b156101ca578280f35b5162c0f29960e01b8152fd5b6101c1565b8280fd5b919050346101db5760203660031901126101db576001600160a01b038235818116939192908490036102b0576102136116fd565b831561025e575050600054826bffffffffffffffffffffffff60a01b821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8480fd5b9050346101db57826003193601126101db575490516001600160a01b03909116815260209150f35b8091846060600319360112610405576001600160401b03916024358381116102b05761030b9036908301611488565b926044359081116102b0576103239036908301611513565b6003546001600160a01b0391908216803b1561040157845163747129e560e11b8152918791839182908490829061035f9034908d8c85016118e9565b03925af180156103f7579086916103e3575b505081541692833b156102b0576103ae938592838551809781958294638ffa736b60e01b845280359084015260606024840152606483019061184a565b33604483015203925af19081156103da57506103c75750f35b6103d0906113c3565b6103d75780f35b80fd5b513d84823e3d90fd5b6103ec906113c3565b6102b0578487610371565b84513d88823e3d90fd5b8680fd5b5050fd5b9391508260031936011261015c578035926001600160401b0380851161069257366023860112156106925784830135602496610444826114fc565b96610451855198896113f1565b82885260209289848a019160081b8301019136831161068e578a01905b8282106105e2575050505086358281116105de5761048f9036908601611513565b91855b87518110156105da57828160051b890101516104ac611755565b838101428482515116106105ca57868151928184015160609485810151926105488b8b61ffff9560809587878201511660a0998960c08c85015194015116938c51958601528b8501528c840152868301528782015286815261050d816113d6565b8351908d8d8b5151168a5191338184015280835261052a8361138d565b8b5194610536866113a8565b8552840152898301528a820152611927565b5194519188835116968584015181850151908385870151169360c088880151970151169751998a528c8a01528d8901528701528501528301527f8f03b0d7a946efc76c0e46b24b178dc4c133154c8bcbb63a1b184d5e04e85dcd60c03393a360001981146105b857600101610492565b634e487b7160e01b8752601186528887fd5b865163716dcc3960e01b81528890fd5b8680f35b8580fd5b813603610100811261068957848851916105fb8361138d565b84358352601f190112610689578751916106148361135c565b61061f878501611412565b83528884013591821515830361068957838893846101009601526060808701358c830152608090818801359083015260a09061065c828901611592565b9083015260c0908188013590830152610676898801611592565b908201528382015281520191019061046e565b600080fd5b8880fd5b8380fd5b5050503461015c578160031936011261015c5760035490516001600160a01b039091168152602090f35b848285346101db5760208060031936011261069257600554825163181f78e960e31b815230858201526001600160a01b039690918690839060249082908b165afa9182156103f7579087939291879261076c575b5050015116330361075f57829382541691823b1561075a5783926024849284519586938492635bae3ee360e11b84528035908401525af19081156103da57506103c75750f35b505050fd5b516371f63e3160e01b8152fd5b91509192503d8087833e61078081836113f1565b81019083818303126104015780516001600160401b039182821161068e57019283830312610401578451926107b48461135c565b6107bd81611b0c565b84526107ca858201611b0c565b858501528581015182811161068e57810183601f8201121561068e578051906107f2826114fc565b916107ff895193846113f1565b808352878084019160051b830101918683116108ba5788809101915b8383106108a25750505050868501526060810151801515810361068e576060850152608081015182811161068e5783610855918301611b20565b608085015260a081015182811161068e5783610872918301611b20565b60a085015260c081015191821161089e5791610892918995949301611b20565b60c08201528780610714565b8780fd5b81906108ad84611b0c565b815201910190889061081b565b8b80fd5b5050503461015c578160031936011261015c5760055490516001600160a01b039091168152602090f35b8385346103d757806003193601126103d757908051918290600254918285526020809501809360026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9060005b818110610992575050508161094e9103826113f1565b83519485948186019282875251809352850193925b82811061097257505050500390f35b83516001600160a01b031685528695509381019392810192600101610963565b82546001600160a01b031684529288019260019283019201610938565b5050503461015c578160031936011261015c57905490516001600160a01b039091168152602090f35b909150366003190161012081126102b05761010013610689578251906109fd8261138d565b8235825236602319011261068957825191610a178361135c565b6001600160401b03602435818116810361068957845260443592831515840361068957602093848601526064358686015260606084358187015260a4359161ffff92838116810361068957608088015260a09460c4358689015260e43584811681036106895760c089015286820197885261010435858111610baa57610aa09036908301611513565b90610aa9611755565b85895151164211610b9c5750610b38908789518b81015190898d88830151908a60c08160808701511694860151950151169481519687015285015287840152608083015288820152878152610afd816113d6565b835190878b5151168c5190338c8301528b8252610b198261138d565b8d5193610b25856113a8565b84528b8401528c83015285820152611927565b519551928351169680840151908285015191846080870151169460c088880151970151169782519a8b528a015288015286015260808501528301527f8f03b0d7a946efc76c0e46b24b178dc4c133154c8bcbb63a1b184d5e04e85dcd60c03393a380f35b895163716dcc3960e01b8152fd5b8a80fd5b5050503461015c578160031936011261015c5760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891610bed6116fd565b610bf5611755565b835460ff60a01b1916600160a01b17845551338152a180f35b5050503461015c578160031936011261015c5760209051338152f35b509050346101db5760203660031901126101db57356002548110156101db5760026020935260018060a01b03907f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0154169051908152f35b84346103d757806003193601126103d757610c9b6116fd565b600080546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050503461015c578160031936011261015c5760ff6020925460a01c1690519015158152f35b808386346104055780600319360112610405576001600160401b039180358381116102b057610d3490369083016115ff565b926024359081116102b057610d4c903690830161167e565b6003546001600160a01b0391908216803b1561040157845163715d762560e11b81529187918391829084908290610d86908c8b8401611a54565b03925af180156103f757908691610de6575b505081541692833b156102b057610dcd938386809482519788958694859363a8e2812d60e01b855284015260448301906119ff565b33602483015203925af19081156103da57506103c75750f35b610def906113c3565b6102b0578487610d98565b848285346101db5760209182600319360112610692576001600160401b0381358181116105de57610e2e90369084016115a1565b600554845163181f78e960e31b815230858201526001600160a01b0398929392918890829060249082908d165afa92831561101d579189939188938a93610ed1575b5050500151163303610ec2578495825416803b156105de57610eaf9486809486519788958694859363256d403b60e11b85528401526024830190611ad8565b03925af19081156103da57506103c75750f35b5090516371f63e3160e01b8152fd5b9250925092503d8089843e610ee681846113f1565b820191878184031261068e57805190828211610ffd5701928383031261089e57855192610f128461135c565b610f1b81611b0c565b8452610f28888201611b0c565b8885015286810151828111610ffd57810183601f82011215610ffd57805190610f50826114fc565b91610f5d8a5193846113f1565b8083528a8084019160051b83010191868311611019578b809101915b83831061100157505050508785015260608101518015158103610ffd5760608501526080810151828111610ffd5783610fb3918301611b20565b608085015260a0810151828111610ffd5783610fd0918301611b20565b60a085015260c081015191821161068e5787928a9492610ff09201611b20565b60c0820152898080610e70565b8980fd5b819061100c84611b0c565b8152019101908b90610f79565b8c80fd5b86513d8a823e3d90fd5b509050346101db57826003193601126101db576110426116fd565b82549060ff8260a01c1615611088575060ff60a01b19168255513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b80838634610405576003199160603684011261075a576001600160401b0381358181116105de576110f690369084016115a1565b906024358181116104015761110e90369085016115ff565b9060443590811161040157611126903690850161167e565b6003546001600160a01b039190821690813b1561068e57889161115e9188519b8c8094819363715d762560e11b8352898c8401611a54565b03925af180156111cb576111b7575b86975083541690813b15610401578680946103ae6111a89860609489519a8b9889978896636ec4d4cb60e01b88528701526064860190611ad8565b918483030160248501526119ff565b9590966111c3906113c3565b94869061116d565b85513d89823e3d90fd5b5090506101203660031901126101db57602435906001600160401b03908183168093036102b057604435918215158093036105de5760a43561ffff9081811680910361089e5760e4359382851680950361068e5761010435848111610ffd576112419036908301611513565b611249611755565b8851976112558961135c565b88526020968789015260643589890152606092608435848a0152608089015260a09560c435878a015260c089015288519161128f8361138d565b80358352878301988952610aa9611755565b84828560031936011261015c576001600160401b038135818111610692576112cc9036908401611488565b90602435908111610692576112ed926112e791369101611513565b90611927565b80f35b859083346101db5760203660031901126101db573563ffffffff60e01b81168091036101db576020925063204cf90960e01b811490811561134b575b811561133a575b5015158152f35b6301ffc9a760e01b14905083611333565b6331c1afd560e01b8114915061132c565b60e081019081106001600160401b0382111761137757604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b0382111761137757604052565b608081019081106001600160401b0382111761137757604052565b6001600160401b03811161137757604052565b60c081019081106001600160401b0382111761137757604052565b90601f801991011681019081106001600160401b0382111761137757604052565b35906001600160401b038216820361068957565b6001600160401b03811161137757601f01601f191660200190565b81601f820112156106895780359061145882611426565b9261146660405194856113f1565b8284526020838301011161068957816000926020809301838601378301015290565b919060808382031261068957604051906114a1826113a8565b8193803583526114b360208201611412565b60208401526001600160401b0391604082013583811161068957816114d9918401611441565b60408501526060820135928311610689576060926114f79201611441565b910152565b6001600160401b0381116113775760051b60200190565b81601f820112156106895780359160209161152d846114fc565b9361153b60405195866113f1565b808552838086019160051b8301019280841161068957848301915b8483106115665750505050505090565b82356001600160401b03811161068957869161158784848094890101611441565b815201920191611556565b359061ffff8216820361068957565b9080601f830112156106895760209082356115bb816114fc565b936115c960405195866113f1565b818552838086019260051b820101928311610689578301905b8282106115f0575050505090565b813581529083019083016115e2565b81601f8201121561068957803591602091611619846114fc565b9361162760405195866113f1565b808552838086019160051b8301019280841161068957848301915b8483106116525750505050505090565b82356001600160401b03811161068957869161167384848094890101611488565b815201920191611642565b81601f8201121561068957803591602091611698846114fc565b936116a660405195866113f1565b808552838086019160051b8301019280841161068957848301915b8483106116d15750505050505090565b82356001600160401b0381116106895786916116f284848094890101611513565b8152019201916116c1565b6000546001600160a01b0316330361171157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b60ff60005460a01c1661176457565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b6002549081815260208091019160026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace916000905b8282106117e2575050505090565b83546001600160a01b0316855293840193600193840193909101906117d4565b60005b8381106118155750506000910152565b8181015183820152602001611805565b9060209161183e81518092818552858086019101611802565b601f01601f1916010190565b61189191815181526001600160401b03602083015116602082015260606118806040840151608060408501526080840190611825565b920151906060818403910152611825565b90565b90815180825260208092019182818360051b82019501936000915b8483106118bf5750505050505090565b90919293949584806118d983856001950387528a51611825565b98019301930191949392906118af565b93929161192290611914606093608088526119066080890161179c565b9088820360208a015261184a565b908682036040880152611894565b930152565b6003546000926001600160a01b0391821690813b156102b0576119668592839260405194858094819363747129e560e11b835234908b600485016118e9565b03925af180156119f4576119e1575b506004541690813b156101db576119ad839283926040519485809481936362fa3d4560e01b835260406004840152604483019061184a565b33602483015203925af180156119d6576119c5575050565b6119cf82916113c3565b6103d75750565b6040513d84823e3d90fd5b6119ed909391936113c3565b9138611975565b6040513d86823e3d90fd5b90815180825260208092019182818360051b82019501936000915b848310611a2a5750505050505090565b9091929394958480611a4483856001950387528a5161184a565b9801930193019194939290611a1a565b9060608252611a77611a686060840161179c565b602092848203848601526119ff565b9160408184039101528251908183528083019281808460051b8301019501936000915b848310611aaa5750505050505090565b9091929394958480611ac8600193601f198682030187528a51611894565b9801930193019194939290611a9a565b90815180825260208080930193019160005b828110611af8575050505090565b835185529381019392810192600101611aea565b51906001600160a01b038216820361068957565b81601f82011215610689578051611b3681611426565b92611b4460405194856113f1565b8184526020828401011161068957611891916020808501910161180256fea2646970667358221220e2f3fc766c6dae100bba11ad4a32242520d39b346bbfffe255474579402e59e764736f6c6343000815003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000004d3a380a03f3a18a5dc44b01119839d8674a552e000000000000000000000000000000000000000000000000000000000000000100000000000000000000000089c00995a44fc64802821aaf63e49e1807255afb
Deployed Bytecode
0x608060408181526004918236101561001657600080fd5b60009260e08435811c92836301ffc9a7146112f05750826307432196146112a15782630b99354e146111d5578483633cc30e2a146110c2575082633f4ba83a146110275782634ada807614610dfa57848363523ba7ca14610d02575082635c975abb14610cdc578263715018a614610c8257826381b2248a14610c2a5782638388e22614610c0e5782638456cb5914610bae578263884fdff3146109d85782638da5cb5b146109af578263b2494df3146108e8578263b6664934146108be578263b75c7dc6146106c0578263b95459e414610696578263dfcf57d3146104095750838263ecdbb4fd146102dc57508163ed6d73f9146102b4578163f2fde38b146101df578163f3fef3a314610160575063f887ea401461013557600080fd5b3461015c578160031936011261015c5760015490516001600160a01b039091168152602090f35b5080fd5b919050346101db57806003193601126101db578282356001600160a01b0381169081900361015c57818080926101946116fd565b602435905af13d156101d6573d6101aa81611426565b906101b7845192836113f1565b81528460203d92013e5b156101ca578280f35b5162c0f29960e01b8152fd5b6101c1565b8280fd5b919050346101db5760203660031901126101db576001600160a01b038235818116939192908490036102b0576102136116fd565b831561025e575050600054826bffffffffffffffffffffffff60a01b821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8480fd5b9050346101db57826003193601126101db575490516001600160a01b03909116815260209150f35b8091846060600319360112610405576001600160401b03916024358381116102b05761030b9036908301611488565b926044359081116102b0576103239036908301611513565b6003546001600160a01b0391908216803b1561040157845163747129e560e11b8152918791839182908490829061035f9034908d8c85016118e9565b03925af180156103f7579086916103e3575b505081541692833b156102b0576103ae938592838551809781958294638ffa736b60e01b845280359084015260606024840152606483019061184a565b33604483015203925af19081156103da57506103c75750f35b6103d0906113c3565b6103d75780f35b80fd5b513d84823e3d90fd5b6103ec906113c3565b6102b0578487610371565b84513d88823e3d90fd5b8680fd5b5050fd5b9391508260031936011261015c578035926001600160401b0380851161069257366023860112156106925784830135602496610444826114fc565b96610451855198896113f1565b82885260209289848a019160081b8301019136831161068e578a01905b8282106105e2575050505086358281116105de5761048f9036908601611513565b91855b87518110156105da57828160051b890101516104ac611755565b838101428482515116106105ca57868151928184015160609485810151926105488b8b61ffff9560809587878201511660a0998960c08c85015194015116938c51958601528b8501528c840152868301528782015286815261050d816113d6565b8351908d8d8b5151168a5191338184015280835261052a8361138d565b8b5194610536866113a8565b8552840152898301528a820152611927565b5194519188835116968584015181850151908385870151169360c088880151970151169751998a528c8a01528d8901528701528501528301527f8f03b0d7a946efc76c0e46b24b178dc4c133154c8bcbb63a1b184d5e04e85dcd60c03393a360001981146105b857600101610492565b634e487b7160e01b8752601186528887fd5b865163716dcc3960e01b81528890fd5b8680f35b8580fd5b813603610100811261068957848851916105fb8361138d565b84358352601f190112610689578751916106148361135c565b61061f878501611412565b83528884013591821515830361068957838893846101009601526060808701358c830152608090818801359083015260a09061065c828901611592565b9083015260c0908188013590830152610676898801611592565b908201528382015281520191019061046e565b600080fd5b8880fd5b8380fd5b5050503461015c578160031936011261015c5760035490516001600160a01b039091168152602090f35b848285346101db5760208060031936011261069257600554825163181f78e960e31b815230858201526001600160a01b039690918690839060249082908b165afa9182156103f7579087939291879261076c575b5050015116330361075f57829382541691823b1561075a5783926024849284519586938492635bae3ee360e11b84528035908401525af19081156103da57506103c75750f35b505050fd5b516371f63e3160e01b8152fd5b91509192503d8087833e61078081836113f1565b81019083818303126104015780516001600160401b039182821161068e57019283830312610401578451926107b48461135c565b6107bd81611b0c565b84526107ca858201611b0c565b858501528581015182811161068e57810183601f8201121561068e578051906107f2826114fc565b916107ff895193846113f1565b808352878084019160051b830101918683116108ba5788809101915b8383106108a25750505050868501526060810151801515810361068e576060850152608081015182811161068e5783610855918301611b20565b608085015260a081015182811161068e5783610872918301611b20565b60a085015260c081015191821161089e5791610892918995949301611b20565b60c08201528780610714565b8780fd5b81906108ad84611b0c565b815201910190889061081b565b8b80fd5b5050503461015c578160031936011261015c5760055490516001600160a01b039091168152602090f35b8385346103d757806003193601126103d757908051918290600254918285526020809501809360026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9060005b818110610992575050508161094e9103826113f1565b83519485948186019282875251809352850193925b82811061097257505050500390f35b83516001600160a01b031685528695509381019392810192600101610963565b82546001600160a01b031684529288019260019283019201610938565b5050503461015c578160031936011261015c57905490516001600160a01b039091168152602090f35b909150366003190161012081126102b05761010013610689578251906109fd8261138d565b8235825236602319011261068957825191610a178361135c565b6001600160401b03602435818116810361068957845260443592831515840361068957602093848601526064358686015260606084358187015260a4359161ffff92838116810361068957608088015260a09460c4358689015260e43584811681036106895760c089015286820197885261010435858111610baa57610aa09036908301611513565b90610aa9611755565b85895151164211610b9c5750610b38908789518b81015190898d88830151908a60c08160808701511694860151950151169481519687015285015287840152608083015288820152878152610afd816113d6565b835190878b5151168c5190338c8301528b8252610b198261138d565b8d5193610b25856113a8565b84528b8401528c83015285820152611927565b519551928351169680840151908285015191846080870151169460c088880151970151169782519a8b528a015288015286015260808501528301527f8f03b0d7a946efc76c0e46b24b178dc4c133154c8bcbb63a1b184d5e04e85dcd60c03393a380f35b895163716dcc3960e01b8152fd5b8a80fd5b5050503461015c578160031936011261015c5760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891610bed6116fd565b610bf5611755565b835460ff60a01b1916600160a01b17845551338152a180f35b5050503461015c578160031936011261015c5760209051338152f35b509050346101db5760203660031901126101db57356002548110156101db5760026020935260018060a01b03907f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0154169051908152f35b84346103d757806003193601126103d757610c9b6116fd565b600080546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050503461015c578160031936011261015c5760ff6020925460a01c1690519015158152f35b808386346104055780600319360112610405576001600160401b039180358381116102b057610d3490369083016115ff565b926024359081116102b057610d4c903690830161167e565b6003546001600160a01b0391908216803b1561040157845163715d762560e11b81529187918391829084908290610d86908c8b8401611a54565b03925af180156103f757908691610de6575b505081541692833b156102b057610dcd938386809482519788958694859363a8e2812d60e01b855284015260448301906119ff565b33602483015203925af19081156103da57506103c75750f35b610def906113c3565b6102b0578487610d98565b848285346101db5760209182600319360112610692576001600160401b0381358181116105de57610e2e90369084016115a1565b600554845163181f78e960e31b815230858201526001600160a01b0398929392918890829060249082908d165afa92831561101d579189939188938a93610ed1575b5050500151163303610ec2578495825416803b156105de57610eaf9486809486519788958694859363256d403b60e11b85528401526024830190611ad8565b03925af19081156103da57506103c75750f35b5090516371f63e3160e01b8152fd5b9250925092503d8089843e610ee681846113f1565b820191878184031261068e57805190828211610ffd5701928383031261089e57855192610f128461135c565b610f1b81611b0c565b8452610f28888201611b0c565b8885015286810151828111610ffd57810183601f82011215610ffd57805190610f50826114fc565b91610f5d8a5193846113f1565b8083528a8084019160051b83010191868311611019578b809101915b83831061100157505050508785015260608101518015158103610ffd5760608501526080810151828111610ffd5783610fb3918301611b20565b608085015260a0810151828111610ffd5783610fd0918301611b20565b60a085015260c081015191821161068e5787928a9492610ff09201611b20565b60c0820152898080610e70565b8980fd5b819061100c84611b0c565b8152019101908b90610f79565b8c80fd5b86513d8a823e3d90fd5b509050346101db57826003193601126101db576110426116fd565b82549060ff8260a01c1615611088575060ff60a01b19168255513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b80838634610405576003199160603684011261075a576001600160401b0381358181116105de576110f690369084016115a1565b906024358181116104015761110e90369085016115ff565b9060443590811161040157611126903690850161167e565b6003546001600160a01b039190821690813b1561068e57889161115e9188519b8c8094819363715d762560e11b8352898c8401611a54565b03925af180156111cb576111b7575b86975083541690813b15610401578680946103ae6111a89860609489519a8b9889978896636ec4d4cb60e01b88528701526064860190611ad8565b918483030160248501526119ff565b9590966111c3906113c3565b94869061116d565b85513d89823e3d90fd5b5090506101203660031901126101db57602435906001600160401b03908183168093036102b057604435918215158093036105de5760a43561ffff9081811680910361089e5760e4359382851680950361068e5761010435848111610ffd576112419036908301611513565b611249611755565b8851976112558961135c565b88526020968789015260643589890152606092608435848a0152608089015260a09560c435878a015260c089015288519161128f8361138d565b80358352878301988952610aa9611755565b84828560031936011261015c576001600160401b038135818111610692576112cc9036908401611488565b90602435908111610692576112ed926112e791369101611513565b90611927565b80f35b859083346101db5760203660031901126101db573563ffffffff60e01b81168091036101db576020925063204cf90960e01b811490811561134b575b811561133a575b5015158152f35b6301ffc9a760e01b14905083611333565b6331c1afd560e01b8114915061132c565b60e081019081106001600160401b0382111761137757604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b0382111761137757604052565b608081019081106001600160401b0382111761137757604052565b6001600160401b03811161137757604052565b60c081019081106001600160401b0382111761137757604052565b90601f801991011681019081106001600160401b0382111761137757604052565b35906001600160401b038216820361068957565b6001600160401b03811161137757601f01601f191660200190565b81601f820112156106895780359061145882611426565b9261146660405194856113f1565b8284526020838301011161068957816000926020809301838601378301015290565b919060808382031261068957604051906114a1826113a8565b8193803583526114b360208201611412565b60208401526001600160401b0391604082013583811161068957816114d9918401611441565b60408501526060820135928311610689576060926114f79201611441565b910152565b6001600160401b0381116113775760051b60200190565b81601f820112156106895780359160209161152d846114fc565b9361153b60405195866113f1565b808552838086019160051b8301019280841161068957848301915b8483106115665750505050505090565b82356001600160401b03811161068957869161158784848094890101611441565b815201920191611556565b359061ffff8216820361068957565b9080601f830112156106895760209082356115bb816114fc565b936115c960405195866113f1565b818552838086019260051b820101928311610689578301905b8282106115f0575050505090565b813581529083019083016115e2565b81601f8201121561068957803591602091611619846114fc565b9361162760405195866113f1565b808552838086019160051b8301019280841161068957848301915b8483106116525750505050505090565b82356001600160401b03811161068957869161167384848094890101611488565b815201920191611642565b81601f8201121561068957803591602091611698846114fc565b936116a660405195866113f1565b808552838086019160051b8301019280841161068957848301915b8483106116d15750505050505090565b82356001600160401b0381116106895786916116f284848094890101611513565b8152019201916116c1565b6000546001600160a01b0316330361171157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b60ff60005460a01c1661176457565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b6002549081815260208091019160026000527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace916000905b8282106117e2575050505090565b83546001600160a01b0316855293840193600193840193909101906117d4565b60005b8381106118155750506000910152565b8181015183820152602001611805565b9060209161183e81518092818552858086019101611802565b601f01601f1916010190565b61189191815181526001600160401b03602083015116602082015260606118806040840151608060408501526080840190611825565b920151906060818403910152611825565b90565b90815180825260208092019182818360051b82019501936000915b8483106118bf5750505050505090565b90919293949584806118d983856001950387528a51611825565b98019301930191949392906118af565b93929161192290611914606093608088526119066080890161179c565b9088820360208a015261184a565b908682036040880152611894565b930152565b6003546000926001600160a01b0391821690813b156102b0576119668592839260405194858094819363747129e560e11b835234908b600485016118e9565b03925af180156119f4576119e1575b506004541690813b156101db576119ad839283926040519485809481936362fa3d4560e01b835260406004840152604483019061184a565b33602483015203925af180156119d6576119c5575050565b6119cf82916113c3565b6103d75750565b6040513d84823e3d90fd5b6119ed909391936113c3565b9138611975565b6040513d86823e3d90fd5b90815180825260208092019182818360051b82019501936000915b848310611a2a5750505050505090565b9091929394958480611a4483856001950387528a5161184a565b9801930193019194939290611a1a565b9060608252611a77611a686060840161179c565b602092848203848601526119ff565b9160408184039101528251908183528083019281808460051b8301019501936000915b848310611aaa5750505050505090565b9091929394958480611ac8600193601f198682030187528a51611894565b9801930193019194939290611a9a565b90815180825260208080930193019160005b828110611af8575050505090565b835185529381019392810192600101611aea565b51906001600160a01b038216820361068957565b81601f82011215610689578051611b3681611426565b92611b4460405194856113f1565b8184526020828401011161068957611891916020808501910161180256fea2646970667358221220e2f3fc766c6dae100bba11ad4a32242520d39b346bbfffe255474579402e59e764736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000004d3a380a03f3a18a5dc44b01119839d8674a552e000000000000000000000000000000000000000000000000000000000000000100000000000000000000000089c00995a44fc64802821aaf63e49e1807255afb
-----Decoded View---------------
Arg [0] : modules (address[]): 0x89C00995A44fC64802821AAF63E49E1807255Afb
Arg [1] : router (address): 0x4d3a380A03f3a18A5dC44b01119839D8674a552E
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000004d3a380a03f3a18a5dc44b01119839d8674a552e
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 00000000000000000000000089c00995a44fc64802821aaf63e49e1807255afb
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.