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