intents-framework
Version:
A reference ERC7683 implementation with TypeScript support
248 lines (223 loc) • 7.18 kB
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import type {
BaseContract,
BytesLike,
FunctionFragment,
Result,
Interface,
EventFragment,
AddressLike,
ContractRunner,
ContractMethod,
Listener,
} from "ethers";
import type {
TypedContractEvent,
TypedDeferredTopicFilter,
TypedEventLog,
TypedLogDescription,
TypedListener,
TypedContractMethod,
} from "./common";
export interface ITransparentUpgradeableProxyInterface extends Interface {
getFunction(
nameOrSignature:
| "admin"
| "changeAdmin"
| "implementation"
| "upgradeTo"
| "upgradeToAndCall"
): FunctionFragment;
getEvent(
nameOrSignatureOrTopic: "AdminChanged" | "BeaconUpgraded" | "Upgraded"
): EventFragment;
encodeFunctionData(functionFragment: "admin", values?: undefined): string;
encodeFunctionData(
functionFragment: "changeAdmin",
values: [AddressLike]
): string;
encodeFunctionData(
functionFragment: "implementation",
values?: undefined
): string;
encodeFunctionData(
functionFragment: "upgradeTo",
values: [AddressLike]
): string;
encodeFunctionData(
functionFragment: "upgradeToAndCall",
values: [AddressLike, BytesLike]
): string;
decodeFunctionResult(functionFragment: "admin", data: BytesLike): Result;
decodeFunctionResult(
functionFragment: "changeAdmin",
data: BytesLike
): Result;
decodeFunctionResult(
functionFragment: "implementation",
data: BytesLike
): Result;
decodeFunctionResult(functionFragment: "upgradeTo", data: BytesLike): Result;
decodeFunctionResult(
functionFragment: "upgradeToAndCall",
data: BytesLike
): Result;
}
export namespace AdminChangedEvent {
export type InputTuple = [previousAdmin: AddressLike, newAdmin: AddressLike];
export type OutputTuple = [previousAdmin: string, newAdmin: string];
export interface OutputObject {
previousAdmin: string;
newAdmin: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace BeaconUpgradedEvent {
export type InputTuple = [beacon: AddressLike];
export type OutputTuple = [beacon: string];
export interface OutputObject {
beacon: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export namespace UpgradedEvent {
export type InputTuple = [implementation: AddressLike];
export type OutputTuple = [implementation: string];
export interface OutputObject {
implementation: string;
}
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
export type Filter = TypedDeferredTopicFilter<Event>;
export type Log = TypedEventLog<Event>;
export type LogDescription = TypedLogDescription<Event>;
}
export interface ITransparentUpgradeableProxy extends BaseContract {
connect(runner?: ContractRunner | null): ITransparentUpgradeableProxy;
waitForDeployment(): Promise<this>;
interface: ITransparentUpgradeableProxyInterface;
queryFilter<TCEvent extends TypedContractEvent>(
event: TCEvent,
fromBlockOrBlockhash?: string | number | undefined,
toBlock?: string | number | undefined
): Promise<Array<TypedEventLog<TCEvent>>>;
queryFilter<TCEvent extends TypedContractEvent>(
filter: TypedDeferredTopicFilter<TCEvent>,
fromBlockOrBlockhash?: string | number | undefined,
toBlock?: string | number | undefined
): Promise<Array<TypedEventLog<TCEvent>>>;
on<TCEvent extends TypedContractEvent>(
event: TCEvent,
listener: TypedListener<TCEvent>
): Promise<this>;
on<TCEvent extends TypedContractEvent>(
filter: TypedDeferredTopicFilter<TCEvent>,
listener: TypedListener<TCEvent>
): Promise<this>;
once<TCEvent extends TypedContractEvent>(
event: TCEvent,
listener: TypedListener<TCEvent>
): Promise<this>;
once<TCEvent extends TypedContractEvent>(
filter: TypedDeferredTopicFilter<TCEvent>,
listener: TypedListener<TCEvent>
): Promise<this>;
listeners<TCEvent extends TypedContractEvent>(
event: TCEvent
): Promise<Array<TypedListener<TCEvent>>>;
listeners(eventName?: string): Promise<Array<Listener>>;
removeAllListeners<TCEvent extends TypedContractEvent>(
event?: TCEvent
): Promise<this>;
admin: TypedContractMethod<[], [string], "view">;
changeAdmin: TypedContractMethod<[arg0: AddressLike], [void], "nonpayable">;
implementation: TypedContractMethod<[], [string], "view">;
upgradeTo: TypedContractMethod<[arg0: AddressLike], [void], "nonpayable">;
upgradeToAndCall: TypedContractMethod<
[arg0: AddressLike, arg1: BytesLike],
[void],
"payable"
>;
getFunction<T extends ContractMethod = ContractMethod>(
key: string | FunctionFragment
): T;
getFunction(
nameOrSignature: "admin"
): TypedContractMethod<[], [string], "view">;
getFunction(
nameOrSignature: "changeAdmin"
): TypedContractMethod<[arg0: AddressLike], [void], "nonpayable">;
getFunction(
nameOrSignature: "implementation"
): TypedContractMethod<[], [string], "view">;
getFunction(
nameOrSignature: "upgradeTo"
): TypedContractMethod<[arg0: AddressLike], [void], "nonpayable">;
getFunction(
nameOrSignature: "upgradeToAndCall"
): TypedContractMethod<
[arg0: AddressLike, arg1: BytesLike],
[void],
"payable"
>;
getEvent(
key: "AdminChanged"
): TypedContractEvent<
AdminChangedEvent.InputTuple,
AdminChangedEvent.OutputTuple,
AdminChangedEvent.OutputObject
>;
getEvent(
key: "BeaconUpgraded"
): TypedContractEvent<
BeaconUpgradedEvent.InputTuple,
BeaconUpgradedEvent.OutputTuple,
BeaconUpgradedEvent.OutputObject
>;
getEvent(
key: "Upgraded"
): TypedContractEvent<
UpgradedEvent.InputTuple,
UpgradedEvent.OutputTuple,
UpgradedEvent.OutputObject
>;
filters: {
"AdminChanged(address,address)": TypedContractEvent<
AdminChangedEvent.InputTuple,
AdminChangedEvent.OutputTuple,
AdminChangedEvent.OutputObject
>;
AdminChanged: TypedContractEvent<
AdminChangedEvent.InputTuple,
AdminChangedEvent.OutputTuple,
AdminChangedEvent.OutputObject
>;
"BeaconUpgraded(address)": TypedContractEvent<
BeaconUpgradedEvent.InputTuple,
BeaconUpgradedEvent.OutputTuple,
BeaconUpgradedEvent.OutputObject
>;
BeaconUpgraded: TypedContractEvent<
BeaconUpgradedEvent.InputTuple,
BeaconUpgradedEvent.OutputTuple,
BeaconUpgradedEvent.OutputObject
>;
"Upgraded(address)": TypedContractEvent<
UpgradedEvent.InputTuple,
UpgradedEvent.OutputTuple,
UpgradedEvent.OutputObject
>;
Upgraded: TypedContractEvent<
UpgradedEvent.InputTuple,
UpgradedEvent.OutputTuple,
UpgradedEvent.OutputObject
>;
};
}