@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
|
@@ -27,6 +27,57 @@ import type {
|
|
|
27
27
|
OnEvent,
|
|
28
28
|
} from "./common";
|
|
29
29
|
|
|
30
|
+
export type ManifestExecutionFunctionStruct = {
|
|
31
|
+
executionSelector: BytesLike;
|
|
32
|
+
skipRuntimeValidation: boolean;
|
|
33
|
+
allowGlobalValidation: boolean;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
export type ManifestExecutionFunctionStructOutput = [
|
|
37
|
+
string,
|
|
38
|
+
boolean,
|
|
39
|
+
boolean
|
|
40
|
+
] & {
|
|
41
|
+
executionSelector: string;
|
|
42
|
+
skipRuntimeValidation: boolean;
|
|
43
|
+
allowGlobalValidation: boolean;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export type ManifestExecutionHookStruct = {
|
|
47
|
+
executionSelector: BytesLike;
|
|
48
|
+
entityId: BigNumberish;
|
|
49
|
+
isPreHook: boolean;
|
|
50
|
+
isPostHook: boolean;
|
|
51
|
+
};
|
|
52
|
+
|
|
53
|
+
export type ManifestExecutionHookStructOutput = [
|
|
54
|
+
string,
|
|
55
|
+
number,
|
|
56
|
+
boolean,
|
|
57
|
+
boolean
|
|
58
|
+
] & {
|
|
59
|
+
executionSelector: string;
|
|
60
|
+
entityId: number;
|
|
61
|
+
isPreHook: boolean;
|
|
62
|
+
isPostHook: boolean;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export type ExecutionManifestStruct = {
|
|
66
|
+
executionFunctions: ManifestExecutionFunctionStruct[];
|
|
67
|
+
executionHooks: ManifestExecutionHookStruct[];
|
|
68
|
+
interfaceIds: BytesLike[];
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export type ExecutionManifestStructOutput = [
|
|
72
|
+
ManifestExecutionFunctionStructOutput[],
|
|
73
|
+
ManifestExecutionHookStructOutput[],
|
|
74
|
+
string[]
|
|
75
|
+
] & {
|
|
76
|
+
executionFunctions: ManifestExecutionFunctionStructOutput[];
|
|
77
|
+
executionHooks: ManifestExecutionHookStructOutput[];
|
|
78
|
+
interfaceIds: string[];
|
|
79
|
+
};
|
|
80
|
+
|
|
30
81
|
export interface PrepayFacetInterface extends utils.Interface {
|
|
31
82
|
functions: {
|
|
32
83
|
"__PrepayFacet_init()": FunctionFragment;
|
|
@@ -78,19 +129,310 @@ export interface PrepayFacetInterface extends utils.Interface {
|
|
|
78
129
|
): Result;
|
|
79
130
|
|
|
80
131
|
events: {
|
|
132
|
+
"AppBanned(address,bytes32)": EventFragment;
|
|
133
|
+
"AppCreated(address,bytes32)": EventFragment;
|
|
134
|
+
"AppInstalled(address,address,bytes32)": EventFragment;
|
|
135
|
+
"AppRegistered(address,bytes32)": EventFragment;
|
|
136
|
+
"AppRenewed(address,address,bytes32)": EventFragment;
|
|
137
|
+
"AppSchemaSet(bytes32)": EventFragment;
|
|
138
|
+
"AppUninstalled(address,address,bytes32)": EventFragment;
|
|
139
|
+
"AppUnregistered(address,bytes32)": EventFragment;
|
|
140
|
+
"AppUpdated(address,bytes32)": EventFragment;
|
|
141
|
+
"AppUpdated(address,address,bytes32)": EventFragment;
|
|
142
|
+
"AppUpgraded(address,bytes32,bytes32)": EventFragment;
|
|
143
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
144
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
145
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))": EventFragment;
|
|
146
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)": EventFragment;
|
|
147
|
+
"GroupAccessRevoked(bytes32,address,bool)": EventFragment;
|
|
148
|
+
"GroupExpirationSet(bytes32,uint48)": EventFragment;
|
|
149
|
+
"GroupGrantDelaySet(bytes32,uint32)": EventFragment;
|
|
150
|
+
"GroupGuardianSet(bytes32,bytes32)": EventFragment;
|
|
151
|
+
"GroupStatusSet(bytes32,bool)": EventFragment;
|
|
81
152
|
"Initialized(uint32)": EventFragment;
|
|
82
153
|
"InterfaceAdded(bytes4)": EventFragment;
|
|
83
154
|
"InterfaceRemoved(bytes4)": EventFragment;
|
|
155
|
+
"OperationCanceled(bytes32,uint32)": EventFragment;
|
|
156
|
+
"OperationExecuted(bytes32,uint32)": EventFragment;
|
|
157
|
+
"OperationScheduled(bytes32,uint48,uint32)": EventFragment;
|
|
84
158
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
85
159
|
"Prepay__Prepaid(uint256)": EventFragment;
|
|
160
|
+
"TargetDisabledSet(address,bool)": EventFragment;
|
|
161
|
+
"TargetFunctionDelaySet(address,uint32,uint32)": EventFragment;
|
|
162
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)": EventFragment;
|
|
163
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)": EventFragment;
|
|
86
164
|
};
|
|
87
165
|
|
|
166
|
+
getEvent(nameOrSignatureOrTopic: "AppBanned"): EventFragment;
|
|
167
|
+
getEvent(nameOrSignatureOrTopic: "AppCreated"): EventFragment;
|
|
168
|
+
getEvent(nameOrSignatureOrTopic: "AppInstalled"): EventFragment;
|
|
169
|
+
getEvent(nameOrSignatureOrTopic: "AppRegistered"): EventFragment;
|
|
170
|
+
getEvent(nameOrSignatureOrTopic: "AppRenewed"): EventFragment;
|
|
171
|
+
getEvent(nameOrSignatureOrTopic: "AppSchemaSet"): EventFragment;
|
|
172
|
+
getEvent(nameOrSignatureOrTopic: "AppUninstalled"): EventFragment;
|
|
173
|
+
getEvent(nameOrSignatureOrTopic: "AppUnregistered"): EventFragment;
|
|
174
|
+
getEvent(
|
|
175
|
+
nameOrSignatureOrTopic: "AppUpdated(address,bytes32)"
|
|
176
|
+
): EventFragment;
|
|
177
|
+
getEvent(
|
|
178
|
+
nameOrSignatureOrTopic: "AppUpdated(address,address,bytes32)"
|
|
179
|
+
): EventFragment;
|
|
180
|
+
getEvent(nameOrSignatureOrTopic: "AppUpgraded"): EventFragment;
|
|
181
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionInstalled"): EventFragment;
|
|
182
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUninstalled"): EventFragment;
|
|
183
|
+
getEvent(nameOrSignatureOrTopic: "ExecutionUpdated"): EventFragment;
|
|
184
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessGranted"): EventFragment;
|
|
185
|
+
getEvent(nameOrSignatureOrTopic: "GroupAccessRevoked"): EventFragment;
|
|
186
|
+
getEvent(nameOrSignatureOrTopic: "GroupExpirationSet"): EventFragment;
|
|
187
|
+
getEvent(nameOrSignatureOrTopic: "GroupGrantDelaySet"): EventFragment;
|
|
188
|
+
getEvent(nameOrSignatureOrTopic: "GroupGuardianSet"): EventFragment;
|
|
189
|
+
getEvent(nameOrSignatureOrTopic: "GroupStatusSet"): EventFragment;
|
|
88
190
|
getEvent(nameOrSignatureOrTopic: "Initialized"): EventFragment;
|
|
89
191
|
getEvent(nameOrSignatureOrTopic: "InterfaceAdded"): EventFragment;
|
|
90
192
|
getEvent(nameOrSignatureOrTopic: "InterfaceRemoved"): EventFragment;
|
|
193
|
+
getEvent(nameOrSignatureOrTopic: "OperationCanceled"): EventFragment;
|
|
194
|
+
getEvent(nameOrSignatureOrTopic: "OperationExecuted"): EventFragment;
|
|
195
|
+
getEvent(nameOrSignatureOrTopic: "OperationScheduled"): EventFragment;
|
|
91
196
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
92
197
|
getEvent(nameOrSignatureOrTopic: "Prepay__Prepaid"): EventFragment;
|
|
198
|
+
getEvent(nameOrSignatureOrTopic: "TargetDisabledSet"): EventFragment;
|
|
199
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDelaySet"): EventFragment;
|
|
200
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionDisabledSet"): EventFragment;
|
|
201
|
+
getEvent(nameOrSignatureOrTopic: "TargetFunctionGroupSet"): EventFragment;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
export interface AppBannedEventObject {
|
|
205
|
+
app: string;
|
|
206
|
+
uid: string;
|
|
207
|
+
}
|
|
208
|
+
export type AppBannedEvent = TypedEvent<[string, string], AppBannedEventObject>;
|
|
209
|
+
|
|
210
|
+
export type AppBannedEventFilter = TypedEventFilter<AppBannedEvent>;
|
|
211
|
+
|
|
212
|
+
export interface AppCreatedEventObject {
|
|
213
|
+
app: string;
|
|
214
|
+
uid: string;
|
|
215
|
+
}
|
|
216
|
+
export type AppCreatedEvent = TypedEvent<
|
|
217
|
+
[string, string],
|
|
218
|
+
AppCreatedEventObject
|
|
219
|
+
>;
|
|
220
|
+
|
|
221
|
+
export type AppCreatedEventFilter = TypedEventFilter<AppCreatedEvent>;
|
|
222
|
+
|
|
223
|
+
export interface AppInstalledEventObject {
|
|
224
|
+
app: string;
|
|
225
|
+
account: string;
|
|
226
|
+
appId: string;
|
|
227
|
+
}
|
|
228
|
+
export type AppInstalledEvent = TypedEvent<
|
|
229
|
+
[string, string, string],
|
|
230
|
+
AppInstalledEventObject
|
|
231
|
+
>;
|
|
232
|
+
|
|
233
|
+
export type AppInstalledEventFilter = TypedEventFilter<AppInstalledEvent>;
|
|
234
|
+
|
|
235
|
+
export interface AppRegisteredEventObject {
|
|
236
|
+
app: string;
|
|
237
|
+
uid: string;
|
|
238
|
+
}
|
|
239
|
+
export type AppRegisteredEvent = TypedEvent<
|
|
240
|
+
[string, string],
|
|
241
|
+
AppRegisteredEventObject
|
|
242
|
+
>;
|
|
243
|
+
|
|
244
|
+
export type AppRegisteredEventFilter = TypedEventFilter<AppRegisteredEvent>;
|
|
245
|
+
|
|
246
|
+
export interface AppRenewedEventObject {
|
|
247
|
+
app: string;
|
|
248
|
+
account: string;
|
|
249
|
+
appId: string;
|
|
250
|
+
}
|
|
251
|
+
export type AppRenewedEvent = TypedEvent<
|
|
252
|
+
[string, string, string],
|
|
253
|
+
AppRenewedEventObject
|
|
254
|
+
>;
|
|
255
|
+
|
|
256
|
+
export type AppRenewedEventFilter = TypedEventFilter<AppRenewedEvent>;
|
|
257
|
+
|
|
258
|
+
export interface AppSchemaSetEventObject {
|
|
259
|
+
uid: string;
|
|
260
|
+
}
|
|
261
|
+
export type AppSchemaSetEvent = TypedEvent<[string], AppSchemaSetEventObject>;
|
|
262
|
+
|
|
263
|
+
export type AppSchemaSetEventFilter = TypedEventFilter<AppSchemaSetEvent>;
|
|
264
|
+
|
|
265
|
+
export interface AppUninstalledEventObject {
|
|
266
|
+
app: string;
|
|
267
|
+
account: string;
|
|
268
|
+
appId: string;
|
|
269
|
+
}
|
|
270
|
+
export type AppUninstalledEvent = TypedEvent<
|
|
271
|
+
[string, string, string],
|
|
272
|
+
AppUninstalledEventObject
|
|
273
|
+
>;
|
|
274
|
+
|
|
275
|
+
export type AppUninstalledEventFilter = TypedEventFilter<AppUninstalledEvent>;
|
|
276
|
+
|
|
277
|
+
export interface AppUnregisteredEventObject {
|
|
278
|
+
app: string;
|
|
279
|
+
uid: string;
|
|
280
|
+
}
|
|
281
|
+
export type AppUnregisteredEvent = TypedEvent<
|
|
282
|
+
[string, string],
|
|
283
|
+
AppUnregisteredEventObject
|
|
284
|
+
>;
|
|
285
|
+
|
|
286
|
+
export type AppUnregisteredEventFilter = TypedEventFilter<AppUnregisteredEvent>;
|
|
287
|
+
|
|
288
|
+
export interface AppUpdated_address_bytes32_EventObject {
|
|
289
|
+
app: string;
|
|
290
|
+
uid: string;
|
|
93
291
|
}
|
|
292
|
+
export type AppUpdated_address_bytes32_Event = TypedEvent<
|
|
293
|
+
[string, string],
|
|
294
|
+
AppUpdated_address_bytes32_EventObject
|
|
295
|
+
>;
|
|
296
|
+
|
|
297
|
+
export type AppUpdated_address_bytes32_EventFilter =
|
|
298
|
+
TypedEventFilter<AppUpdated_address_bytes32_Event>;
|
|
299
|
+
|
|
300
|
+
export interface AppUpdated_address_address_bytes32_EventObject {
|
|
301
|
+
app: string;
|
|
302
|
+
account: string;
|
|
303
|
+
appId: string;
|
|
304
|
+
}
|
|
305
|
+
export type AppUpdated_address_address_bytes32_Event = TypedEvent<
|
|
306
|
+
[string, string, string],
|
|
307
|
+
AppUpdated_address_address_bytes32_EventObject
|
|
308
|
+
>;
|
|
309
|
+
|
|
310
|
+
export type AppUpdated_address_address_bytes32_EventFilter =
|
|
311
|
+
TypedEventFilter<AppUpdated_address_address_bytes32_Event>;
|
|
312
|
+
|
|
313
|
+
export interface AppUpgradedEventObject {
|
|
314
|
+
app: string;
|
|
315
|
+
oldVersionId: string;
|
|
316
|
+
newVersionId: string;
|
|
317
|
+
}
|
|
318
|
+
export type AppUpgradedEvent = TypedEvent<
|
|
319
|
+
[string, string, string],
|
|
320
|
+
AppUpgradedEventObject
|
|
321
|
+
>;
|
|
322
|
+
|
|
323
|
+
export type AppUpgradedEventFilter = TypedEventFilter<AppUpgradedEvent>;
|
|
324
|
+
|
|
325
|
+
export interface ExecutionInstalledEventObject {
|
|
326
|
+
module: string;
|
|
327
|
+
manifest: ExecutionManifestStructOutput;
|
|
328
|
+
}
|
|
329
|
+
export type ExecutionInstalledEvent = TypedEvent<
|
|
330
|
+
[string, ExecutionManifestStructOutput],
|
|
331
|
+
ExecutionInstalledEventObject
|
|
332
|
+
>;
|
|
333
|
+
|
|
334
|
+
export type ExecutionInstalledEventFilter =
|
|
335
|
+
TypedEventFilter<ExecutionInstalledEvent>;
|
|
336
|
+
|
|
337
|
+
export interface ExecutionUninstalledEventObject {
|
|
338
|
+
module: string;
|
|
339
|
+
success: boolean;
|
|
340
|
+
manifest: ExecutionManifestStructOutput;
|
|
341
|
+
}
|
|
342
|
+
export type ExecutionUninstalledEvent = TypedEvent<
|
|
343
|
+
[string, boolean, ExecutionManifestStructOutput],
|
|
344
|
+
ExecutionUninstalledEventObject
|
|
345
|
+
>;
|
|
346
|
+
|
|
347
|
+
export type ExecutionUninstalledEventFilter =
|
|
348
|
+
TypedEventFilter<ExecutionUninstalledEvent>;
|
|
349
|
+
|
|
350
|
+
export interface ExecutionUpdatedEventObject {
|
|
351
|
+
module: string;
|
|
352
|
+
manifest: ExecutionManifestStructOutput;
|
|
353
|
+
}
|
|
354
|
+
export type ExecutionUpdatedEvent = TypedEvent<
|
|
355
|
+
[string, ExecutionManifestStructOutput],
|
|
356
|
+
ExecutionUpdatedEventObject
|
|
357
|
+
>;
|
|
358
|
+
|
|
359
|
+
export type ExecutionUpdatedEventFilter =
|
|
360
|
+
TypedEventFilter<ExecutionUpdatedEvent>;
|
|
361
|
+
|
|
362
|
+
export interface GroupAccessGrantedEventObject {
|
|
363
|
+
groupId: string;
|
|
364
|
+
account: string;
|
|
365
|
+
delay: number;
|
|
366
|
+
since: number;
|
|
367
|
+
newMember: boolean;
|
|
368
|
+
}
|
|
369
|
+
export type GroupAccessGrantedEvent = TypedEvent<
|
|
370
|
+
[string, string, number, number, boolean],
|
|
371
|
+
GroupAccessGrantedEventObject
|
|
372
|
+
>;
|
|
373
|
+
|
|
374
|
+
export type GroupAccessGrantedEventFilter =
|
|
375
|
+
TypedEventFilter<GroupAccessGrantedEvent>;
|
|
376
|
+
|
|
377
|
+
export interface GroupAccessRevokedEventObject {
|
|
378
|
+
groupId: string;
|
|
379
|
+
account: string;
|
|
380
|
+
revoked: boolean;
|
|
381
|
+
}
|
|
382
|
+
export type GroupAccessRevokedEvent = TypedEvent<
|
|
383
|
+
[string, string, boolean],
|
|
384
|
+
GroupAccessRevokedEventObject
|
|
385
|
+
>;
|
|
386
|
+
|
|
387
|
+
export type GroupAccessRevokedEventFilter =
|
|
388
|
+
TypedEventFilter<GroupAccessRevokedEvent>;
|
|
389
|
+
|
|
390
|
+
export interface GroupExpirationSetEventObject {
|
|
391
|
+
groupId: string;
|
|
392
|
+
expiration: number;
|
|
393
|
+
}
|
|
394
|
+
export type GroupExpirationSetEvent = TypedEvent<
|
|
395
|
+
[string, number],
|
|
396
|
+
GroupExpirationSetEventObject
|
|
397
|
+
>;
|
|
398
|
+
|
|
399
|
+
export type GroupExpirationSetEventFilter =
|
|
400
|
+
TypedEventFilter<GroupExpirationSetEvent>;
|
|
401
|
+
|
|
402
|
+
export interface GroupGrantDelaySetEventObject {
|
|
403
|
+
groupId: string;
|
|
404
|
+
delay: number;
|
|
405
|
+
}
|
|
406
|
+
export type GroupGrantDelaySetEvent = TypedEvent<
|
|
407
|
+
[string, number],
|
|
408
|
+
GroupGrantDelaySetEventObject
|
|
409
|
+
>;
|
|
410
|
+
|
|
411
|
+
export type GroupGrantDelaySetEventFilter =
|
|
412
|
+
TypedEventFilter<GroupGrantDelaySetEvent>;
|
|
413
|
+
|
|
414
|
+
export interface GroupGuardianSetEventObject {
|
|
415
|
+
groupId: string;
|
|
416
|
+
guardian: string;
|
|
417
|
+
}
|
|
418
|
+
export type GroupGuardianSetEvent = TypedEvent<
|
|
419
|
+
[string, string],
|
|
420
|
+
GroupGuardianSetEventObject
|
|
421
|
+
>;
|
|
422
|
+
|
|
423
|
+
export type GroupGuardianSetEventFilter =
|
|
424
|
+
TypedEventFilter<GroupGuardianSetEvent>;
|
|
425
|
+
|
|
426
|
+
export interface GroupStatusSetEventObject {
|
|
427
|
+
groupId: string;
|
|
428
|
+
active: boolean;
|
|
429
|
+
}
|
|
430
|
+
export type GroupStatusSetEvent = TypedEvent<
|
|
431
|
+
[string, boolean],
|
|
432
|
+
GroupStatusSetEventObject
|
|
433
|
+
>;
|
|
434
|
+
|
|
435
|
+
export type GroupStatusSetEventFilter = TypedEventFilter<GroupStatusSetEvent>;
|
|
94
436
|
|
|
95
437
|
export interface InitializedEventObject {
|
|
96
438
|
version: number;
|
|
@@ -120,6 +462,43 @@ export type InterfaceRemovedEvent = TypedEvent<
|
|
|
120
462
|
export type InterfaceRemovedEventFilter =
|
|
121
463
|
TypedEventFilter<InterfaceRemovedEvent>;
|
|
122
464
|
|
|
465
|
+
export interface OperationCanceledEventObject {
|
|
466
|
+
operationId: string;
|
|
467
|
+
nonce: number;
|
|
468
|
+
}
|
|
469
|
+
export type OperationCanceledEvent = TypedEvent<
|
|
470
|
+
[string, number],
|
|
471
|
+
OperationCanceledEventObject
|
|
472
|
+
>;
|
|
473
|
+
|
|
474
|
+
export type OperationCanceledEventFilter =
|
|
475
|
+
TypedEventFilter<OperationCanceledEvent>;
|
|
476
|
+
|
|
477
|
+
export interface OperationExecutedEventObject {
|
|
478
|
+
operationId: string;
|
|
479
|
+
nonce: number;
|
|
480
|
+
}
|
|
481
|
+
export type OperationExecutedEvent = TypedEvent<
|
|
482
|
+
[string, number],
|
|
483
|
+
OperationExecutedEventObject
|
|
484
|
+
>;
|
|
485
|
+
|
|
486
|
+
export type OperationExecutedEventFilter =
|
|
487
|
+
TypedEventFilter<OperationExecutedEvent>;
|
|
488
|
+
|
|
489
|
+
export interface OperationScheduledEventObject {
|
|
490
|
+
operationId: string;
|
|
491
|
+
timepoint: number;
|
|
492
|
+
nonce: number;
|
|
493
|
+
}
|
|
494
|
+
export type OperationScheduledEvent = TypedEvent<
|
|
495
|
+
[string, number, number],
|
|
496
|
+
OperationScheduledEventObject
|
|
497
|
+
>;
|
|
498
|
+
|
|
499
|
+
export type OperationScheduledEventFilter =
|
|
500
|
+
TypedEventFilter<OperationScheduledEvent>;
|
|
501
|
+
|
|
123
502
|
export interface OwnershipTransferredEventObject {
|
|
124
503
|
previousOwner: string;
|
|
125
504
|
newOwner: string;
|
|
@@ -142,6 +521,57 @@ export type Prepay__PrepaidEvent = TypedEvent<
|
|
|
142
521
|
|
|
143
522
|
export type Prepay__PrepaidEventFilter = TypedEventFilter<Prepay__PrepaidEvent>;
|
|
144
523
|
|
|
524
|
+
export interface TargetDisabledSetEventObject {
|
|
525
|
+
target: string;
|
|
526
|
+
disabled: boolean;
|
|
527
|
+
}
|
|
528
|
+
export type TargetDisabledSetEvent = TypedEvent<
|
|
529
|
+
[string, boolean],
|
|
530
|
+
TargetDisabledSetEventObject
|
|
531
|
+
>;
|
|
532
|
+
|
|
533
|
+
export type TargetDisabledSetEventFilter =
|
|
534
|
+
TypedEventFilter<TargetDisabledSetEvent>;
|
|
535
|
+
|
|
536
|
+
export interface TargetFunctionDelaySetEventObject {
|
|
537
|
+
target: string;
|
|
538
|
+
newDelay: number;
|
|
539
|
+
minSetback: number;
|
|
540
|
+
}
|
|
541
|
+
export type TargetFunctionDelaySetEvent = TypedEvent<
|
|
542
|
+
[string, number, number],
|
|
543
|
+
TargetFunctionDelaySetEventObject
|
|
544
|
+
>;
|
|
545
|
+
|
|
546
|
+
export type TargetFunctionDelaySetEventFilter =
|
|
547
|
+
TypedEventFilter<TargetFunctionDelaySetEvent>;
|
|
548
|
+
|
|
549
|
+
export interface TargetFunctionDisabledSetEventObject {
|
|
550
|
+
target: string;
|
|
551
|
+
selector: string;
|
|
552
|
+
disabled: boolean;
|
|
553
|
+
}
|
|
554
|
+
export type TargetFunctionDisabledSetEvent = TypedEvent<
|
|
555
|
+
[string, string, boolean],
|
|
556
|
+
TargetFunctionDisabledSetEventObject
|
|
557
|
+
>;
|
|
558
|
+
|
|
559
|
+
export type TargetFunctionDisabledSetEventFilter =
|
|
560
|
+
TypedEventFilter<TargetFunctionDisabledSetEvent>;
|
|
561
|
+
|
|
562
|
+
export interface TargetFunctionGroupSetEventObject {
|
|
563
|
+
target: string;
|
|
564
|
+
selector: string;
|
|
565
|
+
groupId: string;
|
|
566
|
+
}
|
|
567
|
+
export type TargetFunctionGroupSetEvent = TypedEvent<
|
|
568
|
+
[string, string, string],
|
|
569
|
+
TargetFunctionGroupSetEventObject
|
|
570
|
+
>;
|
|
571
|
+
|
|
572
|
+
export type TargetFunctionGroupSetEventFilter =
|
|
573
|
+
TypedEventFilter<TargetFunctionGroupSetEvent>;
|
|
574
|
+
|
|
145
575
|
export interface PrepayFacet extends BaseContract {
|
|
146
576
|
connect(signerOrProvider: Signer | Provider | string): this;
|
|
147
577
|
attach(addressOrName: string): this;
|
|
@@ -219,6 +649,181 @@ export interface PrepayFacet extends BaseContract {
|
|
|
219
649
|
};
|
|
220
650
|
|
|
221
651
|
filters: {
|
|
652
|
+
"AppBanned(address,bytes32)"(
|
|
653
|
+
app?: string | null,
|
|
654
|
+
uid?: null
|
|
655
|
+
): AppBannedEventFilter;
|
|
656
|
+
AppBanned(app?: string | null, uid?: null): AppBannedEventFilter;
|
|
657
|
+
|
|
658
|
+
"AppCreated(address,bytes32)"(
|
|
659
|
+
app?: string | null,
|
|
660
|
+
uid?: null
|
|
661
|
+
): AppCreatedEventFilter;
|
|
662
|
+
AppCreated(app?: string | null, uid?: null): AppCreatedEventFilter;
|
|
663
|
+
|
|
664
|
+
"AppInstalled(address,address,bytes32)"(
|
|
665
|
+
app?: string | null,
|
|
666
|
+
account?: string | null,
|
|
667
|
+
appId?: BytesLike | null
|
|
668
|
+
): AppInstalledEventFilter;
|
|
669
|
+
AppInstalled(
|
|
670
|
+
app?: string | null,
|
|
671
|
+
account?: string | null,
|
|
672
|
+
appId?: BytesLike | null
|
|
673
|
+
): AppInstalledEventFilter;
|
|
674
|
+
|
|
675
|
+
"AppRegistered(address,bytes32)"(
|
|
676
|
+
app?: string | null,
|
|
677
|
+
uid?: null
|
|
678
|
+
): AppRegisteredEventFilter;
|
|
679
|
+
AppRegistered(app?: string | null, uid?: null): AppRegisteredEventFilter;
|
|
680
|
+
|
|
681
|
+
"AppRenewed(address,address,bytes32)"(
|
|
682
|
+
app?: string | null,
|
|
683
|
+
account?: string | null,
|
|
684
|
+
appId?: BytesLike | null
|
|
685
|
+
): AppRenewedEventFilter;
|
|
686
|
+
AppRenewed(
|
|
687
|
+
app?: string | null,
|
|
688
|
+
account?: string | null,
|
|
689
|
+
appId?: BytesLike | null
|
|
690
|
+
): AppRenewedEventFilter;
|
|
691
|
+
|
|
692
|
+
"AppSchemaSet(bytes32)"(uid?: null): AppSchemaSetEventFilter;
|
|
693
|
+
AppSchemaSet(uid?: null): AppSchemaSetEventFilter;
|
|
694
|
+
|
|
695
|
+
"AppUninstalled(address,address,bytes32)"(
|
|
696
|
+
app?: string | null,
|
|
697
|
+
account?: string | null,
|
|
698
|
+
appId?: BytesLike | null
|
|
699
|
+
): AppUninstalledEventFilter;
|
|
700
|
+
AppUninstalled(
|
|
701
|
+
app?: string | null,
|
|
702
|
+
account?: string | null,
|
|
703
|
+
appId?: BytesLike | null
|
|
704
|
+
): AppUninstalledEventFilter;
|
|
705
|
+
|
|
706
|
+
"AppUnregistered(address,bytes32)"(
|
|
707
|
+
app?: string | null,
|
|
708
|
+
uid?: null
|
|
709
|
+
): AppUnregisteredEventFilter;
|
|
710
|
+
AppUnregistered(
|
|
711
|
+
app?: string | null,
|
|
712
|
+
uid?: null
|
|
713
|
+
): AppUnregisteredEventFilter;
|
|
714
|
+
|
|
715
|
+
"AppUpdated(address,bytes32)"(
|
|
716
|
+
app?: string | null,
|
|
717
|
+
uid?: null
|
|
718
|
+
): AppUpdated_address_bytes32_EventFilter;
|
|
719
|
+
"AppUpdated(address,address,bytes32)"(
|
|
720
|
+
app?: string | null,
|
|
721
|
+
account?: string | null,
|
|
722
|
+
appId?: BytesLike | null
|
|
723
|
+
): AppUpdated_address_address_bytes32_EventFilter;
|
|
724
|
+
|
|
725
|
+
"AppUpgraded(address,bytes32,bytes32)"(
|
|
726
|
+
app?: string | null,
|
|
727
|
+
oldVersionId?: BytesLike | null,
|
|
728
|
+
newVersionId?: BytesLike | null
|
|
729
|
+
): AppUpgradedEventFilter;
|
|
730
|
+
AppUpgraded(
|
|
731
|
+
app?: string | null,
|
|
732
|
+
oldVersionId?: BytesLike | null,
|
|
733
|
+
newVersionId?: BytesLike | null
|
|
734
|
+
): AppUpgradedEventFilter;
|
|
735
|
+
|
|
736
|
+
"ExecutionInstalled(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
737
|
+
module?: string | null,
|
|
738
|
+
manifest?: null
|
|
739
|
+
): ExecutionInstalledEventFilter;
|
|
740
|
+
ExecutionInstalled(
|
|
741
|
+
module?: string | null,
|
|
742
|
+
manifest?: null
|
|
743
|
+
): ExecutionInstalledEventFilter;
|
|
744
|
+
|
|
745
|
+
"ExecutionUninstalled(address,bool,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
746
|
+
module?: string | null,
|
|
747
|
+
success?: null,
|
|
748
|
+
manifest?: null
|
|
749
|
+
): ExecutionUninstalledEventFilter;
|
|
750
|
+
ExecutionUninstalled(
|
|
751
|
+
module?: string | null,
|
|
752
|
+
success?: null,
|
|
753
|
+
manifest?: null
|
|
754
|
+
): ExecutionUninstalledEventFilter;
|
|
755
|
+
|
|
756
|
+
"ExecutionUpdated(address,((bytes4,bool,bool)[],(bytes4,uint32,bool,bool)[],bytes4[]))"(
|
|
757
|
+
module?: string | null,
|
|
758
|
+
manifest?: null
|
|
759
|
+
): ExecutionUpdatedEventFilter;
|
|
760
|
+
ExecutionUpdated(
|
|
761
|
+
module?: string | null,
|
|
762
|
+
manifest?: null
|
|
763
|
+
): ExecutionUpdatedEventFilter;
|
|
764
|
+
|
|
765
|
+
"GroupAccessGranted(bytes32,address,uint32,uint48,bool)"(
|
|
766
|
+
groupId?: BytesLike | null,
|
|
767
|
+
account?: string | null,
|
|
768
|
+
delay?: null,
|
|
769
|
+
since?: null,
|
|
770
|
+
newMember?: null
|
|
771
|
+
): GroupAccessGrantedEventFilter;
|
|
772
|
+
GroupAccessGranted(
|
|
773
|
+
groupId?: BytesLike | null,
|
|
774
|
+
account?: string | null,
|
|
775
|
+
delay?: null,
|
|
776
|
+
since?: null,
|
|
777
|
+
newMember?: null
|
|
778
|
+
): GroupAccessGrantedEventFilter;
|
|
779
|
+
|
|
780
|
+
"GroupAccessRevoked(bytes32,address,bool)"(
|
|
781
|
+
groupId?: BytesLike | null,
|
|
782
|
+
account?: string | null,
|
|
783
|
+
revoked?: null
|
|
784
|
+
): GroupAccessRevokedEventFilter;
|
|
785
|
+
GroupAccessRevoked(
|
|
786
|
+
groupId?: BytesLike | null,
|
|
787
|
+
account?: string | null,
|
|
788
|
+
revoked?: null
|
|
789
|
+
): GroupAccessRevokedEventFilter;
|
|
790
|
+
|
|
791
|
+
"GroupExpirationSet(bytes32,uint48)"(
|
|
792
|
+
groupId?: BytesLike | null,
|
|
793
|
+
expiration?: null
|
|
794
|
+
): GroupExpirationSetEventFilter;
|
|
795
|
+
GroupExpirationSet(
|
|
796
|
+
groupId?: BytesLike | null,
|
|
797
|
+
expiration?: null
|
|
798
|
+
): GroupExpirationSetEventFilter;
|
|
799
|
+
|
|
800
|
+
"GroupGrantDelaySet(bytes32,uint32)"(
|
|
801
|
+
groupId?: BytesLike | null,
|
|
802
|
+
delay?: null
|
|
803
|
+
): GroupGrantDelaySetEventFilter;
|
|
804
|
+
GroupGrantDelaySet(
|
|
805
|
+
groupId?: BytesLike | null,
|
|
806
|
+
delay?: null
|
|
807
|
+
): GroupGrantDelaySetEventFilter;
|
|
808
|
+
|
|
809
|
+
"GroupGuardianSet(bytes32,bytes32)"(
|
|
810
|
+
groupId?: BytesLike | null,
|
|
811
|
+
guardian?: null
|
|
812
|
+
): GroupGuardianSetEventFilter;
|
|
813
|
+
GroupGuardianSet(
|
|
814
|
+
groupId?: BytesLike | null,
|
|
815
|
+
guardian?: null
|
|
816
|
+
): GroupGuardianSetEventFilter;
|
|
817
|
+
|
|
818
|
+
"GroupStatusSet(bytes32,bool)"(
|
|
819
|
+
groupId?: BytesLike | null,
|
|
820
|
+
active?: null
|
|
821
|
+
): GroupStatusSetEventFilter;
|
|
822
|
+
GroupStatusSet(
|
|
823
|
+
groupId?: BytesLike | null,
|
|
824
|
+
active?: null
|
|
825
|
+
): GroupStatusSetEventFilter;
|
|
826
|
+
|
|
222
827
|
"Initialized(uint32)"(version?: null): InitializedEventFilter;
|
|
223
828
|
Initialized(version?: null): InitializedEventFilter;
|
|
224
829
|
|
|
@@ -234,6 +839,35 @@ export interface PrepayFacet extends BaseContract {
|
|
|
234
839
|
interfaceId?: BytesLike | null
|
|
235
840
|
): InterfaceRemovedEventFilter;
|
|
236
841
|
|
|
842
|
+
"OperationCanceled(bytes32,uint32)"(
|
|
843
|
+
operationId?: BytesLike | null,
|
|
844
|
+
nonce?: null
|
|
845
|
+
): OperationCanceledEventFilter;
|
|
846
|
+
OperationCanceled(
|
|
847
|
+
operationId?: BytesLike | null,
|
|
848
|
+
nonce?: null
|
|
849
|
+
): OperationCanceledEventFilter;
|
|
850
|
+
|
|
851
|
+
"OperationExecuted(bytes32,uint32)"(
|
|
852
|
+
operationId?: BytesLike | null,
|
|
853
|
+
nonce?: null
|
|
854
|
+
): OperationExecutedEventFilter;
|
|
855
|
+
OperationExecuted(
|
|
856
|
+
operationId?: BytesLike | null,
|
|
857
|
+
nonce?: null
|
|
858
|
+
): OperationExecutedEventFilter;
|
|
859
|
+
|
|
860
|
+
"OperationScheduled(bytes32,uint48,uint32)"(
|
|
861
|
+
operationId?: BytesLike | null,
|
|
862
|
+
timepoint?: null,
|
|
863
|
+
nonce?: null
|
|
864
|
+
): OperationScheduledEventFilter;
|
|
865
|
+
OperationScheduled(
|
|
866
|
+
operationId?: BytesLike | null,
|
|
867
|
+
timepoint?: null,
|
|
868
|
+
nonce?: null
|
|
869
|
+
): OperationScheduledEventFilter;
|
|
870
|
+
|
|
237
871
|
"OwnershipTransferred(address,address)"(
|
|
238
872
|
previousOwner?: string | null,
|
|
239
873
|
newOwner?: string | null
|
|
@@ -245,6 +879,48 @@ export interface PrepayFacet extends BaseContract {
|
|
|
245
879
|
|
|
246
880
|
"Prepay__Prepaid(uint256)"(supply?: null): Prepay__PrepaidEventFilter;
|
|
247
881
|
Prepay__Prepaid(supply?: null): Prepay__PrepaidEventFilter;
|
|
882
|
+
|
|
883
|
+
"TargetDisabledSet(address,bool)"(
|
|
884
|
+
target?: string | null,
|
|
885
|
+
disabled?: null
|
|
886
|
+
): TargetDisabledSetEventFilter;
|
|
887
|
+
TargetDisabledSet(
|
|
888
|
+
target?: string | null,
|
|
889
|
+
disabled?: null
|
|
890
|
+
): TargetDisabledSetEventFilter;
|
|
891
|
+
|
|
892
|
+
"TargetFunctionDelaySet(address,uint32,uint32)"(
|
|
893
|
+
target?: string | null,
|
|
894
|
+
newDelay?: null,
|
|
895
|
+
minSetback?: null
|
|
896
|
+
): TargetFunctionDelaySetEventFilter;
|
|
897
|
+
TargetFunctionDelaySet(
|
|
898
|
+
target?: string | null,
|
|
899
|
+
newDelay?: null,
|
|
900
|
+
minSetback?: null
|
|
901
|
+
): TargetFunctionDelaySetEventFilter;
|
|
902
|
+
|
|
903
|
+
"TargetFunctionDisabledSet(address,bytes4,bool)"(
|
|
904
|
+
target?: string | null,
|
|
905
|
+
selector?: BytesLike | null,
|
|
906
|
+
disabled?: null
|
|
907
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
908
|
+
TargetFunctionDisabledSet(
|
|
909
|
+
target?: string | null,
|
|
910
|
+
selector?: BytesLike | null,
|
|
911
|
+
disabled?: null
|
|
912
|
+
): TargetFunctionDisabledSetEventFilter;
|
|
913
|
+
|
|
914
|
+
"TargetFunctionGroupSet(address,bytes4,bytes32)"(
|
|
915
|
+
target?: string | null,
|
|
916
|
+
selector?: BytesLike | null,
|
|
917
|
+
groupId?: BytesLike | null
|
|
918
|
+
): TargetFunctionGroupSetEventFilter;
|
|
919
|
+
TargetFunctionGroupSet(
|
|
920
|
+
target?: string | null,
|
|
921
|
+
selector?: BytesLike | null,
|
|
922
|
+
groupId?: BytesLike | null
|
|
923
|
+
): TargetFunctionGroupSetEventFilter;
|
|
248
924
|
};
|
|
249
925
|
|
|
250
926
|
estimateGas: {
|