@towns-protocol/generated 0.0.376 → 0.0.378
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 +1035 -63
- package/dev/abis/Channels.abi.ts +1035 -63
- package/dev/abis/EntitlementsManager.abi.json +982 -10
- package/dev/abis/EntitlementsManager.abi.ts +982 -10
- package/dev/abis/IAppFactory.abi.json +87 -0
- package/dev/abis/IAppFactory.abi.ts +87 -0
- package/dev/abis/IAppFactoryBase.abi.json +36 -0
- package/dev/abis/IAppFactoryBase.abi.ts +36 -0
- package/dev/abis/IAppRegistry.abi.json +0 -70
- package/dev/abis/IAppRegistry.abi.ts +0 -70
- package/dev/abis/IAppRegistryBase.abi.json +0 -19
- package/dev/abis/IAppRegistryBase.abi.ts +0 -19
- 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 +1000 -28
- package/dev/abis/MembershipFacet.abi.ts +1000 -28
- package/dev/abis/PrepayFacet.abi.json +993 -21
- package/dev/abis/PrepayFacet.abi.ts +993 -21
- package/dev/abis/Roles.abi.json +972 -0
- package/dev/abis/Roles.abi.ts +972 -0
- package/dev/typings/Channels.ts +657 -0
- package/dev/typings/EntitlementsManager.ts +658 -0
- package/dev/typings/IAppFactory.ts +154 -0
- package/dev/typings/IAppRegistry.ts +0 -73
- package/dev/typings/ITipping.ts +6 -6
- package/dev/typings/MembershipFacet.ts +657 -0
- package/dev/typings/PrepayFacet.ts +657 -0
- package/dev/typings/Roles.ts +657 -0
- package/dev/typings/factories/Channels__factory.ts +1036 -64
- package/dev/typings/factories/EntitlementsManager__factory.ts +982 -10
- package/dev/typings/factories/IAppFactory__factory.ts +108 -0
- package/dev/typings/factories/IAppRegistry__factory.ts +0 -70
- package/dev/typings/factories/ITipping__factory.ts +3 -3
- package/dev/typings/factories/MembershipFacet__factory.ts +1000 -28
- package/dev/typings/factories/PrepayFacet__factory.ts +993 -21
- package/dev/typings/factories/Roles__factory.ts +973 -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,30 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
263
314
|
): Result;
|
|
264
315
|
|
|
265
316
|
events: {
|
|
317
|
+
"AppBanned(address,bytes32)": EventFragment;
|
|
318
|
+
"AppInstalled(address,address,bytes32)": EventFragment;
|
|
319
|
+
"AppRegistered(address,bytes32)": EventFragment;
|
|
320
|
+
"AppRenewed(address,address,bytes32)": EventFragment;
|
|
321
|
+
"AppSchemaSet(bytes32)": EventFragment;
|
|
322
|
+
"AppUninstalled(address,address,bytes32)": EventFragment;
|
|
323
|
+
"AppUnregistered(address,bytes32)": EventFragment;
|
|
324
|
+
"AppUpdated(address,bytes32)": EventFragment;
|
|
325
|
+
"AppUpdated(address,address,bytes32)": EventFragment;
|
|
326
|
+
"AppUpgraded(address,bytes32,bytes32)": EventFragment;
|
|
266
327
|
"Approval(address,address,uint256)": EventFragment;
|
|
267
328
|
"ApprovalForAll(address,address,bool)": EventFragment;
|
|
268
329
|
"ConsecutiveTransfer(uint256,uint256,address,address)": EventFragment;
|
|
269
330
|
"DefaultBpsFeeUpdated(uint256)": EventFragment;
|
|
270
331
|
"EntitlementCheckResultPosted(bytes32,uint8)": EventFragment;
|
|
332
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
333
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
334
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
335
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)": EventFragment;
|
|
336
|
+
"GroupAccessRevoked(bytes32,address,bool)": EventFragment;
|
|
337
|
+
"GroupExpirationSet(bytes32,uint48)": EventFragment;
|
|
338
|
+
"GroupGrantDelaySet(bytes32,uint32)": EventFragment;
|
|
339
|
+
"GroupGuardianSet(bytes32,bytes32)": EventFragment;
|
|
340
|
+
"GroupStatusSet(bytes32,bool)": EventFragment;
|
|
271
341
|
"Initialized(uint32)": EventFragment;
|
|
272
342
|
"InterfaceAdded(bytes4)": EventFragment;
|
|
273
343
|
"InterfaceRemoved(bytes4)": EventFragment;
|
|
@@ -281,6 +351,9 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
281
351
|
"MembershipTokenIssued(address,uint256)": EventFragment;
|
|
282
352
|
"MembershipTokenRejected(address)": EventFragment;
|
|
283
353
|
"MembershipWithdrawal(address,uint256)": EventFragment;
|
|
354
|
+
"OperationCanceled(bytes32,uint32)": EventFragment;
|
|
355
|
+
"OperationExecuted(bytes32,uint32)": EventFragment;
|
|
356
|
+
"OperationScheduled(bytes32,uint48,uint32)": EventFragment;
|
|
284
357
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
285
358
|
"PartnerRegistered(address)": EventFragment;
|
|
286
359
|
"PartnerRemoved(address)": EventFragment;
|
|
@@ -297,9 +370,27 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
297
370
|
"RoleRemoved(address,uint256)": EventFragment;
|
|
298
371
|
"RoleUpdated(address,uint256)": EventFragment;
|
|
299
372
|
"SubscriptionUpdate(uint256,uint64)": EventFragment;
|
|
373
|
+
"TargetDisabledSet(address,bool)": EventFragment;
|
|
374
|
+
"TargetFunctionDelaySet(address,uint32,uint32)": EventFragment;
|
|
375
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)": EventFragment;
|
|
376
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)": EventFragment;
|
|
300
377
|
"Transfer(address,address,uint256)": EventFragment;
|
|
301
378
|
};
|
|
302
379
|
|
|
380
|
+
getEvent(nameOrSignatureOrTopic: "AppBanned"): EventFragment;
|
|
381
|
+
getEvent(nameOrSignatureOrTopic: "AppInstalled"): EventFragment;
|
|
382
|
+
getEvent(nameOrSignatureOrTopic: "AppRegistered"): EventFragment;
|
|
383
|
+
getEvent(nameOrSignatureOrTopic: "AppRenewed"): EventFragment;
|
|
384
|
+
getEvent(nameOrSignatureOrTopic: "AppSchemaSet"): EventFragment;
|
|
385
|
+
getEvent(nameOrSignatureOrTopic: "AppUninstalled"): EventFragment;
|
|
386
|
+
getEvent(nameOrSignatureOrTopic: "AppUnregistered"): EventFragment;
|
|
387
|
+
getEvent(
|
|
388
|
+
nameOrSignatureOrTopic: "AppUpdated(address,bytes32)"
|
|
389
|
+
): EventFragment;
|
|
390
|
+
getEvent(
|
|
391
|
+
nameOrSignatureOrTopic: "AppUpdated(address,address,bytes32)"
|
|
392
|
+
): EventFragment;
|
|
393
|
+
getEvent(nameOrSignatureOrTopic: "AppUpgraded"): EventFragment;
|
|
303
394
|
getEvent(nameOrSignatureOrTopic: "Approval"): EventFragment;
|
|
304
395
|
getEvent(nameOrSignatureOrTopic: "ApprovalForAll"): EventFragment;
|
|
305
396
|
getEvent(nameOrSignatureOrTopic: "ConsecutiveTransfer"): EventFragment;
|
|
@@ -307,6 +398,15 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
307
398
|
getEvent(
|
|
308
399
|
nameOrSignatureOrTopic: "EntitlementCheckResultPosted"
|
|
309
400
|
): EventFragment;
|
|
401
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionInstalled"): EventFragment;
|
|
402
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUninstalled"): EventFragment;
|
|
403
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUpdated"): EventFragment;
|
|
404
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessGranted"): EventFragment;
|
|
405
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessRevoked"): EventFragment;
|
|
406
|
+
getEvent(nameOrSignatureOrTopic: "GroupExpirationSet"): EventFragment;
|
|
407
|
+
getEvent(nameOrSignatureOrTopic: "GroupGrantDelaySet"): EventFragment;
|
|
408
|
+
getEvent(nameOrSignatureOrTopic: "GroupGuardianSet"): EventFragment;
|
|
409
|
+
getEvent(nameOrSignatureOrTopic: "GroupStatusSet"): EventFragment;
|
|
310
410
|
getEvent(nameOrSignatureOrTopic: "Initialized"): EventFragment;
|
|
311
411
|
getEvent(nameOrSignatureOrTopic: "InterfaceAdded"): EventFragment;
|
|
312
412
|
getEvent(nameOrSignatureOrTopic: "InterfaceRemoved"): EventFragment;
|
|
@@ -324,6 +424,9 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
324
424
|
getEvent(nameOrSignatureOrTopic: "MembershipTokenIssued"): EventFragment;
|
|
325
425
|
getEvent(nameOrSignatureOrTopic: "MembershipTokenRejected"): EventFragment;
|
|
326
426
|
getEvent(nameOrSignatureOrTopic: "MembershipWithdrawal"): EventFragment;
|
|
427
|
+
getEvent(nameOrSignatureOrTopic: "OperationCanceled"): EventFragment;
|
|
428
|
+
getEvent(nameOrSignatureOrTopic: "OperationExecuted"): EventFragment;
|
|
429
|
+
getEvent(nameOrSignatureOrTopic: "OperationScheduled"): EventFragment;
|
|
327
430
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
328
431
|
getEvent(nameOrSignatureOrTopic: "PartnerRegistered"): EventFragment;
|
|
329
432
|
getEvent(nameOrSignatureOrTopic: "PartnerRemoved"): EventFragment;
|
|
@@ -346,9 +449,123 @@ export interface MembershipFacetInterface extends utils.Interface {
|
|
|
346
449
|
getEvent(nameOrSignatureOrTopic: "RoleRemoved"): EventFragment;
|
|
347
450
|
getEvent(nameOrSignatureOrTopic: "RoleUpdated"): EventFragment;
|
|
348
451
|
getEvent(nameOrSignatureOrTopic: "SubscriptionUpdate"): EventFragment;
|
|
452
|
+
getEvent(nameOrSignatureOrTopic: "TargetDisabledSet"): EventFragment;
|
|
453
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDelaySet"): EventFragment;
|
|
454
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDisabledSet"): EventFragment;
|
|
455
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionGroupSet"): EventFragment;
|
|
349
456
|
getEvent(nameOrSignatureOrTopic: "Transfer"): EventFragment;
|
|
350
457
|
}
|
|
351
458
|
|
|
459
|
+
export interface AppBannedEventObject {
|
|
460
|
+
app: string;
|
|
461
|
+
uid: string;
|
|
462
|
+
}
|
|
463
|
+
export type AppBannedEvent = TypedEvent<[string, string], AppBannedEventObject>;
|
|
464
|
+
|
|
465
|
+
export type AppBannedEventFilter = TypedEventFilter<AppBannedEvent>;
|
|
466
|
+
|
|
467
|
+
export interface AppInstalledEventObject {
|
|
468
|
+
app: string;
|
|
469
|
+
account: string;
|
|
470
|
+
appId: string;
|
|
471
|
+
}
|
|
472
|
+
export type AppInstalledEvent = TypedEvent<
|
|
473
|
+
[string, string, string],
|
|
474
|
+
AppInstalledEventObject
|
|
475
|
+
>;
|
|
476
|
+
|
|
477
|
+
export type AppInstalledEventFilter = TypedEventFilter<AppInstalledEvent>;
|
|
478
|
+
|
|
479
|
+
export interface AppRegisteredEventObject {
|
|
480
|
+
app: string;
|
|
481
|
+
uid: string;
|
|
482
|
+
}
|
|
483
|
+
export type AppRegisteredEvent = TypedEvent<
|
|
484
|
+
[string, string],
|
|
485
|
+
AppRegisteredEventObject
|
|
486
|
+
>;
|
|
487
|
+
|
|
488
|
+
export type AppRegisteredEventFilter = TypedEventFilter<AppRegisteredEvent>;
|
|
489
|
+
|
|
490
|
+
export interface AppRenewedEventObject {
|
|
491
|
+
app: string;
|
|
492
|
+
account: string;
|
|
493
|
+
appId: string;
|
|
494
|
+
}
|
|
495
|
+
export type AppRenewedEvent = TypedEvent<
|
|
496
|
+
[string, string, string],
|
|
497
|
+
AppRenewedEventObject
|
|
498
|
+
>;
|
|
499
|
+
|
|
500
|
+
export type AppRenewedEventFilter = TypedEventFilter<AppRenewedEvent>;
|
|
501
|
+
|
|
502
|
+
export interface AppSchemaSetEventObject {
|
|
503
|
+
uid: string;
|
|
504
|
+
}
|
|
505
|
+
export type AppSchemaSetEvent = TypedEvent<[string], AppSchemaSetEventObject>;
|
|
506
|
+
|
|
507
|
+
export type AppSchemaSetEventFilter = TypedEventFilter<AppSchemaSetEvent>;
|
|
508
|
+
|
|
509
|
+
export interface AppUninstalledEventObject {
|
|
510
|
+
app: string;
|
|
511
|
+
account: string;
|
|
512
|
+
appId: string;
|
|
513
|
+
}
|
|
514
|
+
export type AppUninstalledEvent = TypedEvent<
|
|
515
|
+
[string, string, string],
|
|
516
|
+
AppUninstalledEventObject
|
|
517
|
+
>;
|
|
518
|
+
|
|
519
|
+
export type AppUninstalledEventFilter = TypedEventFilter<AppUninstalledEvent>;
|
|
520
|
+
|
|
521
|
+
export interface AppUnregisteredEventObject {
|
|
522
|
+
app: string;
|
|
523
|
+
uid: string;
|
|
524
|
+
}
|
|
525
|
+
export type AppUnregisteredEvent = TypedEvent<
|
|
526
|
+
[string, string],
|
|
527
|
+
AppUnregisteredEventObject
|
|
528
|
+
>;
|
|
529
|
+
|
|
530
|
+
export type AppUnregisteredEventFilter = TypedEventFilter<AppUnregisteredEvent>;
|
|
531
|
+
|
|
532
|
+
export interface AppUpdated_address_bytes32_EventObject {
|
|
533
|
+
app: string;
|
|
534
|
+
uid: string;
|
|
535
|
+
}
|
|
536
|
+
export type AppUpdated_address_bytes32_Event = TypedEvent<
|
|
537
|
+
[string, string],
|
|
538
|
+
AppUpdated_address_bytes32_EventObject
|
|
539
|
+
>;
|
|
540
|
+
|
|
541
|
+
export type AppUpdated_address_bytes32_EventFilter =
|
|
542
|
+
TypedEventFilter<AppUpdated_address_bytes32_Event>;
|
|
543
|
+
|
|
544
|
+
export interface AppUpdated_address_address_bytes32_EventObject {
|
|
545
|
+
app: string;
|
|
546
|
+
account: string;
|
|
547
|
+
appId: string;
|
|
548
|
+
}
|
|
549
|
+
export type AppUpdated_address_address_bytes32_Event = TypedEvent<
|
|
550
|
+
[string, string, string],
|
|
551
|
+
AppUpdated_address_address_bytes32_EventObject
|
|
552
|
+
>;
|
|
553
|
+
|
|
554
|
+
export type AppUpdated_address_address_bytes32_EventFilter =
|
|
555
|
+
TypedEventFilter<AppUpdated_address_address_bytes32_Event>;
|
|
556
|
+
|
|
557
|
+
export interface AppUpgradedEventObject {
|
|
558
|
+
app: string;
|
|
559
|
+
oldVersionId: string;
|
|
560
|
+
newVersionId: string;
|
|
561
|
+
}
|
|
562
|
+
export type AppUpgradedEvent = TypedEvent<
|
|
563
|
+
[string, string, string],
|
|
564
|
+
AppUpgradedEventObject
|
|
565
|
+
>;
|
|
566
|
+
|
|
567
|
+
export type AppUpgradedEventFilter = TypedEventFilter<AppUpgradedEvent>;
|
|
568
|
+
|
|
352
569
|
export interface ApprovalEventObject {
|
|
353
570
|
owner: string;
|
|
354
571
|
approved: string;
|
|
@@ -410,6 +627,118 @@ export type EntitlementCheckResultPostedEvent = TypedEvent<
|
|
|
410
627
|
export type EntitlementCheckResultPostedEventFilter =
|
|
411
628
|
TypedEventFilter<EntitlementCheckResultPostedEvent>;
|
|
412
629
|
|
|
630
|
+
export interface ExecutionInstalledEventObject {
|
|
631
|
+
module: string;
|
|
632
|
+
manifest: ExecutionManifestStructOutput;
|
|
633
|
+
}
|
|
634
|
+
export type ExecutionInstalledEvent = TypedEvent<
|
|
635
|
+
[string, ExecutionManifestStructOutput],
|
|
636
|
+
ExecutionInstalledEventObject
|
|
637
|
+
>;
|
|
638
|
+
|
|
639
|
+
export type ExecutionInstalledEventFilter =
|
|
640
|
+
TypedEventFilter<ExecutionInstalledEvent>;
|
|
641
|
+
|
|
642
|
+
export interface ExecutionUninstalledEventObject {
|
|
643
|
+
module: string;
|
|
644
|
+
success: boolean;
|
|
645
|
+
manifest: ExecutionManifestStructOutput;
|
|
646
|
+
}
|
|
647
|
+
export type ExecutionUninstalledEvent = TypedEvent<
|
|
648
|
+
[string, boolean, ExecutionManifestStructOutput],
|
|
649
|
+
ExecutionUninstalledEventObject
|
|
650
|
+
>;
|
|
651
|
+
|
|
652
|
+
export type ExecutionUninstalledEventFilter =
|
|
653
|
+
TypedEventFilter<ExecutionUninstalledEvent>;
|
|
654
|
+
|
|
655
|
+
export interface ExecutionUpdatedEventObject {
|
|
656
|
+
module: string;
|
|
657
|
+
manifest: ExecutionManifestStructOutput;
|
|
658
|
+
}
|
|
659
|
+
export type ExecutionUpdatedEvent = TypedEvent<
|
|
660
|
+
[string, ExecutionManifestStructOutput],
|
|
661
|
+
ExecutionUpdatedEventObject
|
|
662
|
+
>;
|
|
663
|
+
|
|
664
|
+
export type ExecutionUpdatedEventFilter =
|
|
665
|
+
TypedEventFilter<ExecutionUpdatedEvent>;
|
|
666
|
+
|
|
667
|
+
export interface GroupAccessGrantedEventObject {
|
|
668
|
+
groupId: string;
|
|
669
|
+
account: string;
|
|
670
|
+
delay: number;
|
|
671
|
+
since: number;
|
|
672
|
+
newMember: boolean;
|
|
673
|
+
}
|
|
674
|
+
export type GroupAccessGrantedEvent = TypedEvent<
|
|
675
|
+
[string, string, number, number, boolean],
|
|
676
|
+
GroupAccessGrantedEventObject
|
|
677
|
+
>;
|
|
678
|
+
|
|
679
|
+
export type GroupAccessGrantedEventFilter =
|
|
680
|
+
TypedEventFilter<GroupAccessGrantedEvent>;
|
|
681
|
+
|
|
682
|
+
export interface GroupAccessRevokedEventObject {
|
|
683
|
+
groupId: string;
|
|
684
|
+
account: string;
|
|
685
|
+
revoked: boolean;
|
|
686
|
+
}
|
|
687
|
+
export type GroupAccessRevokedEvent = TypedEvent<
|
|
688
|
+
[string, string, boolean],
|
|
689
|
+
GroupAccessRevokedEventObject
|
|
690
|
+
>;
|
|
691
|
+
|
|
692
|
+
export type GroupAccessRevokedEventFilter =
|
|
693
|
+
TypedEventFilter<GroupAccessRevokedEvent>;
|
|
694
|
+
|
|
695
|
+
export interface GroupExpirationSetEventObject {
|
|
696
|
+
groupId: string;
|
|
697
|
+
expiration: number;
|
|
698
|
+
}
|
|
699
|
+
export type GroupExpirationSetEvent = TypedEvent<
|
|
700
|
+
[string, number],
|
|
701
|
+
GroupExpirationSetEventObject
|
|
702
|
+
>;
|
|
703
|
+
|
|
704
|
+
export type GroupExpirationSetEventFilter =
|
|
705
|
+
TypedEventFilter<GroupExpirationSetEvent>;
|
|
706
|
+
|
|
707
|
+
export interface GroupGrantDelaySetEventObject {
|
|
708
|
+
groupId: string;
|
|
709
|
+
delay: number;
|
|
710
|
+
}
|
|
711
|
+
export type GroupGrantDelaySetEvent = TypedEvent<
|
|
712
|
+
[string, number],
|
|
713
|
+
GroupGrantDelaySetEventObject
|
|
714
|
+
>;
|
|
715
|
+
|
|
716
|
+
export type GroupGrantDelaySetEventFilter =
|
|
717
|
+
TypedEventFilter<GroupGrantDelaySetEvent>;
|
|
718
|
+
|
|
719
|
+
export interface GroupGuardianSetEventObject {
|
|
720
|
+
groupId: string;
|
|
721
|
+
guardian: string;
|
|
722
|
+
}
|
|
723
|
+
export type GroupGuardianSetEvent = TypedEvent<
|
|
724
|
+
[string, string],
|
|
725
|
+
GroupGuardianSetEventObject
|
|
726
|
+
>;
|
|
727
|
+
|
|
728
|
+
export type GroupGuardianSetEventFilter =
|
|
729
|
+
TypedEventFilter<GroupGuardianSetEvent>;
|
|
730
|
+
|
|
731
|
+
export interface GroupStatusSetEventObject {
|
|
732
|
+
groupId: string;
|
|
733
|
+
active: boolean;
|
|
734
|
+
}
|
|
735
|
+
export type GroupStatusSetEvent = TypedEvent<
|
|
736
|
+
[string, boolean],
|
|
737
|
+
GroupStatusSetEventObject
|
|
738
|
+
>;
|
|
739
|
+
|
|
740
|
+
export type GroupStatusSetEventFilter = TypedEventFilter<GroupStatusSetEvent>;
|
|
741
|
+
|
|
413
742
|
export interface InitializedEventObject {
|
|
414
743
|
version: number;
|
|
415
744
|
}
|
|
@@ -550,6 +879,43 @@ export type MembershipWithdrawalEvent = TypedEvent<
|
|
|
550
879
|
export type MembershipWithdrawalEventFilter =
|
|
551
880
|
TypedEventFilter<MembershipWithdrawalEvent>;
|
|
552
881
|
|
|
882
|
+
export interface OperationCanceledEventObject {
|
|
883
|
+
operationId: string;
|
|
884
|
+
nonce: number;
|
|
885
|
+
}
|
|
886
|
+
export type OperationCanceledEvent = TypedEvent<
|
|
887
|
+
[string, number],
|
|
888
|
+
OperationCanceledEventObject
|
|
889
|
+
>;
|
|
890
|
+
|
|
891
|
+
export type OperationCanceledEventFilter =
|
|
892
|
+
TypedEventFilter<OperationCanceledEvent>;
|
|
893
|
+
|
|
894
|
+
export interface OperationExecutedEventObject {
|
|
895
|
+
operationId: string;
|
|
896
|
+
nonce: number;
|
|
897
|
+
}
|
|
898
|
+
export type OperationExecutedEvent = TypedEvent<
|
|
899
|
+
[string, number],
|
|
900
|
+
OperationExecutedEventObject
|
|
901
|
+
>;
|
|
902
|
+
|
|
903
|
+
export type OperationExecutedEventFilter =
|
|
904
|
+
TypedEventFilter<OperationExecutedEvent>;
|
|
905
|
+
|
|
906
|
+
export interface OperationScheduledEventObject {
|
|
907
|
+
operationId: string;
|
|
908
|
+
timepoint: number;
|
|
909
|
+
nonce: number;
|
|
910
|
+
}
|
|
911
|
+
export type OperationScheduledEvent = TypedEvent<
|
|
912
|
+
[string, number, number],
|
|
913
|
+
OperationScheduledEventObject
|
|
914
|
+
>;
|
|
915
|
+
|
|
916
|
+
export type OperationScheduledEventFilter =
|
|
917
|
+
TypedEventFilter<OperationScheduledEvent>;
|
|
918
|
+
|
|
553
919
|
export interface OwnershipTransferredEventObject {
|
|
554
920
|
previousOwner: string;
|
|
555
921
|
newOwner: string;
|
|
@@ -732,6 +1098,57 @@ export type SubscriptionUpdateEvent = TypedEvent<
|
|
|
732
1098
|
export type SubscriptionUpdateEventFilter =
|
|
733
1099
|
TypedEventFilter<SubscriptionUpdateEvent>;
|
|
734
1100
|
|
|
1101
|
+
export interface TargetDisabledSetEventObject {
|
|
1102
|
+
target: string;
|
|
1103
|
+
disabled: boolean;
|
|
1104
|
+
}
|
|
1105
|
+
export type TargetDisabledSetEvent = TypedEvent<
|
|
1106
|
+
[string, boolean],
|
|
1107
|
+
TargetDisabledSetEventObject
|
|
1108
|
+
>;
|
|
1109
|
+
|
|
1110
|
+
export type TargetDisabledSetEventFilter =
|
|
1111
|
+
TypedEventFilter<TargetDisabledSetEvent>;
|
|
1112
|
+
|
|
1113
|
+
export interface TargetFunctionDelaySetEventObject {
|
|
1114
|
+
target: string;
|
|
1115
|
+
newDelay: number;
|
|
1116
|
+
minSetback: number;
|
|
1117
|
+
}
|
|
1118
|
+
export type TargetFunctionDelaySetEvent = TypedEvent<
|
|
1119
|
+
[string, number, number],
|
|
1120
|
+
TargetFunctionDelaySetEventObject
|
|
1121
|
+
>;
|
|
1122
|
+
|
|
1123
|
+
export type TargetFunctionDelaySetEventFilter =
|
|
1124
|
+
TypedEventFilter<TargetFunctionDelaySetEvent>;
|
|
1125
|
+
|
|
1126
|
+
export interface TargetFunctionDisabledSetEventObject {
|
|
1127
|
+
target: string;
|
|
1128
|
+
selector: string;
|
|
1129
|
+
disabled: boolean;
|
|
1130
|
+
}
|
|
1131
|
+
export type TargetFunctionDisabledSetEvent = TypedEvent<
|
|
1132
|
+
[string, string, boolean],
|
|
1133
|
+
TargetFunctionDisabledSetEventObject
|
|
1134
|
+
>;
|
|
1135
|
+
|
|
1136
|
+
export type TargetFunctionDisabledSetEventFilter =
|
|
1137
|
+
TypedEventFilter<TargetFunctionDisabledSetEvent>;
|
|
1138
|
+
|
|
1139
|
+
export interface TargetFunctionGroupSetEventObject {
|
|
1140
|
+
target: string;
|
|
1141
|
+
selector: string;
|
|
1142
|
+
groupId: string;
|
|
1143
|
+
}
|
|
1144
|
+
export type TargetFunctionGroupSetEvent = TypedEvent<
|
|
1145
|
+
[string, string, string],
|
|
1146
|
+
TargetFunctionGroupSetEventObject
|
|
1147
|
+
>;
|
|
1148
|
+
|
|
1149
|
+
export type TargetFunctionGroupSetEventFilter =
|
|
1150
|
+
TypedEventFilter<TargetFunctionGroupSetEvent>;
|
|
1151
|
+
|
|
735
1152
|
export interface TransferEventObject {
|
|
736
1153
|
from: string;
|
|
737
1154
|
to: string;
|
|
@@ -1023,6 +1440,84 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1023
1440
|
};
|
|
1024
1441
|
|
|
1025
1442
|
filters: {
|
|
1443
|
+
"AppBanned(address,bytes32)"(
|
|
1444
|
+
app?: string | null,
|
|
1445
|
+
uid?: null
|
|
1446
|
+
): AppBannedEventFilter;
|
|
1447
|
+
AppBanned(app?: string | null, uid?: null): AppBannedEventFilter;
|
|
1448
|
+
|
|
1449
|
+
"AppInstalled(address,address,bytes32)"(
|
|
1450
|
+
app?: string | null,
|
|
1451
|
+
account?: string | null,
|
|
1452
|
+
appId?: BytesLike | null
|
|
1453
|
+
): AppInstalledEventFilter;
|
|
1454
|
+
AppInstalled(
|
|
1455
|
+
app?: string | null,
|
|
1456
|
+
account?: string | null,
|
|
1457
|
+
appId?: BytesLike | null
|
|
1458
|
+
): AppInstalledEventFilter;
|
|
1459
|
+
|
|
1460
|
+
"AppRegistered(address,bytes32)"(
|
|
1461
|
+
app?: string | null,
|
|
1462
|
+
uid?: null
|
|
1463
|
+
): AppRegisteredEventFilter;
|
|
1464
|
+
AppRegistered(app?: string | null, uid?: null): AppRegisteredEventFilter;
|
|
1465
|
+
|
|
1466
|
+
"AppRenewed(address,address,bytes32)"(
|
|
1467
|
+
app?: string | null,
|
|
1468
|
+
account?: string | null,
|
|
1469
|
+
appId?: BytesLike | null
|
|
1470
|
+
): AppRenewedEventFilter;
|
|
1471
|
+
AppRenewed(
|
|
1472
|
+
app?: string | null,
|
|
1473
|
+
account?: string | null,
|
|
1474
|
+
appId?: BytesLike | null
|
|
1475
|
+
): AppRenewedEventFilter;
|
|
1476
|
+
|
|
1477
|
+
"AppSchemaSet(bytes32)"(uid?: null): AppSchemaSetEventFilter;
|
|
1478
|
+
AppSchemaSet(uid?: null): AppSchemaSetEventFilter;
|
|
1479
|
+
|
|
1480
|
+
"AppUninstalled(address,address,bytes32)"(
|
|
1481
|
+
app?: string | null,
|
|
1482
|
+
account?: string | null,
|
|
1483
|
+
appId?: BytesLike | null
|
|
1484
|
+
): AppUninstalledEventFilter;
|
|
1485
|
+
AppUninstalled(
|
|
1486
|
+
app?: string | null,
|
|
1487
|
+
account?: string | null,
|
|
1488
|
+
appId?: BytesLike | null
|
|
1489
|
+
): AppUninstalledEventFilter;
|
|
1490
|
+
|
|
1491
|
+
"AppUnregistered(address,bytes32)"(
|
|
1492
|
+
app?: string | null,
|
|
1493
|
+
uid?: null
|
|
1494
|
+
): AppUnregisteredEventFilter;
|
|
1495
|
+
AppUnregistered(
|
|
1496
|
+
app?: string | null,
|
|
1497
|
+
uid?: null
|
|
1498
|
+
): AppUnregisteredEventFilter;
|
|
1499
|
+
|
|
1500
|
+
"AppUpdated(address,bytes32)"(
|
|
1501
|
+
app?: string | null,
|
|
1502
|
+
uid?: null
|
|
1503
|
+
): AppUpdated_address_bytes32_EventFilter;
|
|
1504
|
+
"AppUpdated(address,address,bytes32)"(
|
|
1505
|
+
app?: string | null,
|
|
1506
|
+
account?: string | null,
|
|
1507
|
+
appId?: BytesLike | null
|
|
1508
|
+
): AppUpdated_address_address_bytes32_EventFilter;
|
|
1509
|
+
|
|
1510
|
+
"AppUpgraded(address,bytes32,bytes32)"(
|
|
1511
|
+
app?: string | null,
|
|
1512
|
+
oldVersionId?: BytesLike | null,
|
|
1513
|
+
newVersionId?: BytesLike | null
|
|
1514
|
+
): AppUpgradedEventFilter;
|
|
1515
|
+
AppUpgraded(
|
|
1516
|
+
app?: string | null,
|
|
1517
|
+
oldVersionId?: BytesLike | null,
|
|
1518
|
+
newVersionId?: BytesLike | null
|
|
1519
|
+
): AppUpgradedEventFilter;
|
|
1520
|
+
|
|
1026
1521
|
"Approval(address,address,uint256)"(
|
|
1027
1522
|
owner?: string | null,
|
|
1028
1523
|
approved?: string | null,
|
|
@@ -1072,6 +1567,97 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1072
1567
|
result?: null
|
|
1073
1568
|
): EntitlementCheckResultPostedEventFilter;
|
|
1074
1569
|
|
|
1570
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1571
|
+
module?: string | null,
|
|
1572
|
+
manifest?: null
|
|
1573
|
+
): ExecutionInstalledEventFilter;
|
|
1574
|
+
ExecutionInstalled(
|
|
1575
|
+
module?: string | null,
|
|
1576
|
+
manifest?: null
|
|
1577
|
+
): ExecutionInstalledEventFilter;
|
|
1578
|
+
|
|
1579
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1580
|
+
module?: string | null,
|
|
1581
|
+
success?: null,
|
|
1582
|
+
manifest?: null
|
|
1583
|
+
): ExecutionUninstalledEventFilter;
|
|
1584
|
+
ExecutionUninstalled(
|
|
1585
|
+
module?: string | null,
|
|
1586
|
+
success?: null,
|
|
1587
|
+
manifest?: null
|
|
1588
|
+
): ExecutionUninstalledEventFilter;
|
|
1589
|
+
|
|
1590
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1591
|
+
module?: string | null,
|
|
1592
|
+
manifest?: null
|
|
1593
|
+
): ExecutionUpdatedEventFilter;
|
|
1594
|
+
ExecutionUpdated(
|
|
1595
|
+
module?: string | null,
|
|
1596
|
+
manifest?: null
|
|
1597
|
+
): ExecutionUpdatedEventFilter;
|
|
1598
|
+
|
|
1599
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)"(
|
|
1600
|
+
groupId?: BytesLike | null,
|
|
1601
|
+
account?: string | null,
|
|
1602
|
+
delay?: null,
|
|
1603
|
+
since?: null,
|
|
1604
|
+
newMember?: null
|
|
1605
|
+
): GroupAccessGrantedEventFilter;
|
|
1606
|
+
GroupAccessGranted(
|
|
1607
|
+
groupId?: BytesLike | null,
|
|
1608
|
+
account?: string | null,
|
|
1609
|
+
delay?: null,
|
|
1610
|
+
since?: null,
|
|
1611
|
+
newMember?: null
|
|
1612
|
+
): GroupAccessGrantedEventFilter;
|
|
1613
|
+
|
|
1614
|
+
"GroupAccessRevoked(bytes32,address,bool)"(
|
|
1615
|
+
groupId?: BytesLike | null,
|
|
1616
|
+
account?: string | null,
|
|
1617
|
+
revoked?: null
|
|
1618
|
+
): GroupAccessRevokedEventFilter;
|
|
1619
|
+
GroupAccessRevoked(
|
|
1620
|
+
groupId?: BytesLike | null,
|
|
1621
|
+
account?: string | null,
|
|
1622
|
+
revoked?: null
|
|
1623
|
+
): GroupAccessRevokedEventFilter;
|
|
1624
|
+
|
|
1625
|
+
"GroupExpirationSet(bytes32,uint48)"(
|
|
1626
|
+
groupId?: BytesLike | null,
|
|
1627
|
+
expiration?: null
|
|
1628
|
+
): GroupExpirationSetEventFilter;
|
|
1629
|
+
GroupExpirationSet(
|
|
1630
|
+
groupId?: BytesLike | null,
|
|
1631
|
+
expiration?: null
|
|
1632
|
+
): GroupExpirationSetEventFilter;
|
|
1633
|
+
|
|
1634
|
+
"GroupGrantDelaySet(bytes32,uint32)"(
|
|
1635
|
+
groupId?: BytesLike | null,
|
|
1636
|
+
delay?: null
|
|
1637
|
+
): GroupGrantDelaySetEventFilter;
|
|
1638
|
+
GroupGrantDelaySet(
|
|
1639
|
+
groupId?: BytesLike | null,
|
|
1640
|
+
delay?: null
|
|
1641
|
+
): GroupGrantDelaySetEventFilter;
|
|
1642
|
+
|
|
1643
|
+
"GroupGuardianSet(bytes32,bytes32)"(
|
|
1644
|
+
groupId?: BytesLike | null,
|
|
1645
|
+
guardian?: null
|
|
1646
|
+
): GroupGuardianSetEventFilter;
|
|
1647
|
+
GroupGuardianSet(
|
|
1648
|
+
groupId?: BytesLike | null,
|
|
1649
|
+
guardian?: null
|
|
1650
|
+
): GroupGuardianSetEventFilter;
|
|
1651
|
+
|
|
1652
|
+
"GroupStatusSet(bytes32,bool)"(
|
|
1653
|
+
groupId?: BytesLike | null,
|
|
1654
|
+
active?: null
|
|
1655
|
+
): GroupStatusSetEventFilter;
|
|
1656
|
+
GroupStatusSet(
|
|
1657
|
+
groupId?: BytesLike | null,
|
|
1658
|
+
active?: null
|
|
1659
|
+
): GroupStatusSetEventFilter;
|
|
1660
|
+
|
|
1075
1661
|
"Initialized(uint32)"(version?: null): InitializedEventFilter;
|
|
1076
1662
|
Initialized(version?: null): InitializedEventFilter;
|
|
1077
1663
|
|
|
@@ -1153,6 +1739,35 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1153
1739
|
amount?: null
|
|
1154
1740
|
): MembershipWithdrawalEventFilter;
|
|
1155
1741
|
|
|
1742
|
+
"OperationCanceled(bytes32,uint32)"(
|
|
1743
|
+
operationId?: BytesLike | null,
|
|
1744
|
+
nonce?: null
|
|
1745
|
+
): OperationCanceledEventFilter;
|
|
1746
|
+
OperationCanceled(
|
|
1747
|
+
operationId?: BytesLike | null,
|
|
1748
|
+
nonce?: null
|
|
1749
|
+
): OperationCanceledEventFilter;
|
|
1750
|
+
|
|
1751
|
+
"OperationExecuted(bytes32,uint32)"(
|
|
1752
|
+
operationId?: BytesLike | null,
|
|
1753
|
+
nonce?: null
|
|
1754
|
+
): OperationExecutedEventFilter;
|
|
1755
|
+
OperationExecuted(
|
|
1756
|
+
operationId?: BytesLike | null,
|
|
1757
|
+
nonce?: null
|
|
1758
|
+
): OperationExecutedEventFilter;
|
|
1759
|
+
|
|
1760
|
+
"OperationScheduled(bytes32,uint48,uint32)"(
|
|
1761
|
+
operationId?: BytesLike | null,
|
|
1762
|
+
timepoint?: null,
|
|
1763
|
+
nonce?: null
|
|
1764
|
+
): OperationScheduledEventFilter;
|
|
1765
|
+
OperationScheduled(
|
|
1766
|
+
operationId?: BytesLike | null,
|
|
1767
|
+
timepoint?: null,
|
|
1768
|
+
nonce?: null
|
|
1769
|
+
): OperationScheduledEventFilter;
|
|
1770
|
+
|
|
1156
1771
|
"OwnershipTransferred(address,address)"(
|
|
1157
1772
|
previousOwner?: string | null,
|
|
1158
1773
|
newOwner?: string | null
|
|
@@ -1277,6 +1892,48 @@ export interface MembershipFacet extends BaseContract {
|
|
|
1277
1892
|
expiration?: null
|
|
1278
1893
|
): SubscriptionUpdateEventFilter;
|
|
1279
1894
|
|
|
1895
|
+
"TargetDisabledSet(address,bool)"(
|
|
1896
|
+
target?: string | null,
|
|
1897
|
+
disabled?: null
|
|
1898
|
+
): TargetDisabledSetEventFilter;
|
|
1899
|
+
TargetDisabledSet(
|
|
1900
|
+
target?: string | null,
|
|
1901
|
+
disabled?: null
|
|
1902
|
+
): TargetDisabledSetEventFilter;
|
|
1903
|
+
|
|
1904
|
+
"TargetFunctionDelaySet(address,uint32,uint32)"(
|
|
1905
|
+
target?: string | null,
|
|
1906
|
+
newDelay?: null,
|
|
1907
|
+
minSetback?: null
|
|
1908
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1909
|
+
TargetFunctionDelaySet(
|
|
1910
|
+
target?: string | null,
|
|
1911
|
+
newDelay?: null,
|
|
1912
|
+
minSetback?: null
|
|
1913
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1914
|
+
|
|
1915
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)"(
|
|
1916
|
+
target?: string | null,
|
|
1917
|
+
selector?: BytesLike | null,
|
|
1918
|
+
disabled?: null
|
|
1919
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1920
|
+
TargetFunctionDisabledSet(
|
|
1921
|
+
target?: string | null,
|
|
1922
|
+
selector?: BytesLike | null,
|
|
1923
|
+
disabled?: null
|
|
1924
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1925
|
+
|
|
1926
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)"(
|
|
1927
|
+
target?: string | null,
|
|
1928
|
+
selector?: BytesLike | null,
|
|
1929
|
+
groupId?: BytesLike | null
|
|
1930
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1931
|
+
TargetFunctionGroupSet(
|
|
1932
|
+
target?: string | null,
|
|
1933
|
+
selector?: BytesLike | null,
|
|
1934
|
+
groupId?: BytesLike | null
|
|
1935
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1936
|
+
|
|
1280
1937
|
"Transfer(address,address,uint256)"(
|
|
1281
1938
|
from?: string | null,
|
|
1282
1939
|
to?: string | null,
|