@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
package/dev/typings/Roles.ts
CHANGED
|
@@ -26,6 +26,57 @@ import type {
|
|
|
26
26
|
OnEvent,
|
|
27
27
|
} from "./common";
|
|
28
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
|
+
|
|
29
80
|
export declare namespace IRolesBase {
|
|
30
81
|
export type CreateEntitlementStruct = { module: string; data: BytesLike };
|
|
31
82
|
|
|
@@ -188,6 +239,28 @@ export interface RolesInterface extends utils.Interface {
|
|
|
188
239
|
decodeFunctionResult(functionFragment: "updateRole", data: BytesLike): Result;
|
|
189
240
|
|
|
190
241
|
events: {
|
|
242
|
+
"AppBanned(address,bytes32)": EventFragment;
|
|
243
|
+
"AppInstalled(address,address,bytes32)": EventFragment;
|
|
244
|
+
"AppRegistered(address,bytes32)": EventFragment;
|
|
245
|
+
"AppRenewed(address,address,bytes32)": EventFragment;
|
|
246
|
+
"AppSchemaSet(bytes32)": EventFragment;
|
|
247
|
+
"AppUninstalled(address,address,bytes32)": EventFragment;
|
|
248
|
+
"AppUnregistered(address,bytes32)": EventFragment;
|
|
249
|
+
"AppUpdated(address,bytes32)": EventFragment;
|
|
250
|
+
"AppUpdated(address,address,bytes32)": EventFragment;
|
|
251
|
+
"AppUpgraded(address,bytes32,bytes32)": EventFragment;
|
|
252
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
253
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
254
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
255
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)": EventFragment;
|
|
256
|
+
"GroupAccessRevoked(bytes32,address,bool)": EventFragment;
|
|
257
|
+
"GroupExpirationSet(bytes32,uint48)": EventFragment;
|
|
258
|
+
"GroupGrantDelaySet(bytes32,uint32)": EventFragment;
|
|
259
|
+
"GroupGuardianSet(bytes32,bytes32)": EventFragment;
|
|
260
|
+
"GroupStatusSet(bytes32,bool)": EventFragment;
|
|
261
|
+
"OperationCanceled(bytes32,uint32)": EventFragment;
|
|
262
|
+
"OperationExecuted(bytes32,uint32)": EventFragment;
|
|
263
|
+
"OperationScheduled(bytes32,uint48,uint32)": EventFragment;
|
|
191
264
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
192
265
|
"PermissionsAddedToChannelRole(address,uint256,bytes32)": EventFragment;
|
|
193
266
|
"PermissionsRemovedFromChannelRole(address,uint256,bytes32)": EventFragment;
|
|
@@ -195,8 +268,38 @@ export interface RolesInterface extends utils.Interface {
|
|
|
195
268
|
"RoleCreated(address,uint256)": EventFragment;
|
|
196
269
|
"RoleRemoved(address,uint256)": EventFragment;
|
|
197
270
|
"RoleUpdated(address,uint256)": EventFragment;
|
|
271
|
+
"TargetDisabledSet(address,bool)": EventFragment;
|
|
272
|
+
"TargetFunctionDelaySet(address,uint32,uint32)": EventFragment;
|
|
273
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)": EventFragment;
|
|
274
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)": EventFragment;
|
|
198
275
|
};
|
|
199
276
|
|
|
277
|
+
getEvent(nameOrSignatureOrTopic: "AppBanned"): EventFragment;
|
|
278
|
+
getEvent(nameOrSignatureOrTopic: "AppInstalled"): EventFragment;
|
|
279
|
+
getEvent(nameOrSignatureOrTopic: "AppRegistered"): EventFragment;
|
|
280
|
+
getEvent(nameOrSignatureOrTopic: "AppRenewed"): EventFragment;
|
|
281
|
+
getEvent(nameOrSignatureOrTopic: "AppSchemaSet"): EventFragment;
|
|
282
|
+
getEvent(nameOrSignatureOrTopic: "AppUninstalled"): EventFragment;
|
|
283
|
+
getEvent(nameOrSignatureOrTopic: "AppUnregistered"): EventFragment;
|
|
284
|
+
getEvent(
|
|
285
|
+
nameOrSignatureOrTopic: "AppUpdated(address,bytes32)"
|
|
286
|
+
): EventFragment;
|
|
287
|
+
getEvent(
|
|
288
|
+
nameOrSignatureOrTopic: "AppUpdated(address,address,bytes32)"
|
|
289
|
+
): EventFragment;
|
|
290
|
+
getEvent(nameOrSignatureOrTopic: "AppUpgraded"): EventFragment;
|
|
291
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionInstalled"): EventFragment;
|
|
292
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUninstalled"): EventFragment;
|
|
293
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUpdated"): EventFragment;
|
|
294
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessGranted"): EventFragment;
|
|
295
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessRevoked"): EventFragment;
|
|
296
|
+
getEvent(nameOrSignatureOrTopic: "GroupExpirationSet"): EventFragment;
|
|
297
|
+
getEvent(nameOrSignatureOrTopic: "GroupGrantDelaySet"): EventFragment;
|
|
298
|
+
getEvent(nameOrSignatureOrTopic: "GroupGuardianSet"): EventFragment;
|
|
299
|
+
getEvent(nameOrSignatureOrTopic: "GroupStatusSet"): EventFragment;
|
|
300
|
+
getEvent(nameOrSignatureOrTopic: "OperationCanceled"): EventFragment;
|
|
301
|
+
getEvent(nameOrSignatureOrTopic: "OperationExecuted"): EventFragment;
|
|
302
|
+
getEvent(nameOrSignatureOrTopic: "OperationScheduled"): EventFragment;
|
|
200
303
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
201
304
|
getEvent(
|
|
202
305
|
nameOrSignatureOrTopic: "PermissionsAddedToChannelRole"
|
|
@@ -210,7 +313,270 @@ export interface RolesInterface extends utils.Interface {
|
|
|
210
313
|
getEvent(nameOrSignatureOrTopic: "RoleCreated"): EventFragment;
|
|
211
314
|
getEvent(nameOrSignatureOrTopic: "RoleRemoved"): EventFragment;
|
|
212
315
|
getEvent(nameOrSignatureOrTopic: "RoleUpdated"): EventFragment;
|
|
316
|
+
getEvent(nameOrSignatureOrTopic: "TargetDisabledSet"): EventFragment;
|
|
317
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDelaySet"): EventFragment;
|
|
318
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDisabledSet"): EventFragment;
|
|
319
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionGroupSet"): EventFragment;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
export interface AppBannedEventObject {
|
|
323
|
+
app: string;
|
|
324
|
+
uid: string;
|
|
213
325
|
}
|
|
326
|
+
export type AppBannedEvent = TypedEvent<[string, string], AppBannedEventObject>;
|
|
327
|
+
|
|
328
|
+
export type AppBannedEventFilter = TypedEventFilter<AppBannedEvent>;
|
|
329
|
+
|
|
330
|
+
export interface AppInstalledEventObject {
|
|
331
|
+
app: string;
|
|
332
|
+
account: string;
|
|
333
|
+
appId: string;
|
|
334
|
+
}
|
|
335
|
+
export type AppInstalledEvent = TypedEvent<
|
|
336
|
+
[string, string, string],
|
|
337
|
+
AppInstalledEventObject
|
|
338
|
+
>;
|
|
339
|
+
|
|
340
|
+
export type AppInstalledEventFilter = TypedEventFilter<AppInstalledEvent>;
|
|
341
|
+
|
|
342
|
+
export interface AppRegisteredEventObject {
|
|
343
|
+
app: string;
|
|
344
|
+
uid: string;
|
|
345
|
+
}
|
|
346
|
+
export type AppRegisteredEvent = TypedEvent<
|
|
347
|
+
[string, string],
|
|
348
|
+
AppRegisteredEventObject
|
|
349
|
+
>;
|
|
350
|
+
|
|
351
|
+
export type AppRegisteredEventFilter = TypedEventFilter<AppRegisteredEvent>;
|
|
352
|
+
|
|
353
|
+
export interface AppRenewedEventObject {
|
|
354
|
+
app: string;
|
|
355
|
+
account: string;
|
|
356
|
+
appId: string;
|
|
357
|
+
}
|
|
358
|
+
export type AppRenewedEvent = TypedEvent<
|
|
359
|
+
[string, string, string],
|
|
360
|
+
AppRenewedEventObject
|
|
361
|
+
>;
|
|
362
|
+
|
|
363
|
+
export type AppRenewedEventFilter = TypedEventFilter<AppRenewedEvent>;
|
|
364
|
+
|
|
365
|
+
export interface AppSchemaSetEventObject {
|
|
366
|
+
uid: string;
|
|
367
|
+
}
|
|
368
|
+
export type AppSchemaSetEvent = TypedEvent<[string], AppSchemaSetEventObject>;
|
|
369
|
+
|
|
370
|
+
export type AppSchemaSetEventFilter = TypedEventFilter<AppSchemaSetEvent>;
|
|
371
|
+
|
|
372
|
+
export interface AppUninstalledEventObject {
|
|
373
|
+
app: string;
|
|
374
|
+
account: string;
|
|
375
|
+
appId: string;
|
|
376
|
+
}
|
|
377
|
+
export type AppUninstalledEvent = TypedEvent<
|
|
378
|
+
[string, string, string],
|
|
379
|
+
AppUninstalledEventObject
|
|
380
|
+
>;
|
|
381
|
+
|
|
382
|
+
export type AppUninstalledEventFilter = TypedEventFilter<AppUninstalledEvent>;
|
|
383
|
+
|
|
384
|
+
export interface AppUnregisteredEventObject {
|
|
385
|
+
app: string;
|
|
386
|
+
uid: string;
|
|
387
|
+
}
|
|
388
|
+
export type AppUnregisteredEvent = TypedEvent<
|
|
389
|
+
[string, string],
|
|
390
|
+
AppUnregisteredEventObject
|
|
391
|
+
>;
|
|
392
|
+
|
|
393
|
+
export type AppUnregisteredEventFilter = TypedEventFilter<AppUnregisteredEvent>;
|
|
394
|
+
|
|
395
|
+
export interface AppUpdated_address_bytes32_EventObject {
|
|
396
|
+
app: string;
|
|
397
|
+
uid: string;
|
|
398
|
+
}
|
|
399
|
+
export type AppUpdated_address_bytes32_Event = TypedEvent<
|
|
400
|
+
[string, string],
|
|
401
|
+
AppUpdated_address_bytes32_EventObject
|
|
402
|
+
>;
|
|
403
|
+
|
|
404
|
+
export type AppUpdated_address_bytes32_EventFilter =
|
|
405
|
+
TypedEventFilter<AppUpdated_address_bytes32_Event>;
|
|
406
|
+
|
|
407
|
+
export interface AppUpdated_address_address_bytes32_EventObject {
|
|
408
|
+
app: string;
|
|
409
|
+
account: string;
|
|
410
|
+
appId: string;
|
|
411
|
+
}
|
|
412
|
+
export type AppUpdated_address_address_bytes32_Event = TypedEvent<
|
|
413
|
+
[string, string, string],
|
|
414
|
+
AppUpdated_address_address_bytes32_EventObject
|
|
415
|
+
>;
|
|
416
|
+
|
|
417
|
+
export type AppUpdated_address_address_bytes32_EventFilter =
|
|
418
|
+
TypedEventFilter<AppUpdated_address_address_bytes32_Event>;
|
|
419
|
+
|
|
420
|
+
export interface AppUpgradedEventObject {
|
|
421
|
+
app: string;
|
|
422
|
+
oldVersionId: string;
|
|
423
|
+
newVersionId: string;
|
|
424
|
+
}
|
|
425
|
+
export type AppUpgradedEvent = TypedEvent<
|
|
426
|
+
[string, string, string],
|
|
427
|
+
AppUpgradedEventObject
|
|
428
|
+
>;
|
|
429
|
+
|
|
430
|
+
export type AppUpgradedEventFilter = TypedEventFilter<AppUpgradedEvent>;
|
|
431
|
+
|
|
432
|
+
export interface ExecutionInstalledEventObject {
|
|
433
|
+
module: string;
|
|
434
|
+
manifest: ExecutionManifestStructOutput;
|
|
435
|
+
}
|
|
436
|
+
export type ExecutionInstalledEvent = TypedEvent<
|
|
437
|
+
[string, ExecutionManifestStructOutput],
|
|
438
|
+
ExecutionInstalledEventObject
|
|
439
|
+
>;
|
|
440
|
+
|
|
441
|
+
export type ExecutionInstalledEventFilter =
|
|
442
|
+
TypedEventFilter<ExecutionInstalledEvent>;
|
|
443
|
+
|
|
444
|
+
export interface ExecutionUninstalledEventObject {
|
|
445
|
+
module: string;
|
|
446
|
+
success: boolean;
|
|
447
|
+
manifest: ExecutionManifestStructOutput;
|
|
448
|
+
}
|
|
449
|
+
export type ExecutionUninstalledEvent = TypedEvent<
|
|
450
|
+
[string, boolean, ExecutionManifestStructOutput],
|
|
451
|
+
ExecutionUninstalledEventObject
|
|
452
|
+
>;
|
|
453
|
+
|
|
454
|
+
export type ExecutionUninstalledEventFilter =
|
|
455
|
+
TypedEventFilter<ExecutionUninstalledEvent>;
|
|
456
|
+
|
|
457
|
+
export interface ExecutionUpdatedEventObject {
|
|
458
|
+
module: string;
|
|
459
|
+
manifest: ExecutionManifestStructOutput;
|
|
460
|
+
}
|
|
461
|
+
export type ExecutionUpdatedEvent = TypedEvent<
|
|
462
|
+
[string, ExecutionManifestStructOutput],
|
|
463
|
+
ExecutionUpdatedEventObject
|
|
464
|
+
>;
|
|
465
|
+
|
|
466
|
+
export type ExecutionUpdatedEventFilter =
|
|
467
|
+
TypedEventFilter<ExecutionUpdatedEvent>;
|
|
468
|
+
|
|
469
|
+
export interface GroupAccessGrantedEventObject {
|
|
470
|
+
groupId: string;
|
|
471
|
+
account: string;
|
|
472
|
+
delay: number;
|
|
473
|
+
since: number;
|
|
474
|
+
newMember: boolean;
|
|
475
|
+
}
|
|
476
|
+
export type GroupAccessGrantedEvent = TypedEvent<
|
|
477
|
+
[string, string, number, number, boolean],
|
|
478
|
+
GroupAccessGrantedEventObject
|
|
479
|
+
>;
|
|
480
|
+
|
|
481
|
+
export type GroupAccessGrantedEventFilter =
|
|
482
|
+
TypedEventFilter<GroupAccessGrantedEvent>;
|
|
483
|
+
|
|
484
|
+
export interface GroupAccessRevokedEventObject {
|
|
485
|
+
groupId: string;
|
|
486
|
+
account: string;
|
|
487
|
+
revoked: boolean;
|
|
488
|
+
}
|
|
489
|
+
export type GroupAccessRevokedEvent = TypedEvent<
|
|
490
|
+
[string, string, boolean],
|
|
491
|
+
GroupAccessRevokedEventObject
|
|
492
|
+
>;
|
|
493
|
+
|
|
494
|
+
export type GroupAccessRevokedEventFilter =
|
|
495
|
+
TypedEventFilter<GroupAccessRevokedEvent>;
|
|
496
|
+
|
|
497
|
+
export interface GroupExpirationSetEventObject {
|
|
498
|
+
groupId: string;
|
|
499
|
+
expiration: number;
|
|
500
|
+
}
|
|
501
|
+
export type GroupExpirationSetEvent = TypedEvent<
|
|
502
|
+
[string, number],
|
|
503
|
+
GroupExpirationSetEventObject
|
|
504
|
+
>;
|
|
505
|
+
|
|
506
|
+
export type GroupExpirationSetEventFilter =
|
|
507
|
+
TypedEventFilter<GroupExpirationSetEvent>;
|
|
508
|
+
|
|
509
|
+
export interface GroupGrantDelaySetEventObject {
|
|
510
|
+
groupId: string;
|
|
511
|
+
delay: number;
|
|
512
|
+
}
|
|
513
|
+
export type GroupGrantDelaySetEvent = TypedEvent<
|
|
514
|
+
[string, number],
|
|
515
|
+
GroupGrantDelaySetEventObject
|
|
516
|
+
>;
|
|
517
|
+
|
|
518
|
+
export type GroupGrantDelaySetEventFilter =
|
|
519
|
+
TypedEventFilter<GroupGrantDelaySetEvent>;
|
|
520
|
+
|
|
521
|
+
export interface GroupGuardianSetEventObject {
|
|
522
|
+
groupId: string;
|
|
523
|
+
guardian: string;
|
|
524
|
+
}
|
|
525
|
+
export type GroupGuardianSetEvent = TypedEvent<
|
|
526
|
+
[string, string],
|
|
527
|
+
GroupGuardianSetEventObject
|
|
528
|
+
>;
|
|
529
|
+
|
|
530
|
+
export type GroupGuardianSetEventFilter =
|
|
531
|
+
TypedEventFilter<GroupGuardianSetEvent>;
|
|
532
|
+
|
|
533
|
+
export interface GroupStatusSetEventObject {
|
|
534
|
+
groupId: string;
|
|
535
|
+
active: boolean;
|
|
536
|
+
}
|
|
537
|
+
export type GroupStatusSetEvent = TypedEvent<
|
|
538
|
+
[string, boolean],
|
|
539
|
+
GroupStatusSetEventObject
|
|
540
|
+
>;
|
|
541
|
+
|
|
542
|
+
export type GroupStatusSetEventFilter = TypedEventFilter<GroupStatusSetEvent>;
|
|
543
|
+
|
|
544
|
+
export interface OperationCanceledEventObject {
|
|
545
|
+
operationId: string;
|
|
546
|
+
nonce: number;
|
|
547
|
+
}
|
|
548
|
+
export type OperationCanceledEvent = TypedEvent<
|
|
549
|
+
[string, number],
|
|
550
|
+
OperationCanceledEventObject
|
|
551
|
+
>;
|
|
552
|
+
|
|
553
|
+
export type OperationCanceledEventFilter =
|
|
554
|
+
TypedEventFilter<OperationCanceledEvent>;
|
|
555
|
+
|
|
556
|
+
export interface OperationExecutedEventObject {
|
|
557
|
+
operationId: string;
|
|
558
|
+
nonce: number;
|
|
559
|
+
}
|
|
560
|
+
export type OperationExecutedEvent = TypedEvent<
|
|
561
|
+
[string, number],
|
|
562
|
+
OperationExecutedEventObject
|
|
563
|
+
>;
|
|
564
|
+
|
|
565
|
+
export type OperationExecutedEventFilter =
|
|
566
|
+
TypedEventFilter<OperationExecutedEvent>;
|
|
567
|
+
|
|
568
|
+
export interface OperationScheduledEventObject {
|
|
569
|
+
operationId: string;
|
|
570
|
+
timepoint: number;
|
|
571
|
+
nonce: number;
|
|
572
|
+
}
|
|
573
|
+
export type OperationScheduledEvent = TypedEvent<
|
|
574
|
+
[string, number, number],
|
|
575
|
+
OperationScheduledEventObject
|
|
576
|
+
>;
|
|
577
|
+
|
|
578
|
+
export type OperationScheduledEventFilter =
|
|
579
|
+
TypedEventFilter<OperationScheduledEvent>;
|
|
214
580
|
|
|
215
581
|
export interface OwnershipTransferredEventObject {
|
|
216
582
|
previousOwner: string;
|
|
@@ -296,6 +662,57 @@ export type RoleUpdatedEvent = TypedEvent<
|
|
|
296
662
|
|
|
297
663
|
export type RoleUpdatedEventFilter = TypedEventFilter<RoleUpdatedEvent>;
|
|
298
664
|
|
|
665
|
+
export interface TargetDisabledSetEventObject {
|
|
666
|
+
target: string;
|
|
667
|
+
disabled: boolean;
|
|
668
|
+
}
|
|
669
|
+
export type TargetDisabledSetEvent = TypedEvent<
|
|
670
|
+
[string, boolean],
|
|
671
|
+
TargetDisabledSetEventObject
|
|
672
|
+
>;
|
|
673
|
+
|
|
674
|
+
export type TargetDisabledSetEventFilter =
|
|
675
|
+
TypedEventFilter<TargetDisabledSetEvent>;
|
|
676
|
+
|
|
677
|
+
export interface TargetFunctionDelaySetEventObject {
|
|
678
|
+
target: string;
|
|
679
|
+
newDelay: number;
|
|
680
|
+
minSetback: number;
|
|
681
|
+
}
|
|
682
|
+
export type TargetFunctionDelaySetEvent = TypedEvent<
|
|
683
|
+
[string, number, number],
|
|
684
|
+
TargetFunctionDelaySetEventObject
|
|
685
|
+
>;
|
|
686
|
+
|
|
687
|
+
export type TargetFunctionDelaySetEventFilter =
|
|
688
|
+
TypedEventFilter<TargetFunctionDelaySetEvent>;
|
|
689
|
+
|
|
690
|
+
export interface TargetFunctionDisabledSetEventObject {
|
|
691
|
+
target: string;
|
|
692
|
+
selector: string;
|
|
693
|
+
disabled: boolean;
|
|
694
|
+
}
|
|
695
|
+
export type TargetFunctionDisabledSetEvent = TypedEvent<
|
|
696
|
+
[string, string, boolean],
|
|
697
|
+
TargetFunctionDisabledSetEventObject
|
|
698
|
+
>;
|
|
699
|
+
|
|
700
|
+
export type TargetFunctionDisabledSetEventFilter =
|
|
701
|
+
TypedEventFilter<TargetFunctionDisabledSetEvent>;
|
|
702
|
+
|
|
703
|
+
export interface TargetFunctionGroupSetEventObject {
|
|
704
|
+
target: string;
|
|
705
|
+
selector: string;
|
|
706
|
+
groupId: string;
|
|
707
|
+
}
|
|
708
|
+
export type TargetFunctionGroupSetEvent = TypedEvent<
|
|
709
|
+
[string, string, string],
|
|
710
|
+
TargetFunctionGroupSetEventObject
|
|
711
|
+
>;
|
|
712
|
+
|
|
713
|
+
export type TargetFunctionGroupSetEventFilter =
|
|
714
|
+
TypedEventFilter<TargetFunctionGroupSetEvent>;
|
|
715
|
+
|
|
299
716
|
export interface Roles extends BaseContract {
|
|
300
717
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
301
718
|
attach(addressOrName: string): this;
|
|
@@ -551,6 +968,204 @@ export interface Roles extends BaseContract {
|
|
|
551
968
|
};
|
|
552
969
|
|
|
553
970
|
filters: {
|
|
971
|
+
"AppBanned(address,bytes32)"(
|
|
972
|
+
app?: string | null,
|
|
973
|
+
uid?: null
|
|
974
|
+
): AppBannedEventFilter;
|
|
975
|
+
AppBanned(app?: string | null, uid?: null): AppBannedEventFilter;
|
|
976
|
+
|
|
977
|
+
"AppInstalled(address,address,bytes32)"(
|
|
978
|
+
app?: string | null,
|
|
979
|
+
account?: string | null,
|
|
980
|
+
appId?: BytesLike | null
|
|
981
|
+
): AppInstalledEventFilter;
|
|
982
|
+
AppInstalled(
|
|
983
|
+
app?: string | null,
|
|
984
|
+
account?: string | null,
|
|
985
|
+
appId?: BytesLike | null
|
|
986
|
+
): AppInstalledEventFilter;
|
|
987
|
+
|
|
988
|
+
"AppRegistered(address,bytes32)"(
|
|
989
|
+
app?: string | null,
|
|
990
|
+
uid?: null
|
|
991
|
+
): AppRegisteredEventFilter;
|
|
992
|
+
AppRegistered(app?: string | null, uid?: null): AppRegisteredEventFilter;
|
|
993
|
+
|
|
994
|
+
"AppRenewed(address,address,bytes32)"(
|
|
995
|
+
app?: string | null,
|
|
996
|
+
account?: string | null,
|
|
997
|
+
appId?: BytesLike | null
|
|
998
|
+
): AppRenewedEventFilter;
|
|
999
|
+
AppRenewed(
|
|
1000
|
+
app?: string | null,
|
|
1001
|
+
account?: string | null,
|
|
1002
|
+
appId?: BytesLike | null
|
|
1003
|
+
): AppRenewedEventFilter;
|
|
1004
|
+
|
|
1005
|
+
"AppSchemaSet(bytes32)"(uid?: null): AppSchemaSetEventFilter;
|
|
1006
|
+
AppSchemaSet(uid?: null): AppSchemaSetEventFilter;
|
|
1007
|
+
|
|
1008
|
+
"AppUninstalled(address,address,bytes32)"(
|
|
1009
|
+
app?: string | null,
|
|
1010
|
+
account?: string | null,
|
|
1011
|
+
appId?: BytesLike | null
|
|
1012
|
+
): AppUninstalledEventFilter;
|
|
1013
|
+
AppUninstalled(
|
|
1014
|
+
app?: string | null,
|
|
1015
|
+
account?: string | null,
|
|
1016
|
+
appId?: BytesLike | null
|
|
1017
|
+
): AppUninstalledEventFilter;
|
|
1018
|
+
|
|
1019
|
+
"AppUnregistered(address,bytes32)"(
|
|
1020
|
+
app?: string | null,
|
|
1021
|
+
uid?: null
|
|
1022
|
+
): AppUnregisteredEventFilter;
|
|
1023
|
+
AppUnregistered(
|
|
1024
|
+
app?: string | null,
|
|
1025
|
+
uid?: null
|
|
1026
|
+
): AppUnregisteredEventFilter;
|
|
1027
|
+
|
|
1028
|
+
"AppUpdated(address,bytes32)"(
|
|
1029
|
+
app?: string | null,
|
|
1030
|
+
uid?: null
|
|
1031
|
+
): AppUpdated_address_bytes32_EventFilter;
|
|
1032
|
+
"AppUpdated(address,address,bytes32)"(
|
|
1033
|
+
app?: string | null,
|
|
1034
|
+
account?: string | null,
|
|
1035
|
+
appId?: BytesLike | null
|
|
1036
|
+
): AppUpdated_address_address_bytes32_EventFilter;
|
|
1037
|
+
|
|
1038
|
+
"AppUpgraded(address,bytes32,bytes32)"(
|
|
1039
|
+
app?: string | null,
|
|
1040
|
+
oldVersionId?: BytesLike | null,
|
|
1041
|
+
newVersionId?: BytesLike | null
|
|
1042
|
+
): AppUpgradedEventFilter;
|
|
1043
|
+
AppUpgraded(
|
|
1044
|
+
app?: string | null,
|
|
1045
|
+
oldVersionId?: BytesLike | null,
|
|
1046
|
+
newVersionId?: BytesLike | null
|
|
1047
|
+
): AppUpgradedEventFilter;
|
|
1048
|
+
|
|
1049
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1050
|
+
module?: string | null,
|
|
1051
|
+
manifest?: null
|
|
1052
|
+
): ExecutionInstalledEventFilter;
|
|
1053
|
+
ExecutionInstalled(
|
|
1054
|
+
module?: string | null,
|
|
1055
|
+
manifest?: null
|
|
1056
|
+
): ExecutionInstalledEventFilter;
|
|
1057
|
+
|
|
1058
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1059
|
+
module?: string | null,
|
|
1060
|
+
success?: null,
|
|
1061
|
+
manifest?: null
|
|
1062
|
+
): ExecutionUninstalledEventFilter;
|
|
1063
|
+
ExecutionUninstalled(
|
|
1064
|
+
module?: string | null,
|
|
1065
|
+
success?: null,
|
|
1066
|
+
manifest?: null
|
|
1067
|
+
): ExecutionUninstalledEventFilter;
|
|
1068
|
+
|
|
1069
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1070
|
+
module?: string | null,
|
|
1071
|
+
manifest?: null
|
|
1072
|
+
): ExecutionUpdatedEventFilter;
|
|
1073
|
+
ExecutionUpdated(
|
|
1074
|
+
module?: string | null,
|
|
1075
|
+
manifest?: null
|
|
1076
|
+
): ExecutionUpdatedEventFilter;
|
|
1077
|
+
|
|
1078
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)"(
|
|
1079
|
+
groupId?: BytesLike | null,
|
|
1080
|
+
account?: string | null,
|
|
1081
|
+
delay?: null,
|
|
1082
|
+
since?: null,
|
|
1083
|
+
newMember?: null
|
|
1084
|
+
): GroupAccessGrantedEventFilter;
|
|
1085
|
+
GroupAccessGranted(
|
|
1086
|
+
groupId?: BytesLike | null,
|
|
1087
|
+
account?: string | null,
|
|
1088
|
+
delay?: null,
|
|
1089
|
+
since?: null,
|
|
1090
|
+
newMember?: null
|
|
1091
|
+
): GroupAccessGrantedEventFilter;
|
|
1092
|
+
|
|
1093
|
+
"GroupAccessRevoked(bytes32,address,bool)"(
|
|
1094
|
+
groupId?: BytesLike | null,
|
|
1095
|
+
account?: string | null,
|
|
1096
|
+
revoked?: null
|
|
1097
|
+
): GroupAccessRevokedEventFilter;
|
|
1098
|
+
GroupAccessRevoked(
|
|
1099
|
+
groupId?: BytesLike | null,
|
|
1100
|
+
account?: string | null,
|
|
1101
|
+
revoked?: null
|
|
1102
|
+
): GroupAccessRevokedEventFilter;
|
|
1103
|
+
|
|
1104
|
+
"GroupExpirationSet(bytes32,uint48)"(
|
|
1105
|
+
groupId?: BytesLike | null,
|
|
1106
|
+
expiration?: null
|
|
1107
|
+
): GroupExpirationSetEventFilter;
|
|
1108
|
+
GroupExpirationSet(
|
|
1109
|
+
groupId?: BytesLike | null,
|
|
1110
|
+
expiration?: null
|
|
1111
|
+
): GroupExpirationSetEventFilter;
|
|
1112
|
+
|
|
1113
|
+
"GroupGrantDelaySet(bytes32,uint32)"(
|
|
1114
|
+
groupId?: BytesLike | null,
|
|
1115
|
+
delay?: null
|
|
1116
|
+
): GroupGrantDelaySetEventFilter;
|
|
1117
|
+
GroupGrantDelaySet(
|
|
1118
|
+
groupId?: BytesLike | null,
|
|
1119
|
+
delay?: null
|
|
1120
|
+
): GroupGrantDelaySetEventFilter;
|
|
1121
|
+
|
|
1122
|
+
"GroupGuardianSet(bytes32,bytes32)"(
|
|
1123
|
+
groupId?: BytesLike | null,
|
|
1124
|
+
guardian?: null
|
|
1125
|
+
): GroupGuardianSetEventFilter;
|
|
1126
|
+
GroupGuardianSet(
|
|
1127
|
+
groupId?: BytesLike | null,
|
|
1128
|
+
guardian?: null
|
|
1129
|
+
): GroupGuardianSetEventFilter;
|
|
1130
|
+
|
|
1131
|
+
"GroupStatusSet(bytes32,bool)"(
|
|
1132
|
+
groupId?: BytesLike | null,
|
|
1133
|
+
active?: null
|
|
1134
|
+
): GroupStatusSetEventFilter;
|
|
1135
|
+
GroupStatusSet(
|
|
1136
|
+
groupId?: BytesLike | null,
|
|
1137
|
+
active?: null
|
|
1138
|
+
): GroupStatusSetEventFilter;
|
|
1139
|
+
|
|
1140
|
+
"OperationCanceled(bytes32,uint32)"(
|
|
1141
|
+
operationId?: BytesLike | null,
|
|
1142
|
+
nonce?: null
|
|
1143
|
+
): OperationCanceledEventFilter;
|
|
1144
|
+
OperationCanceled(
|
|
1145
|
+
operationId?: BytesLike | null,
|
|
1146
|
+
nonce?: null
|
|
1147
|
+
): OperationCanceledEventFilter;
|
|
1148
|
+
|
|
1149
|
+
"OperationExecuted(bytes32,uint32)"(
|
|
1150
|
+
operationId?: BytesLike | null,
|
|
1151
|
+
nonce?: null
|
|
1152
|
+
): OperationExecutedEventFilter;
|
|
1153
|
+
OperationExecuted(
|
|
1154
|
+
operationId?: BytesLike | null,
|
|
1155
|
+
nonce?: null
|
|
1156
|
+
): OperationExecutedEventFilter;
|
|
1157
|
+
|
|
1158
|
+
"OperationScheduled(bytes32,uint48,uint32)"(
|
|
1159
|
+
operationId?: BytesLike | null,
|
|
1160
|
+
timepoint?: null,
|
|
1161
|
+
nonce?: null
|
|
1162
|
+
): OperationScheduledEventFilter;
|
|
1163
|
+
OperationScheduled(
|
|
1164
|
+
operationId?: BytesLike | null,
|
|
1165
|
+
timepoint?: null,
|
|
1166
|
+
nonce?: null
|
|
1167
|
+
): OperationScheduledEventFilter;
|
|
1168
|
+
|
|
554
1169
|
"OwnershipTransferred(address,address)"(
|
|
555
1170
|
previousOwner?: string | null,
|
|
556
1171
|
newOwner?: string | null
|
|
@@ -619,6 +1234,48 @@ export interface Roles extends BaseContract {
|
|
|
619
1234
|
updater?: string | null,
|
|
620
1235
|
roleId?: BigNumberish | null
|
|
621
1236
|
): RoleUpdatedEventFilter;
|
|
1237
|
+
|
|
1238
|
+
"TargetDisabledSet(address,bool)"(
|
|
1239
|
+
target?: string | null,
|
|
1240
|
+
disabled?: null
|
|
1241
|
+
): TargetDisabledSetEventFilter;
|
|
1242
|
+
TargetDisabledSet(
|
|
1243
|
+
target?: string | null,
|
|
1244
|
+
disabled?: null
|
|
1245
|
+
): TargetDisabledSetEventFilter;
|
|
1246
|
+
|
|
1247
|
+
"TargetFunctionDelaySet(address,uint32,uint32)"(
|
|
1248
|
+
target?: string | null,
|
|
1249
|
+
newDelay?: null,
|
|
1250
|
+
minSetback?: null
|
|
1251
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1252
|
+
TargetFunctionDelaySet(
|
|
1253
|
+
target?: string | null,
|
|
1254
|
+
newDelay?: null,
|
|
1255
|
+
minSetback?: null
|
|
1256
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1257
|
+
|
|
1258
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)"(
|
|
1259
|
+
target?: string | null,
|
|
1260
|
+
selector?: BytesLike | null,
|
|
1261
|
+
disabled?: null
|
|
1262
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1263
|
+
TargetFunctionDisabledSet(
|
|
1264
|
+
target?: string | null,
|
|
1265
|
+
selector?: BytesLike | null,
|
|
1266
|
+
disabled?: null
|
|
1267
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1268
|
+
|
|
1269
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)"(
|
|
1270
|
+
target?: string | null,
|
|
1271
|
+
selector?: BytesLike | null,
|
|
1272
|
+
groupId?: BytesLike | null
|
|
1273
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1274
|
+
TargetFunctionGroupSet(
|
|
1275
|
+
target?: string | null,
|
|
1276
|
+
selector?: BytesLike | null,
|
|
1277
|
+
groupId?: BytesLike | null
|
|
1278
|
+
): TargetFunctionGroupSetEventFilter;
|
|
622
1279
|
};
|
|
623
1280
|
|
|
624
1281
|
estimateGas: {
|