@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/Channels.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 IChannelBase {
|
|
30
81
|
export type RolePermissionsStruct = {
|
|
31
82
|
roleId: BigNumberish;
|
|
@@ -150,14 +201,37 @@ export interface ChannelsInterface extends utils.Interface {
|
|
|
150
201
|
): Result;
|
|
151
202
|
|
|
152
203
|
events: {
|
|
204
|
+
"AppBanned(address,bytes32)": EventFragment;
|
|
205
|
+
"AppCreated(address,bytes32)": EventFragment;
|
|
206
|
+
"AppInstalled(address,address,bytes32)": EventFragment;
|
|
207
|
+
"AppRegistered(address,bytes32)": EventFragment;
|
|
208
|
+
"AppRenewed(address,address,bytes32)": EventFragment;
|
|
209
|
+
"AppSchemaSet(bytes32)": EventFragment;
|
|
210
|
+
"AppUninstalled(address,address,bytes32)": EventFragment;
|
|
211
|
+
"AppUnregistered(address,bytes32)": EventFragment;
|
|
212
|
+
"AppUpdated(address,bytes32)": EventFragment;
|
|
213
|
+
"AppUpdated(address,address,bytes32)": EventFragment;
|
|
214
|
+
"AppUpgraded(address,bytes32,bytes32)": EventFragment;
|
|
153
215
|
"ChannelCreated(address,bytes32)": EventFragment;
|
|
154
216
|
"ChannelRemoved(address,bytes32)": EventFragment;
|
|
155
217
|
"ChannelRoleAdded(address,bytes32,uint256)": EventFragment;
|
|
156
218
|
"ChannelRoleRemoved(address,bytes32,uint256)": EventFragment;
|
|
157
219
|
"ChannelUpdated(address,bytes32)": EventFragment;
|
|
220
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
221
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
222
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
223
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)": EventFragment;
|
|
224
|
+
"GroupAccessRevoked(bytes32,address,bool)": EventFragment;
|
|
225
|
+
"GroupExpirationSet(bytes32,uint48)": EventFragment;
|
|
226
|
+
"GroupGrantDelaySet(bytes32,uint32)": EventFragment;
|
|
227
|
+
"GroupGuardianSet(bytes32,bytes32)": EventFragment;
|
|
228
|
+
"GroupStatusSet(bytes32,bool)": EventFragment;
|
|
158
229
|
"Initialized(uint32)": EventFragment;
|
|
159
230
|
"InterfaceAdded(bytes4)": EventFragment;
|
|
160
231
|
"InterfaceRemoved(bytes4)": EventFragment;
|
|
232
|
+
"OperationCanceled(bytes32,uint32)": EventFragment;
|
|
233
|
+
"OperationExecuted(bytes32,uint32)": EventFragment;
|
|
234
|
+
"OperationScheduled(bytes32,uint48,uint32)": EventFragment;
|
|
161
235
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
162
236
|
"PermissionsAddedToChannelRole(address,uint256,bytes32)": EventFragment;
|
|
163
237
|
"PermissionsRemovedFromChannelRole(address,uint256,bytes32)": EventFragment;
|
|
@@ -165,16 +239,47 @@ export interface ChannelsInterface extends utils.Interface {
|
|
|
165
239
|
"RoleCreated(address,uint256)": EventFragment;
|
|
166
240
|
"RoleRemoved(address,uint256)": EventFragment;
|
|
167
241
|
"RoleUpdated(address,uint256)": EventFragment;
|
|
242
|
+
"TargetDisabledSet(address,bool)": EventFragment;
|
|
243
|
+
"TargetFunctionDelaySet(address,uint32,uint32)": EventFragment;
|
|
244
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)": EventFragment;
|
|
245
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)": EventFragment;
|
|
168
246
|
};
|
|
169
247
|
|
|
248
|
+
getEvent(nameOrSignatureOrTopic: "AppBanned"): EventFragment;
|
|
249
|
+
getEvent(nameOrSignatureOrTopic: "AppCreated"): EventFragment;
|
|
250
|
+
getEvent(nameOrSignatureOrTopic: "AppInstalled"): EventFragment;
|
|
251
|
+
getEvent(nameOrSignatureOrTopic: "AppRegistered"): EventFragment;
|
|
252
|
+
getEvent(nameOrSignatureOrTopic: "AppRenewed"): EventFragment;
|
|
253
|
+
getEvent(nameOrSignatureOrTopic: "AppSchemaSet"): EventFragment;
|
|
254
|
+
getEvent(nameOrSignatureOrTopic: "AppUninstalled"): EventFragment;
|
|
255
|
+
getEvent(nameOrSignatureOrTopic: "AppUnregistered"): EventFragment;
|
|
256
|
+
getEvent(
|
|
257
|
+
nameOrSignatureOrTopic: "AppUpdated(address,bytes32)"
|
|
258
|
+
): EventFragment;
|
|
259
|
+
getEvent(
|
|
260
|
+
nameOrSignatureOrTopic: "AppUpdated(address,address,bytes32)"
|
|
261
|
+
): EventFragment;
|
|
262
|
+
getEvent(nameOrSignatureOrTopic: "AppUpgraded"): EventFragment;
|
|
170
263
|
getEvent(nameOrSignatureOrTopic: "ChannelCreated"): EventFragment;
|
|
171
264
|
getEvent(nameOrSignatureOrTopic: "ChannelRemoved"): EventFragment;
|
|
172
265
|
getEvent(nameOrSignatureOrTopic: "ChannelRoleAdded"): EventFragment;
|
|
173
266
|
getEvent(nameOrSignatureOrTopic: "ChannelRoleRemoved"): EventFragment;
|
|
174
267
|
getEvent(nameOrSignatureOrTopic: "ChannelUpdated"): EventFragment;
|
|
268
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionInstalled"): EventFragment;
|
|
269
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUninstalled"): EventFragment;
|
|
270
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUpdated"): EventFragment;
|
|
271
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessGranted"): EventFragment;
|
|
272
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessRevoked"): EventFragment;
|
|
273
|
+
getEvent(nameOrSignatureOrTopic: "GroupExpirationSet"): EventFragment;
|
|
274
|
+
getEvent(nameOrSignatureOrTopic: "GroupGrantDelaySet"): EventFragment;
|
|
275
|
+
getEvent(nameOrSignatureOrTopic: "GroupGuardianSet"): EventFragment;
|
|
276
|
+
getEvent(nameOrSignatureOrTopic: "GroupStatusSet"): EventFragment;
|
|
175
277
|
getEvent(nameOrSignatureOrTopic: "Initialized"): EventFragment;
|
|
176
278
|
getEvent(nameOrSignatureOrTopic: "InterfaceAdded"): EventFragment;
|
|
177
279
|
getEvent(nameOrSignatureOrTopic: "InterfaceRemoved"): EventFragment;
|
|
280
|
+
getEvent(nameOrSignatureOrTopic: "OperationCanceled"): EventFragment;
|
|
281
|
+
getEvent(nameOrSignatureOrTopic: "OperationExecuted"): EventFragment;
|
|
282
|
+
getEvent(nameOrSignatureOrTopic: "OperationScheduled"): EventFragment;
|
|
178
283
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
179
284
|
getEvent(
|
|
180
285
|
nameOrSignatureOrTopic: "PermissionsAddedToChannelRole"
|
|
@@ -188,7 +293,132 @@ export interface ChannelsInterface extends utils.Interface {
|
|
|
188
293
|
getEvent(nameOrSignatureOrTopic: "RoleCreated"): EventFragment;
|
|
189
294
|
getEvent(nameOrSignatureOrTopic: "RoleRemoved"): EventFragment;
|
|
190
295
|
getEvent(nameOrSignatureOrTopic: "RoleUpdated"): EventFragment;
|
|
296
|
+
getEvent(nameOrSignatureOrTopic: "TargetDisabledSet"): EventFragment;
|
|
297
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDelaySet"): EventFragment;
|
|
298
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDisabledSet"): EventFragment;
|
|
299
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionGroupSet"): EventFragment;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
export interface AppBannedEventObject {
|
|
303
|
+
app: string;
|
|
304
|
+
uid: string;
|
|
305
|
+
}
|
|
306
|
+
export type AppBannedEvent = TypedEvent<[string, string], AppBannedEventObject>;
|
|
307
|
+
|
|
308
|
+
export type AppBannedEventFilter = TypedEventFilter<AppBannedEvent>;
|
|
309
|
+
|
|
310
|
+
export interface AppCreatedEventObject {
|
|
311
|
+
app: string;
|
|
312
|
+
uid: string;
|
|
313
|
+
}
|
|
314
|
+
export type AppCreatedEvent = TypedEvent<
|
|
315
|
+
[string, string],
|
|
316
|
+
AppCreatedEventObject
|
|
317
|
+
>;
|
|
318
|
+
|
|
319
|
+
export type AppCreatedEventFilter = TypedEventFilter<AppCreatedEvent>;
|
|
320
|
+
|
|
321
|
+
export interface AppInstalledEventObject {
|
|
322
|
+
app: string;
|
|
323
|
+
account: string;
|
|
324
|
+
appId: string;
|
|
325
|
+
}
|
|
326
|
+
export type AppInstalledEvent = TypedEvent<
|
|
327
|
+
[string, string, string],
|
|
328
|
+
AppInstalledEventObject
|
|
329
|
+
>;
|
|
330
|
+
|
|
331
|
+
export type AppInstalledEventFilter = TypedEventFilter<AppInstalledEvent>;
|
|
332
|
+
|
|
333
|
+
export interface AppRegisteredEventObject {
|
|
334
|
+
app: string;
|
|
335
|
+
uid: string;
|
|
336
|
+
}
|
|
337
|
+
export type AppRegisteredEvent = TypedEvent<
|
|
338
|
+
[string, string],
|
|
339
|
+
AppRegisteredEventObject
|
|
340
|
+
>;
|
|
341
|
+
|
|
342
|
+
export type AppRegisteredEventFilter = TypedEventFilter<AppRegisteredEvent>;
|
|
343
|
+
|
|
344
|
+
export interface AppRenewedEventObject {
|
|
345
|
+
app: string;
|
|
346
|
+
account: string;
|
|
347
|
+
appId: string;
|
|
348
|
+
}
|
|
349
|
+
export type AppRenewedEvent = TypedEvent<
|
|
350
|
+
[string, string, string],
|
|
351
|
+
AppRenewedEventObject
|
|
352
|
+
>;
|
|
353
|
+
|
|
354
|
+
export type AppRenewedEventFilter = TypedEventFilter<AppRenewedEvent>;
|
|
355
|
+
|
|
356
|
+
export interface AppSchemaSetEventObject {
|
|
357
|
+
uid: string;
|
|
358
|
+
}
|
|
359
|
+
export type AppSchemaSetEvent = TypedEvent<[string], AppSchemaSetEventObject>;
|
|
360
|
+
|
|
361
|
+
export type AppSchemaSetEventFilter = TypedEventFilter<AppSchemaSetEvent>;
|
|
362
|
+
|
|
363
|
+
export interface AppUninstalledEventObject {
|
|
364
|
+
app: string;
|
|
365
|
+
account: string;
|
|
366
|
+
appId: string;
|
|
367
|
+
}
|
|
368
|
+
export type AppUninstalledEvent = TypedEvent<
|
|
369
|
+
[string, string, string],
|
|
370
|
+
AppUninstalledEventObject
|
|
371
|
+
>;
|
|
372
|
+
|
|
373
|
+
export type AppUninstalledEventFilter = TypedEventFilter<AppUninstalledEvent>;
|
|
374
|
+
|
|
375
|
+
export interface AppUnregisteredEventObject {
|
|
376
|
+
app: string;
|
|
377
|
+
uid: string;
|
|
378
|
+
}
|
|
379
|
+
export type AppUnregisteredEvent = TypedEvent<
|
|
380
|
+
[string, string],
|
|
381
|
+
AppUnregisteredEventObject
|
|
382
|
+
>;
|
|
383
|
+
|
|
384
|
+
export type AppUnregisteredEventFilter = TypedEventFilter<AppUnregisteredEvent>;
|
|
385
|
+
|
|
386
|
+
export interface AppUpdated_address_bytes32_EventObject {
|
|
387
|
+
app: string;
|
|
388
|
+
uid: string;
|
|
389
|
+
}
|
|
390
|
+
export type AppUpdated_address_bytes32_Event = TypedEvent<
|
|
391
|
+
[string, string],
|
|
392
|
+
AppUpdated_address_bytes32_EventObject
|
|
393
|
+
>;
|
|
394
|
+
|
|
395
|
+
export type AppUpdated_address_bytes32_EventFilter =
|
|
396
|
+
TypedEventFilter<AppUpdated_address_bytes32_Event>;
|
|
397
|
+
|
|
398
|
+
export interface AppUpdated_address_address_bytes32_EventObject {
|
|
399
|
+
app: string;
|
|
400
|
+
account: string;
|
|
401
|
+
appId: string;
|
|
191
402
|
}
|
|
403
|
+
export type AppUpdated_address_address_bytes32_Event = TypedEvent<
|
|
404
|
+
[string, string, string],
|
|
405
|
+
AppUpdated_address_address_bytes32_EventObject
|
|
406
|
+
>;
|
|
407
|
+
|
|
408
|
+
export type AppUpdated_address_address_bytes32_EventFilter =
|
|
409
|
+
TypedEventFilter<AppUpdated_address_address_bytes32_Event>;
|
|
410
|
+
|
|
411
|
+
export interface AppUpgradedEventObject {
|
|
412
|
+
app: string;
|
|
413
|
+
oldVersionId: string;
|
|
414
|
+
newVersionId: string;
|
|
415
|
+
}
|
|
416
|
+
export type AppUpgradedEvent = TypedEvent<
|
|
417
|
+
[string, string, string],
|
|
418
|
+
AppUpgradedEventObject
|
|
419
|
+
>;
|
|
420
|
+
|
|
421
|
+
export type AppUpgradedEventFilter = TypedEventFilter<AppUpgradedEvent>;
|
|
192
422
|
|
|
193
423
|
export interface ChannelCreatedEventObject {
|
|
194
424
|
caller: string;
|
|
@@ -249,6 +479,118 @@ export type ChannelUpdatedEvent = TypedEvent<
|
|
|
249
479
|
|
|
250
480
|
export type ChannelUpdatedEventFilter = TypedEventFilter<ChannelUpdatedEvent>;
|
|
251
481
|
|
|
482
|
+
export interface ExecutionInstalledEventObject {
|
|
483
|
+
module: string;
|
|
484
|
+
manifest: ExecutionManifestStructOutput;
|
|
485
|
+
}
|
|
486
|
+
export type ExecutionInstalledEvent = TypedEvent<
|
|
487
|
+
[string, ExecutionManifestStructOutput],
|
|
488
|
+
ExecutionInstalledEventObject
|
|
489
|
+
>;
|
|
490
|
+
|
|
491
|
+
export type ExecutionInstalledEventFilter =
|
|
492
|
+
TypedEventFilter<ExecutionInstalledEvent>;
|
|
493
|
+
|
|
494
|
+
export interface ExecutionUninstalledEventObject {
|
|
495
|
+
module: string;
|
|
496
|
+
success: boolean;
|
|
497
|
+
manifest: ExecutionManifestStructOutput;
|
|
498
|
+
}
|
|
499
|
+
export type ExecutionUninstalledEvent = TypedEvent<
|
|
500
|
+
[string, boolean, ExecutionManifestStructOutput],
|
|
501
|
+
ExecutionUninstalledEventObject
|
|
502
|
+
>;
|
|
503
|
+
|
|
504
|
+
export type ExecutionUninstalledEventFilter =
|
|
505
|
+
TypedEventFilter<ExecutionUninstalledEvent>;
|
|
506
|
+
|
|
507
|
+
export interface ExecutionUpdatedEventObject {
|
|
508
|
+
module: string;
|
|
509
|
+
manifest: ExecutionManifestStructOutput;
|
|
510
|
+
}
|
|
511
|
+
export type ExecutionUpdatedEvent = TypedEvent<
|
|
512
|
+
[string, ExecutionManifestStructOutput],
|
|
513
|
+
ExecutionUpdatedEventObject
|
|
514
|
+
>;
|
|
515
|
+
|
|
516
|
+
export type ExecutionUpdatedEventFilter =
|
|
517
|
+
TypedEventFilter<ExecutionUpdatedEvent>;
|
|
518
|
+
|
|
519
|
+
export interface GroupAccessGrantedEventObject {
|
|
520
|
+
groupId: string;
|
|
521
|
+
account: string;
|
|
522
|
+
delay: number;
|
|
523
|
+
since: number;
|
|
524
|
+
newMember: boolean;
|
|
525
|
+
}
|
|
526
|
+
export type GroupAccessGrantedEvent = TypedEvent<
|
|
527
|
+
[string, string, number, number, boolean],
|
|
528
|
+
GroupAccessGrantedEventObject
|
|
529
|
+
>;
|
|
530
|
+
|
|
531
|
+
export type GroupAccessGrantedEventFilter =
|
|
532
|
+
TypedEventFilter<GroupAccessGrantedEvent>;
|
|
533
|
+
|
|
534
|
+
export interface GroupAccessRevokedEventObject {
|
|
535
|
+
groupId: string;
|
|
536
|
+
account: string;
|
|
537
|
+
revoked: boolean;
|
|
538
|
+
}
|
|
539
|
+
export type GroupAccessRevokedEvent = TypedEvent<
|
|
540
|
+
[string, string, boolean],
|
|
541
|
+
GroupAccessRevokedEventObject
|
|
542
|
+
>;
|
|
543
|
+
|
|
544
|
+
export type GroupAccessRevokedEventFilter =
|
|
545
|
+
TypedEventFilter<GroupAccessRevokedEvent>;
|
|
546
|
+
|
|
547
|
+
export interface GroupExpirationSetEventObject {
|
|
548
|
+
groupId: string;
|
|
549
|
+
expiration: number;
|
|
550
|
+
}
|
|
551
|
+
export type GroupExpirationSetEvent = TypedEvent<
|
|
552
|
+
[string, number],
|
|
553
|
+
GroupExpirationSetEventObject
|
|
554
|
+
>;
|
|
555
|
+
|
|
556
|
+
export type GroupExpirationSetEventFilter =
|
|
557
|
+
TypedEventFilter<GroupExpirationSetEvent>;
|
|
558
|
+
|
|
559
|
+
export interface GroupGrantDelaySetEventObject {
|
|
560
|
+
groupId: string;
|
|
561
|
+
delay: number;
|
|
562
|
+
}
|
|
563
|
+
export type GroupGrantDelaySetEvent = TypedEvent<
|
|
564
|
+
[string, number],
|
|
565
|
+
GroupGrantDelaySetEventObject
|
|
566
|
+
>;
|
|
567
|
+
|
|
568
|
+
export type GroupGrantDelaySetEventFilter =
|
|
569
|
+
TypedEventFilter<GroupGrantDelaySetEvent>;
|
|
570
|
+
|
|
571
|
+
export interface GroupGuardianSetEventObject {
|
|
572
|
+
groupId: string;
|
|
573
|
+
guardian: string;
|
|
574
|
+
}
|
|
575
|
+
export type GroupGuardianSetEvent = TypedEvent<
|
|
576
|
+
[string, string],
|
|
577
|
+
GroupGuardianSetEventObject
|
|
578
|
+
>;
|
|
579
|
+
|
|
580
|
+
export type GroupGuardianSetEventFilter =
|
|
581
|
+
TypedEventFilter<GroupGuardianSetEvent>;
|
|
582
|
+
|
|
583
|
+
export interface GroupStatusSetEventObject {
|
|
584
|
+
groupId: string;
|
|
585
|
+
active: boolean;
|
|
586
|
+
}
|
|
587
|
+
export type GroupStatusSetEvent = TypedEvent<
|
|
588
|
+
[string, boolean],
|
|
589
|
+
GroupStatusSetEventObject
|
|
590
|
+
>;
|
|
591
|
+
|
|
592
|
+
export type GroupStatusSetEventFilter = TypedEventFilter<GroupStatusSetEvent>;
|
|
593
|
+
|
|
252
594
|
export interface InitializedEventObject {
|
|
253
595
|
version: number;
|
|
254
596
|
}
|
|
@@ -277,6 +619,43 @@ export type InterfaceRemovedEvent = TypedEvent<
|
|
|
277
619
|
export type InterfaceRemovedEventFilter =
|
|
278
620
|
TypedEventFilter<InterfaceRemovedEvent>;
|
|
279
621
|
|
|
622
|
+
export interface OperationCanceledEventObject {
|
|
623
|
+
operationId: string;
|
|
624
|
+
nonce: number;
|
|
625
|
+
}
|
|
626
|
+
export type OperationCanceledEvent = TypedEvent<
|
|
627
|
+
[string, number],
|
|
628
|
+
OperationCanceledEventObject
|
|
629
|
+
>;
|
|
630
|
+
|
|
631
|
+
export type OperationCanceledEventFilter =
|
|
632
|
+
TypedEventFilter<OperationCanceledEvent>;
|
|
633
|
+
|
|
634
|
+
export interface OperationExecutedEventObject {
|
|
635
|
+
operationId: string;
|
|
636
|
+
nonce: number;
|
|
637
|
+
}
|
|
638
|
+
export type OperationExecutedEvent = TypedEvent<
|
|
639
|
+
[string, number],
|
|
640
|
+
OperationExecutedEventObject
|
|
641
|
+
>;
|
|
642
|
+
|
|
643
|
+
export type OperationExecutedEventFilter =
|
|
644
|
+
TypedEventFilter<OperationExecutedEvent>;
|
|
645
|
+
|
|
646
|
+
export interface OperationScheduledEventObject {
|
|
647
|
+
operationId: string;
|
|
648
|
+
timepoint: number;
|
|
649
|
+
nonce: number;
|
|
650
|
+
}
|
|
651
|
+
export type OperationScheduledEvent = TypedEvent<
|
|
652
|
+
[string, number, number],
|
|
653
|
+
OperationScheduledEventObject
|
|
654
|
+
>;
|
|
655
|
+
|
|
656
|
+
export type OperationScheduledEventFilter =
|
|
657
|
+
TypedEventFilter<OperationScheduledEvent>;
|
|
658
|
+
|
|
280
659
|
export interface OwnershipTransferredEventObject {
|
|
281
660
|
previousOwner: string;
|
|
282
661
|
newOwner: string;
|
|
@@ -361,6 +740,57 @@ export type RoleUpdatedEvent = TypedEvent<
|
|
|
361
740
|
|
|
362
741
|
export type RoleUpdatedEventFilter = TypedEventFilter<RoleUpdatedEvent>;
|
|
363
742
|
|
|
743
|
+
export interface TargetDisabledSetEventObject {
|
|
744
|
+
target: string;
|
|
745
|
+
disabled: boolean;
|
|
746
|
+
}
|
|
747
|
+
export type TargetDisabledSetEvent = TypedEvent<
|
|
748
|
+
[string, boolean],
|
|
749
|
+
TargetDisabledSetEventObject
|
|
750
|
+
>;
|
|
751
|
+
|
|
752
|
+
export type TargetDisabledSetEventFilter =
|
|
753
|
+
TypedEventFilter<TargetDisabledSetEvent>;
|
|
754
|
+
|
|
755
|
+
export interface TargetFunctionDelaySetEventObject {
|
|
756
|
+
target: string;
|
|
757
|
+
newDelay: number;
|
|
758
|
+
minSetback: number;
|
|
759
|
+
}
|
|
760
|
+
export type TargetFunctionDelaySetEvent = TypedEvent<
|
|
761
|
+
[string, number, number],
|
|
762
|
+
TargetFunctionDelaySetEventObject
|
|
763
|
+
>;
|
|
764
|
+
|
|
765
|
+
export type TargetFunctionDelaySetEventFilter =
|
|
766
|
+
TypedEventFilter<TargetFunctionDelaySetEvent>;
|
|
767
|
+
|
|
768
|
+
export interface TargetFunctionDisabledSetEventObject {
|
|
769
|
+
target: string;
|
|
770
|
+
selector: string;
|
|
771
|
+
disabled: boolean;
|
|
772
|
+
}
|
|
773
|
+
export type TargetFunctionDisabledSetEvent = TypedEvent<
|
|
774
|
+
[string, string, boolean],
|
|
775
|
+
TargetFunctionDisabledSetEventObject
|
|
776
|
+
>;
|
|
777
|
+
|
|
778
|
+
export type TargetFunctionDisabledSetEventFilter =
|
|
779
|
+
TypedEventFilter<TargetFunctionDisabledSetEvent>;
|
|
780
|
+
|
|
781
|
+
export interface TargetFunctionGroupSetEventObject {
|
|
782
|
+
target: string;
|
|
783
|
+
selector: string;
|
|
784
|
+
groupId: string;
|
|
785
|
+
}
|
|
786
|
+
export type TargetFunctionGroupSetEvent = TypedEvent<
|
|
787
|
+
[string, string, string],
|
|
788
|
+
TargetFunctionGroupSetEventObject
|
|
789
|
+
>;
|
|
790
|
+
|
|
791
|
+
export type TargetFunctionGroupSetEventFilter =
|
|
792
|
+
TypedEventFilter<TargetFunctionGroupSetEvent>;
|
|
793
|
+
|
|
364
794
|
export interface Channels extends BaseContract {
|
|
365
795
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
366
796
|
attach(addressOrName: string): this;
|
|
@@ -556,6 +986,90 @@ export interface Channels extends BaseContract {
|
|
|
556
986
|
};
|
|
557
987
|
|
|
558
988
|
filters: {
|
|
989
|
+
"AppBanned(address,bytes32)"(
|
|
990
|
+
app?: string | null,
|
|
991
|
+
uid?: null
|
|
992
|
+
): AppBannedEventFilter;
|
|
993
|
+
AppBanned(app?: string | null, uid?: null): AppBannedEventFilter;
|
|
994
|
+
|
|
995
|
+
"AppCreated(address,bytes32)"(
|
|
996
|
+
app?: string | null,
|
|
997
|
+
uid?: null
|
|
998
|
+
): AppCreatedEventFilter;
|
|
999
|
+
AppCreated(app?: string | null, uid?: null): AppCreatedEventFilter;
|
|
1000
|
+
|
|
1001
|
+
"AppInstalled(address,address,bytes32)"(
|
|
1002
|
+
app?: string | null,
|
|
1003
|
+
account?: string | null,
|
|
1004
|
+
appId?: BytesLike | null
|
|
1005
|
+
): AppInstalledEventFilter;
|
|
1006
|
+
AppInstalled(
|
|
1007
|
+
app?: string | null,
|
|
1008
|
+
account?: string | null,
|
|
1009
|
+
appId?: BytesLike | null
|
|
1010
|
+
): AppInstalledEventFilter;
|
|
1011
|
+
|
|
1012
|
+
"AppRegistered(address,bytes32)"(
|
|
1013
|
+
app?: string | null,
|
|
1014
|
+
uid?: null
|
|
1015
|
+
): AppRegisteredEventFilter;
|
|
1016
|
+
AppRegistered(app?: string | null, uid?: null): AppRegisteredEventFilter;
|
|
1017
|
+
|
|
1018
|
+
"AppRenewed(address,address,bytes32)"(
|
|
1019
|
+
app?: string | null,
|
|
1020
|
+
account?: string | null,
|
|
1021
|
+
appId?: BytesLike | null
|
|
1022
|
+
): AppRenewedEventFilter;
|
|
1023
|
+
AppRenewed(
|
|
1024
|
+
app?: string | null,
|
|
1025
|
+
account?: string | null,
|
|
1026
|
+
appId?: BytesLike | null
|
|
1027
|
+
): AppRenewedEventFilter;
|
|
1028
|
+
|
|
1029
|
+
"AppSchemaSet(bytes32)"(uid?: null): AppSchemaSetEventFilter;
|
|
1030
|
+
AppSchemaSet(uid?: null): AppSchemaSetEventFilter;
|
|
1031
|
+
|
|
1032
|
+
"AppUninstalled(address,address,bytes32)"(
|
|
1033
|
+
app?: string | null,
|
|
1034
|
+
account?: string | null,
|
|
1035
|
+
appId?: BytesLike | null
|
|
1036
|
+
): AppUninstalledEventFilter;
|
|
1037
|
+
AppUninstalled(
|
|
1038
|
+
app?: string | null,
|
|
1039
|
+
account?: string | null,
|
|
1040
|
+
appId?: BytesLike | null
|
|
1041
|
+
): AppUninstalledEventFilter;
|
|
1042
|
+
|
|
1043
|
+
"AppUnregistered(address,bytes32)"(
|
|
1044
|
+
app?: string | null,
|
|
1045
|
+
uid?: null
|
|
1046
|
+
): AppUnregisteredEventFilter;
|
|
1047
|
+
AppUnregistered(
|
|
1048
|
+
app?: string | null,
|
|
1049
|
+
uid?: null
|
|
1050
|
+
): AppUnregisteredEventFilter;
|
|
1051
|
+
|
|
1052
|
+
"AppUpdated(address,bytes32)"(
|
|
1053
|
+
app?: string | null,
|
|
1054
|
+
uid?: null
|
|
1055
|
+
): AppUpdated_address_bytes32_EventFilter;
|
|
1056
|
+
"AppUpdated(address,address,bytes32)"(
|
|
1057
|
+
app?: string | null,
|
|
1058
|
+
account?: string | null,
|
|
1059
|
+
appId?: BytesLike | null
|
|
1060
|
+
): AppUpdated_address_address_bytes32_EventFilter;
|
|
1061
|
+
|
|
1062
|
+
"AppUpgraded(address,bytes32,bytes32)"(
|
|
1063
|
+
app?: string | null,
|
|
1064
|
+
oldVersionId?: BytesLike | null,
|
|
1065
|
+
newVersionId?: BytesLike | null
|
|
1066
|
+
): AppUpgradedEventFilter;
|
|
1067
|
+
AppUpgraded(
|
|
1068
|
+
app?: string | null,
|
|
1069
|
+
oldVersionId?: BytesLike | null,
|
|
1070
|
+
newVersionId?: BytesLike | null
|
|
1071
|
+
): AppUpgradedEventFilter;
|
|
1072
|
+
|
|
559
1073
|
"ChannelCreated(address,bytes32)"(
|
|
560
1074
|
caller?: string | null,
|
|
561
1075
|
channelId?: null
|
|
@@ -605,6 +1119,97 @@ export interface Channels extends BaseContract {
|
|
|
605
1119
|
channelId?: null
|
|
606
1120
|
): ChannelUpdatedEventFilter;
|
|
607
1121
|
|
|
1122
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1123
|
+
module?: string | null,
|
|
1124
|
+
manifest?: null
|
|
1125
|
+
): ExecutionInstalledEventFilter;
|
|
1126
|
+
ExecutionInstalled(
|
|
1127
|
+
module?: string | null,
|
|
1128
|
+
manifest?: null
|
|
1129
|
+
): ExecutionInstalledEventFilter;
|
|
1130
|
+
|
|
1131
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1132
|
+
module?: string | null,
|
|
1133
|
+
success?: null,
|
|
1134
|
+
manifest?: null
|
|
1135
|
+
): ExecutionUninstalledEventFilter;
|
|
1136
|
+
ExecutionUninstalled(
|
|
1137
|
+
module?: string | null,
|
|
1138
|
+
success?: null,
|
|
1139
|
+
manifest?: null
|
|
1140
|
+
): ExecutionUninstalledEventFilter;
|
|
1141
|
+
|
|
1142
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1143
|
+
module?: string | null,
|
|
1144
|
+
manifest?: null
|
|
1145
|
+
): ExecutionUpdatedEventFilter;
|
|
1146
|
+
ExecutionUpdated(
|
|
1147
|
+
module?: string | null,
|
|
1148
|
+
manifest?: null
|
|
1149
|
+
): ExecutionUpdatedEventFilter;
|
|
1150
|
+
|
|
1151
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)"(
|
|
1152
|
+
groupId?: BytesLike | null,
|
|
1153
|
+
account?: string | null,
|
|
1154
|
+
delay?: null,
|
|
1155
|
+
since?: null,
|
|
1156
|
+
newMember?: null
|
|
1157
|
+
): GroupAccessGrantedEventFilter;
|
|
1158
|
+
GroupAccessGranted(
|
|
1159
|
+
groupId?: BytesLike | null,
|
|
1160
|
+
account?: string | null,
|
|
1161
|
+
delay?: null,
|
|
1162
|
+
since?: null,
|
|
1163
|
+
newMember?: null
|
|
1164
|
+
): GroupAccessGrantedEventFilter;
|
|
1165
|
+
|
|
1166
|
+
"GroupAccessRevoked(bytes32,address,bool)"(
|
|
1167
|
+
groupId?: BytesLike | null,
|
|
1168
|
+
account?: string | null,
|
|
1169
|
+
revoked?: null
|
|
1170
|
+
): GroupAccessRevokedEventFilter;
|
|
1171
|
+
GroupAccessRevoked(
|
|
1172
|
+
groupId?: BytesLike | null,
|
|
1173
|
+
account?: string | null,
|
|
1174
|
+
revoked?: null
|
|
1175
|
+
): GroupAccessRevokedEventFilter;
|
|
1176
|
+
|
|
1177
|
+
"GroupExpirationSet(bytes32,uint48)"(
|
|
1178
|
+
groupId?: BytesLike | null,
|
|
1179
|
+
expiration?: null
|
|
1180
|
+
): GroupExpirationSetEventFilter;
|
|
1181
|
+
GroupExpirationSet(
|
|
1182
|
+
groupId?: BytesLike | null,
|
|
1183
|
+
expiration?: null
|
|
1184
|
+
): GroupExpirationSetEventFilter;
|
|
1185
|
+
|
|
1186
|
+
"GroupGrantDelaySet(bytes32,uint32)"(
|
|
1187
|
+
groupId?: BytesLike | null,
|
|
1188
|
+
delay?: null
|
|
1189
|
+
): GroupGrantDelaySetEventFilter;
|
|
1190
|
+
GroupGrantDelaySet(
|
|
1191
|
+
groupId?: BytesLike | null,
|
|
1192
|
+
delay?: null
|
|
1193
|
+
): GroupGrantDelaySetEventFilter;
|
|
1194
|
+
|
|
1195
|
+
"GroupGuardianSet(bytes32,bytes32)"(
|
|
1196
|
+
groupId?: BytesLike | null,
|
|
1197
|
+
guardian?: null
|
|
1198
|
+
): GroupGuardianSetEventFilter;
|
|
1199
|
+
GroupGuardianSet(
|
|
1200
|
+
groupId?: BytesLike | null,
|
|
1201
|
+
guardian?: null
|
|
1202
|
+
): GroupGuardianSetEventFilter;
|
|
1203
|
+
|
|
1204
|
+
"GroupStatusSet(bytes32,bool)"(
|
|
1205
|
+
groupId?: BytesLike | null,
|
|
1206
|
+
active?: null
|
|
1207
|
+
): GroupStatusSetEventFilter;
|
|
1208
|
+
GroupStatusSet(
|
|
1209
|
+
groupId?: BytesLike | null,
|
|
1210
|
+
active?: null
|
|
1211
|
+
): GroupStatusSetEventFilter;
|
|
1212
|
+
|
|
608
1213
|
"Initialized(uint32)"(version?: null): InitializedEventFilter;
|
|
609
1214
|
Initialized(version?: null): InitializedEventFilter;
|
|
610
1215
|
|
|
@@ -620,6 +1225,35 @@ export interface Channels extends BaseContract {
|
|
|
620
1225
|
interfaceId?: BytesLike | null
|
|
621
1226
|
): InterfaceRemovedEventFilter;
|
|
622
1227
|
|
|
1228
|
+
"OperationCanceled(bytes32,uint32)"(
|
|
1229
|
+
operationId?: BytesLike | null,
|
|
1230
|
+
nonce?: null
|
|
1231
|
+
): OperationCanceledEventFilter;
|
|
1232
|
+
OperationCanceled(
|
|
1233
|
+
operationId?: BytesLike | null,
|
|
1234
|
+
nonce?: null
|
|
1235
|
+
): OperationCanceledEventFilter;
|
|
1236
|
+
|
|
1237
|
+
"OperationExecuted(bytes32,uint32)"(
|
|
1238
|
+
operationId?: BytesLike | null,
|
|
1239
|
+
nonce?: null
|
|
1240
|
+
): OperationExecutedEventFilter;
|
|
1241
|
+
OperationExecuted(
|
|
1242
|
+
operationId?: BytesLike | null,
|
|
1243
|
+
nonce?: null
|
|
1244
|
+
): OperationExecutedEventFilter;
|
|
1245
|
+
|
|
1246
|
+
"OperationScheduled(bytes32,uint48,uint32)"(
|
|
1247
|
+
operationId?: BytesLike | null,
|
|
1248
|
+
timepoint?: null,
|
|
1249
|
+
nonce?: null
|
|
1250
|
+
): OperationScheduledEventFilter;
|
|
1251
|
+
OperationScheduled(
|
|
1252
|
+
operationId?: BytesLike | null,
|
|
1253
|
+
timepoint?: null,
|
|
1254
|
+
nonce?: null
|
|
1255
|
+
): OperationScheduledEventFilter;
|
|
1256
|
+
|
|
623
1257
|
"OwnershipTransferred(address,address)"(
|
|
624
1258
|
previousOwner?: string | null,
|
|
625
1259
|
newOwner?: string | null
|
|
@@ -688,6 +1322,48 @@ export interface Channels extends BaseContract {
|
|
|
688
1322
|
updater?: string | null,
|
|
689
1323
|
roleId?: BigNumberish | null
|
|
690
1324
|
): RoleUpdatedEventFilter;
|
|
1325
|
+
|
|
1326
|
+
"TargetDisabledSet(address,bool)"(
|
|
1327
|
+
target?: string | null,
|
|
1328
|
+
disabled?: null
|
|
1329
|
+
): TargetDisabledSetEventFilter;
|
|
1330
|
+
TargetDisabledSet(
|
|
1331
|
+
target?: string | null,
|
|
1332
|
+
disabled?: null
|
|
1333
|
+
): TargetDisabledSetEventFilter;
|
|
1334
|
+
|
|
1335
|
+
"TargetFunctionDelaySet(address,uint32,uint32)"(
|
|
1336
|
+
target?: string | null,
|
|
1337
|
+
newDelay?: null,
|
|
1338
|
+
minSetback?: null
|
|
1339
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1340
|
+
TargetFunctionDelaySet(
|
|
1341
|
+
target?: string | null,
|
|
1342
|
+
newDelay?: null,
|
|
1343
|
+
minSetback?: null
|
|
1344
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1345
|
+
|
|
1346
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)"(
|
|
1347
|
+
target?: string | null,
|
|
1348
|
+
selector?: BytesLike | null,
|
|
1349
|
+
disabled?: null
|
|
1350
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1351
|
+
TargetFunctionDisabledSet(
|
|
1352
|
+
target?: string | null,
|
|
1353
|
+
selector?: BytesLike | null,
|
|
1354
|
+
disabled?: null
|
|
1355
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1356
|
+
|
|
1357
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)"(
|
|
1358
|
+
target?: string | null,
|
|
1359
|
+
selector?: BytesLike | null,
|
|
1360
|
+
groupId?: BytesLike | null
|
|
1361
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1362
|
+
TargetFunctionGroupSet(
|
|
1363
|
+
target?: string | null,
|
|
1364
|
+
selector?: BytesLike | null,
|
|
1365
|
+
groupId?: BytesLike | null
|
|
1366
|
+
): TargetFunctionGroupSetEventFilter;
|
|
691
1367
|
};
|
|
692
1368
|
|
|
693
1369
|
estimateGas: {
|