@lukso/lsp23-contracts 0.15.0 → 0.15.1

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,747 +0,0 @@
1
- /* Autogenerated file. Do not edit manually. */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- import type {
5
- BaseContract,
6
- BigNumberish,
7
- BytesLike,
8
- FunctionFragment,
9
- Result,
10
- Interface,
11
- EventFragment,
12
- AddressLike,
13
- ContractRunner,
14
- ContractMethod,
15
- Listener,
16
- } from "ethers";
17
- import type {
18
- TypedContractEvent,
19
- TypedDeferredTopicFilter,
20
- TypedEventLog,
21
- TypedLogDescription,
22
- TypedListener,
23
- TypedContractMethod,
24
- } from "../../common";
25
-
26
- export interface UniversalProfilePostDeploymentModuleInterface
27
- extends Interface {
28
- getFunction(
29
- nameOrSignature:
30
- | "RENOUNCE_OWNERSHIP_CONFIRMATION_DELAY"
31
- | "RENOUNCE_OWNERSHIP_CONFIRMATION_PERIOD"
32
- | "VERSION"
33
- | "acceptOwnership"
34
- | "batchCalls"
35
- | "execute"
36
- | "executeBatch"
37
- | "executePostDeployment"
38
- | "getData"
39
- | "getDataBatch"
40
- | "isValidSignature"
41
- | "owner"
42
- | "pendingOwner"
43
- | "renounceOwnership"
44
- | "setData"
45
- | "setDataAndTransferOwnership"
46
- | "setDataBatch"
47
- | "supportsInterface"
48
- | "transferOwnership"
49
- | "universalReceiver"
50
- ): FunctionFragment;
51
-
52
- getEvent(
53
- nameOrSignatureOrTopic:
54
- | "ContractCreated"
55
- | "DataChanged"
56
- | "Executed"
57
- | "OwnershipRenounced"
58
- | "OwnershipTransferStarted"
59
- | "OwnershipTransferred"
60
- | "RenounceOwnershipStarted"
61
- | "UniversalReceiver"
62
- ): EventFragment;
63
-
64
- encodeFunctionData(
65
- functionFragment: "RENOUNCE_OWNERSHIP_CONFIRMATION_DELAY",
66
- values?: undefined
67
- ): string;
68
- encodeFunctionData(
69
- functionFragment: "RENOUNCE_OWNERSHIP_CONFIRMATION_PERIOD",
70
- values?: undefined
71
- ): string;
72
- encodeFunctionData(functionFragment: "VERSION", values?: undefined): string;
73
- encodeFunctionData(
74
- functionFragment: "acceptOwnership",
75
- values?: undefined
76
- ): string;
77
- encodeFunctionData(
78
- functionFragment: "batchCalls",
79
- values: [BytesLike[]]
80
- ): string;
81
- encodeFunctionData(
82
- functionFragment: "execute",
83
- values: [BigNumberish, AddressLike, BigNumberish, BytesLike]
84
- ): string;
85
- encodeFunctionData(
86
- functionFragment: "executeBatch",
87
- values: [BigNumberish[], AddressLike[], BigNumberish[], BytesLike[]]
88
- ): string;
89
- encodeFunctionData(
90
- functionFragment: "executePostDeployment",
91
- values: [AddressLike, AddressLike, BytesLike]
92
- ): string;
93
- encodeFunctionData(functionFragment: "getData", values: [BytesLike]): string;
94
- encodeFunctionData(
95
- functionFragment: "getDataBatch",
96
- values: [BytesLike[]]
97
- ): string;
98
- encodeFunctionData(
99
- functionFragment: "isValidSignature",
100
- values: [BytesLike, BytesLike]
101
- ): string;
102
- encodeFunctionData(functionFragment: "owner", values?: undefined): string;
103
- encodeFunctionData(
104
- functionFragment: "pendingOwner",
105
- values?: undefined
106
- ): string;
107
- encodeFunctionData(
108
- functionFragment: "renounceOwnership",
109
- values?: undefined
110
- ): string;
111
- encodeFunctionData(
112
- functionFragment: "setData",
113
- values: [BytesLike, BytesLike]
114
- ): string;
115
- encodeFunctionData(
116
- functionFragment: "setDataAndTransferOwnership",
117
- values: [BytesLike[], BytesLike[], AddressLike]
118
- ): string;
119
- encodeFunctionData(
120
- functionFragment: "setDataBatch",
121
- values: [BytesLike[], BytesLike[]]
122
- ): string;
123
- encodeFunctionData(
124
- functionFragment: "supportsInterface",
125
- values: [BytesLike]
126
- ): string;
127
- encodeFunctionData(
128
- functionFragment: "transferOwnership",
129
- values: [AddressLike]
130
- ): string;
131
- encodeFunctionData(
132
- functionFragment: "universalReceiver",
133
- values: [BytesLike, BytesLike]
134
- ): string;
135
-
136
- decodeFunctionResult(
137
- functionFragment: "RENOUNCE_OWNERSHIP_CONFIRMATION_DELAY",
138
- data: BytesLike
139
- ): Result;
140
- decodeFunctionResult(
141
- functionFragment: "RENOUNCE_OWNERSHIP_CONFIRMATION_PERIOD",
142
- data: BytesLike
143
- ): Result;
144
- decodeFunctionResult(functionFragment: "VERSION", data: BytesLike): Result;
145
- decodeFunctionResult(
146
- functionFragment: "acceptOwnership",
147
- data: BytesLike
148
- ): Result;
149
- decodeFunctionResult(functionFragment: "batchCalls", data: BytesLike): Result;
150
- decodeFunctionResult(functionFragment: "execute", data: BytesLike): Result;
151
- decodeFunctionResult(
152
- functionFragment: "executeBatch",
153
- data: BytesLike
154
- ): Result;
155
- decodeFunctionResult(
156
- functionFragment: "executePostDeployment",
157
- data: BytesLike
158
- ): Result;
159
- decodeFunctionResult(functionFragment: "getData", data: BytesLike): Result;
160
- decodeFunctionResult(
161
- functionFragment: "getDataBatch",
162
- data: BytesLike
163
- ): Result;
164
- decodeFunctionResult(
165
- functionFragment: "isValidSignature",
166
- data: BytesLike
167
- ): Result;
168
- decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
169
- decodeFunctionResult(
170
- functionFragment: "pendingOwner",
171
- data: BytesLike
172
- ): Result;
173
- decodeFunctionResult(
174
- functionFragment: "renounceOwnership",
175
- data: BytesLike
176
- ): Result;
177
- decodeFunctionResult(functionFragment: "setData", data: BytesLike): Result;
178
- decodeFunctionResult(
179
- functionFragment: "setDataAndTransferOwnership",
180
- data: BytesLike
181
- ): Result;
182
- decodeFunctionResult(
183
- functionFragment: "setDataBatch",
184
- data: BytesLike
185
- ): Result;
186
- decodeFunctionResult(
187
- functionFragment: "supportsInterface",
188
- data: BytesLike
189
- ): Result;
190
- decodeFunctionResult(
191
- functionFragment: "transferOwnership",
192
- data: BytesLike
193
- ): Result;
194
- decodeFunctionResult(
195
- functionFragment: "universalReceiver",
196
- data: BytesLike
197
- ): Result;
198
- }
199
-
200
- export namespace ContractCreatedEvent {
201
- export type InputTuple = [
202
- operationType: BigNumberish,
203
- contractAddress: AddressLike,
204
- value: BigNumberish,
205
- salt: BytesLike
206
- ];
207
- export type OutputTuple = [
208
- operationType: bigint,
209
- contractAddress: string,
210
- value: bigint,
211
- salt: string
212
- ];
213
- export interface OutputObject {
214
- operationType: bigint;
215
- contractAddress: string;
216
- value: bigint;
217
- salt: string;
218
- }
219
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
220
- export type Filter = TypedDeferredTopicFilter<Event>;
221
- export type Log = TypedEventLog<Event>;
222
- export type LogDescription = TypedLogDescription<Event>;
223
- }
224
-
225
- export namespace DataChangedEvent {
226
- export type InputTuple = [dataKey: BytesLike, dataValue: BytesLike];
227
- export type OutputTuple = [dataKey: string, dataValue: string];
228
- export interface OutputObject {
229
- dataKey: string;
230
- dataValue: string;
231
- }
232
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
233
- export type Filter = TypedDeferredTopicFilter<Event>;
234
- export type Log = TypedEventLog<Event>;
235
- export type LogDescription = TypedLogDescription<Event>;
236
- }
237
-
238
- export namespace ExecutedEvent {
239
- export type InputTuple = [
240
- operationType: BigNumberish,
241
- target: AddressLike,
242
- value: BigNumberish,
243
- selector: BytesLike
244
- ];
245
- export type OutputTuple = [
246
- operationType: bigint,
247
- target: string,
248
- value: bigint,
249
- selector: string
250
- ];
251
- export interface OutputObject {
252
- operationType: bigint;
253
- target: string;
254
- value: bigint;
255
- selector: string;
256
- }
257
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
258
- export type Filter = TypedDeferredTopicFilter<Event>;
259
- export type Log = TypedEventLog<Event>;
260
- export type LogDescription = TypedLogDescription<Event>;
261
- }
262
-
263
- export namespace OwnershipRenouncedEvent {
264
- export type InputTuple = [];
265
- export type OutputTuple = [];
266
- export interface OutputObject {}
267
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
268
- export type Filter = TypedDeferredTopicFilter<Event>;
269
- export type Log = TypedEventLog<Event>;
270
- export type LogDescription = TypedLogDescription<Event>;
271
- }
272
-
273
- export namespace OwnershipTransferStartedEvent {
274
- export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
275
- export type OutputTuple = [previousOwner: string, newOwner: string];
276
- export interface OutputObject {
277
- previousOwner: string;
278
- newOwner: string;
279
- }
280
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
281
- export type Filter = TypedDeferredTopicFilter<Event>;
282
- export type Log = TypedEventLog<Event>;
283
- export type LogDescription = TypedLogDescription<Event>;
284
- }
285
-
286
- export namespace OwnershipTransferredEvent {
287
- export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
288
- export type OutputTuple = [previousOwner: string, newOwner: string];
289
- export interface OutputObject {
290
- previousOwner: string;
291
- newOwner: string;
292
- }
293
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
294
- export type Filter = TypedDeferredTopicFilter<Event>;
295
- export type Log = TypedEventLog<Event>;
296
- export type LogDescription = TypedLogDescription<Event>;
297
- }
298
-
299
- export namespace RenounceOwnershipStartedEvent {
300
- export type InputTuple = [];
301
- export type OutputTuple = [];
302
- export interface OutputObject {}
303
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
304
- export type Filter = TypedDeferredTopicFilter<Event>;
305
- export type Log = TypedEventLog<Event>;
306
- export type LogDescription = TypedLogDescription<Event>;
307
- }
308
-
309
- export namespace UniversalReceiverEvent {
310
- export type InputTuple = [
311
- from: AddressLike,
312
- value: BigNumberish,
313
- typeId: BytesLike,
314
- receivedData: BytesLike,
315
- returnedValue: BytesLike
316
- ];
317
- export type OutputTuple = [
318
- from: string,
319
- value: bigint,
320
- typeId: string,
321
- receivedData: string,
322
- returnedValue: string
323
- ];
324
- export interface OutputObject {
325
- from: string;
326
- value: bigint;
327
- typeId: string;
328
- receivedData: string;
329
- returnedValue: string;
330
- }
331
- export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
332
- export type Filter = TypedDeferredTopicFilter<Event>;
333
- export type Log = TypedEventLog<Event>;
334
- export type LogDescription = TypedLogDescription<Event>;
335
- }
336
-
337
- export interface UniversalProfilePostDeploymentModule extends BaseContract {
338
- connect(runner?: ContractRunner | null): UniversalProfilePostDeploymentModule;
339
- waitForDeployment(): Promise<this>;
340
-
341
- interface: UniversalProfilePostDeploymentModuleInterface;
342
-
343
- queryFilter<TCEvent extends TypedContractEvent>(
344
- event: TCEvent,
345
- fromBlockOrBlockhash?: string | number | undefined,
346
- toBlock?: string | number | undefined
347
- ): Promise<Array<TypedEventLog<TCEvent>>>;
348
- queryFilter<TCEvent extends TypedContractEvent>(
349
- filter: TypedDeferredTopicFilter<TCEvent>,
350
- fromBlockOrBlockhash?: string | number | undefined,
351
- toBlock?: string | number | undefined
352
- ): Promise<Array<TypedEventLog<TCEvent>>>;
353
-
354
- on<TCEvent extends TypedContractEvent>(
355
- event: TCEvent,
356
- listener: TypedListener<TCEvent>
357
- ): Promise<this>;
358
- on<TCEvent extends TypedContractEvent>(
359
- filter: TypedDeferredTopicFilter<TCEvent>,
360
- listener: TypedListener<TCEvent>
361
- ): Promise<this>;
362
-
363
- once<TCEvent extends TypedContractEvent>(
364
- event: TCEvent,
365
- listener: TypedListener<TCEvent>
366
- ): Promise<this>;
367
- once<TCEvent extends TypedContractEvent>(
368
- filter: TypedDeferredTopicFilter<TCEvent>,
369
- listener: TypedListener<TCEvent>
370
- ): Promise<this>;
371
-
372
- listeners<TCEvent extends TypedContractEvent>(
373
- event: TCEvent
374
- ): Promise<Array<TypedListener<TCEvent>>>;
375
- listeners(eventName?: string): Promise<Array<Listener>>;
376
- removeAllListeners<TCEvent extends TypedContractEvent>(
377
- event?: TCEvent
378
- ): Promise<this>;
379
-
380
- RENOUNCE_OWNERSHIP_CONFIRMATION_DELAY: TypedContractMethod<
381
- [],
382
- [bigint],
383
- "view"
384
- >;
385
-
386
- RENOUNCE_OWNERSHIP_CONFIRMATION_PERIOD: TypedContractMethod<
387
- [],
388
- [bigint],
389
- "view"
390
- >;
391
-
392
- VERSION: TypedContractMethod<[], [string], "view">;
393
-
394
- acceptOwnership: TypedContractMethod<[], [void], "nonpayable">;
395
-
396
- batchCalls: TypedContractMethod<
397
- [data: BytesLike[]],
398
- [string[]],
399
- "nonpayable"
400
- >;
401
-
402
- execute: TypedContractMethod<
403
- [
404
- operationType: BigNumberish,
405
- target: AddressLike,
406
- value: BigNumberish,
407
- data: BytesLike
408
- ],
409
- [string],
410
- "payable"
411
- >;
412
-
413
- executeBatch: TypedContractMethod<
414
- [
415
- operationsType: BigNumberish[],
416
- targets: AddressLike[],
417
- values: BigNumberish[],
418
- datas: BytesLike[]
419
- ],
420
- [string[]],
421
- "payable"
422
- >;
423
-
424
- executePostDeployment: TypedContractMethod<
425
- [
426
- universalProfile: AddressLike,
427
- keyManager: AddressLike,
428
- setDataBatchBytes: BytesLike
429
- ],
430
- [void],
431
- "nonpayable"
432
- >;
433
-
434
- getData: TypedContractMethod<[dataKey: BytesLike], [string], "view">;
435
-
436
- getDataBatch: TypedContractMethod<
437
- [dataKeys: BytesLike[]],
438
- [string[]],
439
- "view"
440
- >;
441
-
442
- isValidSignature: TypedContractMethod<
443
- [dataHash: BytesLike, signature: BytesLike],
444
- [string],
445
- "view"
446
- >;
447
-
448
- owner: TypedContractMethod<[], [string], "view">;
449
-
450
- pendingOwner: TypedContractMethod<[], [string], "view">;
451
-
452
- renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
453
-
454
- setData: TypedContractMethod<
455
- [dataKey: BytesLike, dataValue: BytesLike],
456
- [void],
457
- "payable"
458
- >;
459
-
460
- setDataAndTransferOwnership: TypedContractMethod<
461
- [dataKeys: BytesLike[], dataValues: BytesLike[], newOwner: AddressLike],
462
- [void],
463
- "payable"
464
- >;
465
-
466
- setDataBatch: TypedContractMethod<
467
- [dataKeys: BytesLike[], dataValues: BytesLike[]],
468
- [void],
469
- "payable"
470
- >;
471
-
472
- supportsInterface: TypedContractMethod<
473
- [interfaceId: BytesLike],
474
- [boolean],
475
- "view"
476
- >;
477
-
478
- transferOwnership: TypedContractMethod<
479
- [pendingNewOwner: AddressLike],
480
- [void],
481
- "nonpayable"
482
- >;
483
-
484
- universalReceiver: TypedContractMethod<
485
- [typeId: BytesLike, receivedData: BytesLike],
486
- [string],
487
- "payable"
488
- >;
489
-
490
- getFunction<T extends ContractMethod = ContractMethod>(
491
- key: string | FunctionFragment
492
- ): T;
493
-
494
- getFunction(
495
- nameOrSignature: "RENOUNCE_OWNERSHIP_CONFIRMATION_DELAY"
496
- ): TypedContractMethod<[], [bigint], "view">;
497
- getFunction(
498
- nameOrSignature: "RENOUNCE_OWNERSHIP_CONFIRMATION_PERIOD"
499
- ): TypedContractMethod<[], [bigint], "view">;
500
- getFunction(
501
- nameOrSignature: "VERSION"
502
- ): TypedContractMethod<[], [string], "view">;
503
- getFunction(
504
- nameOrSignature: "acceptOwnership"
505
- ): TypedContractMethod<[], [void], "nonpayable">;
506
- getFunction(
507
- nameOrSignature: "batchCalls"
508
- ): TypedContractMethod<[data: BytesLike[]], [string[]], "nonpayable">;
509
- getFunction(
510
- nameOrSignature: "execute"
511
- ): TypedContractMethod<
512
- [
513
- operationType: BigNumberish,
514
- target: AddressLike,
515
- value: BigNumberish,
516
- data: BytesLike
517
- ],
518
- [string],
519
- "payable"
520
- >;
521
- getFunction(
522
- nameOrSignature: "executeBatch"
523
- ): TypedContractMethod<
524
- [
525
- operationsType: BigNumberish[],
526
- targets: AddressLike[],
527
- values: BigNumberish[],
528
- datas: BytesLike[]
529
- ],
530
- [string[]],
531
- "payable"
532
- >;
533
- getFunction(
534
- nameOrSignature: "executePostDeployment"
535
- ): TypedContractMethod<
536
- [
537
- universalProfile: AddressLike,
538
- keyManager: AddressLike,
539
- setDataBatchBytes: BytesLike
540
- ],
541
- [void],
542
- "nonpayable"
543
- >;
544
- getFunction(
545
- nameOrSignature: "getData"
546
- ): TypedContractMethod<[dataKey: BytesLike], [string], "view">;
547
- getFunction(
548
- nameOrSignature: "getDataBatch"
549
- ): TypedContractMethod<[dataKeys: BytesLike[]], [string[]], "view">;
550
- getFunction(
551
- nameOrSignature: "isValidSignature"
552
- ): TypedContractMethod<
553
- [dataHash: BytesLike, signature: BytesLike],
554
- [string],
555
- "view"
556
- >;
557
- getFunction(
558
- nameOrSignature: "owner"
559
- ): TypedContractMethod<[], [string], "view">;
560
- getFunction(
561
- nameOrSignature: "pendingOwner"
562
- ): TypedContractMethod<[], [string], "view">;
563
- getFunction(
564
- nameOrSignature: "renounceOwnership"
565
- ): TypedContractMethod<[], [void], "nonpayable">;
566
- getFunction(
567
- nameOrSignature: "setData"
568
- ): TypedContractMethod<
569
- [dataKey: BytesLike, dataValue: BytesLike],
570
- [void],
571
- "payable"
572
- >;
573
- getFunction(
574
- nameOrSignature: "setDataAndTransferOwnership"
575
- ): TypedContractMethod<
576
- [dataKeys: BytesLike[], dataValues: BytesLike[], newOwner: AddressLike],
577
- [void],
578
- "payable"
579
- >;
580
- getFunction(
581
- nameOrSignature: "setDataBatch"
582
- ): TypedContractMethod<
583
- [dataKeys: BytesLike[], dataValues: BytesLike[]],
584
- [void],
585
- "payable"
586
- >;
587
- getFunction(
588
- nameOrSignature: "supportsInterface"
589
- ): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
590
- getFunction(
591
- nameOrSignature: "transferOwnership"
592
- ): TypedContractMethod<[pendingNewOwner: AddressLike], [void], "nonpayable">;
593
- getFunction(
594
- nameOrSignature: "universalReceiver"
595
- ): TypedContractMethod<
596
- [typeId: BytesLike, receivedData: BytesLike],
597
- [string],
598
- "payable"
599
- >;
600
-
601
- getEvent(
602
- key: "ContractCreated"
603
- ): TypedContractEvent<
604
- ContractCreatedEvent.InputTuple,
605
- ContractCreatedEvent.OutputTuple,
606
- ContractCreatedEvent.OutputObject
607
- >;
608
- getEvent(
609
- key: "DataChanged"
610
- ): TypedContractEvent<
611
- DataChangedEvent.InputTuple,
612
- DataChangedEvent.OutputTuple,
613
- DataChangedEvent.OutputObject
614
- >;
615
- getEvent(
616
- key: "Executed"
617
- ): TypedContractEvent<
618
- ExecutedEvent.InputTuple,
619
- ExecutedEvent.OutputTuple,
620
- ExecutedEvent.OutputObject
621
- >;
622
- getEvent(
623
- key: "OwnershipRenounced"
624
- ): TypedContractEvent<
625
- OwnershipRenouncedEvent.InputTuple,
626
- OwnershipRenouncedEvent.OutputTuple,
627
- OwnershipRenouncedEvent.OutputObject
628
- >;
629
- getEvent(
630
- key: "OwnershipTransferStarted"
631
- ): TypedContractEvent<
632
- OwnershipTransferStartedEvent.InputTuple,
633
- OwnershipTransferStartedEvent.OutputTuple,
634
- OwnershipTransferStartedEvent.OutputObject
635
- >;
636
- getEvent(
637
- key: "OwnershipTransferred"
638
- ): TypedContractEvent<
639
- OwnershipTransferredEvent.InputTuple,
640
- OwnershipTransferredEvent.OutputTuple,
641
- OwnershipTransferredEvent.OutputObject
642
- >;
643
- getEvent(
644
- key: "RenounceOwnershipStarted"
645
- ): TypedContractEvent<
646
- RenounceOwnershipStartedEvent.InputTuple,
647
- RenounceOwnershipStartedEvent.OutputTuple,
648
- RenounceOwnershipStartedEvent.OutputObject
649
- >;
650
- getEvent(
651
- key: "UniversalReceiver"
652
- ): TypedContractEvent<
653
- UniversalReceiverEvent.InputTuple,
654
- UniversalReceiverEvent.OutputTuple,
655
- UniversalReceiverEvent.OutputObject
656
- >;
657
-
658
- filters: {
659
- "ContractCreated(uint256,address,uint256,bytes32)": TypedContractEvent<
660
- ContractCreatedEvent.InputTuple,
661
- ContractCreatedEvent.OutputTuple,
662
- ContractCreatedEvent.OutputObject
663
- >;
664
- ContractCreated: TypedContractEvent<
665
- ContractCreatedEvent.InputTuple,
666
- ContractCreatedEvent.OutputTuple,
667
- ContractCreatedEvent.OutputObject
668
- >;
669
-
670
- "DataChanged(bytes32,bytes)": TypedContractEvent<
671
- DataChangedEvent.InputTuple,
672
- DataChangedEvent.OutputTuple,
673
- DataChangedEvent.OutputObject
674
- >;
675
- DataChanged: TypedContractEvent<
676
- DataChangedEvent.InputTuple,
677
- DataChangedEvent.OutputTuple,
678
- DataChangedEvent.OutputObject
679
- >;
680
-
681
- "Executed(uint256,address,uint256,bytes4)": TypedContractEvent<
682
- ExecutedEvent.InputTuple,
683
- ExecutedEvent.OutputTuple,
684
- ExecutedEvent.OutputObject
685
- >;
686
- Executed: TypedContractEvent<
687
- ExecutedEvent.InputTuple,
688
- ExecutedEvent.OutputTuple,
689
- ExecutedEvent.OutputObject
690
- >;
691
-
692
- "OwnershipRenounced()": TypedContractEvent<
693
- OwnershipRenouncedEvent.InputTuple,
694
- OwnershipRenouncedEvent.OutputTuple,
695
- OwnershipRenouncedEvent.OutputObject
696
- >;
697
- OwnershipRenounced: TypedContractEvent<
698
- OwnershipRenouncedEvent.InputTuple,
699
- OwnershipRenouncedEvent.OutputTuple,
700
- OwnershipRenouncedEvent.OutputObject
701
- >;
702
-
703
- "OwnershipTransferStarted(address,address)": TypedContractEvent<
704
- OwnershipTransferStartedEvent.InputTuple,
705
- OwnershipTransferStartedEvent.OutputTuple,
706
- OwnershipTransferStartedEvent.OutputObject
707
- >;
708
- OwnershipTransferStarted: TypedContractEvent<
709
- OwnershipTransferStartedEvent.InputTuple,
710
- OwnershipTransferStartedEvent.OutputTuple,
711
- OwnershipTransferStartedEvent.OutputObject
712
- >;
713
-
714
- "OwnershipTransferred(address,address)": TypedContractEvent<
715
- OwnershipTransferredEvent.InputTuple,
716
- OwnershipTransferredEvent.OutputTuple,
717
- OwnershipTransferredEvent.OutputObject
718
- >;
719
- OwnershipTransferred: TypedContractEvent<
720
- OwnershipTransferredEvent.InputTuple,
721
- OwnershipTransferredEvent.OutputTuple,
722
- OwnershipTransferredEvent.OutputObject
723
- >;
724
-
725
- "RenounceOwnershipStarted()": TypedContractEvent<
726
- RenounceOwnershipStartedEvent.InputTuple,
727
- RenounceOwnershipStartedEvent.OutputTuple,
728
- RenounceOwnershipStartedEvent.OutputObject
729
- >;
730
- RenounceOwnershipStarted: TypedContractEvent<
731
- RenounceOwnershipStartedEvent.InputTuple,
732
- RenounceOwnershipStartedEvent.OutputTuple,
733
- RenounceOwnershipStartedEvent.OutputObject
734
- >;
735
-
736
- "UniversalReceiver(address,uint256,bytes32,bytes,bytes)": TypedContractEvent<
737
- UniversalReceiverEvent.InputTuple,
738
- UniversalReceiverEvent.OutputTuple,
739
- UniversalReceiverEvent.OutputObject
740
- >;
741
- UniversalReceiver: TypedContractEvent<
742
- UniversalReceiverEvent.InputTuple,
743
- UniversalReceiverEvent.OutputTuple,
744
- UniversalReceiverEvent.OutputObject
745
- >;
746
- };
747
- }