mirror of
https://github.com/Instadapp/aave-protocol-v2.git
synced 2024-07-29 21:47:30 +00:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 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 UpgradeabilityProxyInterface extends ethers.utils.Interface {
|
|
functions: {};
|
|
|
|
events: {
|
|
"Upgraded(address)": EventFragment;
|
|
};
|
|
|
|
getEvent(nameOrSignatureOrTopic: "Upgraded"): EventFragment;
|
|
}
|
|
|
|
export class UpgradeabilityProxy 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: UpgradeabilityProxyInterface;
|
|
|
|
functions: {};
|
|
|
|
callStatic: {};
|
|
|
|
filters: {
|
|
Upgraded(implementation: string | null): EventFilter;
|
|
};
|
|
|
|
estimateGas: {};
|
|
|
|
populateTransaction: {};
|
|
}
|