tornado-contracts/dist/contracts/Governance/GasCompensationVault.d.ts
tornadocontrib 6741664a89
Revert "Remove build files from repository"
This reverts commit 0273e49b747e89d0c4c49dde458df6875f1df0c0.
2024-09-19 14:34:51 +00:00

48 lines
3.2 KiB
TypeScript

import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../common";
export interface GasCompensationVaultInterface extends Interface {
getFunction(nameOrSignature: "GovernanceAddress" | "compensateGas" | "withdrawToGovernance"): FunctionFragment;
encodeFunctionData(functionFragment: "GovernanceAddress", values?: undefined): string;
encodeFunctionData(functionFragment: "compensateGas", values: [AddressLike, BigNumberish]): string;
encodeFunctionData(functionFragment: "withdrawToGovernance", values: [BigNumberish]): string;
decodeFunctionResult(functionFragment: "GovernanceAddress", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "compensateGas", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "withdrawToGovernance", data: BytesLike): Result;
}
export interface GasCompensationVault extends BaseContract {
connect(runner?: ContractRunner | null): GasCompensationVault;
waitForDeployment(): Promise<this>;
interface: GasCompensationVaultInterface;
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
listeners(eventName?: string): Promise<Array<Listener>>;
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
GovernanceAddress: TypedContractMethod<[], [string], "view">;
compensateGas: TypedContractMethod<[
recipient: AddressLike,
gasAmount: BigNumberish
], [
void
], "nonpayable">;
withdrawToGovernance: TypedContractMethod<[
amount: BigNumberish
], [
void
], "nonpayable">;
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
getFunction(nameOrSignature: "GovernanceAddress"): TypedContractMethod<[], [string], "view">;
getFunction(nameOrSignature: "compensateGas"): TypedContractMethod<[
recipient: AddressLike,
gasAmount: BigNumberish
], [
void
], "nonpayable">;
getFunction(nameOrSignature: "withdrawToGovernance"): TypedContractMethod<[amount: BigNumberish], [void], "nonpayable">;
filters: {};
}