@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
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
import type {
|
|
5
5
|
BaseContract,
|
|
6
6
|
BigNumber,
|
|
7
|
+
BigNumberish,
|
|
7
8
|
BytesLike,
|
|
8
9
|
CallOverrides,
|
|
9
10
|
ContractTransaction,
|
|
@@ -25,6 +26,57 @@ import type {
|
|
|
25
26
|
OnEvent,
|
|
26
27
|
} from "./common";
|
|
27
28
|
|
|
29
|
+
export type ManifestExecutionFunctionStruct = {
|
|
30
|
+
executionSelector: BytesLike;
|
|
31
|
+
skipRuntimeValidation: boolean;
|
|
32
|
+
allowGlobalValidation: boolean;
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
export type ManifestExecutionFunctionStructOutput = [
|
|
36
|
+
string,
|
|
37
|
+
boolean,
|
|
38
|
+
boolean
|
|
39
|
+
] & {
|
|
40
|
+
executionSelector: string;
|
|
41
|
+
skipRuntimeValidation: boolean;
|
|
42
|
+
allowGlobalValidation: boolean;
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
export type ManifestExecutionHookStruct = {
|
|
46
|
+
executionSelector: BytesLike;
|
|
47
|
+
entityId: BigNumberish;
|
|
48
|
+
isPreHook: boolean;
|
|
49
|
+
isPostHook: boolean;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export type ManifestExecutionHookStructOutput = [
|
|
53
|
+
string,
|
|
54
|
+
number,
|
|
55
|
+
boolean,
|
|
56
|
+
boolean
|
|
57
|
+
] & {
|
|
58
|
+
executionSelector: string;
|
|
59
|
+
entityId: number;
|
|
60
|
+
isPreHook: boolean;
|
|
61
|
+
isPostHook: boolean;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
export type ExecutionManifestStruct = {
|
|
65
|
+
executionFunctions: ManifestExecutionFunctionStruct[];
|
|
66
|
+
executionHooks: ManifestExecutionHookStruct[];
|
|
67
|
+
interfaceIds: BytesLike[];
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
export type ExecutionManifestStructOutput = [
|
|
71
|
+
ManifestExecutionFunctionStructOutput[],
|
|
72
|
+
ManifestExecutionHookStructOutput[],
|
|
73
|
+
string[]
|
|
74
|
+
] & {
|
|
75
|
+
executionFunctions: ManifestExecutionFunctionStructOutput[];
|
|
76
|
+
executionHooks: ManifestExecutionHookStructOutput[];
|
|
77
|
+
interfaceIds: string[];
|
|
78
|
+
};
|
|
79
|
+
|
|
28
80
|
export declare namespace IEntitlementsManagerBase {
|
|
29
81
|
export type EntitlementStruct = {
|
|
30
82
|
name: string;
|
|
@@ -122,15 +174,194 @@ export interface EntitlementsManagerInterface extends utils.Interface {
|
|
|
122
174
|
): Result;
|
|
123
175
|
|
|
124
176
|
events: {
|
|
177
|
+
"AppBanned(address,bytes32)": EventFragment;
|
|
178
|
+
"AppCreated(address,bytes32)": EventFragment;
|
|
179
|
+
"AppInstalled(address,address,bytes32)": EventFragment;
|
|
180
|
+
"AppRegistered(address,bytes32)": EventFragment;
|
|
181
|
+
"AppRenewed(address,address,bytes32)": EventFragment;
|
|
182
|
+
"AppSchemaSet(bytes32)": EventFragment;
|
|
183
|
+
"AppUninstalled(address,address,bytes32)": EventFragment;
|
|
184
|
+
"AppUnregistered(address,bytes32)": EventFragment;
|
|
185
|
+
"AppUpdated(address,bytes32)": EventFragment;
|
|
186
|
+
"AppUpdated(address,address,bytes32)": EventFragment;
|
|
187
|
+
"AppUpgraded(address,bytes32,bytes32)": EventFragment;
|
|
125
188
|
"EntitlementModuleAdded(address,address)": EventFragment;
|
|
126
189
|
"EntitlementModuleRemoved(address,address)": EventFragment;
|
|
190
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
191
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
192
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
193
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)": EventFragment;
|
|
194
|
+
"GroupAccessRevoked(bytes32,address,bool)": EventFragment;
|
|
195
|
+
"GroupExpirationSet(bytes32,uint48)": EventFragment;
|
|
196
|
+
"GroupGrantDelaySet(bytes32,uint32)": EventFragment;
|
|
197
|
+
"GroupGuardianSet(bytes32,bytes32)": EventFragment;
|
|
198
|
+
"GroupStatusSet(bytes32,bool)": EventFragment;
|
|
199
|
+
"OperationCanceled(bytes32,uint32)": EventFragment;
|
|
200
|
+
"OperationExecuted(bytes32,uint32)": EventFragment;
|
|
201
|
+
"OperationScheduled(bytes32,uint48,uint32)": EventFragment;
|
|
127
202
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
203
|
+
"TargetDisabledSet(address,bool)": EventFragment;
|
|
204
|
+
"TargetFunctionDelaySet(address,uint32,uint32)": EventFragment;
|
|
205
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)": EventFragment;
|
|
206
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)": EventFragment;
|
|
128
207
|
};
|
|
129
208
|
|
|
209
|
+
getEvent(nameOrSignatureOrTopic: "AppBanned"): EventFragment;
|
|
210
|
+
getEvent(nameOrSignatureOrTopic: "AppCreated"): EventFragment;
|
|
211
|
+
getEvent(nameOrSignatureOrTopic: "AppInstalled"): EventFragment;
|
|
212
|
+
getEvent(nameOrSignatureOrTopic: "AppRegistered"): EventFragment;
|
|
213
|
+
getEvent(nameOrSignatureOrTopic: "AppRenewed"): EventFragment;
|
|
214
|
+
getEvent(nameOrSignatureOrTopic: "AppSchemaSet"): EventFragment;
|
|
215
|
+
getEvent(nameOrSignatureOrTopic: "AppUninstalled"): EventFragment;
|
|
216
|
+
getEvent(nameOrSignatureOrTopic: "AppUnregistered"): EventFragment;
|
|
217
|
+
getEvent(
|
|
218
|
+
nameOrSignatureOrTopic: "AppUpdated(address,bytes32)"
|
|
219
|
+
): EventFragment;
|
|
220
|
+
getEvent(
|
|
221
|
+
nameOrSignatureOrTopic: "AppUpdated(address,address,bytes32)"
|
|
222
|
+
): EventFragment;
|
|
223
|
+
getEvent(nameOrSignatureOrTopic: "AppUpgraded"): EventFragment;
|
|
130
224
|
getEvent(nameOrSignatureOrTopic: "EntitlementModuleAdded"): EventFragment;
|
|
131
225
|
getEvent(nameOrSignatureOrTopic: "EntitlementModuleRemoved"): EventFragment;
|
|
226
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionInstalled"): EventFragment;
|
|
227
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUninstalled"): EventFragment;
|
|
228
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUpdated"): EventFragment;
|
|
229
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessGranted"): EventFragment;
|
|
230
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessRevoked"): EventFragment;
|
|
231
|
+
getEvent(nameOrSignatureOrTopic: "GroupExpirationSet"): EventFragment;
|
|
232
|
+
getEvent(nameOrSignatureOrTopic: "GroupGrantDelaySet"): EventFragment;
|
|
233
|
+
getEvent(nameOrSignatureOrTopic: "GroupGuardianSet"): EventFragment;
|
|
234
|
+
getEvent(nameOrSignatureOrTopic: "GroupStatusSet"): EventFragment;
|
|
235
|
+
getEvent(nameOrSignatureOrTopic: "OperationCanceled"): EventFragment;
|
|
236
|
+
getEvent(nameOrSignatureOrTopic: "OperationExecuted"): EventFragment;
|
|
237
|
+
getEvent(nameOrSignatureOrTopic: "OperationScheduled"): EventFragment;
|
|
132
238
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
239
|
+
getEvent(nameOrSignatureOrTopic: "TargetDisabledSet"): EventFragment;
|
|
240
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDelaySet"): EventFragment;
|
|
241
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDisabledSet"): EventFragment;
|
|
242
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionGroupSet"): EventFragment;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
export interface AppBannedEventObject {
|
|
246
|
+
app: string;
|
|
247
|
+
uid: string;
|
|
248
|
+
}
|
|
249
|
+
export type AppBannedEvent = TypedEvent<[string, string], AppBannedEventObject>;
|
|
250
|
+
|
|
251
|
+
export type AppBannedEventFilter = TypedEventFilter<AppBannedEvent>;
|
|
252
|
+
|
|
253
|
+
export interface AppCreatedEventObject {
|
|
254
|
+
app: string;
|
|
255
|
+
uid: string;
|
|
256
|
+
}
|
|
257
|
+
export type AppCreatedEvent = TypedEvent<
|
|
258
|
+
[string, string],
|
|
259
|
+
AppCreatedEventObject
|
|
260
|
+
>;
|
|
261
|
+
|
|
262
|
+
export type AppCreatedEventFilter = TypedEventFilter<AppCreatedEvent>;
|
|
263
|
+
|
|
264
|
+
export interface AppInstalledEventObject {
|
|
265
|
+
app: string;
|
|
266
|
+
account: string;
|
|
267
|
+
appId: string;
|
|
268
|
+
}
|
|
269
|
+
export type AppInstalledEvent = TypedEvent<
|
|
270
|
+
[string, string, string],
|
|
271
|
+
AppInstalledEventObject
|
|
272
|
+
>;
|
|
273
|
+
|
|
274
|
+
export type AppInstalledEventFilter = TypedEventFilter<AppInstalledEvent>;
|
|
275
|
+
|
|
276
|
+
export interface AppRegisteredEventObject {
|
|
277
|
+
app: string;
|
|
278
|
+
uid: string;
|
|
279
|
+
}
|
|
280
|
+
export type AppRegisteredEvent = TypedEvent<
|
|
281
|
+
[string, string],
|
|
282
|
+
AppRegisteredEventObject
|
|
283
|
+
>;
|
|
284
|
+
|
|
285
|
+
export type AppRegisteredEventFilter = TypedEventFilter<AppRegisteredEvent>;
|
|
286
|
+
|
|
287
|
+
export interface AppRenewedEventObject {
|
|
288
|
+
app: string;
|
|
289
|
+
account: string;
|
|
290
|
+
appId: string;
|
|
291
|
+
}
|
|
292
|
+
export type AppRenewedEvent = TypedEvent<
|
|
293
|
+
[string, string, string],
|
|
294
|
+
AppRenewedEventObject
|
|
295
|
+
>;
|
|
296
|
+
|
|
297
|
+
export type AppRenewedEventFilter = TypedEventFilter<AppRenewedEvent>;
|
|
298
|
+
|
|
299
|
+
export interface AppSchemaSetEventObject {
|
|
300
|
+
uid: string;
|
|
301
|
+
}
|
|
302
|
+
export type AppSchemaSetEvent = TypedEvent<[string], AppSchemaSetEventObject>;
|
|
303
|
+
|
|
304
|
+
export type AppSchemaSetEventFilter = TypedEventFilter<AppSchemaSetEvent>;
|
|
305
|
+
|
|
306
|
+
export interface AppUninstalledEventObject {
|
|
307
|
+
app: string;
|
|
308
|
+
account: string;
|
|
309
|
+
appId: string;
|
|
310
|
+
}
|
|
311
|
+
export type AppUninstalledEvent = TypedEvent<
|
|
312
|
+
[string, string, string],
|
|
313
|
+
AppUninstalledEventObject
|
|
314
|
+
>;
|
|
315
|
+
|
|
316
|
+
export type AppUninstalledEventFilter = TypedEventFilter<AppUninstalledEvent>;
|
|
317
|
+
|
|
318
|
+
export interface AppUnregisteredEventObject {
|
|
319
|
+
app: string;
|
|
320
|
+
uid: string;
|
|
133
321
|
}
|
|
322
|
+
export type AppUnregisteredEvent = TypedEvent<
|
|
323
|
+
[string, string],
|
|
324
|
+
AppUnregisteredEventObject
|
|
325
|
+
>;
|
|
326
|
+
|
|
327
|
+
export type AppUnregisteredEventFilter = TypedEventFilter<AppUnregisteredEvent>;
|
|
328
|
+
|
|
329
|
+
export interface AppUpdated_address_bytes32_EventObject {
|
|
330
|
+
app: string;
|
|
331
|
+
uid: string;
|
|
332
|
+
}
|
|
333
|
+
export type AppUpdated_address_bytes32_Event = TypedEvent<
|
|
334
|
+
[string, string],
|
|
335
|
+
AppUpdated_address_bytes32_EventObject
|
|
336
|
+
>;
|
|
337
|
+
|
|
338
|
+
export type AppUpdated_address_bytes32_EventFilter =
|
|
339
|
+
TypedEventFilter<AppUpdated_address_bytes32_Event>;
|
|
340
|
+
|
|
341
|
+
export interface AppUpdated_address_address_bytes32_EventObject {
|
|
342
|
+
app: string;
|
|
343
|
+
account: string;
|
|
344
|
+
appId: string;
|
|
345
|
+
}
|
|
346
|
+
export type AppUpdated_address_address_bytes32_Event = TypedEvent<
|
|
347
|
+
[string, string, string],
|
|
348
|
+
AppUpdated_address_address_bytes32_EventObject
|
|
349
|
+
>;
|
|
350
|
+
|
|
351
|
+
export type AppUpdated_address_address_bytes32_EventFilter =
|
|
352
|
+
TypedEventFilter<AppUpdated_address_address_bytes32_Event>;
|
|
353
|
+
|
|
354
|
+
export interface AppUpgradedEventObject {
|
|
355
|
+
app: string;
|
|
356
|
+
oldVersionId: string;
|
|
357
|
+
newVersionId: string;
|
|
358
|
+
}
|
|
359
|
+
export type AppUpgradedEvent = TypedEvent<
|
|
360
|
+
[string, string, string],
|
|
361
|
+
AppUpgradedEventObject
|
|
362
|
+
>;
|
|
363
|
+
|
|
364
|
+
export type AppUpgradedEventFilter = TypedEventFilter<AppUpgradedEvent>;
|
|
134
365
|
|
|
135
366
|
export interface EntitlementModuleAddedEventObject {
|
|
136
367
|
caller: string;
|
|
@@ -156,6 +387,155 @@ export type EntitlementModuleRemovedEvent = TypedEvent<
|
|
|
156
387
|
export type EntitlementModuleRemovedEventFilter =
|
|
157
388
|
TypedEventFilter<EntitlementModuleRemovedEvent>;
|
|
158
389
|
|
|
390
|
+
export interface ExecutionInstalledEventObject {
|
|
391
|
+
module: string;
|
|
392
|
+
manifest: ExecutionManifestStructOutput;
|
|
393
|
+
}
|
|
394
|
+
export type ExecutionInstalledEvent = TypedEvent<
|
|
395
|
+
[string, ExecutionManifestStructOutput],
|
|
396
|
+
ExecutionInstalledEventObject
|
|
397
|
+
>;
|
|
398
|
+
|
|
399
|
+
export type ExecutionInstalledEventFilter =
|
|
400
|
+
TypedEventFilter<ExecutionInstalledEvent>;
|
|
401
|
+
|
|
402
|
+
export interface ExecutionUninstalledEventObject {
|
|
403
|
+
module: string;
|
|
404
|
+
success: boolean;
|
|
405
|
+
manifest: ExecutionManifestStructOutput;
|
|
406
|
+
}
|
|
407
|
+
export type ExecutionUninstalledEvent = TypedEvent<
|
|
408
|
+
[string, boolean, ExecutionManifestStructOutput],
|
|
409
|
+
ExecutionUninstalledEventObject
|
|
410
|
+
>;
|
|
411
|
+
|
|
412
|
+
export type ExecutionUninstalledEventFilter =
|
|
413
|
+
TypedEventFilter<ExecutionUninstalledEvent>;
|
|
414
|
+
|
|
415
|
+
export interface ExecutionUpdatedEventObject {
|
|
416
|
+
module: string;
|
|
417
|
+
manifest: ExecutionManifestStructOutput;
|
|
418
|
+
}
|
|
419
|
+
export type ExecutionUpdatedEvent = TypedEvent<
|
|
420
|
+
[string, ExecutionManifestStructOutput],
|
|
421
|
+
ExecutionUpdatedEventObject
|
|
422
|
+
>;
|
|
423
|
+
|
|
424
|
+
export type ExecutionUpdatedEventFilter =
|
|
425
|
+
TypedEventFilter<ExecutionUpdatedEvent>;
|
|
426
|
+
|
|
427
|
+
export interface GroupAccessGrantedEventObject {
|
|
428
|
+
groupId: string;
|
|
429
|
+
account: string;
|
|
430
|
+
delay: number;
|
|
431
|
+
since: number;
|
|
432
|
+
newMember: boolean;
|
|
433
|
+
}
|
|
434
|
+
export type GroupAccessGrantedEvent = TypedEvent<
|
|
435
|
+
[string, string, number, number, boolean],
|
|
436
|
+
GroupAccessGrantedEventObject
|
|
437
|
+
>;
|
|
438
|
+
|
|
439
|
+
export type GroupAccessGrantedEventFilter =
|
|
440
|
+
TypedEventFilter<GroupAccessGrantedEvent>;
|
|
441
|
+
|
|
442
|
+
export interface GroupAccessRevokedEventObject {
|
|
443
|
+
groupId: string;
|
|
444
|
+
account: string;
|
|
445
|
+
revoked: boolean;
|
|
446
|
+
}
|
|
447
|
+
export type GroupAccessRevokedEvent = TypedEvent<
|
|
448
|
+
[string, string, boolean],
|
|
449
|
+
GroupAccessRevokedEventObject
|
|
450
|
+
>;
|
|
451
|
+
|
|
452
|
+
export type GroupAccessRevokedEventFilter =
|
|
453
|
+
TypedEventFilter<GroupAccessRevokedEvent>;
|
|
454
|
+
|
|
455
|
+
export interface GroupExpirationSetEventObject {
|
|
456
|
+
groupId: string;
|
|
457
|
+
expiration: number;
|
|
458
|
+
}
|
|
459
|
+
export type GroupExpirationSetEvent = TypedEvent<
|
|
460
|
+
[string, number],
|
|
461
|
+
GroupExpirationSetEventObject
|
|
462
|
+
>;
|
|
463
|
+
|
|
464
|
+
export type GroupExpirationSetEventFilter =
|
|
465
|
+
TypedEventFilter<GroupExpirationSetEvent>;
|
|
466
|
+
|
|
467
|
+
export interface GroupGrantDelaySetEventObject {
|
|
468
|
+
groupId: string;
|
|
469
|
+
delay: number;
|
|
470
|
+
}
|
|
471
|
+
export type GroupGrantDelaySetEvent = TypedEvent<
|
|
472
|
+
[string, number],
|
|
473
|
+
GroupGrantDelaySetEventObject
|
|
474
|
+
>;
|
|
475
|
+
|
|
476
|
+
export type GroupGrantDelaySetEventFilter =
|
|
477
|
+
TypedEventFilter<GroupGrantDelaySetEvent>;
|
|
478
|
+
|
|
479
|
+
export interface GroupGuardianSetEventObject {
|
|
480
|
+
groupId: string;
|
|
481
|
+
guardian: string;
|
|
482
|
+
}
|
|
483
|
+
export type GroupGuardianSetEvent = TypedEvent<
|
|
484
|
+
[string, string],
|
|
485
|
+
GroupGuardianSetEventObject
|
|
486
|
+
>;
|
|
487
|
+
|
|
488
|
+
export type GroupGuardianSetEventFilter =
|
|
489
|
+
TypedEventFilter<GroupGuardianSetEvent>;
|
|
490
|
+
|
|
491
|
+
export interface GroupStatusSetEventObject {
|
|
492
|
+
groupId: string;
|
|
493
|
+
active: boolean;
|
|
494
|
+
}
|
|
495
|
+
export type GroupStatusSetEvent = TypedEvent<
|
|
496
|
+
[string, boolean],
|
|
497
|
+
GroupStatusSetEventObject
|
|
498
|
+
>;
|
|
499
|
+
|
|
500
|
+
export type GroupStatusSetEventFilter = TypedEventFilter<GroupStatusSetEvent>;
|
|
501
|
+
|
|
502
|
+
export interface OperationCanceledEventObject {
|
|
503
|
+
operationId: string;
|
|
504
|
+
nonce: number;
|
|
505
|
+
}
|
|
506
|
+
export type OperationCanceledEvent = TypedEvent<
|
|
507
|
+
[string, number],
|
|
508
|
+
OperationCanceledEventObject
|
|
509
|
+
>;
|
|
510
|
+
|
|
511
|
+
export type OperationCanceledEventFilter =
|
|
512
|
+
TypedEventFilter<OperationCanceledEvent>;
|
|
513
|
+
|
|
514
|
+
export interface OperationExecutedEventObject {
|
|
515
|
+
operationId: string;
|
|
516
|
+
nonce: number;
|
|
517
|
+
}
|
|
518
|
+
export type OperationExecutedEvent = TypedEvent<
|
|
519
|
+
[string, number],
|
|
520
|
+
OperationExecutedEventObject
|
|
521
|
+
>;
|
|
522
|
+
|
|
523
|
+
export type OperationExecutedEventFilter =
|
|
524
|
+
TypedEventFilter<OperationExecutedEvent>;
|
|
525
|
+
|
|
526
|
+
export interface OperationScheduledEventObject {
|
|
527
|
+
operationId: string;
|
|
528
|
+
timepoint: number;
|
|
529
|
+
nonce: number;
|
|
530
|
+
}
|
|
531
|
+
export type OperationScheduledEvent = TypedEvent<
|
|
532
|
+
[string, number, number],
|
|
533
|
+
OperationScheduledEventObject
|
|
534
|
+
>;
|
|
535
|
+
|
|
536
|
+
export type OperationScheduledEventFilter =
|
|
537
|
+
TypedEventFilter<OperationScheduledEvent>;
|
|
538
|
+
|
|
159
539
|
export interface OwnershipTransferredEventObject {
|
|
160
540
|
previousOwner: string;
|
|
161
541
|
newOwner: string;
|
|
@@ -168,6 +548,57 @@ export type OwnershipTransferredEvent = TypedEvent<
|
|
|
168
548
|
export type OwnershipTransferredEventFilter =
|
|
169
549
|
TypedEventFilter<OwnershipTransferredEvent>;
|
|
170
550
|
|
|
551
|
+
export interface TargetDisabledSetEventObject {
|
|
552
|
+
target: string;
|
|
553
|
+
disabled: boolean;
|
|
554
|
+
}
|
|
555
|
+
export type TargetDisabledSetEvent = TypedEvent<
|
|
556
|
+
[string, boolean],
|
|
557
|
+
TargetDisabledSetEventObject
|
|
558
|
+
>;
|
|
559
|
+
|
|
560
|
+
export type TargetDisabledSetEventFilter =
|
|
561
|
+
TypedEventFilter<TargetDisabledSetEvent>;
|
|
562
|
+
|
|
563
|
+
export interface TargetFunctionDelaySetEventObject {
|
|
564
|
+
target: string;
|
|
565
|
+
newDelay: number;
|
|
566
|
+
minSetback: number;
|
|
567
|
+
}
|
|
568
|
+
export type TargetFunctionDelaySetEvent = TypedEvent<
|
|
569
|
+
[string, number, number],
|
|
570
|
+
TargetFunctionDelaySetEventObject
|
|
571
|
+
>;
|
|
572
|
+
|
|
573
|
+
export type TargetFunctionDelaySetEventFilter =
|
|
574
|
+
TypedEventFilter<TargetFunctionDelaySetEvent>;
|
|
575
|
+
|
|
576
|
+
export interface TargetFunctionDisabledSetEventObject {
|
|
577
|
+
target: string;
|
|
578
|
+
selector: string;
|
|
579
|
+
disabled: boolean;
|
|
580
|
+
}
|
|
581
|
+
export type TargetFunctionDisabledSetEvent = TypedEvent<
|
|
582
|
+
[string, string, boolean],
|
|
583
|
+
TargetFunctionDisabledSetEventObject
|
|
584
|
+
>;
|
|
585
|
+
|
|
586
|
+
export type TargetFunctionDisabledSetEventFilter =
|
|
587
|
+
TypedEventFilter<TargetFunctionDisabledSetEvent>;
|
|
588
|
+
|
|
589
|
+
export interface TargetFunctionGroupSetEventObject {
|
|
590
|
+
target: string;
|
|
591
|
+
selector: string;
|
|
592
|
+
groupId: string;
|
|
593
|
+
}
|
|
594
|
+
export type TargetFunctionGroupSetEvent = TypedEvent<
|
|
595
|
+
[string, string, string],
|
|
596
|
+
TargetFunctionGroupSetEventObject
|
|
597
|
+
>;
|
|
598
|
+
|
|
599
|
+
export type TargetFunctionGroupSetEventFilter =
|
|
600
|
+
TypedEventFilter<TargetFunctionGroupSetEvent>;
|
|
601
|
+
|
|
171
602
|
export interface EntitlementsManager extends BaseContract {
|
|
172
603
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
173
604
|
attach(addressOrName: string): this;
|
|
@@ -310,6 +741,90 @@ export interface EntitlementsManager extends BaseContract {
|
|
|
310
741
|
};
|
|
311
742
|
|
|
312
743
|
filters: {
|
|
744
|
+
"AppBanned(address,bytes32)"(
|
|
745
|
+
app?: string | null,
|
|
746
|
+
uid?: null
|
|
747
|
+
): AppBannedEventFilter;
|
|
748
|
+
AppBanned(app?: string | null, uid?: null): AppBannedEventFilter;
|
|
749
|
+
|
|
750
|
+
"AppCreated(address,bytes32)"(
|
|
751
|
+
app?: string | null,
|
|
752
|
+
uid?: null
|
|
753
|
+
): AppCreatedEventFilter;
|
|
754
|
+
AppCreated(app?: string | null, uid?: null): AppCreatedEventFilter;
|
|
755
|
+
|
|
756
|
+
"AppInstalled(address,address,bytes32)"(
|
|
757
|
+
app?: string | null,
|
|
758
|
+
account?: string | null,
|
|
759
|
+
appId?: BytesLike | null
|
|
760
|
+
): AppInstalledEventFilter;
|
|
761
|
+
AppInstalled(
|
|
762
|
+
app?: string | null,
|
|
763
|
+
account?: string | null,
|
|
764
|
+
appId?: BytesLike | null
|
|
765
|
+
): AppInstalledEventFilter;
|
|
766
|
+
|
|
767
|
+
"AppRegistered(address,bytes32)"(
|
|
768
|
+
app?: string | null,
|
|
769
|
+
uid?: null
|
|
770
|
+
): AppRegisteredEventFilter;
|
|
771
|
+
AppRegistered(app?: string | null, uid?: null): AppRegisteredEventFilter;
|
|
772
|
+
|
|
773
|
+
"AppRenewed(address,address,bytes32)"(
|
|
774
|
+
app?: string | null,
|
|
775
|
+
account?: string | null,
|
|
776
|
+
appId?: BytesLike | null
|
|
777
|
+
): AppRenewedEventFilter;
|
|
778
|
+
AppRenewed(
|
|
779
|
+
app?: string | null,
|
|
780
|
+
account?: string | null,
|
|
781
|
+
appId?: BytesLike | null
|
|
782
|
+
): AppRenewedEventFilter;
|
|
783
|
+
|
|
784
|
+
"AppSchemaSet(bytes32)"(uid?: null): AppSchemaSetEventFilter;
|
|
785
|
+
AppSchemaSet(uid?: null): AppSchemaSetEventFilter;
|
|
786
|
+
|
|
787
|
+
"AppUninstalled(address,address,bytes32)"(
|
|
788
|
+
app?: string | null,
|
|
789
|
+
account?: string | null,
|
|
790
|
+
appId?: BytesLike | null
|
|
791
|
+
): AppUninstalledEventFilter;
|
|
792
|
+
AppUninstalled(
|
|
793
|
+
app?: string | null,
|
|
794
|
+
account?: string | null,
|
|
795
|
+
appId?: BytesLike | null
|
|
796
|
+
): AppUninstalledEventFilter;
|
|
797
|
+
|
|
798
|
+
"AppUnregistered(address,bytes32)"(
|
|
799
|
+
app?: string | null,
|
|
800
|
+
uid?: null
|
|
801
|
+
): AppUnregisteredEventFilter;
|
|
802
|
+
AppUnregistered(
|
|
803
|
+
app?: string | null,
|
|
804
|
+
uid?: null
|
|
805
|
+
): AppUnregisteredEventFilter;
|
|
806
|
+
|
|
807
|
+
"AppUpdated(address,bytes32)"(
|
|
808
|
+
app?: string | null,
|
|
809
|
+
uid?: null
|
|
810
|
+
): AppUpdated_address_bytes32_EventFilter;
|
|
811
|
+
"AppUpdated(address,address,bytes32)"(
|
|
812
|
+
app?: string | null,
|
|
813
|
+
account?: string | null,
|
|
814
|
+
appId?: BytesLike | null
|
|
815
|
+
): AppUpdated_address_address_bytes32_EventFilter;
|
|
816
|
+
|
|
817
|
+
"AppUpgraded(address,bytes32,bytes32)"(
|
|
818
|
+
app?: string | null,
|
|
819
|
+
oldVersionId?: BytesLike | null,
|
|
820
|
+
newVersionId?: BytesLike | null
|
|
821
|
+
): AppUpgradedEventFilter;
|
|
822
|
+
AppUpgraded(
|
|
823
|
+
app?: string | null,
|
|
824
|
+
oldVersionId?: BytesLike | null,
|
|
825
|
+
newVersionId?: BytesLike | null
|
|
826
|
+
): AppUpgradedEventFilter;
|
|
827
|
+
|
|
313
828
|
"EntitlementModuleAdded(address,address)"(
|
|
314
829
|
caller?: string | null,
|
|
315
830
|
entitlement?: null
|
|
@@ -328,6 +843,126 @@ export interface EntitlementsManager extends BaseContract {
|
|
|
328
843
|
entitlement?: null
|
|
329
844
|
): EntitlementModuleRemovedEventFilter;
|
|
330
845
|
|
|
846
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
847
|
+
module?: string | null,
|
|
848
|
+
manifest?: null
|
|
849
|
+
): ExecutionInstalledEventFilter;
|
|
850
|
+
ExecutionInstalled(
|
|
851
|
+
module?: string | null,
|
|
852
|
+
manifest?: null
|
|
853
|
+
): ExecutionInstalledEventFilter;
|
|
854
|
+
|
|
855
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
856
|
+
module?: string | null,
|
|
857
|
+
success?: null,
|
|
858
|
+
manifest?: null
|
|
859
|
+
): ExecutionUninstalledEventFilter;
|
|
860
|
+
ExecutionUninstalled(
|
|
861
|
+
module?: string | null,
|
|
862
|
+
success?: null,
|
|
863
|
+
manifest?: null
|
|
864
|
+
): ExecutionUninstalledEventFilter;
|
|
865
|
+
|
|
866
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
867
|
+
module?: string | null,
|
|
868
|
+
manifest?: null
|
|
869
|
+
): ExecutionUpdatedEventFilter;
|
|
870
|
+
ExecutionUpdated(
|
|
871
|
+
module?: string | null,
|
|
872
|
+
manifest?: null
|
|
873
|
+
): ExecutionUpdatedEventFilter;
|
|
874
|
+
|
|
875
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)"(
|
|
876
|
+
groupId?: BytesLike | null,
|
|
877
|
+
account?: string | null,
|
|
878
|
+
delay?: null,
|
|
879
|
+
since?: null,
|
|
880
|
+
newMember?: null
|
|
881
|
+
): GroupAccessGrantedEventFilter;
|
|
882
|
+
GroupAccessGranted(
|
|
883
|
+
groupId?: BytesLike | null,
|
|
884
|
+
account?: string | null,
|
|
885
|
+
delay?: null,
|
|
886
|
+
since?: null,
|
|
887
|
+
newMember?: null
|
|
888
|
+
): GroupAccessGrantedEventFilter;
|
|
889
|
+
|
|
890
|
+
"GroupAccessRevoked(bytes32,address,bool)"(
|
|
891
|
+
groupId?: BytesLike | null,
|
|
892
|
+
account?: string | null,
|
|
893
|
+
revoked?: null
|
|
894
|
+
): GroupAccessRevokedEventFilter;
|
|
895
|
+
GroupAccessRevoked(
|
|
896
|
+
groupId?: BytesLike | null,
|
|
897
|
+
account?: string | null,
|
|
898
|
+
revoked?: null
|
|
899
|
+
): GroupAccessRevokedEventFilter;
|
|
900
|
+
|
|
901
|
+
"GroupExpirationSet(bytes32,uint48)"(
|
|
902
|
+
groupId?: BytesLike | null,
|
|
903
|
+
expiration?: null
|
|
904
|
+
): GroupExpirationSetEventFilter;
|
|
905
|
+
GroupExpirationSet(
|
|
906
|
+
groupId?: BytesLike | null,
|
|
907
|
+
expiration?: null
|
|
908
|
+
): GroupExpirationSetEventFilter;
|
|
909
|
+
|
|
910
|
+
"GroupGrantDelaySet(bytes32,uint32)"(
|
|
911
|
+
groupId?: BytesLike | null,
|
|
912
|
+
delay?: null
|
|
913
|
+
): GroupGrantDelaySetEventFilter;
|
|
914
|
+
GroupGrantDelaySet(
|
|
915
|
+
groupId?: BytesLike | null,
|
|
916
|
+
delay?: null
|
|
917
|
+
): GroupGrantDelaySetEventFilter;
|
|
918
|
+
|
|
919
|
+
"GroupGuardianSet(bytes32,bytes32)"(
|
|
920
|
+
groupId?: BytesLike | null,
|
|
921
|
+
guardian?: null
|
|
922
|
+
): GroupGuardianSetEventFilter;
|
|
923
|
+
GroupGuardianSet(
|
|
924
|
+
groupId?: BytesLike | null,
|
|
925
|
+
guardian?: null
|
|
926
|
+
): GroupGuardianSetEventFilter;
|
|
927
|
+
|
|
928
|
+
"GroupStatusSet(bytes32,bool)"(
|
|
929
|
+
groupId?: BytesLike | null,
|
|
930
|
+
active?: null
|
|
931
|
+
): GroupStatusSetEventFilter;
|
|
932
|
+
GroupStatusSet(
|
|
933
|
+
groupId?: BytesLike | null,
|
|
934
|
+
active?: null
|
|
935
|
+
): GroupStatusSetEventFilter;
|
|
936
|
+
|
|
937
|
+
"OperationCanceled(bytes32,uint32)"(
|
|
938
|
+
operationId?: BytesLike | null,
|
|
939
|
+
nonce?: null
|
|
940
|
+
): OperationCanceledEventFilter;
|
|
941
|
+
OperationCanceled(
|
|
942
|
+
operationId?: BytesLike | null,
|
|
943
|
+
nonce?: null
|
|
944
|
+
): OperationCanceledEventFilter;
|
|
945
|
+
|
|
946
|
+
"OperationExecuted(bytes32,uint32)"(
|
|
947
|
+
operationId?: BytesLike | null,
|
|
948
|
+
nonce?: null
|
|
949
|
+
): OperationExecutedEventFilter;
|
|
950
|
+
OperationExecuted(
|
|
951
|
+
operationId?: BytesLike | null,
|
|
952
|
+
nonce?: null
|
|
953
|
+
): OperationExecutedEventFilter;
|
|
954
|
+
|
|
955
|
+
"OperationScheduled(bytes32,uint48,uint32)"(
|
|
956
|
+
operationId?: BytesLike | null,
|
|
957
|
+
timepoint?: null,
|
|
958
|
+
nonce?: null
|
|
959
|
+
): OperationScheduledEventFilter;
|
|
960
|
+
OperationScheduled(
|
|
961
|
+
operationId?: BytesLike | null,
|
|
962
|
+
timepoint?: null,
|
|
963
|
+
nonce?: null
|
|
964
|
+
): OperationScheduledEventFilter;
|
|
965
|
+
|
|
331
966
|
"OwnershipTransferred(address,address)"(
|
|
332
967
|
previousOwner?: string | null,
|
|
333
968
|
newOwner?: string | null
|
|
@@ -336,6 +971,48 @@ export interface EntitlementsManager extends BaseContract {
|
|
|
336
971
|
previousOwner?: string | null,
|
|
337
972
|
newOwner?: string | null
|
|
338
973
|
): OwnershipTransferredEventFilter;
|
|
974
|
+
|
|
975
|
+
"TargetDisabledSet(address,bool)"(
|
|
976
|
+
target?: string | null,
|
|
977
|
+
disabled?: null
|
|
978
|
+
): TargetDisabledSetEventFilter;
|
|
979
|
+
TargetDisabledSet(
|
|
980
|
+
target?: string | null,
|
|
981
|
+
disabled?: null
|
|
982
|
+
): TargetDisabledSetEventFilter;
|
|
983
|
+
|
|
984
|
+
"TargetFunctionDelaySet(address,uint32,uint32)"(
|
|
985
|
+
target?: string | null,
|
|
986
|
+
newDelay?: null,
|
|
987
|
+
minSetback?: null
|
|
988
|
+
): TargetFunctionDelaySetEventFilter;
|
|
989
|
+
TargetFunctionDelaySet(
|
|
990
|
+
target?: string | null,
|
|
991
|
+
newDelay?: null,
|
|
992
|
+
minSetback?: null
|
|
993
|
+
): TargetFunctionDelaySetEventFilter;
|
|
994
|
+
|
|
995
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)"(
|
|
996
|
+
target?: string | null,
|
|
997
|
+
selector?: BytesLike | null,
|
|
998
|
+
disabled?: null
|
|
999
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1000
|
+
TargetFunctionDisabledSet(
|
|
1001
|
+
target?: string | null,
|
|
1002
|
+
selector?: BytesLike | null,
|
|
1003
|
+
disabled?: null
|
|
1004
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1005
|
+
|
|
1006
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)"(
|
|
1007
|
+
target?: string | null,
|
|
1008
|
+
selector?: BytesLike | null,
|
|
1009
|
+
groupId?: BytesLike | null
|
|
1010
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1011
|
+
TargetFunctionGroupSet(
|
|
1012
|
+
target?: string | null,
|
|
1013
|
+
selector?: BytesLike | null,
|
|
1014
|
+
groupId?: BytesLike | null
|
|
1015
|
+
): TargetFunctionGroupSetEventFilter;
|
|
339
1016
|
};
|
|
340
1017
|
|
|
341
1018
|
estimateGas: {
|