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

46 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-06-03 10:23:21 +00:00
/* Generated by ts-generator ver. 0.0.8 */
/* tslint:disable */
2020-08-07 17:29:13 +00:00
import {
2020-08-19 12:23:41 +00:00
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 ProxyInterface extends ethers.utils.Interface {
2020-06-03 10:23:21 +00:00
functions: {};
events: {};
}
export class Proxy extends Contract {
2020-08-19 12:23:41 +00:00
connect(signerOrProvider: Signer | Provider | string): this;
attach(addressOrName: string): this;
deployed(): Promise<this>;
2020-06-03 10:23:21 +00:00
2020-08-19 12:23:41 +00:00
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;
2020-06-03 10:23:21 +00:00
interface: ProxyInterface;
functions: {};
2020-08-19 12:23:41 +00:00
callStatic: {};
2020-06-03 10:23:21 +00:00
filters: {};
2020-08-19 12:23:41 +00:00
estimateGas: {};
populateTransaction: {};
2020-06-03 10:23:21 +00:00
}