/* Generated by ts-generator ver. 0.0.8 */ /* tslint:disable */ import { Contract, ContractTransaction, EventFilter, Signer } from "ethers"; import { Listener, Provider } from "ethers/providers"; import { Arrayish, BigNumber, BigNumberish, Interface } from "ethers/utils"; import { TransactionOverrides, TypedEventDescription, TypedFunctionDescription } from "."; interface MockAggregatorLendInterface extends Interface { functions: { latestAnswer: TypedFunctionDescription<{ encode([]: []): string }>; }; events: { AnswerUpdated: TypedEventDescription<{ encodeTopics([current, roundId, timestamp]: [ BigNumberish | null, BigNumberish | null, null ]): string[]; }>; }; } export class MockAggregatorLend extends Contract { connect(signerOrProvider: Signer | Provider | string): MockAggregatorLend; attach(addressOrName: string): MockAggregatorLend; deployed(): Promise; on(event: EventFilter | string, listener: Listener): MockAggregatorLend; once(event: EventFilter | string, listener: Listener): MockAggregatorLend; addListener( eventName: EventFilter | string, listener: Listener ): MockAggregatorLend; removeAllListeners(eventName: EventFilter | string): MockAggregatorLend; removeListener(eventName: any, listener: Listener): MockAggregatorLend; interface: MockAggregatorLendInterface; functions: { latestAnswer(): Promise; }; latestAnswer(): Promise; filters: { AnswerUpdated( current: BigNumberish | null, roundId: BigNumberish | null, timestamp: null ): EventFilter; }; estimate: { latestAnswer(): Promise; }; }