2020-06-03 10:23:21 +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-03 10:23:21 +00:00
|
|
|
|
|
|
|
interface UpgradeabilityProxyInterface extends Interface {
|
|
|
|
functions: {};
|
|
|
|
|
|
|
|
events: {
|
|
|
|
Upgraded: TypedEventDescription<{
|
|
|
|
encodeTopics([implementation]: [string | null]): string[];
|
|
|
|
}>;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export class UpgradeabilityProxy extends Contract {
|
|
|
|
connect(signerOrProvider: Signer | Provider | string): UpgradeabilityProxy;
|
|
|
|
attach(addressOrName: string): UpgradeabilityProxy;
|
|
|
|
deployed(): Promise<UpgradeabilityProxy>;
|
|
|
|
|
|
|
|
on(event: EventFilter | string, listener: Listener): UpgradeabilityProxy;
|
|
|
|
once(event: EventFilter | string, listener: Listener): UpgradeabilityProxy;
|
2020-07-13 08:54:08 +00:00
|
|
|
addListener(eventName: EventFilter | string, listener: Listener): UpgradeabilityProxy;
|
2020-06-03 10:23:21 +00:00
|
|
|
removeAllListeners(eventName: EventFilter | string): UpgradeabilityProxy;
|
|
|
|
removeListener(eventName: any, listener: Listener): UpgradeabilityProxy;
|
|
|
|
|
|
|
|
interface: UpgradeabilityProxyInterface;
|
|
|
|
|
|
|
|
functions: {};
|
|
|
|
|
|
|
|
filters: {
|
|
|
|
Upgraded(implementation: string | null): EventFilter;
|
|
|
|
};
|
|
|
|
|
|
|
|
estimate: {};
|
|
|
|
}
|