ox 1.7.1 → 1.7.4
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/CHANGELOG.md +42 -0
- package/dist/core/Hash.js +1 -1
- package/dist/core/Hash.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +2 -2
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +151 -83
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +164 -86
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +340 -0
- package/dist/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/tempo/MultisigOperation.js +839 -0
- package/dist/tempo/MultisigOperation.js.map +1 -0
- package/dist/tempo/MultisigSimulation.d.ts +132 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +140 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +45 -0
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +55 -86
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +93 -158
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +9 -17
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +7 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.d.ts +3 -2
- package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.js +3 -2
- package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
- package/dist/tempo/index.d.ts +22 -2
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +22 -2
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +60 -180
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +65 -118
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.d.ts +31 -2
- package/dist/zod/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.js +26 -3
- package/dist/zod/tempo/MultisigConfig.js.map +1 -1
- package/dist/zod/tempo/MultisigOperation.d.ts +158 -0
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigOperation.js +62 -0
- package/dist/zod/tempo/MultisigOperation.js.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts +120 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.js +78 -0
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +528 -144
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +47 -0
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +18 -54
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +5 -22
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +138 -348
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +286 -239
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +11 -22
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +60 -48
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +15 -12
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +2 -0
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +2 -0
- package/dist/zod/tempo/z.js.map +1 -1
- package/package.json +21 -1
- package/src/core/Hash.ts +1 -1
- package/src/core/_test/Hash.test.ts +15 -0
- package/src/tempo/AuthorizationTempo.test.ts +4 -0
- package/src/tempo/KeyAuthorization.test-d.ts +13 -12
- package/src/tempo/KeyAuthorization.test.ts +109 -3
- package/src/tempo/KeyAuthorization.ts +4 -4
- package/src/tempo/MultisigConfig.test-d.ts +52 -0
- package/src/tempo/MultisigConfig.test.ts +288 -227
- package/src/tempo/MultisigConfig.ts +275 -104
- package/src/tempo/MultisigOperation.test-d.ts +79 -0
- package/src/tempo/MultisigOperation.test.ts +1950 -0
- package/src/tempo/MultisigOperation.ts +1293 -0
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +283 -0
- package/src/tempo/MultisigSimulation.ts +266 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +91 -0
- package/src/tempo/RpcSchemaTempo.ts +46 -0
- package/src/tempo/SignatureEnvelope.test-d.ts +33 -72
- package/src/tempo/SignatureEnvelope.test.ts +533 -500
- package/src/tempo/SignatureEnvelope.ts +171 -258
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +11 -0
- package/src/tempo/TransactionRequest.test.ts +214 -41
- package/src/tempo/TransactionRequest.ts +19 -20
- package/src/tempo/TxEnvelopeTempo.test-d.ts +7 -0
- package/src/tempo/TxEnvelopeTempo.test.ts +25 -0
- package/src/tempo/TxEnvelopeTempo.ts +5 -3
- package/src/tempo/index.ts +22 -2
- package/src/tempo/multisig.e2e.test.ts +164 -87
- package/src/version.ts +1 -1
- package/src/zod/tempo/MultisigConfig.ts +29 -3
- package/src/zod/tempo/MultisigOperation.ts +66 -0
- package/src/zod/tempo/MultisigSimulation.ts +98 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +53 -0
- package/src/zod/tempo/SignatureEnvelope.ts +12 -54
- package/src/zod/tempo/TransactionRequest.ts +17 -26
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +2 -4
- package/src/zod/tempo/_test/MultisigConfig.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigConfig.test.ts +13 -2
- package/src/zod/tempo/_test/MultisigOperation.test-d.ts +27 -0
- package/src/zod/tempo/_test/MultisigOperation.test.ts +66 -0
- package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +78 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +48 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +83 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +1 -1
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +57 -120
- package/src/zod/tempo/_test/TransactionRequest.test.ts +43 -16
- package/src/zod/tempo/z.ts +2 -0
|
@@ -37,20 +37,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
37
37
|
type: z.ZodMiniLiteral<"keychain">;
|
|
38
38
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
39
39
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
40
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
41
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
42
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
43
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
44
|
-
init: z.ZodMiniObject<{
|
|
45
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
46
|
-
threshold: z.ZodMiniNumber<number>;
|
|
47
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
48
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
49
|
-
weight: z.ZodMiniNumber<number>;
|
|
50
|
-
}, z.core.$strip>>>;
|
|
51
|
-
}, z.core.$strip>;
|
|
52
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
53
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
40
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
54
41
|
signature: z.ZodMiniObject<{
|
|
55
42
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
56
43
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -92,14 +79,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
92
79
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
93
80
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
94
81
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
95
|
-
|
|
96
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
97
|
-
threshold: z.ZodMiniNumber<number>;
|
|
82
|
+
config: z.ZodMiniObject<{
|
|
98
83
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
99
84
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
100
85
|
weight: z.ZodMiniNumber<number>;
|
|
101
86
|
}, z.core.$strip>>>;
|
|
102
|
-
|
|
87
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
88
|
+
threshold: z.ZodMiniNumber<number>;
|
|
89
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
90
|
+
}, z.core.$strip>;
|
|
103
91
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
104
92
|
type: z.ZodMiniLiteral<"multisig">;
|
|
105
93
|
}, z.core.$strip>]>>;
|
|
@@ -169,20 +157,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
169
157
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
158
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
171
159
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
172
|
-
}, z.core.$strip>]>, z.
|
|
173
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
174
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
175
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
176
|
-
init: z.ZodMiniObject<{
|
|
177
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
178
|
-
threshold: z.ZodMiniNumber<number>;
|
|
179
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
180
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
181
|
-
weight: z.ZodMiniNumber<number>;
|
|
182
|
-
}, z.core.$strip>>>;
|
|
183
|
-
}, z.core.$strip>;
|
|
184
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
185
|
-
}, z.core.$strict>]>]>;
|
|
160
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
186
161
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
187
162
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
188
163
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -236,14 +211,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
236
211
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
237
212
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
238
213
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
239
|
-
|
|
240
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
241
|
-
threshold: z.ZodMiniNumber<number>;
|
|
214
|
+
config: z.ZodMiniObject<{
|
|
242
215
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
243
216
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
217
|
weight: z.ZodMiniNumber<number>;
|
|
245
218
|
}, z.core.$strip>>>;
|
|
246
|
-
|
|
219
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
220
|
+
threshold: z.ZodMiniNumber<number>;
|
|
221
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
222
|
+
}, z.core.$strip>;
|
|
247
223
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
248
224
|
type: z.ZodMiniLiteral<"multisig">;
|
|
249
225
|
}, z.core.$strip>]>;
|
|
@@ -299,14 +275,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
299
275
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
300
276
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
301
277
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
302
|
-
|
|
303
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
304
|
-
threshold: z.ZodMiniNumber<number>;
|
|
278
|
+
config: z.ZodMiniObject<{
|
|
305
279
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
306
280
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
307
281
|
weight: z.ZodMiniNumber<number>;
|
|
308
282
|
}, z.core.$strip>>>;
|
|
309
|
-
|
|
283
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
284
|
+
threshold: z.ZodMiniNumber<number>;
|
|
285
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
286
|
+
}, z.core.$strip>;
|
|
310
287
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
311
288
|
type: z.ZodMiniLiteral<"multisig">;
|
|
312
289
|
}, z.core.$strip>]>;
|
|
@@ -343,20 +320,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
343
320
|
type: z.ZodMiniLiteral<"keychain">;
|
|
344
321
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
345
322
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
346
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
347
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
348
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
349
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
350
|
-
init: z.ZodMiniObject<{
|
|
351
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
352
|
-
threshold: z.ZodMiniNumber<number>;
|
|
353
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
354
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
|
-
weight: z.ZodMiniNumber<number>;
|
|
356
|
-
}, z.core.$strip>>>;
|
|
357
|
-
}, z.core.$strip>;
|
|
358
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
359
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
323
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
360
324
|
signature: z.ZodMiniObject<{
|
|
361
325
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
362
326
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -398,14 +362,15 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
398
362
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
399
363
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
400
364
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
401
|
-
|
|
402
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
403
|
-
threshold: z.ZodMiniNumber<number>;
|
|
365
|
+
config: z.ZodMiniObject<{
|
|
404
366
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
405
367
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
406
368
|
weight: z.ZodMiniNumber<number>;
|
|
407
369
|
}, z.core.$strip>>>;
|
|
408
|
-
|
|
370
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
371
|
+
threshold: z.ZodMiniNumber<number>;
|
|
372
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
373
|
+
}, z.core.$strip>;
|
|
409
374
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
410
375
|
type: z.ZodMiniLiteral<"multisig">;
|
|
411
376
|
}, z.core.$strip>]>>;
|
|
@@ -452,20 +417,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
452
417
|
type: z.ZodMiniLiteral<"keychain">;
|
|
453
418
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
454
419
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
455
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
456
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
457
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
458
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
459
|
-
init: z.ZodMiniObject<{
|
|
460
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
461
|
-
threshold: z.ZodMiniNumber<number>;
|
|
462
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
463
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
464
|
-
weight: z.ZodMiniNumber<number>;
|
|
465
|
-
}, z.core.$strip>>>;
|
|
466
|
-
}, z.core.$strip>;
|
|
467
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
468
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
420
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
469
421
|
signature: z.ZodMiniObject<{
|
|
470
422
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
471
423
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -507,14 +459,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
507
459
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
508
460
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
509
461
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
510
|
-
|
|
511
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
512
|
-
threshold: z.ZodMiniNumber<number>;
|
|
462
|
+
config: z.ZodMiniObject<{
|
|
513
463
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
514
464
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
515
465
|
weight: z.ZodMiniNumber<number>;
|
|
516
466
|
}, z.core.$strip>>>;
|
|
517
|
-
|
|
467
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
468
|
+
threshold: z.ZodMiniNumber<number>;
|
|
469
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
470
|
+
}, z.core.$strip>;
|
|
518
471
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
519
472
|
type: z.ZodMiniLiteral<"multisig">;
|
|
520
473
|
}, z.core.$strip>]>>;
|
|
@@ -584,20 +537,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
584
537
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
585
538
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
586
539
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
587
|
-
}, z.core.$strip>]>, z.
|
|
588
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
589
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
590
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
591
|
-
init: z.ZodMiniObject<{
|
|
592
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
593
|
-
threshold: z.ZodMiniNumber<number>;
|
|
594
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
595
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
596
|
-
weight: z.ZodMiniNumber<number>;
|
|
597
|
-
}, z.core.$strip>>>;
|
|
598
|
-
}, z.core.$strip>;
|
|
599
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
600
|
-
}, z.core.$strict>]>]>;
|
|
540
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
601
541
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
602
542
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
603
543
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -651,14 +591,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
651
591
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
652
592
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
653
593
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
654
|
-
|
|
655
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
656
|
-
threshold: z.ZodMiniNumber<number>;
|
|
594
|
+
config: z.ZodMiniObject<{
|
|
657
595
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
658
596
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
659
597
|
weight: z.ZodMiniNumber<number>;
|
|
660
598
|
}, z.core.$strip>>>;
|
|
661
|
-
|
|
599
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
600
|
+
threshold: z.ZodMiniNumber<number>;
|
|
601
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
602
|
+
}, z.core.$strip>;
|
|
662
603
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
663
604
|
type: z.ZodMiniLiteral<"multisig">;
|
|
664
605
|
}, z.core.$strip>]>;
|
|
@@ -714,14 +655,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
714
655
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
715
656
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
716
657
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
717
|
-
|
|
718
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
719
|
-
threshold: z.ZodMiniNumber<number>;
|
|
658
|
+
config: z.ZodMiniObject<{
|
|
720
659
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
721
660
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
722
661
|
weight: z.ZodMiniNumber<number>;
|
|
723
662
|
}, z.core.$strip>>>;
|
|
724
|
-
|
|
663
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
664
|
+
threshold: z.ZodMiniNumber<number>;
|
|
665
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
666
|
+
}, z.core.$strip>;
|
|
725
667
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
726
668
|
type: z.ZodMiniLiteral<"multisig">;
|
|
727
669
|
}, z.core.$strip>]>;
|
|
@@ -758,20 +700,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
758
700
|
type: z.ZodMiniLiteral<"keychain">;
|
|
759
701
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
760
702
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
761
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
762
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
763
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
764
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
765
|
-
init: z.ZodMiniObject<{
|
|
766
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
767
|
-
threshold: z.ZodMiniNumber<number>;
|
|
768
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
769
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
770
|
-
weight: z.ZodMiniNumber<number>;
|
|
771
|
-
}, z.core.$strip>>>;
|
|
772
|
-
}, z.core.$strip>;
|
|
773
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
774
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
703
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
775
704
|
signature: z.ZodMiniObject<{
|
|
776
705
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
777
706
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -813,14 +742,15 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
813
742
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
814
743
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
815
744
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
816
|
-
|
|
817
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
818
|
-
threshold: z.ZodMiniNumber<number>;
|
|
745
|
+
config: z.ZodMiniObject<{
|
|
819
746
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
820
747
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
821
748
|
weight: z.ZodMiniNumber<number>;
|
|
822
749
|
}, z.core.$strip>>>;
|
|
823
|
-
|
|
750
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
751
|
+
threshold: z.ZodMiniNumber<number>;
|
|
752
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
753
|
+
}, z.core.$strip>;
|
|
824
754
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
825
755
|
type: z.ZodMiniLiteral<"multisig">;
|
|
826
756
|
}, z.core.$strip>]>>;
|
|
@@ -871,20 +801,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
871
801
|
type: z.ZodMiniLiteral<"keychain">;
|
|
872
802
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
873
803
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
874
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
875
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
876
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
877
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
878
|
-
init: z.ZodMiniObject<{
|
|
879
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
880
|
-
threshold: z.ZodMiniNumber<number>;
|
|
881
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
882
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
883
|
-
weight: z.ZodMiniNumber<number>;
|
|
884
|
-
}, z.core.$strip>>>;
|
|
885
|
-
}, z.core.$strip>;
|
|
886
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
887
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
804
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
888
805
|
signature: z.ZodMiniObject<{
|
|
889
806
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
890
807
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -926,14 +843,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
926
843
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
927
844
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
928
845
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
929
|
-
|
|
930
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
931
|
-
threshold: z.ZodMiniNumber<number>;
|
|
846
|
+
config: z.ZodMiniObject<{
|
|
932
847
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
933
848
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
934
849
|
weight: z.ZodMiniNumber<number>;
|
|
935
850
|
}, z.core.$strip>>>;
|
|
936
|
-
|
|
851
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
852
|
+
threshold: z.ZodMiniNumber<number>;
|
|
853
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
854
|
+
}, z.core.$strip>;
|
|
937
855
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
938
856
|
type: z.ZodMiniLiteral<"multisig">;
|
|
939
857
|
}, z.core.$strip>]>>;
|
|
@@ -1000,20 +918,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1000
918
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1001
919
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1002
920
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1003
|
-
}, z.core.$strip>]>, z.
|
|
1004
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1005
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1006
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1007
|
-
init: z.ZodMiniObject<{
|
|
1008
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1009
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1010
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1011
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1012
|
-
weight: z.ZodMiniNumber<number>;
|
|
1013
|
-
}, z.core.$strip>>>;
|
|
1014
|
-
}, z.core.$strip>;
|
|
1015
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1016
|
-
}, z.core.$strict>]>]>;
|
|
921
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1017
922
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1018
923
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1019
924
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1067,14 +972,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1067
972
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1068
973
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1069
974
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1070
|
-
|
|
1071
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1072
|
-
threshold: z.ZodMiniNumber<number>;
|
|
975
|
+
config: z.ZodMiniObject<{
|
|
1073
976
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1074
977
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1075
978
|
weight: z.ZodMiniNumber<number>;
|
|
1076
979
|
}, z.core.$strip>>>;
|
|
1077
|
-
|
|
980
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
981
|
+
threshold: z.ZodMiniNumber<number>;
|
|
982
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
983
|
+
}, z.core.$strip>;
|
|
1078
984
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1079
985
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1080
986
|
}, z.core.$strip>]>;
|
|
@@ -1130,14 +1036,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1130
1036
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1131
1037
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1132
1038
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1133
|
-
|
|
1134
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1135
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1039
|
+
config: z.ZodMiniObject<{
|
|
1136
1040
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1137
1041
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1138
1042
|
weight: z.ZodMiniNumber<number>;
|
|
1139
1043
|
}, z.core.$strip>>>;
|
|
1140
|
-
|
|
1044
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1045
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1046
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1047
|
+
}, z.core.$strip>;
|
|
1141
1048
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1142
1049
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1143
1050
|
}, z.core.$strip>]>;
|
|
@@ -1174,20 +1081,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1174
1081
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1175
1082
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1176
1083
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1177
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1178
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1179
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1180
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1181
|
-
init: z.ZodMiniObject<{
|
|
1182
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1183
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1184
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1185
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1186
|
-
weight: z.ZodMiniNumber<number>;
|
|
1187
|
-
}, z.core.$strip>>>;
|
|
1188
|
-
}, z.core.$strip>;
|
|
1189
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1190
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1084
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1191
1085
|
signature: z.ZodMiniObject<{
|
|
1192
1086
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1193
1087
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1229,14 +1123,15 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1229
1123
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1230
1124
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1231
1125
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1232
|
-
|
|
1233
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1234
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1126
|
+
config: z.ZodMiniObject<{
|
|
1235
1127
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1236
1128
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1237
1129
|
weight: z.ZodMiniNumber<number>;
|
|
1238
1130
|
}, z.core.$strip>>>;
|
|
1239
|
-
|
|
1131
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1132
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1133
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1134
|
+
}, z.core.$strip>;
|
|
1240
1135
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1241
1136
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1242
1137
|
}, z.core.$strip>]>>;
|
|
@@ -1282,20 +1177,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1282
1177
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1283
1178
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1284
1179
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1285
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1286
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1287
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1288
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1289
|
-
init: z.ZodMiniObject<{
|
|
1290
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1291
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1292
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1293
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1294
|
-
weight: z.ZodMiniNumber<number>;
|
|
1295
|
-
}, z.core.$strip>>>;
|
|
1296
|
-
}, z.core.$strip>;
|
|
1297
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1298
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1180
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1299
1181
|
signature: z.ZodMiniObject<{
|
|
1300
1182
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1301
1183
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1337,14 +1219,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1337
1219
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1338
1220
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1339
1221
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1340
|
-
|
|
1341
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1342
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1222
|
+
config: z.ZodMiniObject<{
|
|
1343
1223
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1344
1224
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1345
1225
|
weight: z.ZodMiniNumber<number>;
|
|
1346
1226
|
}, z.core.$strip>>>;
|
|
1347
|
-
|
|
1227
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1228
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1229
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1230
|
+
}, z.core.$strip>;
|
|
1348
1231
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1349
1232
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1350
1233
|
}, z.core.$strip>]>>;
|
|
@@ -1414,20 +1297,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1414
1297
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1415
1298
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1416
1299
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1417
|
-
}, z.core.$strip>]>, z.
|
|
1418
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1419
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1420
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1421
|
-
init: z.ZodMiniObject<{
|
|
1422
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1423
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1424
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1425
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1426
|
-
weight: z.ZodMiniNumber<number>;
|
|
1427
|
-
}, z.core.$strip>>>;
|
|
1428
|
-
}, z.core.$strip>;
|
|
1429
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1430
|
-
}, z.core.$strict>]>]>;
|
|
1300
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1431
1301
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1432
1302
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1433
1303
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1481,14 +1351,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1481
1351
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1482
1352
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1483
1353
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1484
|
-
|
|
1485
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1486
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1354
|
+
config: z.ZodMiniObject<{
|
|
1487
1355
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1488
1356
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1489
1357
|
weight: z.ZodMiniNumber<number>;
|
|
1490
1358
|
}, z.core.$strip>>>;
|
|
1491
|
-
|
|
1359
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1360
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1361
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1362
|
+
}, z.core.$strip>;
|
|
1492
1363
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1493
1364
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1494
1365
|
}, z.core.$strip>]>;
|
|
@@ -1544,14 +1415,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1544
1415
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1545
1416
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1546
1417
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1547
|
-
|
|
1548
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1549
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1418
|
+
config: z.ZodMiniObject<{
|
|
1550
1419
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1551
1420
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1552
1421
|
weight: z.ZodMiniNumber<number>;
|
|
1553
1422
|
}, z.core.$strip>>>;
|
|
1554
|
-
|
|
1423
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1424
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1425
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1426
|
+
}, z.core.$strip>;
|
|
1555
1427
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1556
1428
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1557
1429
|
}, z.core.$strip>]>;
|
|
@@ -1588,20 +1460,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1588
1460
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1589
1461
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1590
1462
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1591
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1592
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1593
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1594
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1595
|
-
init: z.ZodMiniObject<{
|
|
1596
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1597
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1598
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1599
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1600
|
-
weight: z.ZodMiniNumber<number>;
|
|
1601
|
-
}, z.core.$strip>>>;
|
|
1602
|
-
}, z.core.$strip>;
|
|
1603
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1604
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1463
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1605
1464
|
signature: z.ZodMiniObject<{
|
|
1606
1465
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1607
1466
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1643,14 +1502,15 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1643
1502
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1644
1503
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1645
1504
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1646
|
-
|
|
1647
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1648
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1505
|
+
config: z.ZodMiniObject<{
|
|
1649
1506
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1650
1507
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1651
1508
|
weight: z.ZodMiniNumber<number>;
|
|
1652
1509
|
}, z.core.$strip>>>;
|
|
1653
|
-
|
|
1510
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1511
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1512
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1513
|
+
}, z.core.$strip>;
|
|
1654
1514
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1655
1515
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1656
1516
|
}, z.core.$strip>]>>;
|
|
@@ -1846,20 +1706,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1846
1706
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1847
1707
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1848
1708
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1849
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1850
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1851
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1852
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1853
|
-
init: z.ZodMiniObject<{
|
|
1854
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1855
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1856
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1857
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1858
|
-
weight: z.ZodMiniNumber<number>;
|
|
1859
|
-
}, z.core.$strip>>>;
|
|
1860
|
-
}, z.core.$strip>;
|
|
1861
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1862
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1709
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1863
1710
|
signature: z.ZodMiniObject<{
|
|
1864
1711
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1865
1712
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1901,14 +1748,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1901
1748
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1902
1749
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1903
1750
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1904
|
-
|
|
1905
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1906
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1751
|
+
config: z.ZodMiniObject<{
|
|
1907
1752
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1908
1753
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1909
1754
|
weight: z.ZodMiniNumber<number>;
|
|
1910
1755
|
}, z.core.$strip>>>;
|
|
1911
|
-
|
|
1756
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1757
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1758
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1759
|
+
}, z.core.$strip>;
|
|
1912
1760
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1913
1761
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1914
1762
|
}, z.core.$strip>]>>;
|
|
@@ -1978,20 +1826,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1978
1826
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1979
1827
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1980
1828
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1981
|
-
}, z.core.$strip>]>, z.
|
|
1982
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1983
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1984
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1985
|
-
init: z.ZodMiniObject<{
|
|
1986
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1987
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1988
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1989
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1990
|
-
weight: z.ZodMiniNumber<number>;
|
|
1991
|
-
}, z.core.$strip>>>;
|
|
1992
|
-
}, z.core.$strip>;
|
|
1993
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
1994
|
-
}, z.core.$strict>]>]>;
|
|
1829
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
1995
1830
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1996
1831
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1997
1832
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2045,14 +1880,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2045
1880
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2046
1881
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2047
1882
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2048
|
-
|
|
2049
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2050
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1883
|
+
config: z.ZodMiniObject<{
|
|
2051
1884
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2052
1885
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2053
1886
|
weight: z.ZodMiniNumber<number>;
|
|
2054
1887
|
}, z.core.$strip>>>;
|
|
2055
|
-
|
|
1888
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1889
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1890
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1891
|
+
}, z.core.$strip>;
|
|
2056
1892
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2057
1893
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2058
1894
|
}, z.core.$strip>]>;
|
|
@@ -2108,14 +1944,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2108
1944
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2109
1945
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2110
1946
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2111
|
-
|
|
2112
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2113
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1947
|
+
config: z.ZodMiniObject<{
|
|
2114
1948
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2115
1949
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2116
1950
|
weight: z.ZodMiniNumber<number>;
|
|
2117
1951
|
}, z.core.$strip>>>;
|
|
2118
|
-
|
|
1952
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1953
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1954
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1955
|
+
}, z.core.$strip>;
|
|
2119
1956
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2120
1957
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2121
1958
|
}, z.core.$strip>]>;
|
|
@@ -2152,20 +1989,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2152
1989
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2153
1990
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2154
1991
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2155
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2156
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2157
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2158
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2159
|
-
init: z.ZodMiniObject<{
|
|
2160
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2161
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2162
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2163
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2164
|
-
weight: z.ZodMiniNumber<number>;
|
|
2165
|
-
}, z.core.$strip>>>;
|
|
2166
|
-
}, z.core.$strip>;
|
|
2167
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2168
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1992
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2169
1993
|
signature: z.ZodMiniObject<{
|
|
2170
1994
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2171
1995
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2207,14 +2031,15 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2207
2031
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2208
2032
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2209
2033
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2210
|
-
|
|
2211
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2212
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2034
|
+
config: z.ZodMiniObject<{
|
|
2213
2035
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2214
2036
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2215
2037
|
weight: z.ZodMiniNumber<number>;
|
|
2216
2038
|
}, z.core.$strip>>>;
|
|
2217
|
-
|
|
2039
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2040
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2041
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2042
|
+
}, z.core.$strip>;
|
|
2218
2043
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2219
2044
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2220
2045
|
}, z.core.$strip>]>>;
|
|
@@ -2414,20 +2239,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2414
2239
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2415
2240
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2416
2241
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2417
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2418
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2419
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2420
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2421
|
-
init: z.ZodMiniObject<{
|
|
2422
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2423
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2424
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2425
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2426
|
-
weight: z.ZodMiniNumber<number>;
|
|
2427
|
-
}, z.core.$strip>>>;
|
|
2428
|
-
}, z.core.$strip>;
|
|
2429
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2430
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2242
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2431
2243
|
signature: z.ZodMiniObject<{
|
|
2432
2244
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2433
2245
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2469,14 +2281,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2469
2281
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2470
2282
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2471
2283
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2472
|
-
|
|
2473
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2474
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2284
|
+
config: z.ZodMiniObject<{
|
|
2475
2285
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2476
2286
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2477
2287
|
weight: z.ZodMiniNumber<number>;
|
|
2478
2288
|
}, z.core.$strip>>>;
|
|
2479
|
-
|
|
2289
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2290
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2291
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2292
|
+
}, z.core.$strip>;
|
|
2480
2293
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2481
2294
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2482
2295
|
}, z.core.$strip>]>>;
|
|
@@ -2543,20 +2356,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2543
2356
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2544
2357
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2545
2358
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2546
|
-
}, z.core.$strip>]>, z.
|
|
2547
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2548
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2549
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2550
|
-
init: z.ZodMiniObject<{
|
|
2551
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2552
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2553
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2554
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2555
|
-
weight: z.ZodMiniNumber<number>;
|
|
2556
|
-
}, z.core.$strip>>>;
|
|
2557
|
-
}, z.core.$strip>;
|
|
2558
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2559
|
-
}, z.core.$strict>]>]>;
|
|
2359
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
2560
2360
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2561
2361
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2562
2362
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2610,14 +2410,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2610
2410
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2611
2411
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2612
2412
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2613
|
-
|
|
2614
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2615
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2413
|
+
config: z.ZodMiniObject<{
|
|
2616
2414
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2617
2415
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2618
2416
|
weight: z.ZodMiniNumber<number>;
|
|
2619
2417
|
}, z.core.$strip>>>;
|
|
2620
|
-
|
|
2418
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2419
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2420
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2421
|
+
}, z.core.$strip>;
|
|
2621
2422
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2622
2423
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2623
2424
|
}, z.core.$strip>]>;
|
|
@@ -2673,14 +2474,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2673
2474
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2674
2475
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2675
2476
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2676
|
-
|
|
2677
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2678
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2477
|
+
config: z.ZodMiniObject<{
|
|
2679
2478
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2680
2479
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2681
2480
|
weight: z.ZodMiniNumber<number>;
|
|
2682
2481
|
}, z.core.$strip>>>;
|
|
2683
|
-
|
|
2482
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2483
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2484
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2485
|
+
}, z.core.$strip>;
|
|
2684
2486
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2685
2487
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2686
2488
|
}, z.core.$strip>]>;
|
|
@@ -2717,20 +2519,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2717
2519
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2718
2520
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2719
2521
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2720
|
-
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2721
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2722
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2723
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2724
|
-
init: z.ZodMiniObject<{
|
|
2725
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2726
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2727
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2728
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2729
|
-
weight: z.ZodMiniNumber<number>;
|
|
2730
|
-
}, z.core.$strip>>>;
|
|
2731
|
-
}, z.core.$strip>;
|
|
2732
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
|
|
2733
|
-
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2522
|
+
}, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2734
2523
|
signature: z.ZodMiniObject<{
|
|
2735
2524
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2736
2525
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2772,14 +2561,15 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2772
2561
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2773
2562
|
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2774
2563
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2775
|
-
|
|
2776
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2777
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2564
|
+
config: z.ZodMiniObject<{
|
|
2778
2565
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2779
2566
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2780
2567
|
weight: z.ZodMiniNumber<number>;
|
|
2781
2568
|
}, z.core.$strip>>>;
|
|
2782
|
-
|
|
2569
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2570
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2571
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
2572
|
+
}, z.core.$strip>;
|
|
2783
2573
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2784
2574
|
type: z.ZodMiniLiteral<"multisig">;
|
|
2785
2575
|
}, z.core.$strip>]>>;
|