UNPKG

@gooddollar/goodprotocol

Version:
98 lines (82 loc) 2.39 kB
/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumber, BytesLike, CallOverrides, ContractTransaction, PayableOverrides, PopulatedTransaction, Signer, utils, } from "ethers"; import type { FunctionFragment, Result } from "@ethersproject/abi"; import type { Listener, Provider } from "@ethersproject/providers"; import type { TypedEventFilter, TypedEvent, TypedListener, OnEvent, } from "../../common"; export interface IDonationStakingInterface extends utils.Interface { functions: { "stakeDonations()": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "stakeDonations"): FunctionFragment; encodeFunctionData( functionFragment: "stakeDonations", values?: undefined ): string; decodeFunctionResult( functionFragment: "stakeDonations", data: BytesLike ): Result; events: {}; } export interface IDonationStaking extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise<this>; interface: IDonationStakingInterface; queryFilter<TEvent extends TypedEvent>( event: TypedEventFilter<TEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise<Array<TEvent>>; listeners<TEvent extends TypedEvent>( eventFilter?: TypedEventFilter<TEvent> ): Array<TypedListener<TEvent>>; listeners(eventName?: string): Array<Listener>; removeAllListeners<TEvent extends TypedEvent>( eventFilter: TypedEventFilter<TEvent> ): this; removeAllListeners(eventName?: string): this; off: OnEvent<this>; on: OnEvent<this>; once: OnEvent<this>; removeListener: OnEvent<this>; functions: { stakeDonations( overrides?: PayableOverrides & { from?: string } ): Promise<ContractTransaction>; }; stakeDonations( overrides?: PayableOverrides & { from?: string } ): Promise<ContractTransaction>; callStatic: { stakeDonations(overrides?: CallOverrides): Promise<void>; }; filters: {}; estimateGas: { stakeDonations( overrides?: PayableOverrides & { from?: string } ): Promise<BigNumber>; }; populateTransaction: { stakeDonations( overrides?: PayableOverrides & { from?: string } ): Promise<PopulatedTransaction>; }; }