import { ethers as EthersT } from "ethers"; // version "0.10.0" export const ACLInterfaceVersion = "0.10.0"; export const ACLPartialInterface: EthersT.Interface = new EthersT.Interface([ { inputs: [], stateMutability: "nonpayable", type: "constructor", }, { inputs: [ { internalType: "address", name: "account", type: "address", }, ], name: "AccountAlreadyBlocked", type: "error", }, { inputs: [ { internalType: "address", name: "account", type: "address", }, ], name: "AccountNotBlocked", type: "error", }, { inputs: [ { internalType: "address", name: "target", type: "address", }, ], name: "AddressEmptyCode", type: "error", }, { inputs: [ { internalType: "address", name: "delegator", type: "address", }, { internalType: "address", name: "delegate", type: "address", }, { internalType: "address", name: "contractAddress", type: "address", }, { internalType: "uint256", name: "blockNumber", type: "uint256", }, ], name: "AlreadyDelegatedOrRevokedInSameBlock", type: "error", }, { inputs: [ { internalType: "address", name: "contractAddress", type: "address", }, ], name: "DelegateCannotBeContractAddress", type: "error", }, { inputs: [ { internalType: "address", name: "implementation", type: "address", }, ], name: "ERC1967InvalidImplementation", type: "error", }, { inputs: [], name: "ERC1967NonPayable", type: "error", }, { inputs: [], name: "EnforcedPause", type: "error", }, { inputs: [], name: "ExpectedPause", type: "error", }, { inputs: [ { internalType: "address", name: "delegator", type: "address", }, { internalType: "address", name: "delegate", type: "address", }, { internalType: "address", name: "contractAddress", type: "address", }, { internalType: "uint256", name: "expirationDate", type: "uint256", }, ], name: "ExpirationDateAlreadySetToSameValue", type: "error", }, { inputs: [], name: "ExpirationDateBeforeOneHour", type: "error", }, { inputs: [], name: "FailedCall", type: "error", }, { inputs: [], name: "HandlesListIsEmpty", type: "error", }, { inputs: [], name: "InvalidInitialization", type: "error", }, { inputs: [ { internalType: "address", name: "delegator", type: "address", }, { internalType: "address", name: "delegate", type: "address", }, { internalType: "address", name: "contractAddress", type: "address", }, ], name: "NotDelegatedYet", type: "error", }, { inputs: [], name: "NotInitializing", type: "error", }, { inputs: [], name: "NotInitializingFromEmptyProxy", type: "error", }, { inputs: [ { internalType: "address", name: "sender", type: "address", }, ], name: "NotPauser", type: "error", }, { inputs: [ { internalType: "address", name: "owner", type: "address", }, ], name: "OwnableInvalidOwner", type: "error", }, { inputs: [ { internalType: "address", name: "account", type: "address", }, ], name: "OwnableUnauthorizedAccount", type: "error", }, { inputs: [ { internalType: "address", name: "contractAddress", type: "address", }, ], name: "SenderCannotBeContractAddress", type: "error", }, { inputs: [ { internalType: "address", name: "delegate", type: "address", }, ], name: "SenderCannotBeDelegate", type: "error", }, { inputs: [ { internalType: "address", name: "sender", type: "address", }, ], name: "SenderDenied", type: "error", }, { inputs: [ { internalType: "address", name: "sender", type: "address", }, ], name: "SenderNotAllowed", type: "error", }, { inputs: [], name: "UUPSUnauthorizedCallContext", type: "error", }, { inputs: [ { internalType: "bytes32", name: "slot", type: "bytes32", }, ], name: "UUPSUnsupportedProxiableUUID", type: "error", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "caller", type: "address", }, { indexed: true, internalType: "address", name: "account", type: "address", }, { indexed: false, internalType: "bytes32", name: "handle", type: "bytes32", }, ], name: "Allowed", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "caller", type: "address", }, { indexed: false, internalType: "bytes32[]", name: "handlesList", type: "bytes32[]", }, ], name: "AllowedForDecryption", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "account", type: "address", }, ], name: "BlockedAccount", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "delegator", type: "address", }, { indexed: true, internalType: "address", name: "delegate", type: "address", }, { indexed: false, internalType: "address", name: "contractAddress", type: "address", }, { indexed: false, internalType: "uint64", name: "delegationCounter", type: "uint64", }, { indexed: false, internalType: "uint64", name: "oldExpirationDate", type: "uint64", }, { indexed: false, internalType: "uint64", name: "newExpirationDate", type: "uint64", }, ], name: "DelegatedForUserDecryption", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "uint64", name: "version", type: "uint64", }, ], name: "Initialized", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "previousOwner", type: "address", }, { indexed: true, internalType: "address", name: "newOwner", type: "address", }, ], name: "OwnershipTransferStarted", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "previousOwner", type: "address", }, { indexed: true, internalType: "address", name: "newOwner", type: "address", }, ], name: "OwnershipTransferred", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "address", name: "account", type: "address", }, ], name: "Paused", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "delegator", type: "address", }, { indexed: true, internalType: "address", name: "delegate", type: "address", }, { indexed: false, internalType: "address", name: "contractAddress", type: "address", }, { indexed: false, internalType: "uint64", name: "delegationCounter", type: "uint64", }, { indexed: false, internalType: "uint64", name: "oldExpirationDate", type: "uint64", }, ], name: "RevokedDelegationForUserDecryption", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "account", type: "address", }, ], name: "UnblockedAccount", type: "event", }, { anonymous: false, inputs: [ { indexed: false, internalType: "address", name: "account", type: "address", }, ], name: "Unpaused", type: "event", }, { anonymous: false, inputs: [ { indexed: true, internalType: "address", name: "implementation", type: "address", }, ], name: "Upgraded", type: "event", }, { inputs: [], name: "UPGRADE_INTERFACE_VERSION", outputs: [ { internalType: "string", name: "", type: "string", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "acceptOwnership", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "bytes32", name: "handle", type: "bytes32", }, { internalType: "address", name: "account", type: "address", }, ], name: "allow", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "bytes32[]", name: "handlesList", type: "bytes32[]", }, ], name: "allowForDecryption", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "bytes32", name: "handle", type: "bytes32", }, { internalType: "address", name: "account", type: "address", }, ], name: "allowTransient", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "bytes32", name: "handle", type: "bytes32", }, { internalType: "address", name: "account", type: "address", }, ], name: "allowedTransient", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "account", type: "address", }, ], name: "blockAccount", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [], name: "cleanTransientStorage", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "delegate", type: "address", }, { internalType: "address", name: "contractAddress", type: "address", }, { internalType: "uint64", name: "expirationDate", type: "uint64", }, ], name: "delegateForUserDecryption", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [], name: "getFHEVMExecutorAddress", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "getPauserSetAddress", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "delegator", type: "address", }, { internalType: "address", name: "delegate", type: "address", }, { internalType: "address", name: "contractAddress", type: "address", }, ], name: "getUserDecryptionDelegationExpirationDate", outputs: [ { internalType: "uint64", name: "", type: "uint64", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "getVersion", outputs: [ { internalType: "string", name: "", type: "string", }, ], stateMutability: "pure", type: "function", }, { inputs: [], name: "initializeFromEmptyProxy", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "account", type: "address", }, ], name: "isAccountDenied", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "bytes32", name: "handle", type: "bytes32", }, { internalType: "address", name: "account", type: "address", }, ], name: "isAllowed", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "bytes32", name: "handle", type: "bytes32", }, ], name: "isAllowedForDecryption", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "delegator", type: "address", }, { internalType: "address", name: "delegate", type: "address", }, { internalType: "address", name: "contractAddress", type: "address", }, { internalType: "bytes32", name: "handle", type: "bytes32", }, ], name: "isHandleDelegatedForUserDecryption", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "address", name: "account", type: "address", }, ], name: "isPauser", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "bytes[]", name: "data", type: "bytes[]", }, ], name: "multicall", outputs: [ { internalType: "bytes[]", name: "results", type: "bytes[]", }, ], stateMutability: "nonpayable", 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: "pendingOwner", outputs: [ { internalType: "address", name: "", type: "address", }, ], stateMutability: "view", type: "function", }, { inputs: [ { internalType: "bytes32", name: "handle", type: "bytes32", }, { internalType: "address", name: "account", type: "address", }, ], name: "persistAllowed", outputs: [ { internalType: "bool", name: "", type: "bool", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "proxiableUUID", outputs: [ { internalType: "bytes32", name: "", type: "bytes32", }, ], stateMutability: "view", type: "function", }, { inputs: [], name: "reinitializeV2", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [], name: "renounceOwnership", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "delegate", type: "address", }, { internalType: "address", name: "contractAddress", type: "address", }, ], name: "revokeDelegationForUserDecryption", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "newOwner", type: "address", }, ], name: "transferOwnership", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "account", type: "address", }, ], name: "unblockAccount", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [], name: "unpause", outputs: [], stateMutability: "nonpayable", type: "function", }, { inputs: [ { internalType: "address", name: "newImplementation", type: "address", }, { internalType: "bytes", name: "data", type: "bytes", }, ], name: "upgradeToAndCall", outputs: [], stateMutability: "payable", type: "function", }, ]);