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