ox 1.6.2 → 1.6.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 +16 -12
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/KeyAuthorization.js +7 -13
- package/dist/tempo/KeyAuthorization.js.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +20 -17
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +17 -16
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +19 -17
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +35 -27
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/index.d.ts +2 -2
- package/dist/tempo/index.js +2 -2
- package/dist/zod/tempo/KeyAuthorization.d.ts +231 -22
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.js +10 -2
- package/dist/zod/tempo/KeyAuthorization.js.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +82 -8
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +246 -24
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +149 -14
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +78 -6
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/tempo/KeyAuthorization.test-d.ts +41 -6
- package/src/tempo/KeyAuthorization.test.ts +77 -18
- package/src/tempo/KeyAuthorization.ts +36 -36
- package/src/tempo/MultisigConfig.test.ts +28 -8
- package/src/tempo/MultisigConfig.ts +28 -19
- package/src/tempo/SignatureEnvelope.test.ts +64 -19
- package/src/tempo/SignatureEnvelope.ts +45 -35
- package/src/tempo/index.ts +2 -2
- package/src/tempo/multisig.e2e.test.ts +402 -145
- package/src/version.ts +1 -1
- package/src/zod/tempo/KeyAuthorization.ts +12 -2
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +19 -5
|
@@ -149,7 +149,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
149
149
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
150
150
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
151
151
|
}, z.core.$strip>>>>>;
|
|
152
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
152
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
153
153
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
154
154
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
155
155
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -169,7 +169,20 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
169
169
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
170
170
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
171
171
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
172
|
-
}, z.core.$strip>]
|
|
172
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
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>]>]>;
|
|
173
186
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
174
187
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
175
188
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -187,7 +200,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
187
200
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
188
201
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
189
202
|
}, z.core.$strip>>>>;
|
|
190
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
203
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
191
204
|
signature: z.ZodMiniObject<{
|
|
192
205
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
193
206
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -221,6 +234,18 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
221
234
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
222
235
|
}, z.core.$strip>;
|
|
223
236
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
237
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
238
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
239
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
240
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
241
|
+
threshold: z.ZodMiniNumber<number>;
|
|
242
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
243
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
|
+
weight: z.ZodMiniNumber<number>;
|
|
245
|
+
}, z.core.$strip>>>;
|
|
246
|
+
}, z.core.$strip>>;
|
|
247
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
224
249
|
}, z.core.$strip>]>;
|
|
225
250
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
226
251
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -238,7 +263,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
238
263
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
239
264
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
240
265
|
}, z.core.$strip>>>>;
|
|
241
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
266
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
242
267
|
signature: z.ZodMiniObject<{
|
|
243
268
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
244
269
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -272,6 +297,18 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
272
297
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
273
298
|
}, z.core.$strip>;
|
|
274
299
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
300
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
301
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
302
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
303
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
304
|
+
threshold: z.ZodMiniNumber<number>;
|
|
305
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
306
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
307
|
+
weight: z.ZodMiniNumber<number>;
|
|
308
|
+
}, z.core.$strip>>>;
|
|
309
|
+
}, z.core.$strip>>;
|
|
310
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
275
312
|
}, z.core.$strip>]>;
|
|
276
313
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
277
314
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -527,7 +564,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
527
564
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
528
565
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
529
566
|
}, z.core.$strip>>>>>;
|
|
530
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
567
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
531
568
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
532
569
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
533
570
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -547,7 +584,20 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
547
584
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
548
585
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
549
586
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
550
|
-
}, z.core.$strip>]
|
|
587
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
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>]>]>;
|
|
551
601
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
552
602
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
553
603
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -565,7 +615,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
565
615
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
566
616
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
567
617
|
}, z.core.$strip>>>>;
|
|
568
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
618
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
569
619
|
signature: z.ZodMiniObject<{
|
|
570
620
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
571
621
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -599,6 +649,18 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
599
649
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
600
650
|
}, z.core.$strip>;
|
|
601
651
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
652
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
653
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
654
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
655
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
656
|
+
threshold: z.ZodMiniNumber<number>;
|
|
657
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
658
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
659
|
+
weight: z.ZodMiniNumber<number>;
|
|
660
|
+
}, z.core.$strip>>>;
|
|
661
|
+
}, z.core.$strip>>;
|
|
662
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
602
664
|
}, z.core.$strip>]>;
|
|
603
665
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
604
666
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -616,7 +678,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
616
678
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
617
679
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
618
680
|
}, z.core.$strip>>>>;
|
|
619
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
681
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
620
682
|
signature: z.ZodMiniObject<{
|
|
621
683
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
622
684
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -650,6 +712,18 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
650
712
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
651
713
|
}, z.core.$strip>;
|
|
652
714
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
715
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
716
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
717
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
718
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
719
|
+
threshold: z.ZodMiniNumber<number>;
|
|
720
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
721
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
722
|
+
weight: z.ZodMiniNumber<number>;
|
|
723
|
+
}, z.core.$strip>>>;
|
|
724
|
+
}, z.core.$strip>>;
|
|
725
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
653
727
|
}, z.core.$strip>]>;
|
|
654
728
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
655
729
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -906,7 +980,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
906
980
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
907
981
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
908
982
|
}, z.core.$strip>>>>>;
|
|
909
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
983
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
910
984
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
911
985
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
912
986
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -926,7 +1000,20 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
926
1000
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
927
1001
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
928
1002
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
929
|
-
}, z.core.$strip>]
|
|
1003
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
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>]>]>;
|
|
930
1017
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
931
1018
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
932
1019
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -944,7 +1031,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
944
1031
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
945
1032
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
946
1033
|
}, z.core.$strip>>>>;
|
|
947
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1034
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
948
1035
|
signature: z.ZodMiniObject<{
|
|
949
1036
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
950
1037
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -978,6 +1065,18 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
978
1065
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
979
1066
|
}, z.core.$strip>;
|
|
980
1067
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1068
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1069
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1070
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1071
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1072
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1073
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1074
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1075
|
+
weight: z.ZodMiniNumber<number>;
|
|
1076
|
+
}, z.core.$strip>>>;
|
|
1077
|
+
}, z.core.$strip>>;
|
|
1078
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
981
1080
|
}, z.core.$strip>]>;
|
|
982
1081
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
983
1082
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -995,7 +1094,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
995
1094
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
996
1095
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
997
1096
|
}, z.core.$strip>>>>;
|
|
998
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1097
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
999
1098
|
signature: z.ZodMiniObject<{
|
|
1000
1099
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1001
1100
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1029,6 +1128,18 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1029
1128
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1030
1129
|
}, z.core.$strip>;
|
|
1031
1130
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1131
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1132
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1133
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1134
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1135
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1136
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1137
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1138
|
+
weight: z.ZodMiniNumber<number>;
|
|
1139
|
+
}, z.core.$strip>>>;
|
|
1140
|
+
}, z.core.$strip>>;
|
|
1141
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1032
1143
|
}, z.core.$strip>]>;
|
|
1033
1144
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1034
1145
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1283,7 +1394,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1283
1394
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1284
1395
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1285
1396
|
}, z.core.$strip>>>>>;
|
|
1286
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1397
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1287
1398
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1288
1399
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1289
1400
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -1303,7 +1414,20 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1303
1414
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1304
1415
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1305
1416
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1306
|
-
}, z.core.$strip>]
|
|
1417
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
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>]>]>;
|
|
1307
1431
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1308
1432
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1309
1433
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1321,7 +1445,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1321
1445
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1322
1446
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1323
1447
|
}, z.core.$strip>>>>;
|
|
1324
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1448
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1325
1449
|
signature: z.ZodMiniObject<{
|
|
1326
1450
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1327
1451
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1355,6 +1479,18 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1355
1479
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1356
1480
|
}, z.core.$strip>;
|
|
1357
1481
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1482
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1483
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1484
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1485
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1486
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1487
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1488
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1489
|
+
weight: z.ZodMiniNumber<number>;
|
|
1490
|
+
}, z.core.$strip>>>;
|
|
1491
|
+
}, z.core.$strip>>;
|
|
1492
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1358
1494
|
}, z.core.$strip>]>;
|
|
1359
1495
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1360
1496
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1372,7 +1508,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1372
1508
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1373
1509
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1374
1510
|
}, z.core.$strip>>>>;
|
|
1375
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1511
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1376
1512
|
signature: z.ZodMiniObject<{
|
|
1377
1513
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1378
1514
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1406,6 +1542,18 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
|
|
|
1406
1542
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1407
1543
|
}, z.core.$strip>;
|
|
1408
1544
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1545
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1546
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1547
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1548
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1549
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1550
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1551
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1552
|
+
weight: z.ZodMiniNumber<number>;
|
|
1553
|
+
}, z.core.$strip>>>;
|
|
1554
|
+
}, z.core.$strip>>;
|
|
1555
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1409
1557
|
}, z.core.$strip>]>;
|
|
1410
1558
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1411
1559
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1810,7 +1958,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1810
1958
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1811
1959
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1812
1960
|
}, z.core.$strip>>>>>;
|
|
1813
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1961
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1814
1962
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1815
1963
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1816
1964
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -1830,7 +1978,20 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1830
1978
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1831
1979
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1832
1980
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1833
|
-
}, z.core.$strip>]
|
|
1981
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
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>]>]>;
|
|
1834
1995
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1835
1996
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1836
1997
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1848,7 +2009,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1848
2009
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1849
2010
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1850
2011
|
}, z.core.$strip>>>>;
|
|
1851
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2012
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1852
2013
|
signature: z.ZodMiniObject<{
|
|
1853
2014
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1854
2015
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1882,6 +2043,18 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1882
2043
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1883
2044
|
}, z.core.$strip>;
|
|
1884
2045
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
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.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
2057
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1885
2058
|
}, z.core.$strip>]>;
|
|
1886
2059
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1887
2060
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1899,7 +2072,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1899
2072
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1900
2073
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1901
2074
|
}, z.core.$strip>>>>;
|
|
1902
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2075
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1903
2076
|
signature: z.ZodMiniObject<{
|
|
1904
2077
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1905
2078
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1933,6 +2106,18 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
|
|
|
1933
2106
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1934
2107
|
}, z.core.$strip>;
|
|
1935
2108
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2109
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2110
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2111
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2112
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2113
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2114
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2115
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2116
|
+
weight: z.ZodMiniNumber<number>;
|
|
2117
|
+
}, z.core.$strip>>>;
|
|
2118
|
+
}, z.core.$strip>>;
|
|
2119
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1936
2121
|
}, z.core.$strip>]>;
|
|
1937
2122
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1938
2123
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2338,7 +2523,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2338
2523
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2339
2524
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2340
2525
|
}, z.core.$strip>>>>>;
|
|
2341
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2526
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2342
2527
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2343
2528
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2344
2529
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -2358,7 +2543,20 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2358
2543
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2359
2544
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2360
2545
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2361
|
-
}, z.core.$strip>]
|
|
2546
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
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>]>]>;
|
|
2362
2560
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
2363
2561
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2364
2562
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2376,7 +2574,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2376
2574
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
2377
2575
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
2378
2576
|
}, z.core.$strip>>>>;
|
|
2379
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2577
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2380
2578
|
signature: z.ZodMiniObject<{
|
|
2381
2579
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2382
2580
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2410,6 +2608,18 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2410
2608
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2411
2609
|
}, z.core.$strip>;
|
|
2412
2610
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2611
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2612
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2613
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2614
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2615
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2616
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2617
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2618
|
+
weight: z.ZodMiniNumber<number>;
|
|
2619
|
+
}, z.core.$strip>>>;
|
|
2620
|
+
}, z.core.$strip>>;
|
|
2621
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2413
2623
|
}, z.core.$strip>]>;
|
|
2414
2624
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2415
2625
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -2427,7 +2637,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2427
2637
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
2428
2638
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
2429
2639
|
}, z.core.$strip>>>>;
|
|
2430
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2640
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
2431
2641
|
signature: z.ZodMiniObject<{
|
|
2432
2642
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2433
2643
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -2461,6 +2671,18 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
|
|
|
2461
2671
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2462
2672
|
}, z.core.$strip>;
|
|
2463
2673
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
2674
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
2675
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2676
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
2677
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
2678
|
+
threshold: z.ZodMiniNumber<number>;
|
|
2679
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
2680
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
2681
|
+
weight: z.ZodMiniNumber<number>;
|
|
2682
|
+
}, z.core.$strip>>>;
|
|
2683
|
+
}, z.core.$strip>>;
|
|
2684
|
+
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
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
2464
2686
|
}, z.core.$strip>]>;
|
|
2465
2687
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
2466
2688
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Transaction.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/Transaction.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AA+G7B,8CAA8C;AAC9C,eAAO,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"Transaction.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/Transaction.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAG3B,CAAA;AAEF,sFAAsF;AACtF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAAiD,CAAA"}
|