2020-06-20 23:40:03 +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-06-20 23:40:03 +00:00
|
|
|
|
|
|
|
interface ReserveLogicInterface extends Interface {
|
|
|
|
functions: {};
|
|
|
|
|
|
|
|
events: {
|
|
|
|
ReserveDataUpdated: TypedEventDescription<{
|
|
|
|
encodeTopics([
|
|
|
|
reserve,
|
|
|
|
liquidityRate,
|
|
|
|
stableBorrowRate,
|
|
|
|
averageStableBorrowRate,
|
|
|
|
variableBorrowRate,
|
|
|
|
liquidityIndex,
|
2020-07-13 08:54:08 +00:00
|
|
|
variableBorrowIndex,
|
2020-06-20 23:40:03 +00:00
|
|
|
]: [string | null, null, null, null, null, null, null]): string[];
|
|
|
|
}>;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export class ReserveLogic extends Contract {
|
|
|
|
connect(signerOrProvider: Signer | Provider | string): ReserveLogic;
|
|
|
|
attach(addressOrName: string): ReserveLogic;
|
|
|
|
deployed(): Promise<ReserveLogic>;
|
|
|
|
|
|
|
|
on(event: EventFilter | string, listener: Listener): ReserveLogic;
|
|
|
|
once(event: EventFilter | string, listener: Listener): ReserveLogic;
|
2020-07-13 08:54:08 +00:00
|
|
|
addListener(eventName: EventFilter | string, listener: Listener): ReserveLogic;
|
2020-06-20 23:40:03 +00:00
|
|
|
removeAllListeners(eventName: EventFilter | string): ReserveLogic;
|
|
|
|
removeListener(eventName: any, listener: Listener): ReserveLogic;
|
|
|
|
|
|
|
|
interface: ReserveLogicInterface;
|
|
|
|
|
|
|
|
functions: {};
|
|
|
|
|
|
|
|
filters: {
|
|
|
|
ReserveDataUpdated(
|
|
|
|
reserve: string | null,
|
|
|
|
liquidityRate: null,
|
|
|
|
stableBorrowRate: null,
|
|
|
|
averageStableBorrowRate: null,
|
|
|
|
variableBorrowRate: null,
|
|
|
|
liquidityIndex: null,
|
|
|
|
variableBorrowIndex: null
|
|
|
|
): EventFilter;
|
|
|
|
};
|
|
|
|
|
|
|
|
estimate: {};
|
|
|
|
}
|