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