/* Autogenerated file. Do not edit manually. */ /* tslint:disable */ /* eslint-disable */ import type { BaseContract, BigNumber, BigNumberish, BytesLike, CallOverrides, ContractTransaction, Overrides, 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, PromiseOrValue, } from "../../../common"; export interface VotingMockInterface extends utils.Interface { functions: { "addBlockchain(address,uint256,string)": FunctionFragment; }; getFunction(nameOrSignatureOrTopic: "addBlockchain"): FunctionFragment; encodeFunctionData( functionFragment: "addBlockchain", values: [ PromiseOrValue, PromiseOrValue, PromiseOrValue ] ): string; decodeFunctionResult( functionFragment: "addBlockchain", data: BytesLike ): Result; events: {}; } export interface VotingMock extends BaseContract { connect(signerOrProvider: Signer | Provider | string): this; attach(addressOrName: string): this; deployed(): Promise; interface: VotingMockInterface; queryFilter( event: TypedEventFilter, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined ): Promise>; listeners( eventFilter?: TypedEventFilter ): Array>; listeners(eventName?: string): Array; removeAllListeners( eventFilter: TypedEventFilter ): this; removeAllListeners(eventName?: string): this; off: OnEvent; on: OnEvent; once: OnEvent; removeListener: OnEvent; functions: { addBlockchain( registry: PromiseOrValue, chainId: PromiseOrValue, rpc: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; }; addBlockchain( registry: PromiseOrValue, chainId: PromiseOrValue, rpc: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; callStatic: { addBlockchain( registry: PromiseOrValue, chainId: PromiseOrValue, rpc: PromiseOrValue, overrides?: CallOverrides ): Promise; }; filters: {}; estimateGas: { addBlockchain( registry: PromiseOrValue, chainId: PromiseOrValue, rpc: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; }; populateTransaction: { addBlockchain( registry: PromiseOrValue, chainId: PromiseOrValue, rpc: PromiseOrValue, overrides?: Overrides & { from?: PromiseOrValue } ): Promise; }; }