ox 1.0.1 → 1.0.3
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 +12 -0
- package/dist/tempo/KeyAuthorization.d.ts +22 -16
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/KeyAuthorization.js +31 -7
- package/dist/tempo/KeyAuthorization.js.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +8 -4
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +16 -4
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +31 -13
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +172 -55
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +70 -60
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +0 -306
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.js +2 -2
- package/dist/zod/tempo/KeyAuthorization.js.map +1 -1
- package/dist/zod/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.js +5 -2
- package/dist/zod/tempo/MultisigConfig.js.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +28 -132
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +79 -18
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +39 -11
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +84 -396
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +42 -234
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +0 -108
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/tempo/KeyAuthorization.test-d.ts +62 -0
- package/src/tempo/KeyAuthorization.test.ts +53 -0
- package/src/tempo/KeyAuthorization.ts +69 -27
- package/src/tempo/MultisigConfig.test.ts +34 -2
- package/src/tempo/MultisigConfig.ts +18 -4
- package/src/tempo/SignatureEnvelope.test-d.ts +97 -0
- package/src/tempo/SignatureEnvelope.test.ts +247 -36
- package/src/tempo/SignatureEnvelope.ts +271 -85
- package/src/tempo/e2e.test.ts +0 -416
- package/src/tempo/multisig.e2e.test.ts +582 -0
- package/src/version.ts +1 -1
- package/src/zod/tempo/KeyAuthorization.ts +2 -2
- package/src/zod/tempo/MultisigConfig.ts +13 -5
- package/src/zod/tempo/SignatureEnvelope.ts +81 -18
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +25 -0
- package/src/zod/tempo/_test/MultisigConfig.test.ts +44 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +9 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +142 -6
|
@@ -37,19 +37,20 @@ 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.ZodMiniObject<{
|
|
40
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
41
41
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
42
|
-
|
|
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<{
|
|
43
45
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
44
46
|
threshold: z.ZodMiniNumber<number>;
|
|
45
47
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
46
48
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
47
49
|
weight: z.ZodMiniNumber<number>;
|
|
48
50
|
}, z.core.$strip>>>;
|
|
49
|
-
}, z.core.$strip
|
|
50
|
-
signatures: z.
|
|
51
|
-
|
|
52
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
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<{
|
|
53
54
|
signature: z.ZodMiniObject<{
|
|
54
55
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
55
56
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -168,24 +169,6 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
168
169
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
169
170
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
170
171
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
171
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
172
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
173
|
-
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
174
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
175
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
176
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
177
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
178
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
179
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
180
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
181
|
-
threshold: z.ZodMiniNumber<number>;
|
|
182
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
183
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
184
|
-
weight: z.ZodMiniNumber<number>;
|
|
185
|
-
}, z.core.$strip>>>;
|
|
186
|
-
}, z.core.$strip>>;
|
|
187
|
-
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
188
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
189
172
|
}, z.core.$strip>]>;
|
|
190
173
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
191
174
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -238,24 +221,6 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
238
221
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
239
222
|
}, z.core.$strip>;
|
|
240
223
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
241
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
242
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
243
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
244
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
245
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
246
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
247
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
248
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
249
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
250
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
251
|
-
threshold: z.ZodMiniNumber<number>;
|
|
252
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
253
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
254
|
-
weight: z.ZodMiniNumber<number>;
|
|
255
|
-
}, z.core.$strip>>>;
|
|
256
|
-
}, z.core.$strip>>;
|
|
257
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
258
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
259
224
|
}, z.core.$strip>]>;
|
|
260
225
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
261
226
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -307,24 +272,6 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
307
272
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
308
273
|
}, z.core.$strip>;
|
|
309
274
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
310
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
311
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
312
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
313
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
314
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
315
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
316
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
317
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
318
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
319
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
320
|
-
threshold: z.ZodMiniNumber<number>;
|
|
321
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
322
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
323
|
-
weight: z.ZodMiniNumber<number>;
|
|
324
|
-
}, z.core.$strip>>>;
|
|
325
|
-
}, z.core.$strip>>;
|
|
326
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
327
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
328
275
|
}, z.core.$strip>]>;
|
|
329
276
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
330
277
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -359,19 +306,20 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
359
306
|
type: z.ZodMiniLiteral<"keychain">;
|
|
360
307
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
361
308
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
362
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
309
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
363
310
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
364
|
-
|
|
311
|
+
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[]>>>;
|
|
312
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
313
|
+
init: z.ZodMiniObject<{
|
|
365
314
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
366
315
|
threshold: z.ZodMiniNumber<number>;
|
|
367
316
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
368
317
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
369
318
|
weight: z.ZodMiniNumber<number>;
|
|
370
319
|
}, z.core.$strip>>>;
|
|
371
|
-
}, z.core.$strip
|
|
372
|
-
signatures: z.
|
|
373
|
-
|
|
374
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
320
|
+
}, z.core.$strip>;
|
|
321
|
+
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[]>>>;
|
|
322
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
375
323
|
signature: z.ZodMiniObject<{
|
|
376
324
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
377
325
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -467,19 +415,20 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
467
415
|
type: z.ZodMiniLiteral<"keychain">;
|
|
468
416
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
469
417
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
470
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
418
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
471
419
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
472
|
-
|
|
420
|
+
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[]>>>;
|
|
421
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
422
|
+
init: z.ZodMiniObject<{
|
|
473
423
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
474
424
|
threshold: z.ZodMiniNumber<number>;
|
|
475
425
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
476
426
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
477
427
|
weight: z.ZodMiniNumber<number>;
|
|
478
428
|
}, z.core.$strip>>>;
|
|
479
|
-
}, z.core.$strip
|
|
480
|
-
signatures: z.
|
|
481
|
-
|
|
482
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
429
|
+
}, z.core.$strip>;
|
|
430
|
+
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[]>>>;
|
|
431
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
483
432
|
signature: z.ZodMiniObject<{
|
|
484
433
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
485
434
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -598,24 +547,6 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
598
547
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
599
548
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
600
549
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
601
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
602
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
603
|
-
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
604
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
605
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
606
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
607
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
608
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
609
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
610
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
611
|
-
threshold: z.ZodMiniNumber<number>;
|
|
612
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
613
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
614
|
-
weight: z.ZodMiniNumber<number>;
|
|
615
|
-
}, z.core.$strip>>>;
|
|
616
|
-
}, z.core.$strip>>;
|
|
617
|
-
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
618
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
619
550
|
}, z.core.$strip>]>;
|
|
620
551
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
621
552
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -668,24 +599,6 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
668
599
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
669
600
|
}, z.core.$strip>;
|
|
670
601
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
671
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
672
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
673
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
674
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
675
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
676
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
677
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
678
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
679
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
680
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
681
|
-
threshold: z.ZodMiniNumber<number>;
|
|
682
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
683
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
684
|
-
weight: z.ZodMiniNumber<number>;
|
|
685
|
-
}, z.core.$strip>>>;
|
|
686
|
-
}, z.core.$strip>>;
|
|
687
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
688
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
689
602
|
}, z.core.$strip>]>;
|
|
690
603
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
691
604
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -737,24 +650,6 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
737
650
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
738
651
|
}, z.core.$strip>;
|
|
739
652
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
740
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
741
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
742
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
743
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
744
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
745
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
746
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
747
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
748
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
749
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
750
|
-
threshold: z.ZodMiniNumber<number>;
|
|
751
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
752
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
753
|
-
weight: z.ZodMiniNumber<number>;
|
|
754
|
-
}, z.core.$strip>>>;
|
|
755
|
-
}, z.core.$strip>>;
|
|
756
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
757
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
758
653
|
}, z.core.$strip>]>;
|
|
759
654
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
760
655
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -789,19 +684,20 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
789
684
|
type: z.ZodMiniLiteral<"keychain">;
|
|
790
685
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
791
686
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
792
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
687
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
793
688
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
794
|
-
|
|
689
|
+
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[]>>>;
|
|
690
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
691
|
+
init: z.ZodMiniObject<{
|
|
795
692
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
796
693
|
threshold: z.ZodMiniNumber<number>;
|
|
797
694
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
798
695
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
799
696
|
weight: z.ZodMiniNumber<number>;
|
|
800
697
|
}, z.core.$strip>>>;
|
|
801
|
-
}, z.core.$strip
|
|
802
|
-
signatures: z.
|
|
803
|
-
|
|
804
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
698
|
+
}, z.core.$strip>;
|
|
699
|
+
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[]>>>;
|
|
700
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
805
701
|
signature: z.ZodMiniObject<{
|
|
806
702
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
807
703
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -901,19 +797,20 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
901
797
|
type: z.ZodMiniLiteral<"keychain">;
|
|
902
798
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
903
799
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
904
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
800
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
905
801
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
906
|
-
|
|
802
|
+
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[]>>>;
|
|
803
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
804
|
+
init: z.ZodMiniObject<{
|
|
907
805
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
908
806
|
threshold: z.ZodMiniNumber<number>;
|
|
909
807
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
910
808
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
911
809
|
weight: z.ZodMiniNumber<number>;
|
|
912
810
|
}, z.core.$strip>>>;
|
|
913
|
-
}, z.core.$strip
|
|
914
|
-
signatures: z.
|
|
915
|
-
|
|
916
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
811
|
+
}, z.core.$strip>;
|
|
812
|
+
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[]>>>;
|
|
813
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
917
814
|
signature: z.ZodMiniObject<{
|
|
918
815
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
919
816
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1029,24 +926,6 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1029
926
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1030
927
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1031
928
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1032
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1033
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1034
|
-
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
1035
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
1036
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1037
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1038
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1039
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1040
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1041
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1042
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1043
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1044
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1045
|
-
weight: z.ZodMiniNumber<number>;
|
|
1046
|
-
}, z.core.$strip>>>;
|
|
1047
|
-
}, z.core.$strip>>;
|
|
1048
|
-
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1049
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1050
929
|
}, z.core.$strip>]>;
|
|
1051
930
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1052
931
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -1099,24 +978,6 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1099
978
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1100
979
|
}, z.core.$strip>;
|
|
1101
980
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1102
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1103
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1104
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1105
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
1106
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1107
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1108
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1109
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1110
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1111
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1112
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1113
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1114
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1115
|
-
weight: z.ZodMiniNumber<number>;
|
|
1116
|
-
}, z.core.$strip>>>;
|
|
1117
|
-
}, z.core.$strip>>;
|
|
1118
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1119
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1120
981
|
}, z.core.$strip>]>;
|
|
1121
982
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1122
983
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1168,24 +1029,6 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1168
1029
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1169
1030
|
}, z.core.$strip>;
|
|
1170
1031
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1171
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1172
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1173
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1174
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
1175
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1176
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1177
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1178
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1179
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1180
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1181
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1182
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1183
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1184
|
-
weight: z.ZodMiniNumber<number>;
|
|
1185
|
-
}, z.core.$strip>>>;
|
|
1186
|
-
}, z.core.$strip>>;
|
|
1187
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1188
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1189
1032
|
}, z.core.$strip>]>;
|
|
1190
1033
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1191
1034
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1220,19 +1063,20 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1220
1063
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1221
1064
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1222
1065
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1223
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1066
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1224
1067
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1225
|
-
|
|
1068
|
+
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[]>>>;
|
|
1069
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1070
|
+
init: z.ZodMiniObject<{
|
|
1226
1071
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1227
1072
|
threshold: z.ZodMiniNumber<number>;
|
|
1228
1073
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1229
1074
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1230
1075
|
weight: z.ZodMiniNumber<number>;
|
|
1231
1076
|
}, z.core.$strip>>>;
|
|
1232
|
-
}, z.core.$strip
|
|
1233
|
-
signatures: z.
|
|
1234
|
-
|
|
1235
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1077
|
+
}, z.core.$strip>;
|
|
1078
|
+
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[]>>>;
|
|
1079
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1236
1080
|
signature: z.ZodMiniObject<{
|
|
1237
1081
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1238
1082
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1327,19 +1171,20 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1327
1171
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1328
1172
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1329
1173
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1330
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1174
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1331
1175
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1332
|
-
|
|
1176
|
+
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[]>>>;
|
|
1177
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1178
|
+
init: z.ZodMiniObject<{
|
|
1333
1179
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1334
1180
|
threshold: z.ZodMiniNumber<number>;
|
|
1335
1181
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1336
1182
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1337
1183
|
weight: z.ZodMiniNumber<number>;
|
|
1338
1184
|
}, z.core.$strip>>>;
|
|
1339
|
-
}, z.core.$strip
|
|
1340
|
-
signatures: z.
|
|
1341
|
-
|
|
1342
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1185
|
+
}, z.core.$strip>;
|
|
1186
|
+
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[]>>>;
|
|
1187
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1343
1188
|
signature: z.ZodMiniObject<{
|
|
1344
1189
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1345
1190
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1458,24 +1303,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1458
1303
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1459
1304
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1460
1305
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1461
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1462
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1463
|
-
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
1464
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
1465
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1466
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1467
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1468
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1469
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1470
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1471
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1472
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1473
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1474
|
-
weight: z.ZodMiniNumber<number>;
|
|
1475
|
-
}, z.core.$strip>>>;
|
|
1476
|
-
}, z.core.$strip>>;
|
|
1477
|
-
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1478
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1479
1306
|
}, z.core.$strip>]>;
|
|
1480
1307
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1481
1308
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -1528,24 +1355,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1528
1355
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1529
1356
|
}, z.core.$strip>;
|
|
1530
1357
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1531
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1532
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1533
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1534
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
1535
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1536
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1537
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1538
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1539
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1540
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1541
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1542
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1543
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1544
|
-
weight: z.ZodMiniNumber<number>;
|
|
1545
|
-
}, z.core.$strip>>>;
|
|
1546
|
-
}, z.core.$strip>>;
|
|
1547
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1548
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1549
1358
|
}, z.core.$strip>]>;
|
|
1550
1359
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1551
1360
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1597,24 +1406,6 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1597
1406
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1598
1407
|
}, z.core.$strip>;
|
|
1599
1408
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1600
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1601
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
1602
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1603
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
1604
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1605
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1606
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1607
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1608
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1609
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1610
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1611
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1612
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1613
|
-
weight: z.ZodMiniNumber<number>;
|
|
1614
|
-
}, z.core.$strip>>>;
|
|
1615
|
-
}, z.core.$strip>>;
|
|
1616
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1617
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
1618
1409
|
}, z.core.$strip>]>;
|
|
1619
1410
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1620
1411
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1649,19 +1440,20 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1649
1440
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1650
1441
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1651
1442
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1652
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1443
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1653
1444
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1654
|
-
|
|
1445
|
+
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[]>>>;
|
|
1446
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1447
|
+
init: z.ZodMiniObject<{
|
|
1655
1448
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1656
1449
|
threshold: z.ZodMiniNumber<number>;
|
|
1657
1450
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1658
1451
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1659
1452
|
weight: z.ZodMiniNumber<number>;
|
|
1660
1453
|
}, z.core.$strip>>>;
|
|
1661
|
-
}, z.core.$strip
|
|
1662
|
-
signatures: z.
|
|
1663
|
-
|
|
1664
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1454
|
+
}, z.core.$strip>;
|
|
1455
|
+
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[]>>>;
|
|
1456
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1665
1457
|
signature: z.ZodMiniObject<{
|
|
1666
1458
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1667
1459
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1906,19 +1698,20 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1906
1698
|
type: z.ZodMiniLiteral<"keychain">;
|
|
1907
1699
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1908
1700
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
1909
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1701
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1910
1702
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1911
|
-
|
|
1703
|
+
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[]>>>;
|
|
1704
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1705
|
+
init: z.ZodMiniObject<{
|
|
1912
1706
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1913
1707
|
threshold: z.ZodMiniNumber<number>;
|
|
1914
1708
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1915
1709
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1916
1710
|
weight: z.ZodMiniNumber<number>;
|
|
1917
1711
|
}, z.core.$strip>>>;
|
|
1918
|
-
}, z.core.$strip
|
|
1919
|
-
signatures: z.
|
|
1920
|
-
|
|
1921
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1712
|
+
}, z.core.$strip>;
|
|
1713
|
+
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[]>>>;
|
|
1714
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1922
1715
|
signature: z.ZodMiniObject<{
|
|
1923
1716
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1924
1717
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2037,24 +1830,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2037
1830
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2038
1831
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2039
1832
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2040
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2041
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2042
|
-
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
2043
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
2044
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2045
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2046
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2047
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2048
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2049
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2050
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2051
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2052
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2053
|
-
weight: z.ZodMiniNumber<number>;
|
|
2054
|
-
}, z.core.$strip>>>;
|
|
2055
|
-
}, z.core.$strip>>;
|
|
2056
|
-
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2057
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2058
1833
|
}, z.core.$strip>]>;
|
|
2059
1834
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2060
1835
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -2107,24 +1882,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2107
1882
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2108
1883
|
}, z.core.$strip>;
|
|
2109
1884
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2110
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2111
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2112
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2113
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
2114
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2115
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2116
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2117
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2118
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2119
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2120
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2121
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2122
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2123
|
-
weight: z.ZodMiniNumber<number>;
|
|
2124
|
-
}, z.core.$strip>>>;
|
|
2125
|
-
}, z.core.$strip>>;
|
|
2126
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2127
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2128
1885
|
}, z.core.$strip>]>;
|
|
2129
1886
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2130
1887
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2176,24 +1933,6 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2176
1933
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2177
1934
|
}, z.core.$strip>;
|
|
2178
1935
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2179
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2180
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2181
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2182
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
2183
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2184
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2185
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2186
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2187
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2188
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2189
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2190
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2191
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2192
|
-
weight: z.ZodMiniNumber<number>;
|
|
2193
|
-
}, z.core.$strip>>>;
|
|
2194
|
-
}, z.core.$strip>>;
|
|
2195
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2196
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2197
1936
|
}, z.core.$strip>]>;
|
|
2198
1937
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2199
1938
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2228,19 +1967,20 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
2228
1967
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2229
1968
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2230
1969
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2231
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
1970
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2232
1971
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2233
|
-
|
|
1972
|
+
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[]>>>;
|
|
1973
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1974
|
+
init: z.ZodMiniObject<{
|
|
2234
1975
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2235
1976
|
threshold: z.ZodMiniNumber<number>;
|
|
2236
1977
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2237
1978
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2238
1979
|
weight: z.ZodMiniNumber<number>;
|
|
2239
1980
|
}, z.core.$strip>>>;
|
|
2240
|
-
}, z.core.$strip
|
|
2241
|
-
signatures: z.
|
|
2242
|
-
|
|
2243
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1981
|
+
}, z.core.$strip>;
|
|
1982
|
+
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[]>>>;
|
|
1983
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2244
1984
|
signature: z.ZodMiniObject<{
|
|
2245
1985
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2246
1986
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2489,19 +2229,20 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2489
2229
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2490
2230
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2491
2231
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2492
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2232
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2493
2233
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2494
|
-
|
|
2234
|
+
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[]>>>;
|
|
2235
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2236
|
+
init: z.ZodMiniObject<{
|
|
2495
2237
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2496
2238
|
threshold: z.ZodMiniNumber<number>;
|
|
2497
2239
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2498
2240
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2499
2241
|
weight: z.ZodMiniNumber<number>;
|
|
2500
2242
|
}, z.core.$strip>>>;
|
|
2501
|
-
}, z.core.$strip
|
|
2502
|
-
signatures: z.
|
|
2503
|
-
|
|
2504
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2243
|
+
}, z.core.$strip>;
|
|
2244
|
+
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[]>>>;
|
|
2245
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2505
2246
|
signature: z.ZodMiniObject<{
|
|
2506
2247
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2507
2248
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2617,24 +2358,6 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2617
2358
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2618
2359
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2619
2360
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2620
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2621
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2622
|
-
signature: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc, unknown>>>;
|
|
2623
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
2624
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2625
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2626
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2627
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2628
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2629
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2630
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2631
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2632
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2633
|
-
weight: z.ZodMiniNumber<number>;
|
|
2634
|
-
}, z.core.$strip>>>;
|
|
2635
|
-
}, z.core.$strip>>;
|
|
2636
|
-
signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2637
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2638
2361
|
}, z.core.$strip>]>;
|
|
2639
2362
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2640
2363
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
@@ -2687,24 +2410,6 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2687
2410
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2688
2411
|
}, z.core.$strip>;
|
|
2689
2412
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2690
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2691
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2692
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2693
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
2694
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2695
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2696
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2697
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2698
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2699
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2700
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2701
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2702
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2703
|
-
weight: z.ZodMiniNumber<number>;
|
|
2704
|
-
}, z.core.$strip>>>;
|
|
2705
|
-
}, z.core.$strip>>;
|
|
2706
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2707
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2708
2413
|
}, z.core.$strip>]>;
|
|
2709
2414
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2710
2415
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2756,24 +2461,6 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2756
2461
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2757
2462
|
}, z.core.$strip>;
|
|
2758
2463
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2759
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2760
|
-
inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
|
|
2761
|
-
keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2762
|
-
type: z.ZodMiniLiteral<"keychain">;
|
|
2763
|
-
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2764
|
-
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2765
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2766
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2767
|
-
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2768
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2769
|
-
threshold: z.ZodMiniNumber<number>;
|
|
2770
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2771
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2772
|
-
weight: z.ZodMiniNumber<number>;
|
|
2773
|
-
}, z.core.$strip>>>;
|
|
2774
|
-
}, z.core.$strip>>;
|
|
2775
|
-
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2776
|
-
type: z.ZodMiniLiteral<"multisig">;
|
|
2777
2464
|
}, z.core.$strip>]>;
|
|
2778
2465
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2779
2466
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2808,19 +2495,20 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2808
2495
|
type: z.ZodMiniLiteral<"keychain">;
|
|
2809
2496
|
userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2810
2497
|
version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
|
|
2811
|
-
}, z.core.$strip>, z.ZodMiniObject<{
|
|
2498
|
+
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2812
2499
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2813
|
-
|
|
2500
|
+
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[]>>>;
|
|
2501
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
2502
|
+
init: z.ZodMiniObject<{
|
|
2814
2503
|
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2815
2504
|
threshold: z.ZodMiniNumber<number>;
|
|
2816
2505
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2817
2506
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2818
2507
|
weight: z.ZodMiniNumber<number>;
|
|
2819
2508
|
}, z.core.$strip>>>;
|
|
2820
|
-
}, z.core.$strip
|
|
2821
|
-
signatures: z.
|
|
2822
|
-
|
|
2823
|
-
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2509
|
+
}, z.core.$strip>;
|
|
2510
|
+
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[]>>>;
|
|
2511
|
+
}, z.core.$strict>]>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2824
2512
|
signature: z.ZodMiniObject<{
|
|
2825
2513
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2826
2514
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|