tornado-contracts/dist/contracts/Governance/v1/Mocks/ProposalUpgrade.sol/ProposalUpgrade.d.ts

30 lines
2.5 KiB
TypeScript
Raw Permalink Normal View History

import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../../common";
export interface ProposalUpgradeInterface extends Interface {
getFunction(nameOrSignature: "executeProposal" | "newLogic"): FunctionFragment;
encodeFunctionData(functionFragment: "executeProposal", values?: undefined): string;
encodeFunctionData(functionFragment: "newLogic", values?: undefined): string;
decodeFunctionResult(functionFragment: "executeProposal", data: BytesLike): Result;
decodeFunctionResult(functionFragment: "newLogic", data: BytesLike): Result;
}
export interface ProposalUpgrade extends BaseContract {
connect(runner?: ContractRunner | null): ProposalUpgrade;
waitForDeployment(): Promise<this>;
interface: ProposalUpgradeInterface;
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>;
executeProposal: TypedContractMethod<[], [void], "nonpayable">;
newLogic: TypedContractMethod<[], [string], "view">;
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
getFunction(nameOrSignature: "executeProposal"): TypedContractMethod<[], [void], "nonpayable">;
getFunction(nameOrSignature: "newLogic"): TypedContractMethod<[], [string], "view">;
filters: {};
}