aave-protocol-v2/types/MockAggregatorZrx.d.ts

56 lines
1.6 KiB
TypeScript
Raw Normal View History

2020-07-08 22:16:05 +00:00
/* Generated by ts-generator ver. 0.0.8 */
/* tslint:disable */
2020-07-13 08:54:08 +00:00
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 '.';
2020-07-08 22:16:05 +00:00
interface MockAggregatorZrxInterface extends Interface {
functions: {
2020-07-13 08:54:08 +00:00
latestAnswer: TypedFunctionDescription<{encode([]: []): string}>;
2020-07-08 22:16:05 +00:00
};
events: {
AnswerUpdated: TypedEventDescription<{
encodeTopics([current, roundId, timestamp]: [
BigNumberish | null,
BigNumberish | null,
null
]): string[];
}>;
};
}
export class MockAggregatorZrx extends Contract {
connect(signerOrProvider: Signer | Provider | string): MockAggregatorZrx;
attach(addressOrName: string): MockAggregatorZrx;
deployed(): Promise<MockAggregatorZrx>;
on(event: EventFilter | string, listener: Listener): MockAggregatorZrx;
once(event: EventFilter | string, listener: Listener): MockAggregatorZrx;
2020-07-13 08:54:08 +00:00
addListener(eventName: EventFilter | string, listener: Listener): MockAggregatorZrx;
2020-07-08 22:16:05 +00:00
removeAllListeners(eventName: EventFilter | string): MockAggregatorZrx;
removeListener(eventName: any, listener: Listener): MockAggregatorZrx;
interface: MockAggregatorZrxInterface;
functions: {
latestAnswer(): Promise<BigNumber>;
};
latestAnswer(): Promise<BigNumber>;
filters: {
AnswerUpdated(
current: BigNumberish | null,
roundId: BigNumberish | null,
timestamp: null
): EventFilter;
};
estimate: {
latestAnswer(): Promise<BigNumber>;
};
}