/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, AddressLike, ContractRunner, ContractMethod, Listener, } from "ethers"; import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod, } from "../../../common"; export declare namespace Airdrop { export type RecipientStruct = { to: AddressLike; amount: BigNumberish }; export type RecipientStructOutput = [to: string, amount: bigint] & { to: string; amount: bigint; }; } export interface AirdropInterface extends Interface { getFunction(nameOrSignature: "bulkResolve" | "resolve"): FunctionFragment; encodeFunctionData( functionFragment: "bulkResolve", values: [BytesLike[]] ): string; encodeFunctionData(functionFragment: "resolve", values: [BytesLike]): string; decodeFunctionResult( functionFragment: "bulkResolve", data: BytesLike ): Result; decodeFunctionResult(functionFragment: "resolve", data: BytesLike): Result; } export interface Airdrop extends BaseContract { connect(runner?: ContractRunner | null): Airdrop; waitForDeployment(): Promise; interface: AirdropInterface; 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; bulkResolve: TypedContractMethod<[domains: BytesLike[]], [string[]], "view">; resolve: TypedContractMethod<[node: BytesLike], [string], "view">; getFunction( key: string | FunctionFragment ): T; getFunction( nameOrSignature: "bulkResolve" ): TypedContractMethod<[domains: BytesLike[]], [string[]], "view">; getFunction( nameOrSignature: "resolve" ): TypedContractMethod<[node: BytesLike], [string], "view">; filters: {}; }