import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../common.js"; export declare namespace IE3RefundManager { type WorkValueAllocationStruct = { committeeFormationBps: BigNumberish; dkgBps: BigNumberish; decryptionBps: BigNumberish; protocolBps: BigNumberish; successSlashedNodeBps: BigNumberish; }; type WorkValueAllocationStructOutput = [committeeFormationBps: bigint, dkgBps: bigint, decryptionBps: bigint, protocolBps: bigint, successSlashedNodeBps: bigint] & { committeeFormationBps: bigint; dkgBps: bigint; decryptionBps: bigint; protocolBps: bigint; successSlashedNodeBps: bigint; }; type RefundDistributionStruct = { requesterAmount: BigNumberish; honestNodeAmount: BigNumberish; protocolAmount: BigNumberish; totalSlashed: BigNumberish; honestNodeCount: BigNumberish; calculated: boolean; feeToken: AddressLike; originalPayment: BigNumberish; perNodeAmount: BigNumberish; }; type RefundDistributionStructOutput = [requesterAmount: bigint, honestNodeAmount: bigint, protocolAmount: bigint, totalSlashed: bigint, honestNodeCount: bigint, calculated: boolean, feeToken: string, originalPayment: bigint, perNodeAmount: bigint] & { requesterAmount: bigint; honestNodeAmount: bigint; protocolAmount: bigint; totalSlashed: bigint; honestNodeCount: bigint; calculated: boolean; feeToken: string; originalPayment: bigint; perNodeAmount: bigint; }; } export interface E3RefundManagerInterface extends Interface { getFunction(nameOrSignature: "MAX_PROTOCOL_BPS" | "acceptOwnership" | "bondingRegistry" | "calculateRefund" | "calculateWorkValue" | "claimHonestNodeReward" | "claimRequesterRefund" | "claimSlashedFundsOnSuccess" | "claimSlashedFundsOnSuccessBatch" | "distributeSlashedFundsOnSuccess" | "enclave" | "escrowSlashedFunds" | "feeToken" | "getRefundDistribution" | "getWorkAllocation" | "hasClaimed" | "initialize" | "owner" | "pendingOwner" | "pendingSlashedFundsOnSuccess" | "pendingTreasuryClaim" | "renounceOwnership" | "setEnclave" | "setTreasury" | "setWorkAllocation" | "supportsInterface" | "transferOwnership" | "treasury" | "treasuryClaim" | "withdrawOrphanedSlashedFunds"): FunctionFragment; getEvent(nameOrSignatureOrTopic: "EnclaveSet" | "EnclaveUpdated" | "Initialized" | "OrphanedSlashedFundsWithdrawn" | "OwnershipTransferStarted" | "OwnershipTransferred" | "RefundClaimed" | "RefundDistributionCalculated" | "SlashedFundsApplied" | "SlashedFundsClaimed" | "SlashedFundsCredited" | "SlashedFundsDistributedOnSuccess" | "SlashedFundsEscrowed" | "TreasurySet" | "TreasurySlashedClaimed" | "TreasurySlashedCredited" | "TreasuryUpdated" | "WorkAllocationUpdated"): EventFragment; encodeFunctionData(functionFragment: 'MAX_PROTOCOL_BPS', values?: undefined): string; encodeFunctionData(functionFragment: 'acceptOwnership', values?: undefined): string; encodeFunctionData(functionFragment: 'bondingRegistry', values?: undefined): string; encodeFunctionData(functionFragment: 'calculateRefund', values: [BigNumberish, BigNumberish, AddressLike[], AddressLike]): string; encodeFunctionData(functionFragment: 'calculateWorkValue', values: [BigNumberish]): string; encodeFunctionData(functionFragment: 'claimHonestNodeReward', values: [BigNumberish]): string; encodeFunctionData(functionFragment: 'claimRequesterRefund', values: [BigNumberish]): string; encodeFunctionData(functionFragment: 'claimSlashedFundsOnSuccess', values: [BigNumberish]): string; encodeFunctionData(functionFragment: 'claimSlashedFundsOnSuccessBatch', values: [BigNumberish[]]): string; encodeFunctionData(functionFragment: 'distributeSlashedFundsOnSuccess', values: [BigNumberish, AddressLike[], AddressLike]): string; encodeFunctionData(functionFragment: 'enclave', values?: undefined): string; encodeFunctionData(functionFragment: 'escrowSlashedFunds', values: [BigNumberish, BigNumberish]): string; encodeFunctionData(functionFragment: 'feeToken', values?: undefined): string; encodeFunctionData(functionFragment: 'getRefundDistribution', values: [BigNumberish]): string; encodeFunctionData(functionFragment: 'getWorkAllocation', values?: undefined): string; encodeFunctionData(functionFragment: 'hasClaimed', values: [BigNumberish, AddressLike]): string; encodeFunctionData(functionFragment: 'initialize', values: [AddressLike, AddressLike, AddressLike]): string; encodeFunctionData(functionFragment: 'owner', values?: undefined): string; encodeFunctionData(functionFragment: 'pendingOwner', values?: undefined): string; encodeFunctionData(functionFragment: 'pendingSlashedFundsOnSuccess', values: [BigNumberish, AddressLike]): string; encodeFunctionData(functionFragment: 'pendingTreasuryClaim', values: [AddressLike, AddressLike]): string; encodeFunctionData(functionFragment: 'renounceOwnership', values?: undefined): string; encodeFunctionData(functionFragment: 'setEnclave', values: [AddressLike]): string; encodeFunctionData(functionFragment: 'setTreasury', values: [AddressLike]): string; encodeFunctionData(functionFragment: 'setWorkAllocation', values: [IE3RefundManager.WorkValueAllocationStruct]): string; encodeFunctionData(functionFragment: 'supportsInterface', values: [BytesLike]): string; encodeFunctionData(functionFragment: 'transferOwnership', values: [AddressLike]): string; encodeFunctionData(functionFragment: 'treasury', values?: undefined): string; encodeFunctionData(functionFragment: 'treasuryClaim', values: [AddressLike]): string; encodeFunctionData(functionFragment: 'withdrawOrphanedSlashedFunds', values: [BigNumberish, AddressLike]): string; decodeFunctionResult(functionFragment: 'MAX_PROTOCOL_BPS', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'acceptOwnership', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'bondingRegistry', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'calculateRefund', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'calculateWorkValue', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'claimHonestNodeReward', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'claimRequesterRefund', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'claimSlashedFundsOnSuccess', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'claimSlashedFundsOnSuccessBatch', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'distributeSlashedFundsOnSuccess', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'enclave', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'escrowSlashedFunds', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'feeToken', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'getRefundDistribution', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'getWorkAllocation', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'hasClaimed', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'initialize', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'owner', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'pendingOwner', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'pendingSlashedFundsOnSuccess', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'pendingTreasuryClaim', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'renounceOwnership', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'setEnclave', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'setTreasury', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'setWorkAllocation', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'supportsInterface', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'transferOwnership', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'treasury', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'treasuryClaim', data: BytesLike): Result; decodeFunctionResult(functionFragment: 'withdrawOrphanedSlashedFunds', data: BytesLike): Result; } export declare namespace EnclaveSetEvent { type InputTuple = [enclave: AddressLike]; type OutputTuple = [enclave: string]; interface OutputObject { enclave: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace EnclaveUpdatedEvent { type InputTuple = [previous: AddressLike, next: AddressLike]; type OutputTuple = [previous: string, next: string]; interface OutputObject { previous: string; next: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace InitializedEvent { type InputTuple = [version: BigNumberish]; type OutputTuple = [version: bigint]; interface OutputObject { version: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace OrphanedSlashedFundsWithdrawnEvent { type InputTuple = [e3Id: BigNumberish, amount: BigNumberish]; type OutputTuple = [e3Id: bigint, amount: bigint]; interface OutputObject { e3Id: bigint; amount: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace OwnershipTransferStartedEvent { type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; type OutputTuple = [previousOwner: string, newOwner: string]; interface OutputObject { previousOwner: string; newOwner: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace OwnershipTransferredEvent { type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike]; type OutputTuple = [previousOwner: string, newOwner: string]; interface OutputObject { previousOwner: string; newOwner: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace RefundClaimedEvent { type InputTuple = [e3Id: BigNumberish, claimant: AddressLike, amount: BigNumberish, claimType: BytesLike]; type OutputTuple = [e3Id: bigint, claimant: string, amount: bigint, claimType: string]; interface OutputObject { e3Id: bigint; claimant: string; amount: bigint; claimType: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace RefundDistributionCalculatedEvent { type InputTuple = [e3Id: BigNumberish, requesterAmount: BigNumberish, honestNodeAmount: BigNumberish, protocolAmount: BigNumberish, totalSlashed: BigNumberish]; type OutputTuple = [e3Id: bigint, requesterAmount: bigint, honestNodeAmount: bigint, protocolAmount: bigint, totalSlashed: bigint]; interface OutputObject { e3Id: bigint; requesterAmount: bigint; honestNodeAmount: bigint; protocolAmount: bigint; totalSlashed: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace SlashedFundsAppliedEvent { type InputTuple = [e3Id: BigNumberish, toRequester: BigNumberish, toHonestNodes: BigNumberish]; type OutputTuple = [e3Id: bigint, toRequester: bigint, toHonestNodes: bigint]; interface OutputObject { e3Id: bigint; toRequester: bigint; toHonestNodes: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace SlashedFundsClaimedEvent { type InputTuple = [e3Id: BigNumberish, account: AddressLike, token: AddressLike, amount: BigNumberish]; type OutputTuple = [e3Id: bigint, account: string, token: string, amount: bigint]; interface OutputObject { e3Id: bigint; account: string; token: string; amount: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace SlashedFundsCreditedEvent { type InputTuple = [e3Id: BigNumberish, account: AddressLike, token: AddressLike, amount: BigNumberish]; type OutputTuple = [e3Id: bigint, account: string, token: string, amount: bigint]; interface OutputObject { e3Id: bigint; account: string; token: string; amount: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace SlashedFundsDistributedOnSuccessEvent { type InputTuple = [e3Id: BigNumberish, toNodes: BigNumberish, toProtocol: BigNumberish]; type OutputTuple = [e3Id: bigint, toNodes: bigint, toProtocol: bigint]; interface OutputObject { e3Id: bigint; toNodes: bigint; toProtocol: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace SlashedFundsEscrowedEvent { type InputTuple = [e3Id: BigNumberish, amount: BigNumberish]; type OutputTuple = [e3Id: bigint, amount: bigint]; interface OutputObject { e3Id: bigint; amount: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace TreasurySetEvent { type InputTuple = [treasury: AddressLike]; type OutputTuple = [treasury: string]; interface OutputObject { treasury: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace TreasurySlashedClaimedEvent { type InputTuple = [treasury: AddressLike, token: AddressLike, amount: BigNumberish]; type OutputTuple = [treasury: string, token: string, amount: bigint]; interface OutputObject { treasury: string; token: string; amount: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace TreasurySlashedCreditedEvent { type InputTuple = [treasury: AddressLike, token: AddressLike, amount: BigNumberish]; type OutputTuple = [treasury: string, token: string, amount: bigint]; interface OutputObject { treasury: string; token: string; amount: bigint; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace TreasuryUpdatedEvent { type InputTuple = [previous: AddressLike, next: AddressLike]; type OutputTuple = [previous: string, next: string]; interface OutputObject { previous: string; next: string; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export declare namespace WorkAllocationUpdatedEvent { type InputTuple = [allocation: IE3RefundManager.WorkValueAllocationStruct]; type OutputTuple = [allocation: IE3RefundManager.WorkValueAllocationStructOutput]; interface OutputObject { allocation: IE3RefundManager.WorkValueAllocationStructOutput; } type Event = TypedContractEvent; type Filter = TypedDeferredTopicFilter; type Log = TypedEventLog; type LogDescription = TypedLogDescription; } export interface E3RefundManager extends BaseContract { connect(runner?: ContractRunner | null): E3RefundManager; waitForDeployment(): Promise; interface: E3RefundManagerInterface; queryFilter(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; queryFilter(filter: TypedDeferredTopicFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise>>; on(event: TCEvent, listener: TypedListener): Promise; on(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; once(event: TCEvent, listener: TypedListener): Promise; once(filter: TypedDeferredTopicFilter, listener: TypedListener): Promise; listeners(event: TCEvent): Promise>>; listeners(eventName?: string): Promise>; removeAllListeners(event?: TCEvent): Promise; MAX_PROTOCOL_BPS: TypedContractMethod<[ ], [ bigint ], 'view'>; acceptOwnership: TypedContractMethod<[ ], [ void ], 'nonpayable'>; bondingRegistry: TypedContractMethod<[ ], [ string ], 'view'>; calculateRefund: TypedContractMethod<[ e3Id: BigNumberish, originalPayment: BigNumberish, honestNodes: AddressLike[], paymentToken: AddressLike ], [ void ], 'nonpayable'>; calculateWorkValue: TypedContractMethod<[ stage: BigNumberish ], [ [bigint, bigint] & { workCompletedBps: bigint; workRemainingBps: bigint; } ], 'view'>; claimHonestNodeReward: TypedContractMethod<[ e3Id: BigNumberish ], [ bigint ], 'nonpayable'>; claimRequesterRefund: TypedContractMethod<[ e3Id: BigNumberish ], [ bigint ], 'nonpayable'>; claimSlashedFundsOnSuccess: TypedContractMethod<[ e3Id: BigNumberish ], [ bigint ], 'nonpayable'>; claimSlashedFundsOnSuccessBatch: TypedContractMethod<[ e3Ids: BigNumberish[] ], [ void ], 'nonpayable'>; distributeSlashedFundsOnSuccess: TypedContractMethod<[ e3Id: BigNumberish, honestNodes: AddressLike[], paymentToken: AddressLike ], [ void ], 'nonpayable'>; enclave: TypedContractMethod<[ ], [ string ], 'view'>; escrowSlashedFunds: TypedContractMethod<[ e3Id: BigNumberish, amount: BigNumberish ], [ void ], 'nonpayable'>; feeToken: TypedContractMethod<[ ], [ string ], 'view'>; getRefundDistribution: TypedContractMethod<[ e3Id: BigNumberish ], [ IE3RefundManager.RefundDistributionStructOutput ], 'view'>; getWorkAllocation: TypedContractMethod<[ ], [ IE3RefundManager.WorkValueAllocationStructOutput ], 'view'>; hasClaimed: TypedContractMethod<[ e3Id: BigNumberish, claimant: AddressLike ], [ boolean ], 'view'>; initialize: TypedContractMethod<[ _owner: AddressLike, _enclave: AddressLike, _treasury: AddressLike ], [ void ], 'nonpayable'>; owner: TypedContractMethod<[ ], [ string ], 'view'>; pendingOwner: TypedContractMethod<[ ], [ string ], 'view'>; pendingSlashedFundsOnSuccess: TypedContractMethod<[ e3Id: BigNumberish, account: AddressLike ], [ bigint ], 'view'>; pendingTreasuryClaim: TypedContractMethod<[ treasuryAddr: AddressLike, token: AddressLike ], [ bigint ], 'view'>; renounceOwnership: TypedContractMethod<[ ], [ void ], 'view'>; setEnclave: TypedContractMethod<[ _enclave: AddressLike ], [ void ], 'nonpayable'>; setTreasury: TypedContractMethod<[ _treasury: AddressLike ], [ void ], 'nonpayable'>; setWorkAllocation: TypedContractMethod<[ allocation: IE3RefundManager.WorkValueAllocationStruct ], [ void ], 'nonpayable'>; supportsInterface: TypedContractMethod<[ interfaceId: BytesLike ], [ boolean ], 'view'>; transferOwnership: TypedContractMethod<[ newOwner: AddressLike ], [ void ], 'nonpayable'>; treasury: TypedContractMethod<[ ], [ string ], 'view'>; treasuryClaim: TypedContractMethod<[ token: AddressLike ], [ bigint ], 'nonpayable'>; withdrawOrphanedSlashedFunds: TypedContractMethod<[ e3Id: BigNumberish, paymentToken: AddressLike ], [ void ], 'nonpayable'>; getFunction(key: string | FunctionFragment): T; getFunction(nameOrSignature: 'MAX_PROTOCOL_BPS'): TypedContractMethod<[ ], [ bigint ], 'view'>; getFunction(nameOrSignature: 'acceptOwnership'): TypedContractMethod<[ ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'bondingRegistry'): TypedContractMethod<[ ], [ string ], 'view'>; getFunction(nameOrSignature: 'calculateRefund'): TypedContractMethod<[ e3Id: BigNumberish, originalPayment: BigNumberish, honestNodes: AddressLike[], paymentToken: AddressLike ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'calculateWorkValue'): TypedContractMethod<[ stage: BigNumberish ], [ [bigint, bigint] & { workCompletedBps: bigint; workRemainingBps: bigint; } ], 'view'>; getFunction(nameOrSignature: 'claimHonestNodeReward'): TypedContractMethod<[ e3Id: BigNumberish ], [ bigint ], 'nonpayable'>; getFunction(nameOrSignature: 'claimRequesterRefund'): TypedContractMethod<[ e3Id: BigNumberish ], [ bigint ], 'nonpayable'>; getFunction(nameOrSignature: 'claimSlashedFundsOnSuccess'): TypedContractMethod<[ e3Id: BigNumberish ], [ bigint ], 'nonpayable'>; getFunction(nameOrSignature: 'claimSlashedFundsOnSuccessBatch'): TypedContractMethod<[ e3Ids: BigNumberish[] ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'distributeSlashedFundsOnSuccess'): TypedContractMethod<[ e3Id: BigNumberish, honestNodes: AddressLike[], paymentToken: AddressLike ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'enclave'): TypedContractMethod<[ ], [ string ], 'view'>; getFunction(nameOrSignature: 'escrowSlashedFunds'): TypedContractMethod<[ e3Id: BigNumberish, amount: BigNumberish ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'feeToken'): TypedContractMethod<[ ], [ string ], 'view'>; getFunction(nameOrSignature: 'getRefundDistribution'): TypedContractMethod<[ e3Id: BigNumberish ], [ IE3RefundManager.RefundDistributionStructOutput ], 'view'>; getFunction(nameOrSignature: 'getWorkAllocation'): TypedContractMethod<[ ], [ IE3RefundManager.WorkValueAllocationStructOutput ], 'view'>; getFunction(nameOrSignature: 'hasClaimed'): TypedContractMethod<[ e3Id: BigNumberish, claimant: AddressLike ], [ boolean ], 'view'>; getFunction(nameOrSignature: 'initialize'): TypedContractMethod<[ _owner: AddressLike, _enclave: AddressLike, _treasury: AddressLike ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'owner'): TypedContractMethod<[ ], [ string ], 'view'>; getFunction(nameOrSignature: 'pendingOwner'): TypedContractMethod<[ ], [ string ], 'view'>; getFunction(nameOrSignature: 'pendingSlashedFundsOnSuccess'): TypedContractMethod<[ e3Id: BigNumberish, account: AddressLike ], [ bigint ], 'view'>; getFunction(nameOrSignature: 'pendingTreasuryClaim'): TypedContractMethod<[ treasuryAddr: AddressLike, token: AddressLike ], [ bigint ], 'view'>; getFunction(nameOrSignature: 'renounceOwnership'): TypedContractMethod<[ ], [ void ], 'view'>; getFunction(nameOrSignature: 'setEnclave'): TypedContractMethod<[ _enclave: AddressLike ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'setTreasury'): TypedContractMethod<[ _treasury: AddressLike ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'setWorkAllocation'): TypedContractMethod<[ allocation: IE3RefundManager.WorkValueAllocationStruct ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'supportsInterface'): TypedContractMethod<[ interfaceId: BytesLike ], [ boolean ], 'view'>; getFunction(nameOrSignature: 'transferOwnership'): TypedContractMethod<[ newOwner: AddressLike ], [ void ], 'nonpayable'>; getFunction(nameOrSignature: 'treasury'): TypedContractMethod<[ ], [ string ], 'view'>; getFunction(nameOrSignature: 'treasuryClaim'): TypedContractMethod<[ token: AddressLike ], [ bigint ], 'nonpayable'>; getFunction(nameOrSignature: 'withdrawOrphanedSlashedFunds'): TypedContractMethod<[ e3Id: BigNumberish, paymentToken: AddressLike ], [ void ], 'nonpayable'>; getEvent(key: 'EnclaveSet'): TypedContractEvent; getEvent(key: 'EnclaveUpdated'): TypedContractEvent; getEvent(key: 'Initialized'): TypedContractEvent; getEvent(key: 'OrphanedSlashedFundsWithdrawn'): TypedContractEvent; getEvent(key: 'OwnershipTransferStarted'): TypedContractEvent; getEvent(key: 'OwnershipTransferred'): TypedContractEvent; getEvent(key: 'RefundClaimed'): TypedContractEvent; getEvent(key: 'RefundDistributionCalculated'): TypedContractEvent; getEvent(key: 'SlashedFundsApplied'): TypedContractEvent; getEvent(key: 'SlashedFundsClaimed'): TypedContractEvent; getEvent(key: 'SlashedFundsCredited'): TypedContractEvent; getEvent(key: 'SlashedFundsDistributedOnSuccess'): TypedContractEvent; getEvent(key: 'SlashedFundsEscrowed'): TypedContractEvent; getEvent(key: 'TreasurySet'): TypedContractEvent; getEvent(key: 'TreasurySlashedClaimed'): TypedContractEvent; getEvent(key: 'TreasurySlashedCredited'): TypedContractEvent; getEvent(key: 'TreasuryUpdated'): TypedContractEvent; getEvent(key: 'WorkAllocationUpdated'): TypedContractEvent; filters: { 'EnclaveSet(address)': TypedContractEvent; EnclaveSet: TypedContractEvent; 'EnclaveUpdated(address,address)': TypedContractEvent; EnclaveUpdated: TypedContractEvent; 'Initialized(uint64)': TypedContractEvent; Initialized: TypedContractEvent; 'OrphanedSlashedFundsWithdrawn(uint256,uint256)': TypedContractEvent; OrphanedSlashedFundsWithdrawn: TypedContractEvent; 'OwnershipTransferStarted(address,address)': TypedContractEvent; OwnershipTransferStarted: TypedContractEvent; 'OwnershipTransferred(address,address)': TypedContractEvent; OwnershipTransferred: TypedContractEvent; 'RefundClaimed(uint256,address,uint256,bytes32)': TypedContractEvent; RefundClaimed: TypedContractEvent; 'RefundDistributionCalculated(uint256,uint256,uint256,uint256,uint256)': TypedContractEvent; RefundDistributionCalculated: TypedContractEvent; 'SlashedFundsApplied(uint256,uint256,uint256)': TypedContractEvent; SlashedFundsApplied: TypedContractEvent; 'SlashedFundsClaimed(uint256,address,address,uint256)': TypedContractEvent; SlashedFundsClaimed: TypedContractEvent; 'SlashedFundsCredited(uint256,address,address,uint256)': TypedContractEvent; SlashedFundsCredited: TypedContractEvent; 'SlashedFundsDistributedOnSuccess(uint256,uint256,uint256)': TypedContractEvent; SlashedFundsDistributedOnSuccess: TypedContractEvent; 'SlashedFundsEscrowed(uint256,uint256)': TypedContractEvent; SlashedFundsEscrowed: TypedContractEvent; 'TreasurySet(address)': TypedContractEvent; TreasurySet: TypedContractEvent; 'TreasurySlashedClaimed(address,address,uint256)': TypedContractEvent; TreasurySlashedClaimed: TypedContractEvent; 'TreasurySlashedCredited(address,address,uint256)': TypedContractEvent; TreasurySlashedCredited: TypedContractEvent; 'TreasuryUpdated(address,address)': TypedContractEvent; TreasuryUpdated: TypedContractEvent; 'WorkAllocationUpdated(tuple)': TypedContractEvent; WorkAllocationUpdated: TypedContractEvent; }; } //# sourceMappingURL=E3RefundManager.d.ts.map