@lukso/lsp23-contracts 0.15.0-rc.0 → 0.15.0-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,107 +0,0 @@
1
- /* Autogenerated file. Do not edit manually. */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- import type {
5
- BaseContract,
6
- BytesLike,
7
- FunctionFragment,
8
- Result,
9
- Interface,
10
- AddressLike,
11
- ContractRunner,
12
- ContractMethod,
13
- Listener,
14
- } from "ethers";
15
- import type {
16
- TypedContractEvent,
17
- TypedDeferredTopicFilter,
18
- TypedEventLog,
19
- TypedListener,
20
- TypedContractMethod,
21
- } from "./common";
22
-
23
- export interface IPostDeploymentModuleInterface extends Interface {
24
- getFunction(nameOrSignature: "executePostDeployment"): FunctionFragment;
25
-
26
- encodeFunctionData(
27
- functionFragment: "executePostDeployment",
28
- values: [AddressLike, AddressLike, BytesLike]
29
- ): string;
30
-
31
- decodeFunctionResult(
32
- functionFragment: "executePostDeployment",
33
- data: BytesLike
34
- ): Result;
35
- }
36
-
37
- export interface IPostDeploymentModule extends BaseContract {
38
- connect(runner?: ContractRunner | null): IPostDeploymentModule;
39
- waitForDeployment(): Promise<this>;
40
-
41
- interface: IPostDeploymentModuleInterface;
42
-
43
- queryFilter<TCEvent extends TypedContractEvent>(
44
- event: TCEvent,
45
- fromBlockOrBlockhash?: string | number | undefined,
46
- toBlock?: string | number | undefined
47
- ): Promise<Array<TypedEventLog<TCEvent>>>;
48
- queryFilter<TCEvent extends TypedContractEvent>(
49
- filter: TypedDeferredTopicFilter<TCEvent>,
50
- fromBlockOrBlockhash?: string | number | undefined,
51
- toBlock?: string | number | undefined
52
- ): Promise<Array<TypedEventLog<TCEvent>>>;
53
-
54
- on<TCEvent extends TypedContractEvent>(
55
- event: TCEvent,
56
- listener: TypedListener<TCEvent>
57
- ): Promise<this>;
58
- on<TCEvent extends TypedContractEvent>(
59
- filter: TypedDeferredTopicFilter<TCEvent>,
60
- listener: TypedListener<TCEvent>
61
- ): Promise<this>;
62
-
63
- once<TCEvent extends TypedContractEvent>(
64
- event: TCEvent,
65
- listener: TypedListener<TCEvent>
66
- ): Promise<this>;
67
- once<TCEvent extends TypedContractEvent>(
68
- filter: TypedDeferredTopicFilter<TCEvent>,
69
- listener: TypedListener<TCEvent>
70
- ): Promise<this>;
71
-
72
- listeners<TCEvent extends TypedContractEvent>(
73
- event: TCEvent
74
- ): Promise<Array<TypedListener<TCEvent>>>;
75
- listeners(eventName?: string): Promise<Array<Listener>>;
76
- removeAllListeners<TCEvent extends TypedContractEvent>(
77
- event?: TCEvent
78
- ): Promise<this>;
79
-
80
- executePostDeployment: TypedContractMethod<
81
- [
82
- primaryContract: AddressLike,
83
- secondaryContract: AddressLike,
84
- calldataToPostDeploymentModule: BytesLike
85
- ],
86
- [void],
87
- "nonpayable"
88
- >;
89
-
90
- getFunction<T extends ContractMethod = ContractMethod>(
91
- key: string | FunctionFragment
92
- ): T;
93
-
94
- getFunction(
95
- nameOrSignature: "executePostDeployment"
96
- ): TypedContractMethod<
97
- [
98
- primaryContract: AddressLike,
99
- secondaryContract: AddressLike,
100
- calldataToPostDeploymentModule: BytesLike
101
- ],
102
- [void],
103
- "nonpayable"
104
- >;
105
-
106
- filters: {};
107
- }