@towns-protocol/generated 0.0.375 → 0.0.377
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.
- package/dev/.contracts-hash +1 -1
- package/dev/abis/Channels.abi.json +1144 -153
- package/dev/abis/Channels.abi.ts +1144 -153
- package/dev/abis/EntitlementsManager.abi.json +1001 -10
- package/dev/abis/EntitlementsManager.abi.ts +1001 -10
- package/dev/abis/IAppInstaller.abi.json +89 -0
- package/dev/abis/IAppInstaller.abi.ts +89 -0
- package/dev/abis/IAppRegistry.abi.json +0 -87
- package/dev/abis/IAppRegistry.abi.ts +0 -87
- package/dev/abis/ITipping.abi.json +3 -3
- package/dev/abis/ITipping.abi.ts +3 -3
- package/dev/abis/ITippingBase.abi.json +3 -3
- package/dev/abis/ITippingBase.abi.ts +3 -3
- package/dev/abis/MembershipFacet.abi.json +1019 -28
- package/dev/abis/MembershipFacet.abi.ts +1019 -28
- package/dev/abis/PrepayFacet.abi.json +1012 -21
- package/dev/abis/PrepayFacet.abi.ts +1012 -21
- package/dev/abis/Roles.abi.json +991 -0
- package/dev/abis/Roles.abi.ts +991 -0
- package/dev/typings/Channels.ts +676 -0
- package/dev/typings/EntitlementsManager.ts +677 -0
- package/dev/typings/IAppInstaller.ts +239 -0
- package/dev/typings/IAppRegistry.ts +0 -166
- package/dev/typings/ITipping.ts +6 -6
- package/dev/typings/MembershipFacet.ts +676 -0
- package/dev/typings/PrepayFacet.ts +676 -0
- package/dev/typings/Roles.ts +676 -0
- package/dev/typings/factories/Channels__factory.ts +1146 -155
- package/dev/typings/factories/EntitlementsManager__factory.ts +1001 -10
- package/dev/typings/factories/IAppInstaller__factory.ts +110 -0
- package/dev/typings/factories/IAppRegistry__factory.ts +0 -87
- package/dev/typings/factories/ITipping__factory.ts +3 -3
- package/dev/typings/factories/MembershipFacet__factory.ts +1019 -28
- package/dev/typings/factories/PrepayFacet__factory.ts +1012 -21
- package/dev/typings/factories/Roles__factory.ts +992 -1
- package/dev/typings/factories/index.ts +1 -0
- package/dev/typings/index.ts +2 -0
- package/package.json +3 -3
|
@@ -27,6 +27,57 @@ import type {
|
|
|
27
27
|
OnEvent,
|
|
28
28
|
} from "./common";
|
|
29
29
|
|
|
30
|
+
export type ManifestExecutionFunctionStruct = {
|
|
31
|
+
executionSelector: BytesLike;
|
|
32
|
+
skipRuntimeValidation: boolean;
|
|
33
|
+
allowGlobalValidation: boolean;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export type ManifestExecutionFunctionStructOutput = [
|
|
37
|
+
string,
|
|
38
|
+
boolean,
|
|
39
|
+
boolean
|
|
40
|
+
] & {
|
|
41
|
+
executionSelector: string;
|
|
42
|
+
skipRuntimeValidation: boolean;
|
|
43
|
+
allowGlobalValidation: boolean;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export type ManifestExecutionHookStruct = {
|
|
47
|
+
executionSelector: BytesLike;
|
|
48
|
+
entityId: BigNumberish;
|
|
49
|
+
isPreHook: boolean;
|
|
50
|
+
isPostHook: boolean;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export type ManifestExecutionHookStructOutput = [
|
|
54
|
+
string,
|
|
55
|
+
number,
|
|
56
|
+
boolean,
|
|
57
|
+
boolean
|
|
58
|
+
] & {
|
|
59
|
+
executionSelector: string;
|
|
60
|
+
entityId: number;
|
|
61
|
+
isPreHook: boolean;
|
|
62
|
+
isPostHook: boolean;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export type ExecutionManifestStruct = {
|
|
66
|
+
executionFunctions: ManifestExecutionFunctionStruct[];
|
|
67
|
+
executionHooks: ManifestExecutionHookStruct[];
|
|
68
|
+
interfaceIds: BytesLike[];
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export type ExecutionManifestStructOutput = [
|
|
72
|
+
ManifestExecutionFunctionStructOutput[],
|
|
73
|
+
ManifestExecutionHookStructOutput[],
|
|
74
|
+
string[]
|
|
75
|
+
] & {
|
|
76
|
+
executionFunctions: ManifestExecutionFunctionStructOutput[];
|
|
77
|
+
executionHooks: ManifestExecutionHookStructOutput[];
|
|
78
|
+
interfaceIds: string[];
|
|
79
|
+
};
|
|
80
|
+
|
|
30
81
|
export declare namespace IMembershipBase {
|
|
31
82
|
export type ReferralTypesStruct = {
|
|
32
83
|
partner: string;
|
|
@@ -263,11 +314,31 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
263
314
|
): Result;
|
|
264
315
|
|
|
265
316
|
events: {
|
|
317
|
+
"AppBanned(address,bytes32)": EventFragment;
|
|
318
|
+
"AppCreated(address,bytes32)": EventFragment;
|
|
319
|
+
"AppInstalled(address,address,bytes32)": EventFragment;
|
|
320
|
+
"AppRegistered(address,bytes32)": EventFragment;
|
|
321
|
+
"AppRenewed(address,address,bytes32)": EventFragment;
|
|
322
|
+
"AppSchemaSet(bytes32)": EventFragment;
|
|
323
|
+
"AppUninstalled(address,address,bytes32)": EventFragment;
|
|
324
|
+
"AppUnregistered(address,bytes32)": EventFragment;
|
|
325
|
+
"AppUpdated(address,bytes32)": EventFragment;
|
|
326
|
+
"AppUpdated(address,address,bytes32)": EventFragment;
|
|
327
|
+
"AppUpgraded(address,bytes32,bytes32)": EventFragment;
|
|
266
328
|
"Approval(address,address,uint256)": EventFragment;
|
|
267
329
|
"ApprovalForAll(address,address,bool)": EventFragment;
|
|
268
330
|
"ConsecutiveTransfer(uint256,uint256,address,address)": EventFragment;
|
|
269
331
|
"DefaultBpsFeeUpdated(uint256)": EventFragment;
|
|
270
332
|
"EntitlementCheckResultPosted(bytes32,uint8)": EventFragment;
|
|
333
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
334
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
335
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
336
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)": EventFragment;
|
|
337
|
+
"GroupAccessRevoked(bytes32,address,bool)": EventFragment;
|
|
338
|
+
"GroupExpirationSet(bytes32,uint48)": EventFragment;
|
|
339
|
+
"GroupGrantDelaySet(bytes32,uint32)": EventFragment;
|
|
340
|
+
"GroupGuardianSet(bytes32,bytes32)": EventFragment;
|
|
341
|
+
"GroupStatusSet(bytes32,bool)": EventFragment;
|
|
271
342
|
"Initialized(uint32)": EventFragment;
|
|
272
343
|
"InterfaceAdded(bytes4)": EventFragment;
|
|
273
344
|
"InterfaceRemoved(bytes4)": EventFragment;
|
|
@@ -281,6 +352,9 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
281
352
|
"MembershipTokenIssued(address,uint256)": EventFragment;
|
|
282
353
|
"MembershipTokenRejected(address)": EventFragment;
|
|
283
354
|
"MembershipWithdrawal(address,uint256)": EventFragment;
|
|
355
|
+
"OperationCanceled(bytes32,uint32)": EventFragment;
|
|
356
|
+
"OperationExecuted(bytes32,uint32)": EventFragment;
|
|
357
|
+
"OperationScheduled(bytes32,uint48,uint32)": EventFragment;
|
|
284
358
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
285
359
|
"PartnerRegistered(address)": EventFragment;
|
|
286
360
|
"PartnerRemoved(address)": EventFragment;
|
|
@@ -297,9 +371,28 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
297
371
|
"RoleRemoved(address,uint256)": EventFragment;
|
|
298
372
|
"RoleUpdated(address,uint256)": EventFragment;
|
|
299
373
|
"SubscriptionUpdate(uint256,uint64)": EventFragment;
|
|
374
|
+
"TargetDisabledSet(address,bool)": EventFragment;
|
|
375
|
+
"TargetFunctionDelaySet(address,uint32,uint32)": EventFragment;
|
|
376
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)": EventFragment;
|
|
377
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)": EventFragment;
|
|
300
378
|
"Transfer(address,address,uint256)": EventFragment;
|
|
301
379
|
};
|
|
302
380
|
|
|
381
|
+
getEvent(nameOrSignatureOrTopic: "AppBanned"): EventFragment;
|
|
382
|
+
getEvent(nameOrSignatureOrTopic: "AppCreated"): EventFragment;
|
|
383
|
+
getEvent(nameOrSignatureOrTopic: "AppInstalled"): EventFragment;
|
|
384
|
+
getEvent(nameOrSignatureOrTopic: "AppRegistered"): EventFragment;
|
|
385
|
+
getEvent(nameOrSignatureOrTopic: "AppRenewed"): EventFragment;
|
|
386
|
+
getEvent(nameOrSignatureOrTopic: "AppSchemaSet"): EventFragment;
|
|
387
|
+
getEvent(nameOrSignatureOrTopic: "AppUninstalled"): EventFragment;
|
|
388
|
+
getEvent(nameOrSignatureOrTopic: "AppUnregistered"): EventFragment;
|
|
389
|
+
getEvent(
|
|
390
|
+
nameOrSignatureOrTopic: "AppUpdated(address,bytes32)"
|
|
391
|
+
): EventFragment;
|
|
392
|
+
getEvent(
|
|
393
|
+
nameOrSignatureOrTopic: "AppUpdated(address,address,bytes32)"
|
|
394
|
+
): EventFragment;
|
|
395
|
+
getEvent(nameOrSignatureOrTopic: "AppUpgraded"): EventFragment;
|
|
303
396
|
getEvent(nameOrSignatureOrTopic: "Approval"): EventFragment;
|
|
304
397
|
getEvent(nameOrSignatureOrTopic: "ApprovalForAll"): EventFragment;
|
|
305
398
|
getEvent(nameOrSignatureOrTopic: "ConsecutiveTransfer"): EventFragment;
|
|
@@ -307,6 +400,15 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
307
400
|
getEvent(
|
|
308
401
|
nameOrSignatureOrTopic: "EntitlementCheckResultPosted"
|
|
309
402
|
): EventFragment;
|
|
403
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionInstalled"): EventFragment;
|
|
404
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUninstalled"): EventFragment;
|
|
405
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUpdated"): EventFragment;
|
|
406
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessGranted"): EventFragment;
|
|
407
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessRevoked"): EventFragment;
|
|
408
|
+
getEvent(nameOrSignatureOrTopic: "GroupExpirationSet"): EventFragment;
|
|
409
|
+
getEvent(nameOrSignatureOrTopic: "GroupGrantDelaySet"): EventFragment;
|
|
410
|
+
getEvent(nameOrSignatureOrTopic: "GroupGuardianSet"): EventFragment;
|
|
411
|
+
getEvent(nameOrSignatureOrTopic: "GroupStatusSet"): EventFragment;
|
|
310
412
|
getEvent(nameOrSignatureOrTopic: "Initialized"): EventFragment;
|
|
311
413
|
getEvent(nameOrSignatureOrTopic: "InterfaceAdded"): EventFragment;
|
|
312
414
|
getEvent(nameOrSignatureOrTopic: "InterfaceRemoved"): EventFragment;
|
|
@@ -324,6 +426,9 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
324
426
|
getEvent(nameOrSignatureOrTopic: "MembershipTokenIssued"): EventFragment;
|
|
325
427
|
getEvent(nameOrSignatureOrTopic: "MembershipTokenRejected"): EventFragment;
|
|
326
428
|
getEvent(nameOrSignatureOrTopic: "MembershipWithdrawal"): EventFragment;
|
|
429
|
+
getEvent(nameOrSignatureOrTopic: "OperationCanceled"): EventFragment;
|
|
430
|
+
getEvent(nameOrSignatureOrTopic: "OperationExecuted"): EventFragment;
|
|
431
|
+
getEvent(nameOrSignatureOrTopic: "OperationScheduled"): EventFragment;
|
|
327
432
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
328
433
|
getEvent(nameOrSignatureOrTopic: "PartnerRegistered"): EventFragment;
|
|
329
434
|
getEvent(nameOrSignatureOrTopic: "PartnerRemoved"): EventFragment;
|
|
@@ -346,9 +451,134 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
346
451
|
getEvent(nameOrSignatureOrTopic: "RoleRemoved"): EventFragment;
|
|
347
452
|
getEvent(nameOrSignatureOrTopic: "RoleUpdated"): EventFragment;
|
|
348
453
|
getEvent(nameOrSignatureOrTopic: "SubscriptionUpdate"): EventFragment;
|
|
454
|
+
getEvent(nameOrSignatureOrTopic: "TargetDisabledSet"): EventFragment;
|
|
455
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDelaySet"): EventFragment;
|
|
456
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDisabledSet"): EventFragment;
|
|
457
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionGroupSet"): EventFragment;
|
|
349
458
|
getEvent(nameOrSignatureOrTopic: "Transfer"): EventFragment;
|
|
350
459
|
}
|
|
351
460
|
|
|
461
|
+
export interface AppBannedEventObject {
|
|
462
|
+
app: string;
|
|
463
|
+
uid: string;
|
|
464
|
+
}
|
|
465
|
+
export type AppBannedEvent = TypedEvent<[string, string], AppBannedEventObject>;
|
|
466
|
+
|
|
467
|
+
export type AppBannedEventFilter = TypedEventFilter<AppBannedEvent>;
|
|
468
|
+
|
|
469
|
+
export interface AppCreatedEventObject {
|
|
470
|
+
app: string;
|
|
471
|
+
uid: string;
|
|
472
|
+
}
|
|
473
|
+
export type AppCreatedEvent = TypedEvent<
|
|
474
|
+
[string, string],
|
|
475
|
+
AppCreatedEventObject
|
|
476
|
+
>;
|
|
477
|
+
|
|
478
|
+
export type AppCreatedEventFilter = TypedEventFilter<AppCreatedEvent>;
|
|
479
|
+
|
|
480
|
+
export interface AppInstalledEventObject {
|
|
481
|
+
app: string;
|
|
482
|
+
account: string;
|
|
483
|
+
appId: string;
|
|
484
|
+
}
|
|
485
|
+
export type AppInstalledEvent = TypedEvent<
|
|
486
|
+
[string, string, string],
|
|
487
|
+
AppInstalledEventObject
|
|
488
|
+
>;
|
|
489
|
+
|
|
490
|
+
export type AppInstalledEventFilter = TypedEventFilter<AppInstalledEvent>;
|
|
491
|
+
|
|
492
|
+
export interface AppRegisteredEventObject {
|
|
493
|
+
app: string;
|
|
494
|
+
uid: string;
|
|
495
|
+
}
|
|
496
|
+
export type AppRegisteredEvent = TypedEvent<
|
|
497
|
+
[string, string],
|
|
498
|
+
AppRegisteredEventObject
|
|
499
|
+
>;
|
|
500
|
+
|
|
501
|
+
export type AppRegisteredEventFilter = TypedEventFilter<AppRegisteredEvent>;
|
|
502
|
+
|
|
503
|
+
export interface AppRenewedEventObject {
|
|
504
|
+
app: string;
|
|
505
|
+
account: string;
|
|
506
|
+
appId: string;
|
|
507
|
+
}
|
|
508
|
+
export type AppRenewedEvent = TypedEvent<
|
|
509
|
+
[string, string, string],
|
|
510
|
+
AppRenewedEventObject
|
|
511
|
+
>;
|
|
512
|
+
|
|
513
|
+
export type AppRenewedEventFilter = TypedEventFilter<AppRenewedEvent>;
|
|
514
|
+
|
|
515
|
+
export interface AppSchemaSetEventObject {
|
|
516
|
+
uid: string;
|
|
517
|
+
}
|
|
518
|
+
export type AppSchemaSetEvent = TypedEvent<[string], AppSchemaSetEventObject>;
|
|
519
|
+
|
|
520
|
+
export type AppSchemaSetEventFilter = TypedEventFilter<AppSchemaSetEvent>;
|
|
521
|
+
|
|
522
|
+
export interface AppUninstalledEventObject {
|
|
523
|
+
app: string;
|
|
524
|
+
account: string;
|
|
525
|
+
appId: string;
|
|
526
|
+
}
|
|
527
|
+
export type AppUninstalledEvent = TypedEvent<
|
|
528
|
+
[string, string, string],
|
|
529
|
+
AppUninstalledEventObject
|
|
530
|
+
>;
|
|
531
|
+
|
|
532
|
+
export type AppUninstalledEventFilter = TypedEventFilter<AppUninstalledEvent>;
|
|
533
|
+
|
|
534
|
+
export interface AppUnregisteredEventObject {
|
|
535
|
+
app: string;
|
|
536
|
+
uid: string;
|
|
537
|
+
}
|
|
538
|
+
export type AppUnregisteredEvent = TypedEvent<
|
|
539
|
+
[string, string],
|
|
540
|
+
AppUnregisteredEventObject
|
|
541
|
+
>;
|
|
542
|
+
|
|
543
|
+
export type AppUnregisteredEventFilter = TypedEventFilter<AppUnregisteredEvent>;
|
|
544
|
+
|
|
545
|
+
export interface AppUpdated_address_bytes32_EventObject {
|
|
546
|
+
app: string;
|
|
547
|
+
uid: string;
|
|
548
|
+
}
|
|
549
|
+
export type AppUpdated_address_bytes32_Event = TypedEvent<
|
|
550
|
+
[string, string],
|
|
551
|
+
AppUpdated_address_bytes32_EventObject
|
|
552
|
+
>;
|
|
553
|
+
|
|
554
|
+
export type AppUpdated_address_bytes32_EventFilter =
|
|
555
|
+
TypedEventFilter<AppUpdated_address_bytes32_Event>;
|
|
556
|
+
|
|
557
|
+
export interface AppUpdated_address_address_bytes32_EventObject {
|
|
558
|
+
app: string;
|
|
559
|
+
account: string;
|
|
560
|
+
appId: string;
|
|
561
|
+
}
|
|
562
|
+
export type AppUpdated_address_address_bytes32_Event = TypedEvent<
|
|
563
|
+
[string, string, string],
|
|
564
|
+
AppUpdated_address_address_bytes32_EventObject
|
|
565
|
+
>;
|
|
566
|
+
|
|
567
|
+
export type AppUpdated_address_address_bytes32_EventFilter =
|
|
568
|
+
TypedEventFilter<AppUpdated_address_address_bytes32_Event>;
|
|
569
|
+
|
|
570
|
+
export interface AppUpgradedEventObject {
|
|
571
|
+
app: string;
|
|
572
|
+
oldVersionId: string;
|
|
573
|
+
newVersionId: string;
|
|
574
|
+
}
|
|
575
|
+
export type AppUpgradedEvent = TypedEvent<
|
|
576
|
+
[string, string, string],
|
|
577
|
+
AppUpgradedEventObject
|
|
578
|
+
>;
|
|
579
|
+
|
|
580
|
+
export type AppUpgradedEventFilter = TypedEventFilter<AppUpgradedEvent>;
|
|
581
|
+
|
|
352
582
|
export interface ApprovalEventObject {
|
|
353
583
|
owner: string;
|
|
354
584
|
approved: string;
|
|
@@ -410,6 +640,118 @@ export type EntitlementCheckResultPostedEvent = TypedEvent<
|
|
|
410
640
|
export type EntitlementCheckResultPostedEventFilter =
|
|
411
641
|
TypedEventFilter<EntitlementCheckResultPostedEvent>;
|
|
412
642
|
|
|
643
|
+
export interface ExecutionInstalledEventObject {
|
|
644
|
+
module: string;
|
|
645
|
+
manifest: ExecutionManifestStructOutput;
|
|
646
|
+
}
|
|
647
|
+
export type ExecutionInstalledEvent = TypedEvent<
|
|
648
|
+
[string, ExecutionManifestStructOutput],
|
|
649
|
+
ExecutionInstalledEventObject
|
|
650
|
+
>;
|
|
651
|
+
|
|
652
|
+
export type ExecutionInstalledEventFilter =
|
|
653
|
+
TypedEventFilter<ExecutionInstalledEvent>;
|
|
654
|
+
|
|
655
|
+
export interface ExecutionUninstalledEventObject {
|
|
656
|
+
module: string;
|
|
657
|
+
success: boolean;
|
|
658
|
+
manifest: ExecutionManifestStructOutput;
|
|
659
|
+
}
|
|
660
|
+
export type ExecutionUninstalledEvent = TypedEvent<
|
|
661
|
+
[string, boolean, ExecutionManifestStructOutput],
|
|
662
|
+
ExecutionUninstalledEventObject
|
|
663
|
+
>;
|
|
664
|
+
|
|
665
|
+
export type ExecutionUninstalledEventFilter =
|
|
666
|
+
TypedEventFilter<ExecutionUninstalledEvent>;
|
|
667
|
+
|
|
668
|
+
export interface ExecutionUpdatedEventObject {
|
|
669
|
+
module: string;
|
|
670
|
+
manifest: ExecutionManifestStructOutput;
|
|
671
|
+
}
|
|
672
|
+
export type ExecutionUpdatedEvent = TypedEvent<
|
|
673
|
+
[string, ExecutionManifestStructOutput],
|
|
674
|
+
ExecutionUpdatedEventObject
|
|
675
|
+
>;
|
|
676
|
+
|
|
677
|
+
export type ExecutionUpdatedEventFilter =
|
|
678
|
+
TypedEventFilter<ExecutionUpdatedEvent>;
|
|
679
|
+
|
|
680
|
+
export interface GroupAccessGrantedEventObject {
|
|
681
|
+
groupId: string;
|
|
682
|
+
account: string;
|
|
683
|
+
delay: number;
|
|
684
|
+
since: number;
|
|
685
|
+
newMember: boolean;
|
|
686
|
+
}
|
|
687
|
+
export type GroupAccessGrantedEvent = TypedEvent<
|
|
688
|
+
[string, string, number, number, boolean],
|
|
689
|
+
GroupAccessGrantedEventObject
|
|
690
|
+
>;
|
|
691
|
+
|
|
692
|
+
export type GroupAccessGrantedEventFilter =
|
|
693
|
+
TypedEventFilter<GroupAccessGrantedEvent>;
|
|
694
|
+
|
|
695
|
+
export interface GroupAccessRevokedEventObject {
|
|
696
|
+
groupId: string;
|
|
697
|
+
account: string;
|
|
698
|
+
revoked: boolean;
|
|
699
|
+
}
|
|
700
|
+
export type GroupAccessRevokedEvent = TypedEvent<
|
|
701
|
+
[string, string, boolean],
|
|
702
|
+
GroupAccessRevokedEventObject
|
|
703
|
+
>;
|
|
704
|
+
|
|
705
|
+
export type GroupAccessRevokedEventFilter =
|
|
706
|
+
TypedEventFilter<GroupAccessRevokedEvent>;
|
|
707
|
+
|
|
708
|
+
export interface GroupExpirationSetEventObject {
|
|
709
|
+
groupId: string;
|
|
710
|
+
expiration: number;
|
|
711
|
+
}
|
|
712
|
+
export type GroupExpirationSetEvent = TypedEvent<
|
|
713
|
+
[string, number],
|
|
714
|
+
GroupExpirationSetEventObject
|
|
715
|
+
>;
|
|
716
|
+
|
|
717
|
+
export type GroupExpirationSetEventFilter =
|
|
718
|
+
TypedEventFilter<GroupExpirationSetEvent>;
|
|
719
|
+
|
|
720
|
+
export interface GroupGrantDelaySetEventObject {
|
|
721
|
+
groupId: string;
|
|
722
|
+
delay: number;
|
|
723
|
+
}
|
|
724
|
+
export type GroupGrantDelaySetEvent = TypedEvent<
|
|
725
|
+
[string, number],
|
|
726
|
+
GroupGrantDelaySetEventObject
|
|
727
|
+
>;
|
|
728
|
+
|
|
729
|
+
export type GroupGrantDelaySetEventFilter =
|
|
730
|
+
TypedEventFilter<GroupGrantDelaySetEvent>;
|
|
731
|
+
|
|
732
|
+
export interface GroupGuardianSetEventObject {
|
|
733
|
+
groupId: string;
|
|
734
|
+
guardian: string;
|
|
735
|
+
}
|
|
736
|
+
export type GroupGuardianSetEvent = TypedEvent<
|
|
737
|
+
[string, string],
|
|
738
|
+
GroupGuardianSetEventObject
|
|
739
|
+
>;
|
|
740
|
+
|
|
741
|
+
export type GroupGuardianSetEventFilter =
|
|
742
|
+
TypedEventFilter<GroupGuardianSetEvent>;
|
|
743
|
+
|
|
744
|
+
export interface GroupStatusSetEventObject {
|
|
745
|
+
groupId: string;
|
|
746
|
+
active: boolean;
|
|
747
|
+
}
|
|
748
|
+
export type GroupStatusSetEvent = TypedEvent<
|
|
749
|
+
[string, boolean],
|
|
750
|
+
GroupStatusSetEventObject
|
|
751
|
+
>;
|
|
752
|
+
|
|
753
|
+
export type GroupStatusSetEventFilter = TypedEventFilter<GroupStatusSetEvent>;
|
|
754
|
+
|
|
413
755
|
export interface InitializedEventObject {
|
|
414
756
|
version: number;
|
|
415
757
|
}
|
|
@@ -550,6 +892,43 @@ export type MembershipWithdrawalEvent = TypedEvent<
|
|
|
550
892
|
export type MembershipWithdrawalEventFilter =
|
|
551
893
|
TypedEventFilter<MembershipWithdrawalEvent>;
|
|
552
894
|
|
|
895
|
+
export interface OperationCanceledEventObject {
|
|
896
|
+
operationId: string;
|
|
897
|
+
nonce: number;
|
|
898
|
+
}
|
|
899
|
+
export type OperationCanceledEvent = TypedEvent<
|
|
900
|
+
[string, number],
|
|
901
|
+
OperationCanceledEventObject
|
|
902
|
+
>;
|
|
903
|
+
|
|
904
|
+
export type OperationCanceledEventFilter =
|
|
905
|
+
TypedEventFilter<OperationCanceledEvent>;
|
|
906
|
+
|
|
907
|
+
export interface OperationExecutedEventObject {
|
|
908
|
+
operationId: string;
|
|
909
|
+
nonce: number;
|
|
910
|
+
}
|
|
911
|
+
export type OperationExecutedEvent = TypedEvent<
|
|
912
|
+
[string, number],
|
|
913
|
+
OperationExecutedEventObject
|
|
914
|
+
>;
|
|
915
|
+
|
|
916
|
+
export type OperationExecutedEventFilter =
|
|
917
|
+
TypedEventFilter<OperationExecutedEvent>;
|
|
918
|
+
|
|
919
|
+
export interface OperationScheduledEventObject {
|
|
920
|
+
operationId: string;
|
|
921
|
+
timepoint: number;
|
|
922
|
+
nonce: number;
|
|
923
|
+
}
|
|
924
|
+
export type OperationScheduledEvent = TypedEvent<
|
|
925
|
+
[string, number, number],
|
|
926
|
+
OperationScheduledEventObject
|
|
927
|
+
>;
|
|
928
|
+
|
|
929
|
+
export type OperationScheduledEventFilter =
|
|
930
|
+
TypedEventFilter<OperationScheduledEvent>;
|
|
931
|
+
|
|
553
932
|
export interface OwnershipTransferredEventObject {
|
|
554
933
|
previousOwner: string;
|
|
555
934
|
newOwner: string;
|
|
@@ -732,6 +1111,57 @@ export type SubscriptionUpdateEvent = TypedEvent<
|
|
|
732
1111
|
export type SubscriptionUpdateEventFilter =
|
|
733
1112
|
TypedEventFilter<SubscriptionUpdateEvent>;
|
|
734
1113
|
|
|
1114
|
+
export interface TargetDisabledSetEventObject {
|
|
1115
|
+
target: string;
|
|
1116
|
+
disabled: boolean;
|
|
1117
|
+
}
|
|
1118
|
+
export type TargetDisabledSetEvent = TypedEvent<
|
|
1119
|
+
[string, boolean],
|
|
1120
|
+
TargetDisabledSetEventObject
|
|
1121
|
+
>;
|
|
1122
|
+
|
|
1123
|
+
export type TargetDisabledSetEventFilter =
|
|
1124
|
+
TypedEventFilter<TargetDisabledSetEvent>;
|
|
1125
|
+
|
|
1126
|
+
export interface TargetFunctionDelaySetEventObject {
|
|
1127
|
+
target: string;
|
|
1128
|
+
newDelay: number;
|
|
1129
|
+
minSetback: number;
|
|
1130
|
+
}
|
|
1131
|
+
export type TargetFunctionDelaySetEvent = TypedEvent<
|
|
1132
|
+
[string, number, number],
|
|
1133
|
+
TargetFunctionDelaySetEventObject
|
|
1134
|
+
>;
|
|
1135
|
+
|
|
1136
|
+
export type TargetFunctionDelaySetEventFilter =
|
|
1137
|
+
TypedEventFilter<TargetFunctionDelaySetEvent>;
|
|
1138
|
+
|
|
1139
|
+
export interface TargetFunctionDisabledSetEventObject {
|
|
1140
|
+
target: string;
|
|
1141
|
+
selector: string;
|
|
1142
|
+
disabled: boolean;
|
|
1143
|
+
}
|
|
1144
|
+
export type TargetFunctionDisabledSetEvent = TypedEvent<
|
|
1145
|
+
[string, string, boolean],
|
|
1146
|
+
TargetFunctionDisabledSetEventObject
|
|
1147
|
+
>;
|
|
1148
|
+
|
|
1149
|
+
export type TargetFunctionDisabledSetEventFilter =
|
|
1150
|
+
TypedEventFilter<TargetFunctionDisabledSetEvent>;
|
|
1151
|
+
|
|
1152
|
+
export interface TargetFunctionGroupSetEventObject {
|
|
1153
|
+
target: string;
|
|
1154
|
+
selector: string;
|
|
1155
|
+
groupId: string;
|
|
1156
|
+
}
|
|
1157
|
+
export type TargetFunctionGroupSetEvent = TypedEvent<
|
|
1158
|
+
[string, string, string],
|
|
1159
|
+
TargetFunctionGroupSetEventObject
|
|
1160
|
+
>;
|
|
1161
|
+
|
|
1162
|
+
export type TargetFunctionGroupSetEventFilter =
|
|
1163
|
+
TypedEventFilter<TargetFunctionGroupSetEvent>;
|
|
1164
|
+
|
|
735
1165
|
export interface TransferEventObject {
|
|
736
1166
|
from: string;
|
|
737
1167
|
to: string;
|
|
@@ -1023,6 +1453,90 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1023
1453
|
};
|
|
1024
1454
|
|
|
1025
1455
|
filters: {
|
|
1456
|
+
"AppBanned(address,bytes32)"(
|
|
1457
|
+
app?: string | null,
|
|
1458
|
+
uid?: null
|
|
1459
|
+
): AppBannedEventFilter;
|
|
1460
|
+
AppBanned(app?: string | null, uid?: null): AppBannedEventFilter;
|
|
1461
|
+
|
|
1462
|
+
"AppCreated(address,bytes32)"(
|
|
1463
|
+
app?: string | null,
|
|
1464
|
+
uid?: null
|
|
1465
|
+
): AppCreatedEventFilter;
|
|
1466
|
+
AppCreated(app?: string | null, uid?: null): AppCreatedEventFilter;
|
|
1467
|
+
|
|
1468
|
+
"AppInstalled(address,address,bytes32)"(
|
|
1469
|
+
app?: string | null,
|
|
1470
|
+
account?: string | null,
|
|
1471
|
+
appId?: BytesLike | null
|
|
1472
|
+
): AppInstalledEventFilter;
|
|
1473
|
+
AppInstalled(
|
|
1474
|
+
app?: string | null,
|
|
1475
|
+
account?: string | null,
|
|
1476
|
+
appId?: BytesLike | null
|
|
1477
|
+
): AppInstalledEventFilter;
|
|
1478
|
+
|
|
1479
|
+
"AppRegistered(address,bytes32)"(
|
|
1480
|
+
app?: string | null,
|
|
1481
|
+
uid?: null
|
|
1482
|
+
): AppRegisteredEventFilter;
|
|
1483
|
+
AppRegistered(app?: string | null, uid?: null): AppRegisteredEventFilter;
|
|
1484
|
+
|
|
1485
|
+
"AppRenewed(address,address,bytes32)"(
|
|
1486
|
+
app?: string | null,
|
|
1487
|
+
account?: string | null,
|
|
1488
|
+
appId?: BytesLike | null
|
|
1489
|
+
): AppRenewedEventFilter;
|
|
1490
|
+
AppRenewed(
|
|
1491
|
+
app?: string | null,
|
|
1492
|
+
account?: string | null,
|
|
1493
|
+
appId?: BytesLike | null
|
|
1494
|
+
): AppRenewedEventFilter;
|
|
1495
|
+
|
|
1496
|
+
"AppSchemaSet(bytes32)"(uid?: null): AppSchemaSetEventFilter;
|
|
1497
|
+
AppSchemaSet(uid?: null): AppSchemaSetEventFilter;
|
|
1498
|
+
|
|
1499
|
+
"AppUninstalled(address,address,bytes32)"(
|
|
1500
|
+
app?: string | null,
|
|
1501
|
+
account?: string | null,
|
|
1502
|
+
appId?: BytesLike | null
|
|
1503
|
+
): AppUninstalledEventFilter;
|
|
1504
|
+
AppUninstalled(
|
|
1505
|
+
app?: string | null,
|
|
1506
|
+
account?: string | null,
|
|
1507
|
+
appId?: BytesLike | null
|
|
1508
|
+
): AppUninstalledEventFilter;
|
|
1509
|
+
|
|
1510
|
+
"AppUnregistered(address,bytes32)"(
|
|
1511
|
+
app?: string | null,
|
|
1512
|
+
uid?: null
|
|
1513
|
+
): AppUnregisteredEventFilter;
|
|
1514
|
+
AppUnregistered(
|
|
1515
|
+
app?: string | null,
|
|
1516
|
+
uid?: null
|
|
1517
|
+
): AppUnregisteredEventFilter;
|
|
1518
|
+
|
|
1519
|
+
"AppUpdated(address,bytes32)"(
|
|
1520
|
+
app?: string | null,
|
|
1521
|
+
uid?: null
|
|
1522
|
+
): AppUpdated_address_bytes32_EventFilter;
|
|
1523
|
+
"AppUpdated(address,address,bytes32)"(
|
|
1524
|
+
app?: string | null,
|
|
1525
|
+
account?: string | null,
|
|
1526
|
+
appId?: BytesLike | null
|
|
1527
|
+
): AppUpdated_address_address_bytes32_EventFilter;
|
|
1528
|
+
|
|
1529
|
+
"AppUpgraded(address,bytes32,bytes32)"(
|
|
1530
|
+
app?: string | null,
|
|
1531
|
+
oldVersionId?: BytesLike | null,
|
|
1532
|
+
newVersionId?: BytesLike | null
|
|
1533
|
+
): AppUpgradedEventFilter;
|
|
1534
|
+
AppUpgraded(
|
|
1535
|
+
app?: string | null,
|
|
1536
|
+
oldVersionId?: BytesLike | null,
|
|
1537
|
+
newVersionId?: BytesLike | null
|
|
1538
|
+
): AppUpgradedEventFilter;
|
|
1539
|
+
|
|
1026
1540
|
"Approval(address,address,uint256)"(
|
|
1027
1541
|
owner?: string | null,
|
|
1028
1542
|
approved?: string | null,
|
|
@@ -1072,6 +1586,97 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1072
1586
|
result?: null
|
|
1073
1587
|
): EntitlementCheckResultPostedEventFilter;
|
|
1074
1588
|
|
|
1589
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1590
|
+
module?: string | null,
|
|
1591
|
+
manifest?: null
|
|
1592
|
+
): ExecutionInstalledEventFilter;
|
|
1593
|
+
ExecutionInstalled(
|
|
1594
|
+
module?: string | null,
|
|
1595
|
+
manifest?: null
|
|
1596
|
+
): ExecutionInstalledEventFilter;
|
|
1597
|
+
|
|
1598
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1599
|
+
module?: string | null,
|
|
1600
|
+
success?: null,
|
|
1601
|
+
manifest?: null
|
|
1602
|
+
): ExecutionUninstalledEventFilter;
|
|
1603
|
+
ExecutionUninstalled(
|
|
1604
|
+
module?: string | null,
|
|
1605
|
+
success?: null,
|
|
1606
|
+
manifest?: null
|
|
1607
|
+
): ExecutionUninstalledEventFilter;
|
|
1608
|
+
|
|
1609
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1610
|
+
module?: string | null,
|
|
1611
|
+
manifest?: null
|
|
1612
|
+
): ExecutionUpdatedEventFilter;
|
|
1613
|
+
ExecutionUpdated(
|
|
1614
|
+
module?: string | null,
|
|
1615
|
+
manifest?: null
|
|
1616
|
+
): ExecutionUpdatedEventFilter;
|
|
1617
|
+
|
|
1618
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)"(
|
|
1619
|
+
groupId?: BytesLike | null,
|
|
1620
|
+
account?: string | null,
|
|
1621
|
+
delay?: null,
|
|
1622
|
+
since?: null,
|
|
1623
|
+
newMember?: null
|
|
1624
|
+
): GroupAccessGrantedEventFilter;
|
|
1625
|
+
GroupAccessGranted(
|
|
1626
|
+
groupId?: BytesLike | null,
|
|
1627
|
+
account?: string | null,
|
|
1628
|
+
delay?: null,
|
|
1629
|
+
since?: null,
|
|
1630
|
+
newMember?: null
|
|
1631
|
+
): GroupAccessGrantedEventFilter;
|
|
1632
|
+
|
|
1633
|
+
"GroupAccessRevoked(bytes32,address,bool)"(
|
|
1634
|
+
groupId?: BytesLike | null,
|
|
1635
|
+
account?: string | null,
|
|
1636
|
+
revoked?: null
|
|
1637
|
+
): GroupAccessRevokedEventFilter;
|
|
1638
|
+
GroupAccessRevoked(
|
|
1639
|
+
groupId?: BytesLike | null,
|
|
1640
|
+
account?: string | null,
|
|
1641
|
+
revoked?: null
|
|
1642
|
+
): GroupAccessRevokedEventFilter;
|
|
1643
|
+
|
|
1644
|
+
"GroupExpirationSet(bytes32,uint48)"(
|
|
1645
|
+
groupId?: BytesLike | null,
|
|
1646
|
+
expiration?: null
|
|
1647
|
+
): GroupExpirationSetEventFilter;
|
|
1648
|
+
GroupExpirationSet(
|
|
1649
|
+
groupId?: BytesLike | null,
|
|
1650
|
+
expiration?: null
|
|
1651
|
+
): GroupExpirationSetEventFilter;
|
|
1652
|
+
|
|
1653
|
+
"GroupGrantDelaySet(bytes32,uint32)"(
|
|
1654
|
+
groupId?: BytesLike | null,
|
|
1655
|
+
delay?: null
|
|
1656
|
+
): GroupGrantDelaySetEventFilter;
|
|
1657
|
+
GroupGrantDelaySet(
|
|
1658
|
+
groupId?: BytesLike | null,
|
|
1659
|
+
delay?: null
|
|
1660
|
+
): GroupGrantDelaySetEventFilter;
|
|
1661
|
+
|
|
1662
|
+
"GroupGuardianSet(bytes32,bytes32)"(
|
|
1663
|
+
groupId?: BytesLike | null,
|
|
1664
|
+
guardian?: null
|
|
1665
|
+
): GroupGuardianSetEventFilter;
|
|
1666
|
+
GroupGuardianSet(
|
|
1667
|
+
groupId?: BytesLike | null,
|
|
1668
|
+
guardian?: null
|
|
1669
|
+
): GroupGuardianSetEventFilter;
|
|
1670
|
+
|
|
1671
|
+
"GroupStatusSet(bytes32,bool)"(
|
|
1672
|
+
groupId?: BytesLike | null,
|
|
1673
|
+
active?: null
|
|
1674
|
+
): GroupStatusSetEventFilter;
|
|
1675
|
+
GroupStatusSet(
|
|
1676
|
+
groupId?: BytesLike | null,
|
|
1677
|
+
active?: null
|
|
1678
|
+
): GroupStatusSetEventFilter;
|
|
1679
|
+
|
|
1075
1680
|
"Initialized(uint32)"(version?: null): InitializedEventFilter;
|
|
1076
1681
|
Initialized(version?: null): InitializedEventFilter;
|
|
1077
1682
|
|
|
@@ -1153,6 +1758,35 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1153
1758
|
amount?: null
|
|
1154
1759
|
): MembershipWithdrawalEventFilter;
|
|
1155
1760
|
|
|
1761
|
+
"OperationCanceled(bytes32,uint32)"(
|
|
1762
|
+
operationId?: BytesLike | null,
|
|
1763
|
+
nonce?: null
|
|
1764
|
+
): OperationCanceledEventFilter;
|
|
1765
|
+
OperationCanceled(
|
|
1766
|
+
operationId?: BytesLike | null,
|
|
1767
|
+
nonce?: null
|
|
1768
|
+
): OperationCanceledEventFilter;
|
|
1769
|
+
|
|
1770
|
+
"OperationExecuted(bytes32,uint32)"(
|
|
1771
|
+
operationId?: BytesLike | null,
|
|
1772
|
+
nonce?: null
|
|
1773
|
+
): OperationExecutedEventFilter;
|
|
1774
|
+
OperationExecuted(
|
|
1775
|
+
operationId?: BytesLike | null,
|
|
1776
|
+
nonce?: null
|
|
1777
|
+
): OperationExecutedEventFilter;
|
|
1778
|
+
|
|
1779
|
+
"OperationScheduled(bytes32,uint48,uint32)"(
|
|
1780
|
+
operationId?: BytesLike | null,
|
|
1781
|
+
timepoint?: null,
|
|
1782
|
+
nonce?: null
|
|
1783
|
+
): OperationScheduledEventFilter;
|
|
1784
|
+
OperationScheduled(
|
|
1785
|
+
operationId?: BytesLike | null,
|
|
1786
|
+
timepoint?: null,
|
|
1787
|
+
nonce?: null
|
|
1788
|
+
): OperationScheduledEventFilter;
|
|
1789
|
+
|
|
1156
1790
|
"OwnershipTransferred(address,address)"(
|
|
1157
1791
|
previousOwner?: string | null,
|
|
1158
1792
|
newOwner?: string | null
|
|
@@ -1277,6 +1911,48 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1277
1911
|
expiration?: null
|
|
1278
1912
|
): SubscriptionUpdateEventFilter;
|
|
1279
1913
|
|
|
1914
|
+
"TargetDisabledSet(address,bool)"(
|
|
1915
|
+
target?: string | null,
|
|
1916
|
+
disabled?: null
|
|
1917
|
+
): TargetDisabledSetEventFilter;
|
|
1918
|
+
TargetDisabledSet(
|
|
1919
|
+
target?: string | null,
|
|
1920
|
+
disabled?: null
|
|
1921
|
+
): TargetDisabledSetEventFilter;
|
|
1922
|
+
|
|
1923
|
+
"TargetFunctionDelaySet(address,uint32,uint32)"(
|
|
1924
|
+
target?: string | null,
|
|
1925
|
+
newDelay?: null,
|
|
1926
|
+
minSetback?: null
|
|
1927
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1928
|
+
TargetFunctionDelaySet(
|
|
1929
|
+
target?: string | null,
|
|
1930
|
+
newDelay?: null,
|
|
1931
|
+
minSetback?: null
|
|
1932
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1933
|
+
|
|
1934
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)"(
|
|
1935
|
+
target?: string | null,
|
|
1936
|
+
selector?: BytesLike | null,
|
|
1937
|
+
disabled?: null
|
|
1938
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1939
|
+
TargetFunctionDisabledSet(
|
|
1940
|
+
target?: string | null,
|
|
1941
|
+
selector?: BytesLike | null,
|
|
1942
|
+
disabled?: null
|
|
1943
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1944
|
+
|
|
1945
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)"(
|
|
1946
|
+
target?: string | null,
|
|
1947
|
+
selector?: BytesLike | null,
|
|
1948
|
+
groupId?: BytesLike | null
|
|
1949
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1950
|
+
TargetFunctionGroupSet(
|
|
1951
|
+
target?: string | null,
|
|
1952
|
+
selector?: BytesLike | null,
|
|
1953
|
+
groupId?: BytesLike | null
|
|
1954
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1955
|
+
|
|
1280
1956
|
"Transfer(address,address,uint256)"(
|
|
1281
1957
|
from?: string | null,
|
|
1282
1958
|
to?: string | null,
|