mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
|
/* 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 BaseUpgradeabilityProxyInterface extends Interface {
|
||
|
functions: {};
|
||
|
|
||
|
events: {
|
||
|
Upgraded: TypedEventDescription<{
|
||
|
encodeTopics([implementation]: [string | null]): string[];
|
||
|
}>;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
export class BaseUpgradeabilityProxy extends Contract {
|
||
|
connect(
|
||
|
signerOrProvider: Signer | Provider | string
|
||
|
): BaseUpgradeabilityProxy;
|
||
|
attach(addressOrName: string): BaseUpgradeabilityProxy;
|
||
|
deployed(): Promise<BaseUpgradeabilityProxy>;
|
||
|
|
||
|
on(event: EventFilter | string, listener: Listener): BaseUpgradeabilityProxy;
|
||
|
once(
|
||
|
event: EventFilter | string,
|
||
|
listener: Listener
|
||
|
): BaseUpgradeabilityProxy;
|
||
|
addListener(
|
||
|
eventName: EventFilter | string,
|
||
|
listener: Listener
|
||
|
): BaseUpgradeabilityProxy;
|
||
|
removeAllListeners(eventName: EventFilter | string): BaseUpgradeabilityProxy;
|
||
|
removeListener(eventName: any, listener: Listener): BaseUpgradeabilityProxy;
|
||
|
|
||
|
interface: BaseUpgradeabilityProxyInterface;
|
||
|
|
||
|
functions: {};
|
||
|
|
||
|
filters: {
|
||
|
Upgraded(implementation: string | null): EventFilter;
|
||
|
};
|
||
|
|
||
|
estimate: {};
|
||
|
}
|