@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/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,36 @@ export interface ChannelsInterface extends utils.Interface {
|
|
|
150
201
|
): Result;
|
|
151
202
|
|
|
152
203
|
events: {
|
|
204
|
+
"AppBanned(address,bytes32)": EventFragment;
|
|
205
|
+
"AppInstalled(address,address,bytes32)": EventFragment;
|
|
206
|
+
"AppRegistered(address,bytes32)": EventFragment;
|
|
207
|
+
"AppRenewed(address,address,bytes32)": EventFragment;
|
|
208
|
+
"AppSchemaSet(bytes32)": EventFragment;
|
|
209
|
+
"AppUninstalled(address,address,bytes32)": EventFragment;
|
|
210
|
+
"AppUnregistered(address,bytes32)": EventFragment;
|
|
211
|
+
"AppUpdated(address,bytes32)": EventFragment;
|
|
212
|
+
"AppUpdated(address,address,bytes32)": EventFragment;
|
|
213
|
+
"AppUpgraded(address,bytes32,bytes32)": EventFragment;
|
|
153
214
|
"ChannelCreated(address,bytes32)": EventFragment;
|
|
154
215
|
"ChannelRemoved(address,bytes32)": EventFragment;
|
|
155
216
|
"ChannelRoleAdded(address,bytes32,uint256)": EventFragment;
|
|
156
217
|
"ChannelRoleRemoved(address,bytes32,uint256)": EventFragment;
|
|
157
218
|
"ChannelUpdated(address,bytes32)": EventFragment;
|
|
219
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
220
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
221
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
222
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)": EventFragment;
|
|
223
|
+
"GroupAccessRevoked(bytes32,address,bool)": EventFragment;
|
|
224
|
+
"GroupExpirationSet(bytes32,uint48)": EventFragment;
|
|
225
|
+
"GroupGrantDelaySet(bytes32,uint32)": EventFragment;
|
|
226
|
+
"GroupGuardianSet(bytes32,bytes32)": EventFragment;
|
|
227
|
+
"GroupStatusSet(bytes32,bool)": EventFragment;
|
|
158
228
|
"Initialized(uint32)": EventFragment;
|
|
159
229
|
"InterfaceAdded(bytes4)": EventFragment;
|
|
160
230
|
"InterfaceRemoved(bytes4)": EventFragment;
|
|
231
|
+
"OperationCanceled(bytes32,uint32)": EventFragment;
|
|
232
|
+
"OperationExecuted(bytes32,uint32)": EventFragment;
|
|
233
|
+
"OperationScheduled(bytes32,uint48,uint32)": EventFragment;
|
|
161
234
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
162
235
|
"PermissionsAddedToChannelRole(address,uint256,bytes32)": EventFragment;
|
|
163
236
|
"PermissionsRemovedFromChannelRole(address,uint256,bytes32)": EventFragment;
|
|
@@ -165,16 +238,46 @@ export interface ChannelsInterface extends utils.Interface {
|
|
|
165
238
|
"RoleCreated(address,uint256)": EventFragment;
|
|
166
239
|
"RoleRemoved(address,uint256)": EventFragment;
|
|
167
240
|
"RoleUpdated(address,uint256)": EventFragment;
|
|
241
|
+
"TargetDisabledSet(address,bool)": EventFragment;
|
|
242
|
+
"TargetFunctionDelaySet(address,uint32,uint32)": EventFragment;
|
|
243
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)": EventFragment;
|
|
244
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)": EventFragment;
|
|
168
245
|
};
|
|
169
246
|
|
|
247
|
+
getEvent(nameOrSignatureOrTopic: "AppBanned"): EventFragment;
|
|
248
|
+
getEvent(nameOrSignatureOrTopic: "AppInstalled"): EventFragment;
|
|
249
|
+
getEvent(nameOrSignatureOrTopic: "AppRegistered"): EventFragment;
|
|
250
|
+
getEvent(nameOrSignatureOrTopic: "AppRenewed"): EventFragment;
|
|
251
|
+
getEvent(nameOrSignatureOrTopic: "AppSchemaSet"): EventFragment;
|
|
252
|
+
getEvent(nameOrSignatureOrTopic: "AppUninstalled"): EventFragment;
|
|
253
|
+
getEvent(nameOrSignatureOrTopic: "AppUnregistered"): EventFragment;
|
|
254
|
+
getEvent(
|
|
255
|
+
nameOrSignatureOrTopic: "AppUpdated(address,bytes32)"
|
|
256
|
+
): EventFragment;
|
|
257
|
+
getEvent(
|
|
258
|
+
nameOrSignatureOrTopic: "AppUpdated(address,address,bytes32)"
|
|
259
|
+
): EventFragment;
|
|
260
|
+
getEvent(nameOrSignatureOrTopic: "AppUpgraded"): EventFragment;
|
|
170
261
|
getEvent(nameOrSignatureOrTopic: "ChannelCreated"): EventFragment;
|
|
171
262
|
getEvent(nameOrSignatureOrTopic: "ChannelRemoved"): EventFragment;
|
|
172
263
|
getEvent(nameOrSignatureOrTopic: "ChannelRoleAdded"): EventFragment;
|
|
173
264
|
getEvent(nameOrSignatureOrTopic: "ChannelRoleRemoved"): EventFragment;
|
|
174
265
|
getEvent(nameOrSignatureOrTopic: "ChannelUpdated"): EventFragment;
|
|
266
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionInstalled"): EventFragment;
|
|
267
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUninstalled"): EventFragment;
|
|
268
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUpdated"): EventFragment;
|
|
269
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessGranted"): EventFragment;
|
|
270
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessRevoked"): EventFragment;
|
|
271
|
+
getEvent(nameOrSignatureOrTopic: "GroupExpirationSet"): EventFragment;
|
|
272
|
+
getEvent(nameOrSignatureOrTopic: "GroupGrantDelaySet"): EventFragment;
|
|
273
|
+
getEvent(nameOrSignatureOrTopic: "GroupGuardianSet"): EventFragment;
|
|
274
|
+
getEvent(nameOrSignatureOrTopic: "GroupStatusSet"): EventFragment;
|
|
175
275
|
getEvent(nameOrSignatureOrTopic: "Initialized"): EventFragment;
|
|
176
276
|
getEvent(nameOrSignatureOrTopic: "InterfaceAdded"): EventFragment;
|
|
177
277
|
getEvent(nameOrSignatureOrTopic: "InterfaceRemoved"): EventFragment;
|
|
278
|
+
getEvent(nameOrSignatureOrTopic: "OperationCanceled"): EventFragment;
|
|
279
|
+
getEvent(nameOrSignatureOrTopic: "OperationExecuted"): EventFragment;
|
|
280
|
+
getEvent(nameOrSignatureOrTopic: "OperationScheduled"): EventFragment;
|
|
178
281
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
179
282
|
getEvent(
|
|
180
283
|
nameOrSignatureOrTopic: "PermissionsAddedToChannelRole"
|
|
@@ -188,7 +291,121 @@ export interface ChannelsInterface extends utils.Interface {
|
|
|
188
291
|
getEvent(nameOrSignatureOrTopic: "RoleCreated"): EventFragment;
|
|
189
292
|
getEvent(nameOrSignatureOrTopic: "RoleRemoved"): EventFragment;
|
|
190
293
|
getEvent(nameOrSignatureOrTopic: "RoleUpdated"): EventFragment;
|
|
294
|
+
getEvent(nameOrSignatureOrTopic: "TargetDisabledSet"): EventFragment;
|
|
295
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDelaySet"): EventFragment;
|
|
296
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDisabledSet"): EventFragment;
|
|
297
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionGroupSet"): EventFragment;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
export interface AppBannedEventObject {
|
|
301
|
+
app: string;
|
|
302
|
+
uid: string;
|
|
303
|
+
}
|
|
304
|
+
export type AppBannedEvent = TypedEvent<[string, string], AppBannedEventObject>;
|
|
305
|
+
|
|
306
|
+
export type AppBannedEventFilter = TypedEventFilter<AppBannedEvent>;
|
|
307
|
+
|
|
308
|
+
export interface AppInstalledEventObject {
|
|
309
|
+
app: string;
|
|
310
|
+
account: string;
|
|
311
|
+
appId: string;
|
|
312
|
+
}
|
|
313
|
+
export type AppInstalledEvent = TypedEvent<
|
|
314
|
+
[string, string, string],
|
|
315
|
+
AppInstalledEventObject
|
|
316
|
+
>;
|
|
317
|
+
|
|
318
|
+
export type AppInstalledEventFilter = TypedEventFilter<AppInstalledEvent>;
|
|
319
|
+
|
|
320
|
+
export interface AppRegisteredEventObject {
|
|
321
|
+
app: string;
|
|
322
|
+
uid: string;
|
|
323
|
+
}
|
|
324
|
+
export type AppRegisteredEvent = TypedEvent<
|
|
325
|
+
[string, string],
|
|
326
|
+
AppRegisteredEventObject
|
|
327
|
+
>;
|
|
328
|
+
|
|
329
|
+
export type AppRegisteredEventFilter = TypedEventFilter<AppRegisteredEvent>;
|
|
330
|
+
|
|
331
|
+
export interface AppRenewedEventObject {
|
|
332
|
+
app: string;
|
|
333
|
+
account: string;
|
|
334
|
+
appId: string;
|
|
335
|
+
}
|
|
336
|
+
export type AppRenewedEvent = TypedEvent<
|
|
337
|
+
[string, string, string],
|
|
338
|
+
AppRenewedEventObject
|
|
339
|
+
>;
|
|
340
|
+
|
|
341
|
+
export type AppRenewedEventFilter = TypedEventFilter<AppRenewedEvent>;
|
|
342
|
+
|
|
343
|
+
export interface AppSchemaSetEventObject {
|
|
344
|
+
uid: string;
|
|
345
|
+
}
|
|
346
|
+
export type AppSchemaSetEvent = TypedEvent<[string], AppSchemaSetEventObject>;
|
|
347
|
+
|
|
348
|
+
export type AppSchemaSetEventFilter = TypedEventFilter<AppSchemaSetEvent>;
|
|
349
|
+
|
|
350
|
+
export interface AppUninstalledEventObject {
|
|
351
|
+
app: string;
|
|
352
|
+
account: string;
|
|
353
|
+
appId: string;
|
|
354
|
+
}
|
|
355
|
+
export type AppUninstalledEvent = TypedEvent<
|
|
356
|
+
[string, string, string],
|
|
357
|
+
AppUninstalledEventObject
|
|
358
|
+
>;
|
|
359
|
+
|
|
360
|
+
export type AppUninstalledEventFilter = TypedEventFilter<AppUninstalledEvent>;
|
|
361
|
+
|
|
362
|
+
export interface AppUnregisteredEventObject {
|
|
363
|
+
app: string;
|
|
364
|
+
uid: string;
|
|
365
|
+
}
|
|
366
|
+
export type AppUnregisteredEvent = TypedEvent<
|
|
367
|
+
[string, string],
|
|
368
|
+
AppUnregisteredEventObject
|
|
369
|
+
>;
|
|
370
|
+
|
|
371
|
+
export type AppUnregisteredEventFilter = TypedEventFilter<AppUnregisteredEvent>;
|
|
372
|
+
|
|
373
|
+
export interface AppUpdated_address_bytes32_EventObject {
|
|
374
|
+
app: string;
|
|
375
|
+
uid: string;
|
|
191
376
|
}
|
|
377
|
+
export type AppUpdated_address_bytes32_Event = TypedEvent<
|
|
378
|
+
[string, string],
|
|
379
|
+
AppUpdated_address_bytes32_EventObject
|
|
380
|
+
>;
|
|
381
|
+
|
|
382
|
+
export type AppUpdated_address_bytes32_EventFilter =
|
|
383
|
+
TypedEventFilter<AppUpdated_address_bytes32_Event>;
|
|
384
|
+
|
|
385
|
+
export interface AppUpdated_address_address_bytes32_EventObject {
|
|
386
|
+
app: string;
|
|
387
|
+
account: string;
|
|
388
|
+
appId: string;
|
|
389
|
+
}
|
|
390
|
+
export type AppUpdated_address_address_bytes32_Event = TypedEvent<
|
|
391
|
+
[string, string, string],
|
|
392
|
+
AppUpdated_address_address_bytes32_EventObject
|
|
393
|
+
>;
|
|
394
|
+
|
|
395
|
+
export type AppUpdated_address_address_bytes32_EventFilter =
|
|
396
|
+
TypedEventFilter<AppUpdated_address_address_bytes32_Event>;
|
|
397
|
+
|
|
398
|
+
export interface AppUpgradedEventObject {
|
|
399
|
+
app: string;
|
|
400
|
+
oldVersionId: string;
|
|
401
|
+
newVersionId: string;
|
|
402
|
+
}
|
|
403
|
+
export type AppUpgradedEvent = TypedEvent<
|
|
404
|
+
[string, string, string],
|
|
405
|
+
AppUpgradedEventObject
|
|
406
|
+
>;
|
|
407
|
+
|
|
408
|
+
export type AppUpgradedEventFilter = TypedEventFilter<AppUpgradedEvent>;
|
|
192
409
|
|
|
193
410
|
export interface ChannelCreatedEventObject {
|
|
194
411
|
caller: string;
|
|
@@ -249,6 +466,118 @@ export type ChannelUpdatedEvent = TypedEvent<
|
|
|
249
466
|
|
|
250
467
|
export type ChannelUpdatedEventFilter = TypedEventFilter<ChannelUpdatedEvent>;
|
|
251
468
|
|
|
469
|
+
export interface ExecutionInstalledEventObject {
|
|
470
|
+
module: string;
|
|
471
|
+
manifest: ExecutionManifestStructOutput;
|
|
472
|
+
}
|
|
473
|
+
export type ExecutionInstalledEvent = TypedEvent<
|
|
474
|
+
[string, ExecutionManifestStructOutput],
|
|
475
|
+
ExecutionInstalledEventObject
|
|
476
|
+
>;
|
|
477
|
+
|
|
478
|
+
export type ExecutionInstalledEventFilter =
|
|
479
|
+
TypedEventFilter<ExecutionInstalledEvent>;
|
|
480
|
+
|
|
481
|
+
export interface ExecutionUninstalledEventObject {
|
|
482
|
+
module: string;
|
|
483
|
+
success: boolean;
|
|
484
|
+
manifest: ExecutionManifestStructOutput;
|
|
485
|
+
}
|
|
486
|
+
export type ExecutionUninstalledEvent = TypedEvent<
|
|
487
|
+
[string, boolean, ExecutionManifestStructOutput],
|
|
488
|
+
ExecutionUninstalledEventObject
|
|
489
|
+
>;
|
|
490
|
+
|
|
491
|
+
export type ExecutionUninstalledEventFilter =
|
|
492
|
+
TypedEventFilter<ExecutionUninstalledEvent>;
|
|
493
|
+
|
|
494
|
+
export interface ExecutionUpdatedEventObject {
|
|
495
|
+
module: string;
|
|
496
|
+
manifest: ExecutionManifestStructOutput;
|
|
497
|
+
}
|
|
498
|
+
export type ExecutionUpdatedEvent = TypedEvent<
|
|
499
|
+
[string, ExecutionManifestStructOutput],
|
|
500
|
+
ExecutionUpdatedEventObject
|
|
501
|
+
>;
|
|
502
|
+
|
|
503
|
+
export type ExecutionUpdatedEventFilter =
|
|
504
|
+
TypedEventFilter<ExecutionUpdatedEvent>;
|
|
505
|
+
|
|
506
|
+
export interface GroupAccessGrantedEventObject {
|
|
507
|
+
groupId: string;
|
|
508
|
+
account: string;
|
|
509
|
+
delay: number;
|
|
510
|
+
since: number;
|
|
511
|
+
newMember: boolean;
|
|
512
|
+
}
|
|
513
|
+
export type GroupAccessGrantedEvent = TypedEvent<
|
|
514
|
+
[string, string, number, number, boolean],
|
|
515
|
+
GroupAccessGrantedEventObject
|
|
516
|
+
>;
|
|
517
|
+
|
|
518
|
+
export type GroupAccessGrantedEventFilter =
|
|
519
|
+
TypedEventFilter<GroupAccessGrantedEvent>;
|
|
520
|
+
|
|
521
|
+
export interface GroupAccessRevokedEventObject {
|
|
522
|
+
groupId: string;
|
|
523
|
+
account: string;
|
|
524
|
+
revoked: boolean;
|
|
525
|
+
}
|
|
526
|
+
export type GroupAccessRevokedEvent = TypedEvent<
|
|
527
|
+
[string, string, boolean],
|
|
528
|
+
GroupAccessRevokedEventObject
|
|
529
|
+
>;
|
|
530
|
+
|
|
531
|
+
export type GroupAccessRevokedEventFilter =
|
|
532
|
+
TypedEventFilter<GroupAccessRevokedEvent>;
|
|
533
|
+
|
|
534
|
+
export interface GroupExpirationSetEventObject {
|
|
535
|
+
groupId: string;
|
|
536
|
+
expiration: number;
|
|
537
|
+
}
|
|
538
|
+
export type GroupExpirationSetEvent = TypedEvent<
|
|
539
|
+
[string, number],
|
|
540
|
+
GroupExpirationSetEventObject
|
|
541
|
+
>;
|
|
542
|
+
|
|
543
|
+
export type GroupExpirationSetEventFilter =
|
|
544
|
+
TypedEventFilter<GroupExpirationSetEvent>;
|
|
545
|
+
|
|
546
|
+
export interface GroupGrantDelaySetEventObject {
|
|
547
|
+
groupId: string;
|
|
548
|
+
delay: number;
|
|
549
|
+
}
|
|
550
|
+
export type GroupGrantDelaySetEvent = TypedEvent<
|
|
551
|
+
[string, number],
|
|
552
|
+
GroupGrantDelaySetEventObject
|
|
553
|
+
>;
|
|
554
|
+
|
|
555
|
+
export type GroupGrantDelaySetEventFilter =
|
|
556
|
+
TypedEventFilter<GroupGrantDelaySetEvent>;
|
|
557
|
+
|
|
558
|
+
export interface GroupGuardianSetEventObject {
|
|
559
|
+
groupId: string;
|
|
560
|
+
guardian: string;
|
|
561
|
+
}
|
|
562
|
+
export type GroupGuardianSetEvent = TypedEvent<
|
|
563
|
+
[string, string],
|
|
564
|
+
GroupGuardianSetEventObject
|
|
565
|
+
>;
|
|
566
|
+
|
|
567
|
+
export type GroupGuardianSetEventFilter =
|
|
568
|
+
TypedEventFilter<GroupGuardianSetEvent>;
|
|
569
|
+
|
|
570
|
+
export interface GroupStatusSetEventObject {
|
|
571
|
+
groupId: string;
|
|
572
|
+
active: boolean;
|
|
573
|
+
}
|
|
574
|
+
export type GroupStatusSetEvent = TypedEvent<
|
|
575
|
+
[string, boolean],
|
|
576
|
+
GroupStatusSetEventObject
|
|
577
|
+
>;
|
|
578
|
+
|
|
579
|
+
export type GroupStatusSetEventFilter = TypedEventFilter<GroupStatusSetEvent>;
|
|
580
|
+
|
|
252
581
|
export interface InitializedEventObject {
|
|
253
582
|
version: number;
|
|
254
583
|
}
|
|
@@ -277,6 +606,43 @@ export type InterfaceRemovedEvent = TypedEvent<
|
|
|
277
606
|
export type InterfaceRemovedEventFilter =
|
|
278
607
|
TypedEventFilter<InterfaceRemovedEvent>;
|
|
279
608
|
|
|
609
|
+
export interface OperationCanceledEventObject {
|
|
610
|
+
operationId: string;
|
|
611
|
+
nonce: number;
|
|
612
|
+
}
|
|
613
|
+
export type OperationCanceledEvent = TypedEvent<
|
|
614
|
+
[string, number],
|
|
615
|
+
OperationCanceledEventObject
|
|
616
|
+
>;
|
|
617
|
+
|
|
618
|
+
export type OperationCanceledEventFilter =
|
|
619
|
+
TypedEventFilter<OperationCanceledEvent>;
|
|
620
|
+
|
|
621
|
+
export interface OperationExecutedEventObject {
|
|
622
|
+
operationId: string;
|
|
623
|
+
nonce: number;
|
|
624
|
+
}
|
|
625
|
+
export type OperationExecutedEvent = TypedEvent<
|
|
626
|
+
[string, number],
|
|
627
|
+
OperationExecutedEventObject
|
|
628
|
+
>;
|
|
629
|
+
|
|
630
|
+
export type OperationExecutedEventFilter =
|
|
631
|
+
TypedEventFilter<OperationExecutedEvent>;
|
|
632
|
+
|
|
633
|
+
export interface OperationScheduledEventObject {
|
|
634
|
+
operationId: string;
|
|
635
|
+
timepoint: number;
|
|
636
|
+
nonce: number;
|
|
637
|
+
}
|
|
638
|
+
export type OperationScheduledEvent = TypedEvent<
|
|
639
|
+
[string, number, number],
|
|
640
|
+
OperationScheduledEventObject
|
|
641
|
+
>;
|
|
642
|
+
|
|
643
|
+
export type OperationScheduledEventFilter =
|
|
644
|
+
TypedEventFilter<OperationScheduledEvent>;
|
|
645
|
+
|
|
280
646
|
export interface OwnershipTransferredEventObject {
|
|
281
647
|
previousOwner: string;
|
|
282
648
|
newOwner: string;
|
|
@@ -361,6 +727,57 @@ export type RoleUpdatedEvent = TypedEvent<
|
|
|
361
727
|
|
|
362
728
|
export type RoleUpdatedEventFilter = TypedEventFilter<RoleUpdatedEvent>;
|
|
363
729
|
|
|
730
|
+
export interface TargetDisabledSetEventObject {
|
|
731
|
+
target: string;
|
|
732
|
+
disabled: boolean;
|
|
733
|
+
}
|
|
734
|
+
export type TargetDisabledSetEvent = TypedEvent<
|
|
735
|
+
[string, boolean],
|
|
736
|
+
TargetDisabledSetEventObject
|
|
737
|
+
>;
|
|
738
|
+
|
|
739
|
+
export type TargetDisabledSetEventFilter =
|
|
740
|
+
TypedEventFilter<TargetDisabledSetEvent>;
|
|
741
|
+
|
|
742
|
+
export interface TargetFunctionDelaySetEventObject {
|
|
743
|
+
target: string;
|
|
744
|
+
newDelay: number;
|
|
745
|
+
minSetback: number;
|
|
746
|
+
}
|
|
747
|
+
export type TargetFunctionDelaySetEvent = TypedEvent<
|
|
748
|
+
[string, number, number],
|
|
749
|
+
TargetFunctionDelaySetEventObject
|
|
750
|
+
>;
|
|
751
|
+
|
|
752
|
+
export type TargetFunctionDelaySetEventFilter =
|
|
753
|
+
TypedEventFilter<TargetFunctionDelaySetEvent>;
|
|
754
|
+
|
|
755
|
+
export interface TargetFunctionDisabledSetEventObject {
|
|
756
|
+
target: string;
|
|
757
|
+
selector: string;
|
|
758
|
+
disabled: boolean;
|
|
759
|
+
}
|
|
760
|
+
export type TargetFunctionDisabledSetEvent = TypedEvent<
|
|
761
|
+
[string, string, boolean],
|
|
762
|
+
TargetFunctionDisabledSetEventObject
|
|
763
|
+
>;
|
|
764
|
+
|
|
765
|
+
export type TargetFunctionDisabledSetEventFilter =
|
|
766
|
+
TypedEventFilter<TargetFunctionDisabledSetEvent>;
|
|
767
|
+
|
|
768
|
+
export interface TargetFunctionGroupSetEventObject {
|
|
769
|
+
target: string;
|
|
770
|
+
selector: string;
|
|
771
|
+
groupId: string;
|
|
772
|
+
}
|
|
773
|
+
export type TargetFunctionGroupSetEvent = TypedEvent<
|
|
774
|
+
[string, string, string],
|
|
775
|
+
TargetFunctionGroupSetEventObject
|
|
776
|
+
>;
|
|
777
|
+
|
|
778
|
+
export type TargetFunctionGroupSetEventFilter =
|
|
779
|
+
TypedEventFilter<TargetFunctionGroupSetEvent>;
|
|
780
|
+
|
|
364
781
|
export interface Channels extends BaseContract {
|
|
365
782
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
366
783
|
attach(addressOrName: string): this;
|
|
@@ -556,6 +973,84 @@ export interface Channels extends BaseContract {
|
|
|
556
973
|
};
|
|
557
974
|
|
|
558
975
|
filters: {
|
|
976
|
+
"AppBanned(address,bytes32)"(
|
|
977
|
+
app?: string | null,
|
|
978
|
+
uid?: null
|
|
979
|
+
): AppBannedEventFilter;
|
|
980
|
+
AppBanned(app?: string | null, uid?: null): AppBannedEventFilter;
|
|
981
|
+
|
|
982
|
+
"AppInstalled(address,address,bytes32)"(
|
|
983
|
+
app?: string | null,
|
|
984
|
+
account?: string | null,
|
|
985
|
+
appId?: BytesLike | null
|
|
986
|
+
): AppInstalledEventFilter;
|
|
987
|
+
AppInstalled(
|
|
988
|
+
app?: string | null,
|
|
989
|
+
account?: string | null,
|
|
990
|
+
appId?: BytesLike | null
|
|
991
|
+
): AppInstalledEventFilter;
|
|
992
|
+
|
|
993
|
+
"AppRegistered(address,bytes32)"(
|
|
994
|
+
app?: string | null,
|
|
995
|
+
uid?: null
|
|
996
|
+
): AppRegisteredEventFilter;
|
|
997
|
+
AppRegistered(app?: string | null, uid?: null): AppRegisteredEventFilter;
|
|
998
|
+
|
|
999
|
+
"AppRenewed(address,address,bytes32)"(
|
|
1000
|
+
app?: string | null,
|
|
1001
|
+
account?: string | null,
|
|
1002
|
+
appId?: BytesLike | null
|
|
1003
|
+
): AppRenewedEventFilter;
|
|
1004
|
+
AppRenewed(
|
|
1005
|
+
app?: string | null,
|
|
1006
|
+
account?: string | null,
|
|
1007
|
+
appId?: BytesLike | null
|
|
1008
|
+
): AppRenewedEventFilter;
|
|
1009
|
+
|
|
1010
|
+
"AppSchemaSet(bytes32)"(uid?: null): AppSchemaSetEventFilter;
|
|
1011
|
+
AppSchemaSet(uid?: null): AppSchemaSetEventFilter;
|
|
1012
|
+
|
|
1013
|
+
"AppUninstalled(address,address,bytes32)"(
|
|
1014
|
+
app?: string | null,
|
|
1015
|
+
account?: string | null,
|
|
1016
|
+
appId?: BytesLike | null
|
|
1017
|
+
): AppUninstalledEventFilter;
|
|
1018
|
+
AppUninstalled(
|
|
1019
|
+
app?: string | null,
|
|
1020
|
+
account?: string | null,
|
|
1021
|
+
appId?: BytesLike | null
|
|
1022
|
+
): AppUninstalledEventFilter;
|
|
1023
|
+
|
|
1024
|
+
"AppUnregistered(address,bytes32)"(
|
|
1025
|
+
app?: string | null,
|
|
1026
|
+
uid?: null
|
|
1027
|
+
): AppUnregisteredEventFilter;
|
|
1028
|
+
AppUnregistered(
|
|
1029
|
+
app?: string | null,
|
|
1030
|
+
uid?: null
|
|
1031
|
+
): AppUnregisteredEventFilter;
|
|
1032
|
+
|
|
1033
|
+
"AppUpdated(address,bytes32)"(
|
|
1034
|
+
app?: string | null,
|
|
1035
|
+
uid?: null
|
|
1036
|
+
): AppUpdated_address_bytes32_EventFilter;
|
|
1037
|
+
"AppUpdated(address,address,bytes32)"(
|
|
1038
|
+
app?: string | null,
|
|
1039
|
+
account?: string | null,
|
|
1040
|
+
appId?: BytesLike | null
|
|
1041
|
+
): AppUpdated_address_address_bytes32_EventFilter;
|
|
1042
|
+
|
|
1043
|
+
"AppUpgraded(address,bytes32,bytes32)"(
|
|
1044
|
+
app?: string | null,
|
|
1045
|
+
oldVersionId?: BytesLike | null,
|
|
1046
|
+
newVersionId?: BytesLike | null
|
|
1047
|
+
): AppUpgradedEventFilter;
|
|
1048
|
+
AppUpgraded(
|
|
1049
|
+
app?: string | null,
|
|
1050
|
+
oldVersionId?: BytesLike | null,
|
|
1051
|
+
newVersionId?: BytesLike | null
|
|
1052
|
+
): AppUpgradedEventFilter;
|
|
1053
|
+
|
|
559
1054
|
"ChannelCreated(address,bytes32)"(
|
|
560
1055
|
caller?: string | null,
|
|
561
1056
|
channelId?: null
|
|
@@ -605,6 +1100,97 @@ export interface Channels extends BaseContract {
|
|
|
605
1100
|
channelId?: null
|
|
606
1101
|
): ChannelUpdatedEventFilter;
|
|
607
1102
|
|
|
1103
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1104
|
+
module?: string | null,
|
|
1105
|
+
manifest?: null
|
|
1106
|
+
): ExecutionInstalledEventFilter;
|
|
1107
|
+
ExecutionInstalled(
|
|
1108
|
+
module?: string | null,
|
|
1109
|
+
manifest?: null
|
|
1110
|
+
): ExecutionInstalledEventFilter;
|
|
1111
|
+
|
|
1112
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1113
|
+
module?: string | null,
|
|
1114
|
+
success?: null,
|
|
1115
|
+
manifest?: null
|
|
1116
|
+
): ExecutionUninstalledEventFilter;
|
|
1117
|
+
ExecutionUninstalled(
|
|
1118
|
+
module?: string | null,
|
|
1119
|
+
success?: null,
|
|
1120
|
+
manifest?: null
|
|
1121
|
+
): ExecutionUninstalledEventFilter;
|
|
1122
|
+
|
|
1123
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
1124
|
+
module?: string | null,
|
|
1125
|
+
manifest?: null
|
|
1126
|
+
): ExecutionUpdatedEventFilter;
|
|
1127
|
+
ExecutionUpdated(
|
|
1128
|
+
module?: string | null,
|
|
1129
|
+
manifest?: null
|
|
1130
|
+
): ExecutionUpdatedEventFilter;
|
|
1131
|
+
|
|
1132
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)"(
|
|
1133
|
+
groupId?: BytesLike | null,
|
|
1134
|
+
account?: string | null,
|
|
1135
|
+
delay?: null,
|
|
1136
|
+
since?: null,
|
|
1137
|
+
newMember?: null
|
|
1138
|
+
): GroupAccessGrantedEventFilter;
|
|
1139
|
+
GroupAccessGranted(
|
|
1140
|
+
groupId?: BytesLike | null,
|
|
1141
|
+
account?: string | null,
|
|
1142
|
+
delay?: null,
|
|
1143
|
+
since?: null,
|
|
1144
|
+
newMember?: null
|
|
1145
|
+
): GroupAccessGrantedEventFilter;
|
|
1146
|
+
|
|
1147
|
+
"GroupAccessRevoked(bytes32,address,bool)"(
|
|
1148
|
+
groupId?: BytesLike | null,
|
|
1149
|
+
account?: string | null,
|
|
1150
|
+
revoked?: null
|
|
1151
|
+
): GroupAccessRevokedEventFilter;
|
|
1152
|
+
GroupAccessRevoked(
|
|
1153
|
+
groupId?: BytesLike | null,
|
|
1154
|
+
account?: string | null,
|
|
1155
|
+
revoked?: null
|
|
1156
|
+
): GroupAccessRevokedEventFilter;
|
|
1157
|
+
|
|
1158
|
+
"GroupExpirationSet(bytes32,uint48)"(
|
|
1159
|
+
groupId?: BytesLike | null,
|
|
1160
|
+
expiration?: null
|
|
1161
|
+
): GroupExpirationSetEventFilter;
|
|
1162
|
+
GroupExpirationSet(
|
|
1163
|
+
groupId?: BytesLike | null,
|
|
1164
|
+
expiration?: null
|
|
1165
|
+
): GroupExpirationSetEventFilter;
|
|
1166
|
+
|
|
1167
|
+
"GroupGrantDelaySet(bytes32,uint32)"(
|
|
1168
|
+
groupId?: BytesLike | null,
|
|
1169
|
+
delay?: null
|
|
1170
|
+
): GroupGrantDelaySetEventFilter;
|
|
1171
|
+
GroupGrantDelaySet(
|
|
1172
|
+
groupId?: BytesLike | null,
|
|
1173
|
+
delay?: null
|
|
1174
|
+
): GroupGrantDelaySetEventFilter;
|
|
1175
|
+
|
|
1176
|
+
"GroupGuardianSet(bytes32,bytes32)"(
|
|
1177
|
+
groupId?: BytesLike | null,
|
|
1178
|
+
guardian?: null
|
|
1179
|
+
): GroupGuardianSetEventFilter;
|
|
1180
|
+
GroupGuardianSet(
|
|
1181
|
+
groupId?: BytesLike | null,
|
|
1182
|
+
guardian?: null
|
|
1183
|
+
): GroupGuardianSetEventFilter;
|
|
1184
|
+
|
|
1185
|
+
"GroupStatusSet(bytes32,bool)"(
|
|
1186
|
+
groupId?: BytesLike | null,
|
|
1187
|
+
active?: null
|
|
1188
|
+
): GroupStatusSetEventFilter;
|
|
1189
|
+
GroupStatusSet(
|
|
1190
|
+
groupId?: BytesLike | null,
|
|
1191
|
+
active?: null
|
|
1192
|
+
): GroupStatusSetEventFilter;
|
|
1193
|
+
|
|
608
1194
|
"Initialized(uint32)"(version?: null): InitializedEventFilter;
|
|
609
1195
|
Initialized(version?: null): InitializedEventFilter;
|
|
610
1196
|
|
|
@@ -620,6 +1206,35 @@ export interface Channels extends BaseContract {
|
|
|
620
1206
|
interfaceId?: BytesLike | null
|
|
621
1207
|
): InterfaceRemovedEventFilter;
|
|
622
1208
|
|
|
1209
|
+
"OperationCanceled(bytes32,uint32)"(
|
|
1210
|
+
operationId?: BytesLike | null,
|
|
1211
|
+
nonce?: null
|
|
1212
|
+
): OperationCanceledEventFilter;
|
|
1213
|
+
OperationCanceled(
|
|
1214
|
+
operationId?: BytesLike | null,
|
|
1215
|
+
nonce?: null
|
|
1216
|
+
): OperationCanceledEventFilter;
|
|
1217
|
+
|
|
1218
|
+
"OperationExecuted(bytes32,uint32)"(
|
|
1219
|
+
operationId?: BytesLike | null,
|
|
1220
|
+
nonce?: null
|
|
1221
|
+
): OperationExecutedEventFilter;
|
|
1222
|
+
OperationExecuted(
|
|
1223
|
+
operationId?: BytesLike | null,
|
|
1224
|
+
nonce?: null
|
|
1225
|
+
): OperationExecutedEventFilter;
|
|
1226
|
+
|
|
1227
|
+
"OperationScheduled(bytes32,uint48,uint32)"(
|
|
1228
|
+
operationId?: BytesLike | null,
|
|
1229
|
+
timepoint?: null,
|
|
1230
|
+
nonce?: null
|
|
1231
|
+
): OperationScheduledEventFilter;
|
|
1232
|
+
OperationScheduled(
|
|
1233
|
+
operationId?: BytesLike | null,
|
|
1234
|
+
timepoint?: null,
|
|
1235
|
+
nonce?: null
|
|
1236
|
+
): OperationScheduledEventFilter;
|
|
1237
|
+
|
|
623
1238
|
"OwnershipTransferred(address,address)"(
|
|
624
1239
|
previousOwner?: string | null,
|
|
625
1240
|
newOwner?: string | null
|
|
@@ -688,6 +1303,48 @@ export interface Channels extends BaseContract {
|
|
|
688
1303
|
updater?: string | null,
|
|
689
1304
|
roleId?: BigNumberish | null
|
|
690
1305
|
): RoleUpdatedEventFilter;
|
|
1306
|
+
|
|
1307
|
+
"TargetDisabledSet(address,bool)"(
|
|
1308
|
+
target?: string | null,
|
|
1309
|
+
disabled?: null
|
|
1310
|
+
): TargetDisabledSetEventFilter;
|
|
1311
|
+
TargetDisabledSet(
|
|
1312
|
+
target?: string | null,
|
|
1313
|
+
disabled?: null
|
|
1314
|
+
): TargetDisabledSetEventFilter;
|
|
1315
|
+
|
|
1316
|
+
"TargetFunctionDelaySet(address,uint32,uint32)"(
|
|
1317
|
+
target?: string | null,
|
|
1318
|
+
newDelay?: null,
|
|
1319
|
+
minSetback?: null
|
|
1320
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1321
|
+
TargetFunctionDelaySet(
|
|
1322
|
+
target?: string | null,
|
|
1323
|
+
newDelay?: null,
|
|
1324
|
+
minSetback?: null
|
|
1325
|
+
): TargetFunctionDelaySetEventFilter;
|
|
1326
|
+
|
|
1327
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)"(
|
|
1328
|
+
target?: string | null,
|
|
1329
|
+
selector?: BytesLike | null,
|
|
1330
|
+
disabled?: null
|
|
1331
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1332
|
+
TargetFunctionDisabledSet(
|
|
1333
|
+
target?: string | null,
|
|
1334
|
+
selector?: BytesLike | null,
|
|
1335
|
+
disabled?: null
|
|
1336
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
1337
|
+
|
|
1338
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)"(
|
|
1339
|
+
target?: string | null,
|
|
1340
|
+
selector?: BytesLike | null,
|
|
1341
|
+
groupId?: BytesLike | null
|
|
1342
|
+
): TargetFunctionGroupSetEventFilter;
|
|
1343
|
+
TargetFunctionGroupSet(
|
|
1344
|
+
target?: string | null,
|
|
1345
|
+
selector?: BytesLike | null,
|
|
1346
|
+
groupId?: BytesLike | null
|
|
1347
|
+
): TargetFunctionGroupSetEventFilter;
|
|
691
1348
|
};
|
|
692
1349
|
|
|
693
1350
|
estimateGas: {
|