ox 1.6.2 → 1.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/core/AesGcm.d.ts +67 -2
- package/dist/core/AesGcm.d.ts.map +1 -1
- package/dist/core/AesGcm.js +79 -10
- package/dist/core/AesGcm.js.map +1 -1
- package/dist/core/Ed25519.d.ts +83 -2
- package/dist/core/Ed25519.d.ts.map +1 -1
- package/dist/core/Ed25519.js +79 -4
- package/dist/core/Ed25519.js.map +1 -1
- package/dist/core/MlDsa44.d.ts +84 -5
- package/dist/core/MlDsa44.d.ts.map +1 -1
- package/dist/core/MlDsa44.js +79 -4
- package/dist/core/MlDsa44.js.map +1 -1
- package/dist/core/P256.d.ts +82 -1
- package/dist/core/P256.d.ts.map +1 -1
- package/dist/core/P256.js +78 -0
- package/dist/core/P256.js.map +1 -1
- package/dist/core/Secp256k1.d.ts +85 -1
- package/dist/core/Secp256k1.d.ts.map +1 -1
- package/dist/core/Secp256k1.js +74 -3
- package/dist/core/Secp256k1.js.map +1 -1
- package/dist/core/internal/keyDerivation.d.ts +13 -0
- package/dist/core/internal/keyDerivation.d.ts.map +1 -0
- package/dist/core/internal/keyDerivation.js +13 -0
- package/dist/core/internal/keyDerivation.js.map +1 -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/core/AesGcm.ts +137 -30
- package/src/core/Ed25519.ts +135 -4
- package/src/core/MlDsa44.ts +135 -4
- package/src/core/P256.ts +135 -1
- package/src/core/Secp256k1.ts +134 -3
- package/src/core/_test/AesGcm.test-d.ts +19 -0
- package/src/core/_test/AesGcm.test.ts +90 -1
- package/src/core/_test/Ed25519.test-d.ts +24 -0
- package/src/core/_test/Ed25519.test.ts +87 -1
- package/src/core/_test/MlDsa44.test-d.ts +24 -0
- package/src/core/_test/MlDsa44.test.ts +69 -1
- package/src/core/_test/P256.test-d.ts +26 -0
- package/src/core/_test/P256.test.ts +98 -1
- package/src/core/_test/Secp256k1.test-d.ts +27 -0
- package/src/core/_test/Secp256k1.test.ts +112 -1
- package/src/core/internal/keyDerivation.ts +34 -0
- 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
|
@@ -108,7 +108,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
108
108
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
109
109
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
110
110
|
}, z.core.$strip>>>>>;
|
|
111
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
111
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
112
112
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
113
113
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
114
114
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -128,7 +128,20 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
128
128
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
129
129
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
130
130
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
131
|
-
}, z.core.$strip>]
|
|
131
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
132
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
133
|
+
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[]>>>;
|
|
134
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
135
|
+
init: z.ZodMiniObject<{
|
|
136
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
137
|
+
threshold: z.ZodMiniNumber<number>;
|
|
138
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
139
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
|
+
weight: z.ZodMiniNumber<number>;
|
|
141
|
+
}, z.core.$strip>>>;
|
|
142
|
+
}, z.core.$strip>;
|
|
143
|
+
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[]>>>;
|
|
144
|
+
}, z.core.$strict>]>]>;
|
|
132
145
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
133
146
|
}, z.core.$strip>>;
|
|
134
147
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -298,7 +311,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
298
311
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
299
312
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
300
313
|
}, z.core.$strip>>>>;
|
|
301
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
314
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
302
315
|
signature: z.ZodMiniObject<{
|
|
303
316
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
304
317
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -332,6 +345,18 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
332
345
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
333
346
|
}, z.core.$strip>;
|
|
334
347
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
348
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
349
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
350
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
351
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
352
|
+
threshold: z.ZodMiniNumber<number>;
|
|
353
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
354
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
|
+
weight: z.ZodMiniNumber<number>;
|
|
356
|
+
}, z.core.$strip>>>;
|
|
357
|
+
}, z.core.$strip>>;
|
|
358
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
359
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
335
360
|
}, z.core.$strip>]>;
|
|
336
361
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
337
362
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -349,7 +374,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
349
374
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
350
375
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
351
376
|
}, z.core.$strip>>>>;
|
|
352
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
377
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
353
378
|
signature: z.ZodMiniObject<{
|
|
354
379
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
355
380
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -383,6 +408,18 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
|
|
|
383
408
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
384
409
|
}, z.core.$strip>;
|
|
385
410
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
411
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
412
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
413
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
414
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
415
|
+
threshold: z.ZodMiniNumber<number>;
|
|
416
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
417
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
418
|
+
weight: z.ZodMiniNumber<number>;
|
|
419
|
+
}, z.core.$strip>>>;
|
|
420
|
+
}, z.core.$strip>>;
|
|
421
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
422
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
386
423
|
}, z.core.$strip>]>;
|
|
387
424
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
388
425
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1065,7 +1102,7 @@ export declare const Tempo: {
|
|
|
1065
1102
|
period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1066
1103
|
token: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1067
1104
|
}, z.core.$strip>>>>>;
|
|
1068
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1105
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1069
1106
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1070
1107
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1071
1108
|
type: z.ZodMiniLiteral<"secp256k1">;
|
|
@@ -1085,7 +1122,20 @@ export declare const Tempo: {
|
|
|
1085
1122
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1086
1123
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1087
1124
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1088
|
-
}, z.core.$strip>]
|
|
1125
|
+
}, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1126
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1127
|
+
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[]>>>;
|
|
1128
|
+
}, z.core.$strict>, z.ZodMiniObject<{
|
|
1129
|
+
init: z.ZodMiniObject<{
|
|
1130
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1131
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1132
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1133
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1134
|
+
weight: z.ZodMiniNumber<number>;
|
|
1135
|
+
}, z.core.$strip>>>;
|
|
1136
|
+
}, z.core.$strip>;
|
|
1137
|
+
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[]>>>;
|
|
1138
|
+
}, z.core.$strict>]>]>;
|
|
1089
1139
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
1090
1140
|
}, z.core.$strip>>;
|
|
1091
1141
|
keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1255,7 +1305,7 @@ export declare const Tempo: {
|
|
|
1255
1305
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1256
1306
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1257
1307
|
}, z.core.$strip>>>>;
|
|
1258
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1308
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1259
1309
|
signature: z.ZodMiniObject<{
|
|
1260
1310
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1261
1311
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1289,6 +1339,18 @@ export declare const Tempo: {
|
|
|
1289
1339
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1290
1340
|
}, z.core.$strip>;
|
|
1291
1341
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1342
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1343
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1344
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1345
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1346
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1347
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1348
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1349
|
+
weight: z.ZodMiniNumber<number>;
|
|
1350
|
+
}, z.core.$strip>>>;
|
|
1351
|
+
}, z.core.$strip>>;
|
|
1352
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1353
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1292
1354
|
}, z.core.$strip>]>;
|
|
1293
1355
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1294
1356
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1306,7 +1368,7 @@ export declare const Tempo: {
|
|
|
1306
1368
|
recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
|
|
1307
1369
|
selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
|
|
1308
1370
|
}, z.core.$strip>>>>;
|
|
1309
|
-
signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1371
|
+
signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
1310
1372
|
signature: z.ZodMiniObject<{
|
|
1311
1373
|
r: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1312
1374
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1340,6 +1402,18 @@ export declare const Tempo: {
|
|
|
1340
1402
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1341
1403
|
}, z.core.$strip>;
|
|
1342
1404
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1405
|
+
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1406
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1407
|
+
init: z.ZodMiniOptional<z.ZodMiniObject<{
|
|
1408
|
+
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1409
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1410
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1411
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1412
|
+
weight: z.ZodMiniNumber<number>;
|
|
1413
|
+
}, z.core.$strip>>>;
|
|
1414
|
+
}, z.core.$strip>>;
|
|
1415
|
+
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1416
|
+
type: z.ZodMiniLiteral<"multisig">;
|
|
1343
1417
|
}, z.core.$strip>]>;
|
|
1344
1418
|
type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
|
|
1345
1419
|
witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RpcSchemaTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/RpcSchemaTempo.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAgB7B,yDAAyD;AACzD,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"RpcSchemaTempo.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/RpcSchemaTempo.ts"],"names":[],"mappings":"AAOA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAgB7B,yDAAyD;AACzD,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA2D3B,CAAA;AAEF,0DAA0D;AAC1D,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAuB,CAAA"}
|