@nucypher/shared 0.5.0 → 0.6.0-alpha.0
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/dist/cjs/contracts/agents/index.d.ts +1 -0
- package/dist/cjs/contracts/agents/index.js +1 -0
- package/dist/cjs/contracts/agents/index.js.map +1 -1
- package/dist/cjs/contracts/agents/signing-coordinator.d.ts +15 -0
- package/dist/cjs/contracts/agents/signing-coordinator.js +38 -0
- package/dist/cjs/contracts/agents/signing-coordinator.js.map +1 -0
- package/dist/cjs/contracts/agents/signingCoordinator.d.ts +14 -0
- package/dist/cjs/contracts/agents/signingCoordinator.js +32 -0
- package/dist/cjs/contracts/agents/signingCoordinator.js.map +1 -0
- package/dist/cjs/contracts/ethers-typechain/SigningCoordinator.d.ts +787 -0
- package/dist/cjs/contracts/ethers-typechain/SigningCoordinator.js +3 -0
- package/dist/cjs/contracts/ethers-typechain/SigningCoordinator.js.map +1 -0
- package/dist/cjs/contracts/ethers-typechain/factories/SigningCoordinator__factory.d.ts +939 -0
- package/dist/cjs/contracts/ethers-typechain/factories/SigningCoordinator__factory.js +1227 -0
- package/dist/cjs/contracts/ethers-typechain/factories/SigningCoordinator__factory.js.map +1 -0
- package/dist/cjs/contracts/ethers-typechain/factories/index.d.ts +1 -0
- package/dist/cjs/contracts/ethers-typechain/factories/index.js +3 -1
- package/dist/cjs/contracts/ethers-typechain/factories/index.js.map +1 -1
- package/dist/cjs/contracts/ethers-typechain/index.d.ts +2 -0
- package/dist/cjs/contracts/ethers-typechain/index.js +3 -1
- package/dist/cjs/contracts/ethers-typechain/index.js.map +1 -1
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/porter.d.ts +12 -0
- package/dist/cjs/porter.js +56 -0
- package/dist/cjs/porter.js.map +1 -1
- package/dist/cjs/schemas.d.ts +1 -0
- package/dist/cjs/schemas.js +14 -1
- package/dist/cjs/schemas.js.map +1 -1
- package/dist/cjs/types.d.ts +44 -0
- package/dist/cjs/types.js +63 -0
- package/dist/cjs/types.js.map +1 -1
- package/dist/es/contracts/agents/index.d.ts +1 -0
- package/dist/es/contracts/agents/index.js +1 -0
- package/dist/es/contracts/agents/index.js.map +1 -1
- package/dist/es/contracts/agents/signing-coordinator.d.ts +15 -0
- package/dist/es/contracts/agents/signing-coordinator.js +34 -0
- package/dist/es/contracts/agents/signing-coordinator.js.map +1 -0
- package/dist/es/contracts/agents/signingCoordinator.d.ts +14 -0
- package/dist/es/contracts/agents/signingCoordinator.js +28 -0
- package/dist/es/contracts/agents/signingCoordinator.js.map +1 -0
- package/dist/es/contracts/ethers-typechain/SigningCoordinator.d.ts +787 -0
- package/dist/es/contracts/ethers-typechain/SigningCoordinator.js +2 -0
- package/dist/es/contracts/ethers-typechain/SigningCoordinator.js.map +1 -0
- package/dist/es/contracts/ethers-typechain/factories/SigningCoordinator__factory.d.ts +939 -0
- package/dist/es/contracts/ethers-typechain/factories/SigningCoordinator__factory.js +1223 -0
- package/dist/es/contracts/ethers-typechain/factories/SigningCoordinator__factory.js.map +1 -0
- package/dist/es/contracts/ethers-typechain/factories/index.d.ts +1 -0
- package/dist/es/contracts/ethers-typechain/factories/index.js +1 -0
- package/dist/es/contracts/ethers-typechain/factories/index.js.map +1 -1
- package/dist/es/contracts/ethers-typechain/index.d.ts +2 -0
- package/dist/es/contracts/ethers-typechain/index.js +1 -0
- package/dist/es/contracts/ethers-typechain/index.js.map +1 -1
- package/dist/es/index.d.ts +1 -1
- package/dist/es/index.js +1 -0
- package/dist/es/index.js.map +1 -1
- package/dist/es/porter.d.ts +12 -0
- package/dist/es/porter.js +56 -0
- package/dist/es/porter.js.map +1 -1
- package/dist/es/schemas.d.ts +1 -0
- package/dist/es/schemas.js +13 -0
- package/dist/es/schemas.js.map +1 -1
- package/dist/es/types.d.ts +44 -0
- package/dist/es/types.js +60 -1
- package/dist/es/types.js.map +1 -1
- package/dist/tsconfig.cjs.tsbuildinfo +1 -1
- package/dist/tsconfig.es.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,939 @@
|
|
|
1
|
+
import type { Provider } from '@ethersproject/providers';
|
|
2
|
+
import { Signer } from 'ethers';
|
|
3
|
+
import type { SigningCoordinator, SigningCoordinatorInterface } from '../SigningCoordinator';
|
|
4
|
+
export declare class SigningCoordinator__factory {
|
|
5
|
+
static readonly abi: readonly [{
|
|
6
|
+
readonly type: "constructor";
|
|
7
|
+
readonly stateMutability: "nonpayable";
|
|
8
|
+
readonly inputs: readonly [{
|
|
9
|
+
readonly name: "_application";
|
|
10
|
+
readonly type: "address";
|
|
11
|
+
readonly internalType: "contract TACoApplication";
|
|
12
|
+
}];
|
|
13
|
+
}, {
|
|
14
|
+
readonly type: "error";
|
|
15
|
+
readonly name: "AccessControlBadConfirmation";
|
|
16
|
+
readonly inputs: readonly [];
|
|
17
|
+
}, {
|
|
18
|
+
readonly type: "error";
|
|
19
|
+
readonly name: "AccessControlEnforcedDefaultAdminDelay";
|
|
20
|
+
readonly inputs: readonly [{
|
|
21
|
+
readonly name: "schedule";
|
|
22
|
+
readonly type: "uint48";
|
|
23
|
+
readonly internalType: "uint48";
|
|
24
|
+
}];
|
|
25
|
+
}, {
|
|
26
|
+
readonly type: "error";
|
|
27
|
+
readonly name: "AccessControlEnforcedDefaultAdminRules";
|
|
28
|
+
readonly inputs: readonly [];
|
|
29
|
+
}, {
|
|
30
|
+
readonly type: "error";
|
|
31
|
+
readonly name: "AccessControlInvalidDefaultAdmin";
|
|
32
|
+
readonly inputs: readonly [{
|
|
33
|
+
readonly name: "defaultAdmin";
|
|
34
|
+
readonly type: "address";
|
|
35
|
+
readonly internalType: "address";
|
|
36
|
+
}];
|
|
37
|
+
}, {
|
|
38
|
+
readonly type: "error";
|
|
39
|
+
readonly name: "AccessControlUnauthorizedAccount";
|
|
40
|
+
readonly inputs: readonly [{
|
|
41
|
+
readonly name: "account";
|
|
42
|
+
readonly type: "address";
|
|
43
|
+
readonly internalType: "address";
|
|
44
|
+
}, {
|
|
45
|
+
readonly name: "neededRole";
|
|
46
|
+
readonly type: "bytes32";
|
|
47
|
+
readonly internalType: "bytes32";
|
|
48
|
+
}];
|
|
49
|
+
}, {
|
|
50
|
+
readonly type: "error";
|
|
51
|
+
readonly name: "ECDSAInvalidSignature";
|
|
52
|
+
readonly inputs: readonly [];
|
|
53
|
+
}, {
|
|
54
|
+
readonly type: "error";
|
|
55
|
+
readonly name: "ECDSAInvalidSignatureLength";
|
|
56
|
+
readonly inputs: readonly [{
|
|
57
|
+
readonly name: "length";
|
|
58
|
+
readonly type: "uint256";
|
|
59
|
+
readonly internalType: "uint256";
|
|
60
|
+
}];
|
|
61
|
+
}, {
|
|
62
|
+
readonly type: "error";
|
|
63
|
+
readonly name: "ECDSAInvalidSignatureS";
|
|
64
|
+
readonly inputs: readonly [{
|
|
65
|
+
readonly name: "s";
|
|
66
|
+
readonly type: "bytes32";
|
|
67
|
+
readonly internalType: "bytes32";
|
|
68
|
+
}];
|
|
69
|
+
}, {
|
|
70
|
+
readonly type: "error";
|
|
71
|
+
readonly name: "InvalidInitialization";
|
|
72
|
+
readonly inputs: readonly [];
|
|
73
|
+
}, {
|
|
74
|
+
readonly type: "error";
|
|
75
|
+
readonly name: "NotInitializing";
|
|
76
|
+
readonly inputs: readonly [];
|
|
77
|
+
}, {
|
|
78
|
+
readonly type: "error";
|
|
79
|
+
readonly name: "SafeCastOverflowedUintDowncast";
|
|
80
|
+
readonly inputs: readonly [{
|
|
81
|
+
readonly name: "bits";
|
|
82
|
+
readonly type: "uint8";
|
|
83
|
+
readonly internalType: "uint8";
|
|
84
|
+
}, {
|
|
85
|
+
readonly name: "value";
|
|
86
|
+
readonly type: "uint256";
|
|
87
|
+
readonly internalType: "uint256";
|
|
88
|
+
}];
|
|
89
|
+
}, {
|
|
90
|
+
readonly type: "event";
|
|
91
|
+
readonly name: "DefaultAdminDelayChangeCanceled";
|
|
92
|
+
readonly inputs: readonly [];
|
|
93
|
+
readonly anonymous: false;
|
|
94
|
+
}, {
|
|
95
|
+
readonly type: "event";
|
|
96
|
+
readonly name: "DefaultAdminDelayChangeScheduled";
|
|
97
|
+
readonly inputs: readonly [{
|
|
98
|
+
readonly name: "newDelay";
|
|
99
|
+
readonly type: "uint48";
|
|
100
|
+
readonly internalType: "uint48";
|
|
101
|
+
readonly indexed: false;
|
|
102
|
+
}, {
|
|
103
|
+
readonly name: "effectSchedule";
|
|
104
|
+
readonly type: "uint48";
|
|
105
|
+
readonly internalType: "uint48";
|
|
106
|
+
readonly indexed: false;
|
|
107
|
+
}];
|
|
108
|
+
readonly anonymous: false;
|
|
109
|
+
}, {
|
|
110
|
+
readonly type: "event";
|
|
111
|
+
readonly name: "DefaultAdminTransferCanceled";
|
|
112
|
+
readonly inputs: readonly [];
|
|
113
|
+
readonly anonymous: false;
|
|
114
|
+
}, {
|
|
115
|
+
readonly type: "event";
|
|
116
|
+
readonly name: "DefaultAdminTransferScheduled";
|
|
117
|
+
readonly inputs: readonly [{
|
|
118
|
+
readonly name: "newAdmin";
|
|
119
|
+
readonly type: "address";
|
|
120
|
+
readonly internalType: "address";
|
|
121
|
+
readonly indexed: true;
|
|
122
|
+
}, {
|
|
123
|
+
readonly name: "acceptSchedule";
|
|
124
|
+
readonly type: "uint48";
|
|
125
|
+
readonly internalType: "uint48";
|
|
126
|
+
readonly indexed: false;
|
|
127
|
+
}];
|
|
128
|
+
readonly anonymous: false;
|
|
129
|
+
}, {
|
|
130
|
+
readonly type: "event";
|
|
131
|
+
readonly name: "DispatcherChanged";
|
|
132
|
+
readonly inputs: readonly [{
|
|
133
|
+
readonly name: "oldDispatcher";
|
|
134
|
+
readonly type: "address";
|
|
135
|
+
readonly internalType: "address";
|
|
136
|
+
readonly indexed: false;
|
|
137
|
+
}, {
|
|
138
|
+
readonly name: "newDispatcher";
|
|
139
|
+
readonly type: "address";
|
|
140
|
+
readonly internalType: "address";
|
|
141
|
+
readonly indexed: false;
|
|
142
|
+
}];
|
|
143
|
+
readonly anonymous: false;
|
|
144
|
+
}, {
|
|
145
|
+
readonly type: "event";
|
|
146
|
+
readonly name: "Initialized";
|
|
147
|
+
readonly inputs: readonly [{
|
|
148
|
+
readonly name: "version";
|
|
149
|
+
readonly type: "uint64";
|
|
150
|
+
readonly internalType: "uint64";
|
|
151
|
+
readonly indexed: false;
|
|
152
|
+
}];
|
|
153
|
+
readonly anonymous: false;
|
|
154
|
+
}, {
|
|
155
|
+
readonly type: "event";
|
|
156
|
+
readonly name: "InitiateSigningCohort";
|
|
157
|
+
readonly inputs: readonly [{
|
|
158
|
+
readonly name: "cohortId";
|
|
159
|
+
readonly type: "uint32";
|
|
160
|
+
readonly internalType: "uint32";
|
|
161
|
+
readonly indexed: true;
|
|
162
|
+
}, {
|
|
163
|
+
readonly name: "chainId";
|
|
164
|
+
readonly type: "uint256";
|
|
165
|
+
readonly internalType: "uint256";
|
|
166
|
+
readonly indexed: false;
|
|
167
|
+
}, {
|
|
168
|
+
readonly name: "authority";
|
|
169
|
+
readonly type: "address";
|
|
170
|
+
readonly internalType: "address";
|
|
171
|
+
readonly indexed: true;
|
|
172
|
+
}, {
|
|
173
|
+
readonly name: "participants";
|
|
174
|
+
readonly type: "address[]";
|
|
175
|
+
readonly internalType: "address[]";
|
|
176
|
+
readonly indexed: false;
|
|
177
|
+
}];
|
|
178
|
+
readonly anonymous: false;
|
|
179
|
+
}, {
|
|
180
|
+
readonly type: "event";
|
|
181
|
+
readonly name: "MaxCohortSizeChanged";
|
|
182
|
+
readonly inputs: readonly [{
|
|
183
|
+
readonly name: "oldSize";
|
|
184
|
+
readonly type: "uint16";
|
|
185
|
+
readonly internalType: "uint16";
|
|
186
|
+
readonly indexed: false;
|
|
187
|
+
}, {
|
|
188
|
+
readonly name: "newSize";
|
|
189
|
+
readonly type: "uint16";
|
|
190
|
+
readonly internalType: "uint16";
|
|
191
|
+
readonly indexed: false;
|
|
192
|
+
}];
|
|
193
|
+
readonly anonymous: false;
|
|
194
|
+
}, {
|
|
195
|
+
readonly type: "event";
|
|
196
|
+
readonly name: "RoleAdminChanged";
|
|
197
|
+
readonly inputs: readonly [{
|
|
198
|
+
readonly name: "role";
|
|
199
|
+
readonly type: "bytes32";
|
|
200
|
+
readonly internalType: "bytes32";
|
|
201
|
+
readonly indexed: true;
|
|
202
|
+
}, {
|
|
203
|
+
readonly name: "previousAdminRole";
|
|
204
|
+
readonly type: "bytes32";
|
|
205
|
+
readonly internalType: "bytes32";
|
|
206
|
+
readonly indexed: true;
|
|
207
|
+
}, {
|
|
208
|
+
readonly name: "newAdminRole";
|
|
209
|
+
readonly type: "bytes32";
|
|
210
|
+
readonly internalType: "bytes32";
|
|
211
|
+
readonly indexed: true;
|
|
212
|
+
}];
|
|
213
|
+
readonly anonymous: false;
|
|
214
|
+
}, {
|
|
215
|
+
readonly type: "event";
|
|
216
|
+
readonly name: "RoleGranted";
|
|
217
|
+
readonly inputs: readonly [{
|
|
218
|
+
readonly name: "role";
|
|
219
|
+
readonly type: "bytes32";
|
|
220
|
+
readonly internalType: "bytes32";
|
|
221
|
+
readonly indexed: true;
|
|
222
|
+
}, {
|
|
223
|
+
readonly name: "account";
|
|
224
|
+
readonly type: "address";
|
|
225
|
+
readonly internalType: "address";
|
|
226
|
+
readonly indexed: true;
|
|
227
|
+
}, {
|
|
228
|
+
readonly name: "sender";
|
|
229
|
+
readonly type: "address";
|
|
230
|
+
readonly internalType: "address";
|
|
231
|
+
readonly indexed: true;
|
|
232
|
+
}];
|
|
233
|
+
readonly anonymous: false;
|
|
234
|
+
}, {
|
|
235
|
+
readonly type: "event";
|
|
236
|
+
readonly name: "RoleRevoked";
|
|
237
|
+
readonly inputs: readonly [{
|
|
238
|
+
readonly name: "role";
|
|
239
|
+
readonly type: "bytes32";
|
|
240
|
+
readonly internalType: "bytes32";
|
|
241
|
+
readonly indexed: true;
|
|
242
|
+
}, {
|
|
243
|
+
readonly name: "account";
|
|
244
|
+
readonly type: "address";
|
|
245
|
+
readonly internalType: "address";
|
|
246
|
+
readonly indexed: true;
|
|
247
|
+
}, {
|
|
248
|
+
readonly name: "sender";
|
|
249
|
+
readonly type: "address";
|
|
250
|
+
readonly internalType: "address";
|
|
251
|
+
readonly indexed: true;
|
|
252
|
+
}];
|
|
253
|
+
readonly anonymous: false;
|
|
254
|
+
}, {
|
|
255
|
+
readonly type: "event";
|
|
256
|
+
readonly name: "SigningCohortConditionsSet";
|
|
257
|
+
readonly inputs: readonly [{
|
|
258
|
+
readonly name: "cohortId";
|
|
259
|
+
readonly type: "uint32";
|
|
260
|
+
readonly internalType: "uint32";
|
|
261
|
+
readonly indexed: true;
|
|
262
|
+
}, {
|
|
263
|
+
readonly name: "chainId";
|
|
264
|
+
readonly type: "uint256";
|
|
265
|
+
readonly internalType: "uint256";
|
|
266
|
+
readonly indexed: false;
|
|
267
|
+
}, {
|
|
268
|
+
readonly name: "conditions";
|
|
269
|
+
readonly type: "bytes";
|
|
270
|
+
readonly internalType: "bytes";
|
|
271
|
+
readonly indexed: false;
|
|
272
|
+
}];
|
|
273
|
+
readonly anonymous: false;
|
|
274
|
+
}, {
|
|
275
|
+
readonly type: "event";
|
|
276
|
+
readonly name: "SigningCohortDeployed";
|
|
277
|
+
readonly inputs: readonly [{
|
|
278
|
+
readonly name: "cohortId";
|
|
279
|
+
readonly type: "uint32";
|
|
280
|
+
readonly internalType: "uint32";
|
|
281
|
+
readonly indexed: true;
|
|
282
|
+
}, {
|
|
283
|
+
readonly name: "chainId";
|
|
284
|
+
readonly type: "uint256";
|
|
285
|
+
readonly internalType: "uint256";
|
|
286
|
+
readonly indexed: false;
|
|
287
|
+
}];
|
|
288
|
+
readonly anonymous: false;
|
|
289
|
+
}, {
|
|
290
|
+
readonly type: "event";
|
|
291
|
+
readonly name: "SigningCohortSignaturePosted";
|
|
292
|
+
readonly inputs: readonly [{
|
|
293
|
+
readonly name: "cohortId";
|
|
294
|
+
readonly type: "uint32";
|
|
295
|
+
readonly internalType: "uint32";
|
|
296
|
+
readonly indexed: true;
|
|
297
|
+
}, {
|
|
298
|
+
readonly name: "provider";
|
|
299
|
+
readonly type: "address";
|
|
300
|
+
readonly internalType: "address";
|
|
301
|
+
readonly indexed: true;
|
|
302
|
+
}, {
|
|
303
|
+
readonly name: "signature";
|
|
304
|
+
readonly type: "bytes";
|
|
305
|
+
readonly internalType: "bytes";
|
|
306
|
+
readonly indexed: false;
|
|
307
|
+
}];
|
|
308
|
+
readonly anonymous: false;
|
|
309
|
+
}, {
|
|
310
|
+
readonly type: "event";
|
|
311
|
+
readonly name: "TimeoutChanged";
|
|
312
|
+
readonly inputs: readonly [{
|
|
313
|
+
readonly name: "oldTimeout";
|
|
314
|
+
readonly type: "uint32";
|
|
315
|
+
readonly internalType: "uint32";
|
|
316
|
+
readonly indexed: false;
|
|
317
|
+
}, {
|
|
318
|
+
readonly name: "newTimeout";
|
|
319
|
+
readonly type: "uint32";
|
|
320
|
+
readonly internalType: "uint32";
|
|
321
|
+
readonly indexed: false;
|
|
322
|
+
}];
|
|
323
|
+
readonly anonymous: false;
|
|
324
|
+
}, {
|
|
325
|
+
readonly type: "function";
|
|
326
|
+
readonly name: "DEFAULT_ADMIN_ROLE";
|
|
327
|
+
readonly stateMutability: "view";
|
|
328
|
+
readonly inputs: readonly [];
|
|
329
|
+
readonly outputs: readonly [{
|
|
330
|
+
readonly name: "";
|
|
331
|
+
readonly type: "bytes32";
|
|
332
|
+
readonly internalType: "bytes32";
|
|
333
|
+
}];
|
|
334
|
+
}, {
|
|
335
|
+
readonly type: "function";
|
|
336
|
+
readonly name: "INITIATOR_ROLE";
|
|
337
|
+
readonly stateMutability: "view";
|
|
338
|
+
readonly inputs: readonly [];
|
|
339
|
+
readonly outputs: readonly [{
|
|
340
|
+
readonly name: "";
|
|
341
|
+
readonly type: "bytes32";
|
|
342
|
+
readonly internalType: "bytes32";
|
|
343
|
+
}];
|
|
344
|
+
}, {
|
|
345
|
+
readonly type: "function";
|
|
346
|
+
readonly name: "acceptDefaultAdminTransfer";
|
|
347
|
+
readonly stateMutability: "nonpayable";
|
|
348
|
+
readonly inputs: readonly [];
|
|
349
|
+
readonly outputs: readonly [];
|
|
350
|
+
}, {
|
|
351
|
+
readonly type: "function";
|
|
352
|
+
readonly name: "application";
|
|
353
|
+
readonly stateMutability: "view";
|
|
354
|
+
readonly inputs: readonly [];
|
|
355
|
+
readonly outputs: readonly [{
|
|
356
|
+
readonly name: "";
|
|
357
|
+
readonly type: "address";
|
|
358
|
+
readonly internalType: "contract TACoApplication";
|
|
359
|
+
}];
|
|
360
|
+
}, {
|
|
361
|
+
readonly type: "function";
|
|
362
|
+
readonly name: "beginDefaultAdminTransfer";
|
|
363
|
+
readonly stateMutability: "nonpayable";
|
|
364
|
+
readonly inputs: readonly [{
|
|
365
|
+
readonly name: "newAdmin";
|
|
366
|
+
readonly type: "address";
|
|
367
|
+
readonly internalType: "address";
|
|
368
|
+
}];
|
|
369
|
+
readonly outputs: readonly [];
|
|
370
|
+
}, {
|
|
371
|
+
readonly type: "function";
|
|
372
|
+
readonly name: "cancelDefaultAdminTransfer";
|
|
373
|
+
readonly stateMutability: "nonpayable";
|
|
374
|
+
readonly inputs: readonly [];
|
|
375
|
+
readonly outputs: readonly [];
|
|
376
|
+
}, {
|
|
377
|
+
readonly type: "function";
|
|
378
|
+
readonly name: "changeDefaultAdminDelay";
|
|
379
|
+
readonly stateMutability: "nonpayable";
|
|
380
|
+
readonly inputs: readonly [{
|
|
381
|
+
readonly name: "newDelay";
|
|
382
|
+
readonly type: "uint48";
|
|
383
|
+
readonly internalType: "uint48";
|
|
384
|
+
}];
|
|
385
|
+
readonly outputs: readonly [];
|
|
386
|
+
}, {
|
|
387
|
+
readonly type: "function";
|
|
388
|
+
readonly name: "defaultAdmin";
|
|
389
|
+
readonly stateMutability: "view";
|
|
390
|
+
readonly inputs: readonly [];
|
|
391
|
+
readonly outputs: readonly [{
|
|
392
|
+
readonly name: "";
|
|
393
|
+
readonly type: "address";
|
|
394
|
+
readonly internalType: "address";
|
|
395
|
+
}];
|
|
396
|
+
}, {
|
|
397
|
+
readonly type: "function";
|
|
398
|
+
readonly name: "defaultAdminDelay";
|
|
399
|
+
readonly stateMutability: "view";
|
|
400
|
+
readonly inputs: readonly [];
|
|
401
|
+
readonly outputs: readonly [{
|
|
402
|
+
readonly name: "";
|
|
403
|
+
readonly type: "uint48";
|
|
404
|
+
readonly internalType: "uint48";
|
|
405
|
+
}];
|
|
406
|
+
}, {
|
|
407
|
+
readonly type: "function";
|
|
408
|
+
readonly name: "defaultAdminDelayIncreaseWait";
|
|
409
|
+
readonly stateMutability: "view";
|
|
410
|
+
readonly inputs: readonly [];
|
|
411
|
+
readonly outputs: readonly [{
|
|
412
|
+
readonly name: "";
|
|
413
|
+
readonly type: "uint48";
|
|
414
|
+
readonly internalType: "uint48";
|
|
415
|
+
}];
|
|
416
|
+
}, {
|
|
417
|
+
readonly type: "function";
|
|
418
|
+
readonly name: "deployAdditionalChainForSigningMultisig";
|
|
419
|
+
readonly stateMutability: "nonpayable";
|
|
420
|
+
readonly inputs: readonly [{
|
|
421
|
+
readonly name: "chainId";
|
|
422
|
+
readonly type: "uint256";
|
|
423
|
+
readonly internalType: "uint256";
|
|
424
|
+
}, {
|
|
425
|
+
readonly name: "cohortId";
|
|
426
|
+
readonly type: "uint32";
|
|
427
|
+
readonly internalType: "uint32";
|
|
428
|
+
}];
|
|
429
|
+
readonly outputs: readonly [];
|
|
430
|
+
}, {
|
|
431
|
+
readonly type: "function";
|
|
432
|
+
readonly name: "getChains";
|
|
433
|
+
readonly stateMutability: "view";
|
|
434
|
+
readonly inputs: readonly [{
|
|
435
|
+
readonly name: "cohortId";
|
|
436
|
+
readonly type: "uint32";
|
|
437
|
+
readonly internalType: "uint32";
|
|
438
|
+
}];
|
|
439
|
+
readonly outputs: readonly [{
|
|
440
|
+
readonly name: "";
|
|
441
|
+
readonly type: "uint256[]";
|
|
442
|
+
readonly internalType: "uint256[]";
|
|
443
|
+
}];
|
|
444
|
+
}, {
|
|
445
|
+
readonly type: "function";
|
|
446
|
+
readonly name: "getCondition";
|
|
447
|
+
readonly stateMutability: "view";
|
|
448
|
+
readonly inputs: readonly [{
|
|
449
|
+
readonly name: "cohortId";
|
|
450
|
+
readonly type: "uint32";
|
|
451
|
+
readonly internalType: "uint32";
|
|
452
|
+
}, {
|
|
453
|
+
readonly name: "chainId";
|
|
454
|
+
readonly type: "uint256";
|
|
455
|
+
readonly internalType: "uint256";
|
|
456
|
+
}];
|
|
457
|
+
readonly outputs: readonly [{
|
|
458
|
+
readonly name: "";
|
|
459
|
+
readonly type: "bytes";
|
|
460
|
+
readonly internalType: "bytes";
|
|
461
|
+
}];
|
|
462
|
+
}, {
|
|
463
|
+
readonly type: "function";
|
|
464
|
+
readonly name: "getRoleAdmin";
|
|
465
|
+
readonly stateMutability: "view";
|
|
466
|
+
readonly inputs: readonly [{
|
|
467
|
+
readonly name: "role";
|
|
468
|
+
readonly type: "bytes32";
|
|
469
|
+
readonly internalType: "bytes32";
|
|
470
|
+
}];
|
|
471
|
+
readonly outputs: readonly [{
|
|
472
|
+
readonly name: "";
|
|
473
|
+
readonly type: "bytes32";
|
|
474
|
+
readonly internalType: "bytes32";
|
|
475
|
+
}];
|
|
476
|
+
}, {
|
|
477
|
+
readonly type: "function";
|
|
478
|
+
readonly name: "getSigner";
|
|
479
|
+
readonly stateMutability: "view";
|
|
480
|
+
readonly inputs: readonly [{
|
|
481
|
+
readonly name: "cohortId";
|
|
482
|
+
readonly type: "uint32";
|
|
483
|
+
readonly internalType: "uint32";
|
|
484
|
+
}, {
|
|
485
|
+
readonly name: "provider";
|
|
486
|
+
readonly type: "address";
|
|
487
|
+
readonly internalType: "address";
|
|
488
|
+
}];
|
|
489
|
+
readonly outputs: readonly [{
|
|
490
|
+
readonly name: "";
|
|
491
|
+
readonly type: "tuple";
|
|
492
|
+
readonly components: readonly [{
|
|
493
|
+
readonly name: "provider";
|
|
494
|
+
readonly type: "address";
|
|
495
|
+
readonly internalType: "address";
|
|
496
|
+
}, {
|
|
497
|
+
readonly name: "operator";
|
|
498
|
+
readonly type: "address";
|
|
499
|
+
readonly internalType: "address";
|
|
500
|
+
}, {
|
|
501
|
+
readonly name: "signature";
|
|
502
|
+
readonly type: "bytes";
|
|
503
|
+
readonly internalType: "bytes";
|
|
504
|
+
}];
|
|
505
|
+
readonly internalType: "struct SigningCoordinator.SigningCohortParticipant";
|
|
506
|
+
}];
|
|
507
|
+
}, {
|
|
508
|
+
readonly type: "function";
|
|
509
|
+
readonly name: "getSigners";
|
|
510
|
+
readonly stateMutability: "view";
|
|
511
|
+
readonly inputs: readonly [{
|
|
512
|
+
readonly name: "cohortId";
|
|
513
|
+
readonly type: "uint32";
|
|
514
|
+
readonly internalType: "uint32";
|
|
515
|
+
}];
|
|
516
|
+
readonly outputs: readonly [{
|
|
517
|
+
readonly name: "";
|
|
518
|
+
readonly type: "tuple[]";
|
|
519
|
+
readonly components: readonly [{
|
|
520
|
+
readonly name: "provider";
|
|
521
|
+
readonly type: "address";
|
|
522
|
+
readonly internalType: "address";
|
|
523
|
+
}, {
|
|
524
|
+
readonly name: "operator";
|
|
525
|
+
readonly type: "address";
|
|
526
|
+
readonly internalType: "address";
|
|
527
|
+
}, {
|
|
528
|
+
readonly name: "signature";
|
|
529
|
+
readonly type: "bytes";
|
|
530
|
+
readonly internalType: "bytes";
|
|
531
|
+
}];
|
|
532
|
+
readonly internalType: "struct SigningCoordinator.SigningCohortParticipant[]";
|
|
533
|
+
}];
|
|
534
|
+
}, {
|
|
535
|
+
readonly type: "function";
|
|
536
|
+
readonly name: "getSigningCohortConditions";
|
|
537
|
+
readonly stateMutability: "view";
|
|
538
|
+
readonly inputs: readonly [{
|
|
539
|
+
readonly name: "cohortId";
|
|
540
|
+
readonly type: "uint32";
|
|
541
|
+
readonly internalType: "uint32";
|
|
542
|
+
}, {
|
|
543
|
+
readonly name: "chainId";
|
|
544
|
+
readonly type: "uint256";
|
|
545
|
+
readonly internalType: "uint256";
|
|
546
|
+
}];
|
|
547
|
+
readonly outputs: readonly [{
|
|
548
|
+
readonly name: "";
|
|
549
|
+
readonly type: "bytes";
|
|
550
|
+
readonly internalType: "bytes";
|
|
551
|
+
}];
|
|
552
|
+
}, {
|
|
553
|
+
readonly type: "function";
|
|
554
|
+
readonly name: "getSigningCohortDataHash";
|
|
555
|
+
readonly stateMutability: "view";
|
|
556
|
+
readonly inputs: readonly [{
|
|
557
|
+
readonly name: "cohortId";
|
|
558
|
+
readonly type: "uint32";
|
|
559
|
+
readonly internalType: "uint32";
|
|
560
|
+
}];
|
|
561
|
+
readonly outputs: readonly [{
|
|
562
|
+
readonly name: "";
|
|
563
|
+
readonly type: "bytes32";
|
|
564
|
+
readonly internalType: "bytes32";
|
|
565
|
+
}];
|
|
566
|
+
}, {
|
|
567
|
+
readonly type: "function";
|
|
568
|
+
readonly name: "getSigningCohortState";
|
|
569
|
+
readonly stateMutability: "view";
|
|
570
|
+
readonly inputs: readonly [{
|
|
571
|
+
readonly name: "cohortId";
|
|
572
|
+
readonly type: "uint32";
|
|
573
|
+
readonly internalType: "uint32";
|
|
574
|
+
}];
|
|
575
|
+
readonly outputs: readonly [{
|
|
576
|
+
readonly name: "";
|
|
577
|
+
readonly type: "uint8";
|
|
578
|
+
readonly internalType: "enum SigningCoordinator.SigningCohortState";
|
|
579
|
+
}];
|
|
580
|
+
}, {
|
|
581
|
+
readonly type: "function";
|
|
582
|
+
readonly name: "getSigningCoordinatorChild";
|
|
583
|
+
readonly stateMutability: "view";
|
|
584
|
+
readonly inputs: readonly [{
|
|
585
|
+
readonly name: "chainId";
|
|
586
|
+
readonly type: "uint256";
|
|
587
|
+
readonly internalType: "uint256";
|
|
588
|
+
}];
|
|
589
|
+
readonly outputs: readonly [{
|
|
590
|
+
readonly name: "";
|
|
591
|
+
readonly type: "address";
|
|
592
|
+
readonly internalType: "address";
|
|
593
|
+
}];
|
|
594
|
+
}, {
|
|
595
|
+
readonly type: "function";
|
|
596
|
+
readonly name: "grantRole";
|
|
597
|
+
readonly stateMutability: "nonpayable";
|
|
598
|
+
readonly inputs: readonly [{
|
|
599
|
+
readonly name: "role";
|
|
600
|
+
readonly type: "bytes32";
|
|
601
|
+
readonly internalType: "bytes32";
|
|
602
|
+
}, {
|
|
603
|
+
readonly name: "account";
|
|
604
|
+
readonly type: "address";
|
|
605
|
+
readonly internalType: "address";
|
|
606
|
+
}];
|
|
607
|
+
readonly outputs: readonly [];
|
|
608
|
+
}, {
|
|
609
|
+
readonly type: "function";
|
|
610
|
+
readonly name: "hasRole";
|
|
611
|
+
readonly stateMutability: "view";
|
|
612
|
+
readonly inputs: readonly [{
|
|
613
|
+
readonly name: "role";
|
|
614
|
+
readonly type: "bytes32";
|
|
615
|
+
readonly internalType: "bytes32";
|
|
616
|
+
}, {
|
|
617
|
+
readonly name: "account";
|
|
618
|
+
readonly type: "address";
|
|
619
|
+
readonly internalType: "address";
|
|
620
|
+
}];
|
|
621
|
+
readonly outputs: readonly [{
|
|
622
|
+
readonly name: "";
|
|
623
|
+
readonly type: "bool";
|
|
624
|
+
readonly internalType: "bool";
|
|
625
|
+
}];
|
|
626
|
+
}, {
|
|
627
|
+
readonly type: "function";
|
|
628
|
+
readonly name: "initialize";
|
|
629
|
+
readonly stateMutability: "nonpayable";
|
|
630
|
+
readonly inputs: readonly [{
|
|
631
|
+
readonly name: "_timeout";
|
|
632
|
+
readonly type: "uint32";
|
|
633
|
+
readonly internalType: "uint32";
|
|
634
|
+
}, {
|
|
635
|
+
readonly name: "_maxDkgSize";
|
|
636
|
+
readonly type: "uint16";
|
|
637
|
+
readonly internalType: "uint16";
|
|
638
|
+
}, {
|
|
639
|
+
readonly name: "_signingCoordinatorDispatcher";
|
|
640
|
+
readonly type: "address";
|
|
641
|
+
readonly internalType: "contract SigningCoordinatorDispatcher";
|
|
642
|
+
}, {
|
|
643
|
+
readonly name: "_admin";
|
|
644
|
+
readonly type: "address";
|
|
645
|
+
readonly internalType: "address";
|
|
646
|
+
}];
|
|
647
|
+
readonly outputs: readonly [];
|
|
648
|
+
}, {
|
|
649
|
+
readonly type: "function";
|
|
650
|
+
readonly name: "initiateSigningCohort";
|
|
651
|
+
readonly stateMutability: "nonpayable";
|
|
652
|
+
readonly inputs: readonly [{
|
|
653
|
+
readonly name: "chainId";
|
|
654
|
+
readonly type: "uint256";
|
|
655
|
+
readonly internalType: "uint256";
|
|
656
|
+
}, {
|
|
657
|
+
readonly name: "authority";
|
|
658
|
+
readonly type: "address";
|
|
659
|
+
readonly internalType: "address";
|
|
660
|
+
}, {
|
|
661
|
+
readonly name: "providers";
|
|
662
|
+
readonly type: "address[]";
|
|
663
|
+
readonly internalType: "address[]";
|
|
664
|
+
}, {
|
|
665
|
+
readonly name: "threshold";
|
|
666
|
+
readonly type: "uint16";
|
|
667
|
+
readonly internalType: "uint16";
|
|
668
|
+
}, {
|
|
669
|
+
readonly name: "duration";
|
|
670
|
+
readonly type: "uint32";
|
|
671
|
+
readonly internalType: "uint32";
|
|
672
|
+
}];
|
|
673
|
+
readonly outputs: readonly [{
|
|
674
|
+
readonly name: "";
|
|
675
|
+
readonly type: "uint32";
|
|
676
|
+
readonly internalType: "uint32";
|
|
677
|
+
}];
|
|
678
|
+
}, {
|
|
679
|
+
readonly type: "function";
|
|
680
|
+
readonly name: "isCohortActive";
|
|
681
|
+
readonly stateMutability: "view";
|
|
682
|
+
readonly inputs: readonly [{
|
|
683
|
+
readonly name: "cohortId";
|
|
684
|
+
readonly type: "uint32";
|
|
685
|
+
readonly internalType: "uint32";
|
|
686
|
+
}];
|
|
687
|
+
readonly outputs: readonly [{
|
|
688
|
+
readonly name: "";
|
|
689
|
+
readonly type: "bool";
|
|
690
|
+
readonly internalType: "bool";
|
|
691
|
+
}];
|
|
692
|
+
}, {
|
|
693
|
+
readonly type: "function";
|
|
694
|
+
readonly name: "isSigner";
|
|
695
|
+
readonly stateMutability: "view";
|
|
696
|
+
readonly inputs: readonly [{
|
|
697
|
+
readonly name: "cohortId";
|
|
698
|
+
readonly type: "uint32";
|
|
699
|
+
readonly internalType: "uint32";
|
|
700
|
+
}, {
|
|
701
|
+
readonly name: "provider";
|
|
702
|
+
readonly type: "address";
|
|
703
|
+
readonly internalType: "address";
|
|
704
|
+
}];
|
|
705
|
+
readonly outputs: readonly [{
|
|
706
|
+
readonly name: "";
|
|
707
|
+
readonly type: "bool";
|
|
708
|
+
readonly internalType: "bool";
|
|
709
|
+
}];
|
|
710
|
+
}, {
|
|
711
|
+
readonly type: "function";
|
|
712
|
+
readonly name: "maxCohortSize";
|
|
713
|
+
readonly stateMutability: "view";
|
|
714
|
+
readonly inputs: readonly [];
|
|
715
|
+
readonly outputs: readonly [{
|
|
716
|
+
readonly name: "";
|
|
717
|
+
readonly type: "uint16";
|
|
718
|
+
readonly internalType: "uint16";
|
|
719
|
+
}];
|
|
720
|
+
}, {
|
|
721
|
+
readonly type: "function";
|
|
722
|
+
readonly name: "numberOfSigningCohorts";
|
|
723
|
+
readonly stateMutability: "view";
|
|
724
|
+
readonly inputs: readonly [];
|
|
725
|
+
readonly outputs: readonly [{
|
|
726
|
+
readonly name: "";
|
|
727
|
+
readonly type: "uint256";
|
|
728
|
+
readonly internalType: "uint256";
|
|
729
|
+
}];
|
|
730
|
+
}, {
|
|
731
|
+
readonly type: "function";
|
|
732
|
+
readonly name: "owner";
|
|
733
|
+
readonly stateMutability: "view";
|
|
734
|
+
readonly inputs: readonly [];
|
|
735
|
+
readonly outputs: readonly [{
|
|
736
|
+
readonly name: "";
|
|
737
|
+
readonly type: "address";
|
|
738
|
+
readonly internalType: "address";
|
|
739
|
+
}];
|
|
740
|
+
}, {
|
|
741
|
+
readonly type: "function";
|
|
742
|
+
readonly name: "pendingDefaultAdmin";
|
|
743
|
+
readonly stateMutability: "view";
|
|
744
|
+
readonly inputs: readonly [];
|
|
745
|
+
readonly outputs: readonly [{
|
|
746
|
+
readonly name: "newAdmin";
|
|
747
|
+
readonly type: "address";
|
|
748
|
+
readonly internalType: "address";
|
|
749
|
+
}, {
|
|
750
|
+
readonly name: "schedule";
|
|
751
|
+
readonly type: "uint48";
|
|
752
|
+
readonly internalType: "uint48";
|
|
753
|
+
}];
|
|
754
|
+
}, {
|
|
755
|
+
readonly type: "function";
|
|
756
|
+
readonly name: "pendingDefaultAdminDelay";
|
|
757
|
+
readonly stateMutability: "view";
|
|
758
|
+
readonly inputs: readonly [];
|
|
759
|
+
readonly outputs: readonly [{
|
|
760
|
+
readonly name: "newDelay";
|
|
761
|
+
readonly type: "uint48";
|
|
762
|
+
readonly internalType: "uint48";
|
|
763
|
+
}, {
|
|
764
|
+
readonly name: "schedule";
|
|
765
|
+
readonly type: "uint48";
|
|
766
|
+
readonly internalType: "uint48";
|
|
767
|
+
}];
|
|
768
|
+
}, {
|
|
769
|
+
readonly type: "function";
|
|
770
|
+
readonly name: "postSigningCohortSignature";
|
|
771
|
+
readonly stateMutability: "nonpayable";
|
|
772
|
+
readonly inputs: readonly [{
|
|
773
|
+
readonly name: "cohortId";
|
|
774
|
+
readonly type: "uint32";
|
|
775
|
+
readonly internalType: "uint32";
|
|
776
|
+
}, {
|
|
777
|
+
readonly name: "signature";
|
|
778
|
+
readonly type: "bytes";
|
|
779
|
+
readonly internalType: "bytes";
|
|
780
|
+
}];
|
|
781
|
+
readonly outputs: readonly [];
|
|
782
|
+
}, {
|
|
783
|
+
readonly type: "function";
|
|
784
|
+
readonly name: "renounceRole";
|
|
785
|
+
readonly stateMutability: "nonpayable";
|
|
786
|
+
readonly inputs: readonly [{
|
|
787
|
+
readonly name: "role";
|
|
788
|
+
readonly type: "bytes32";
|
|
789
|
+
readonly internalType: "bytes32";
|
|
790
|
+
}, {
|
|
791
|
+
readonly name: "account";
|
|
792
|
+
readonly type: "address";
|
|
793
|
+
readonly internalType: "address";
|
|
794
|
+
}];
|
|
795
|
+
readonly outputs: readonly [];
|
|
796
|
+
}, {
|
|
797
|
+
readonly type: "function";
|
|
798
|
+
readonly name: "revokeRole";
|
|
799
|
+
readonly stateMutability: "nonpayable";
|
|
800
|
+
readonly inputs: readonly [{
|
|
801
|
+
readonly name: "role";
|
|
802
|
+
readonly type: "bytes32";
|
|
803
|
+
readonly internalType: "bytes32";
|
|
804
|
+
}, {
|
|
805
|
+
readonly name: "account";
|
|
806
|
+
readonly type: "address";
|
|
807
|
+
readonly internalType: "address";
|
|
808
|
+
}];
|
|
809
|
+
readonly outputs: readonly [];
|
|
810
|
+
}, {
|
|
811
|
+
readonly type: "function";
|
|
812
|
+
readonly name: "rollbackDefaultAdminDelay";
|
|
813
|
+
readonly stateMutability: "nonpayable";
|
|
814
|
+
readonly inputs: readonly [];
|
|
815
|
+
readonly outputs: readonly [];
|
|
816
|
+
}, {
|
|
817
|
+
readonly type: "function";
|
|
818
|
+
readonly name: "setDispatcher";
|
|
819
|
+
readonly stateMutability: "nonpayable";
|
|
820
|
+
readonly inputs: readonly [{
|
|
821
|
+
readonly name: "dispatcher";
|
|
822
|
+
readonly type: "address";
|
|
823
|
+
readonly internalType: "contract SigningCoordinatorDispatcher";
|
|
824
|
+
}];
|
|
825
|
+
readonly outputs: readonly [];
|
|
826
|
+
}, {
|
|
827
|
+
readonly type: "function";
|
|
828
|
+
readonly name: "setMaxDkgSize";
|
|
829
|
+
readonly stateMutability: "nonpayable";
|
|
830
|
+
readonly inputs: readonly [{
|
|
831
|
+
readonly name: "newSize";
|
|
832
|
+
readonly type: "uint16";
|
|
833
|
+
readonly internalType: "uint16";
|
|
834
|
+
}];
|
|
835
|
+
readonly outputs: readonly [];
|
|
836
|
+
}, {
|
|
837
|
+
readonly type: "function";
|
|
838
|
+
readonly name: "setSigningCohortConditions";
|
|
839
|
+
readonly stateMutability: "nonpayable";
|
|
840
|
+
readonly inputs: readonly [{
|
|
841
|
+
readonly name: "cohortId";
|
|
842
|
+
readonly type: "uint32";
|
|
843
|
+
readonly internalType: "uint32";
|
|
844
|
+
}, {
|
|
845
|
+
readonly name: "chainId";
|
|
846
|
+
readonly type: "uint256";
|
|
847
|
+
readonly internalType: "uint256";
|
|
848
|
+
}, {
|
|
849
|
+
readonly name: "conditions";
|
|
850
|
+
readonly type: "bytes";
|
|
851
|
+
readonly internalType: "bytes";
|
|
852
|
+
}];
|
|
853
|
+
readonly outputs: readonly [];
|
|
854
|
+
}, {
|
|
855
|
+
readonly type: "function";
|
|
856
|
+
readonly name: "setTimeout";
|
|
857
|
+
readonly stateMutability: "nonpayable";
|
|
858
|
+
readonly inputs: readonly [{
|
|
859
|
+
readonly name: "newTimeout";
|
|
860
|
+
readonly type: "uint32";
|
|
861
|
+
readonly internalType: "uint32";
|
|
862
|
+
}];
|
|
863
|
+
readonly outputs: readonly [];
|
|
864
|
+
}, {
|
|
865
|
+
readonly type: "function";
|
|
866
|
+
readonly name: "signingCohorts";
|
|
867
|
+
readonly stateMutability: "view";
|
|
868
|
+
readonly inputs: readonly [{
|
|
869
|
+
readonly name: "";
|
|
870
|
+
readonly type: "uint32";
|
|
871
|
+
readonly internalType: "uint32";
|
|
872
|
+
}];
|
|
873
|
+
readonly outputs: readonly [{
|
|
874
|
+
readonly name: "initiator";
|
|
875
|
+
readonly type: "address";
|
|
876
|
+
readonly internalType: "address";
|
|
877
|
+
}, {
|
|
878
|
+
readonly name: "initTimestamp";
|
|
879
|
+
readonly type: "uint32";
|
|
880
|
+
readonly internalType: "uint32";
|
|
881
|
+
}, {
|
|
882
|
+
readonly name: "endTimestamp";
|
|
883
|
+
readonly type: "uint32";
|
|
884
|
+
readonly internalType: "uint32";
|
|
885
|
+
}, {
|
|
886
|
+
readonly name: "authority";
|
|
887
|
+
readonly type: "address";
|
|
888
|
+
readonly internalType: "address";
|
|
889
|
+
}, {
|
|
890
|
+
readonly name: "totalSignatures";
|
|
891
|
+
readonly type: "uint16";
|
|
892
|
+
readonly internalType: "uint16";
|
|
893
|
+
}, {
|
|
894
|
+
readonly name: "numSigners";
|
|
895
|
+
readonly type: "uint16";
|
|
896
|
+
readonly internalType: "uint16";
|
|
897
|
+
}, {
|
|
898
|
+
readonly name: "threshold";
|
|
899
|
+
readonly type: "uint16";
|
|
900
|
+
readonly internalType: "uint16";
|
|
901
|
+
}];
|
|
902
|
+
}, {
|
|
903
|
+
readonly type: "function";
|
|
904
|
+
readonly name: "signingCoordinatorDispatcher";
|
|
905
|
+
readonly stateMutability: "view";
|
|
906
|
+
readonly inputs: readonly [];
|
|
907
|
+
readonly outputs: readonly [{
|
|
908
|
+
readonly name: "";
|
|
909
|
+
readonly type: "address";
|
|
910
|
+
readonly internalType: "contract SigningCoordinatorDispatcher";
|
|
911
|
+
}];
|
|
912
|
+
}, {
|
|
913
|
+
readonly type: "function";
|
|
914
|
+
readonly name: "supportsInterface";
|
|
915
|
+
readonly stateMutability: "view";
|
|
916
|
+
readonly inputs: readonly [{
|
|
917
|
+
readonly name: "interfaceId";
|
|
918
|
+
readonly type: "bytes4";
|
|
919
|
+
readonly internalType: "bytes4";
|
|
920
|
+
}];
|
|
921
|
+
readonly outputs: readonly [{
|
|
922
|
+
readonly name: "";
|
|
923
|
+
readonly type: "bool";
|
|
924
|
+
readonly internalType: "bool";
|
|
925
|
+
}];
|
|
926
|
+
}, {
|
|
927
|
+
readonly type: "function";
|
|
928
|
+
readonly name: "timeout";
|
|
929
|
+
readonly stateMutability: "view";
|
|
930
|
+
readonly inputs: readonly [];
|
|
931
|
+
readonly outputs: readonly [{
|
|
932
|
+
readonly name: "";
|
|
933
|
+
readonly type: "uint32";
|
|
934
|
+
readonly internalType: "uint32";
|
|
935
|
+
}];
|
|
936
|
+
}];
|
|
937
|
+
static createInterface(): SigningCoordinatorInterface;
|
|
938
|
+
static connect(address: string, signerOrProvider: Signer | Provider): SigningCoordinator;
|
|
939
|
+
}
|