mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
45 lines
1.4 KiB
TypeScript
45 lines
1.4 KiB
TypeScript
/* Generated by ts-generator ver. 0.0.8 */
|
|
/* tslint:disable */
|
|
|
|
import {ethers, EventFilter, Signer, BigNumber, BigNumberish, PopulatedTransaction} from 'ethers';
|
|
import {Contract, ContractTransaction} from '@ethersproject/contracts';
|
|
import {BytesLike} from '@ethersproject/bytes';
|
|
import {Listener, Provider} from '@ethersproject/providers';
|
|
import {FunctionFragment, EventFragment, Result} from '@ethersproject/abi';
|
|
|
|
interface ChainlinkUsdethOracleIInterface extends ethers.utils.Interface {
|
|
functions: {};
|
|
|
|
events: {
|
|
'AnswerUpdated(int256,uint256)': EventFragment;
|
|
};
|
|
|
|
getEvent(nameOrSignatureOrTopic: 'AnswerUpdated'): EventFragment;
|
|
}
|
|
|
|
export class ChainlinkUsdethOracleI extends Contract {
|
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
attach(addressOrName: string): this;
|
|
deployed(): Promise<this>;
|
|
|
|
on(event: EventFilter | string, listener: Listener): this;
|
|
once(event: EventFilter | string, listener: Listener): this;
|
|
addListener(eventName: EventFilter | string, listener: Listener): this;
|
|
removeAllListeners(eventName: EventFilter | string): this;
|
|
removeListener(eventName: any, listener: Listener): this;
|
|
|
|
interface: ChainlinkUsdethOracleIInterface;
|
|
|
|
functions: {};
|
|
|
|
callStatic: {};
|
|
|
|
filters: {
|
|
AnswerUpdated(current: BigNumberish | null, answerId: BigNumberish | null): EventFilter;
|
|
};
|
|
|
|
estimateGas: {};
|
|
|
|
populateTransaction: {};
|
|
}
|