ox 1.7.1 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +42 -0
- package/dist/core/Hash.js +1 -1
- package/dist/core/Hash.js.map +1 -1
- package/dist/tempo/KeyAuthorization.d.ts +2 -2
- package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.d.ts +151 -83
- package/dist/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/tempo/MultisigConfig.js +164 -86
- package/dist/tempo/MultisigConfig.js.map +1 -1
- package/dist/tempo/MultisigOperation.d.ts +340 -0
- package/dist/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/tempo/MultisigOperation.js +839 -0
- package/dist/tempo/MultisigOperation.js.map +1 -0
- package/dist/tempo/MultisigSimulation.d.ts +132 -0
- package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/tempo/MultisigSimulation.js +140 -0
- package/dist/tempo/MultisigSimulation.js.map +1 -0
- package/dist/tempo/RpcSchemaTempo.d.ts +45 -0
- package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.d.ts +55 -86
- package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/tempo/SignatureEnvelope.js +93 -158
- package/dist/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/tempo/TransactionRequest.d.ts +9 -17
- package/dist/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/tempo/TransactionRequest.js +7 -7
- package/dist/tempo/TransactionRequest.js.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.d.ts +3 -2
- package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/tempo/TxEnvelopeTempo.js +3 -2
- package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
- package/dist/tempo/index.d.ts +22 -2
- package/dist/tempo/index.d.ts.map +1 -1
- package/dist/tempo/index.js +22 -2
- package/dist/tempo/index.js.map +1 -1
- package/dist/zod/tempo/AuthorizationTempo.d.ts +60 -180
- package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
- package/dist/zod/tempo/KeyAuthorization.d.ts +65 -118
- package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.d.ts +31 -2
- package/dist/zod/tempo/MultisigConfig.d.ts.map +1 -1
- package/dist/zod/tempo/MultisigConfig.js +26 -3
- package/dist/zod/tempo/MultisigConfig.js.map +1 -1
- package/dist/zod/tempo/MultisigOperation.d.ts +158 -0
- package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigOperation.js +62 -0
- package/dist/zod/tempo/MultisigOperation.js.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts +120 -0
- package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
- package/dist/zod/tempo/MultisigSimulation.js +78 -0
- package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
- package/dist/zod/tempo/RpcSchemaTempo.d.ts +528 -144
- package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
- package/dist/zod/tempo/RpcSchemaTempo.js +47 -0
- package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.d.ts +18 -54
- package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
- package/dist/zod/tempo/SignatureEnvelope.js +5 -22
- package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
- package/dist/zod/tempo/Transaction.d.ts +138 -348
- package/dist/zod/tempo/Transaction.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.d.ts +286 -239
- package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
- package/dist/zod/tempo/TransactionRequest.js +11 -22
- package/dist/zod/tempo/TransactionRequest.js.map +1 -1
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts +60 -48
- package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +15 -12
- package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
- package/dist/zod/tempo/z.d.ts +2 -0
- package/dist/zod/tempo/z.d.ts.map +1 -1
- package/dist/zod/tempo/z.js +2 -0
- package/dist/zod/tempo/z.js.map +1 -1
- package/package.json +21 -1
- package/src/core/Hash.ts +1 -1
- package/src/core/_test/Hash.test.ts +15 -0
- package/src/tempo/AuthorizationTempo.test.ts +4 -0
- package/src/tempo/KeyAuthorization.test-d.ts +13 -12
- package/src/tempo/KeyAuthorization.test.ts +109 -3
- package/src/tempo/KeyAuthorization.ts +4 -4
- package/src/tempo/MultisigConfig.test-d.ts +52 -0
- package/src/tempo/MultisigConfig.test.ts +288 -227
- package/src/tempo/MultisigConfig.ts +275 -104
- package/src/tempo/MultisigOperation.test-d.ts +79 -0
- package/src/tempo/MultisigOperation.test.ts +1950 -0
- package/src/tempo/MultisigOperation.ts +1293 -0
- package/src/tempo/MultisigSimulation.test-d.ts +33 -0
- package/src/tempo/MultisigSimulation.test.ts +283 -0
- package/src/tempo/MultisigSimulation.ts +266 -0
- package/src/tempo/RpcSchemaTempo.test-d.ts +91 -0
- package/src/tempo/RpcSchemaTempo.ts +46 -0
- package/src/tempo/SignatureEnvelope.test-d.ts +33 -72
- package/src/tempo/SignatureEnvelope.test.ts +533 -500
- package/src/tempo/SignatureEnvelope.ts +171 -258
- package/src/tempo/Transaction.test.ts +61 -0
- package/src/tempo/TransactionRequest.test-d.ts +11 -0
- package/src/tempo/TransactionRequest.test.ts +214 -41
- package/src/tempo/TransactionRequest.ts +19 -20
- package/src/tempo/TxEnvelopeTempo.test-d.ts +7 -0
- package/src/tempo/TxEnvelopeTempo.test.ts +25 -0
- package/src/tempo/TxEnvelopeTempo.ts +5 -3
- package/src/tempo/index.ts +22 -2
- package/src/tempo/multisig.e2e.test.ts +164 -87
- package/src/version.ts +1 -1
- package/src/zod/tempo/MultisigConfig.ts +29 -3
- package/src/zod/tempo/MultisigOperation.ts +66 -0
- package/src/zod/tempo/MultisigSimulation.ts +98 -0
- package/src/zod/tempo/RpcSchemaTempo.ts +53 -0
- package/src/zod/tempo/SignatureEnvelope.ts +12 -54
- package/src/zod/tempo/TransactionRequest.ts +17 -26
- package/src/zod/tempo/_test/KeyAuthorization.test.ts +2 -4
- package/src/zod/tempo/_test/MultisigConfig.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigConfig.test.ts +13 -2
- package/src/zod/tempo/_test/MultisigOperation.test-d.ts +27 -0
- package/src/zod/tempo/_test/MultisigOperation.test.ts +66 -0
- package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
- package/src/zod/tempo/_test/MultisigSimulation.test.ts +78 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +48 -0
- package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +83 -0
- package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +1 -1
- package/src/zod/tempo/_test/SignatureEnvelope.test.ts +57 -120
- package/src/zod/tempo/_test/TransactionRequest.test.ts +43 -16
- package/src/zod/tempo/z.ts +2 -0
|
@@ -58,20 +58,7 @@ export declare const Rpc: z.ZodMiniObject<{
|
|
|
58
58
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
59
59
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
60
60
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
61
|
-
}, z.core.$strip>]>, z.
|
|
62
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
63
|
-
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[]>>>;
|
|
64
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
65
|
-
init: z.ZodMiniObject<{
|
|
66
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
67
|
-
threshold: z.ZodMiniNumber<number>;
|
|
68
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
69
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
70
|
-
weight: z.ZodMiniNumber<number>;
|
|
71
|
-
}, z.core.$strip>>>;
|
|
72
|
-
}, z.core.$strip>;
|
|
73
|
-
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[]>>>;
|
|
74
|
-
}, z.core.$strict>]>]>;
|
|
61
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
75
62
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
76
63
|
}, z.core.$strip>;
|
|
77
64
|
/** Token spending limit schema. */
|
|
@@ -145,14 +132,15 @@ export declare const Domain: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
145
132
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
146
133
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
147
134
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
148
|
-
|
|
149
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
150
|
-
threshold: z.ZodMiniNumber<number>;
|
|
135
|
+
config: z.ZodMiniObject<{
|
|
151
136
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
152
137
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
153
138
|
weight: z.ZodMiniNumber<number>;
|
|
154
139
|
}, z.core.$strip>>>;
|
|
155
|
-
|
|
140
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
141
|
+
threshold: z.ZodMiniNumber<number>;
|
|
142
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
143
|
+
}, z.core.$strip>;
|
|
156
144
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
157
145
|
type: z.ZodMiniLiteral<"multisig">;
|
|
158
146
|
}, z.core.$strip>]>;
|
|
@@ -208,14 +196,15 @@ export declare const Domain: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
208
196
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
209
197
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
210
198
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
211
|
-
|
|
212
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
213
|
-
threshold: z.ZodMiniNumber<number>;
|
|
199
|
+
config: z.ZodMiniObject<{
|
|
214
200
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
215
201
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
216
202
|
weight: z.ZodMiniNumber<number>;
|
|
217
203
|
}, z.core.$strip>>>;
|
|
218
|
-
|
|
204
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
205
|
+
threshold: z.ZodMiniNumber<number>;
|
|
206
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
207
|
+
}, z.core.$strip>;
|
|
219
208
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
220
209
|
type: z.ZodMiniLiteral<"multisig">;
|
|
221
210
|
}, z.core.$strip>]>;
|
|
@@ -275,14 +264,15 @@ export declare const DomainToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
275
264
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
276
265
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
277
266
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
278
|
-
|
|
279
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
280
|
-
threshold: z.ZodMiniNumber<number>;
|
|
267
|
+
config: z.ZodMiniObject<{
|
|
281
268
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
282
269
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
283
270
|
weight: z.ZodMiniNumber<number>;
|
|
284
271
|
}, z.core.$strip>>>;
|
|
285
|
-
|
|
272
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
273
|
+
threshold: z.ZodMiniNumber<number>;
|
|
274
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
275
|
+
}, z.core.$strip>;
|
|
286
276
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
287
277
|
type: z.ZodMiniLiteral<"multisig">;
|
|
288
278
|
}, z.core.$strip>]>;
|
|
@@ -338,14 +328,15 @@ export declare const DomainToRpc: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
|
338
328
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
339
329
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
340
330
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
341
|
-
|
|
342
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
343
|
-
threshold: z.ZodMiniNumber<number>;
|
|
331
|
+
config: z.ZodMiniObject<{
|
|
344
332
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
345
333
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
346
334
|
weight: z.ZodMiniNumber<number>;
|
|
347
335
|
}, z.core.$strip>>>;
|
|
348
|
-
|
|
336
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
337
|
+
threshold: z.ZodMiniNumber<number>;
|
|
338
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
339
|
+
}, z.core.$strip>;
|
|
349
340
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
350
341
|
type: z.ZodMiniLiteral<"multisig">;
|
|
351
342
|
}, z.core.$strip>]>;
|
|
@@ -392,20 +383,7 @@ export declare const KeyAuthorization: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
392
383
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
393
384
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
394
385
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
395
|
-
}, z.core.$strip>]>, z.
|
|
396
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
397
|
-
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[]>>>;
|
|
398
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
399
|
-
init: z.ZodMiniObject<{
|
|
400
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
401
|
-
threshold: z.ZodMiniNumber<number>;
|
|
402
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
403
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
404
|
-
weight: z.ZodMiniNumber<number>;
|
|
405
|
-
}, z.core.$strip>>>;
|
|
406
|
-
}, z.core.$strip>;
|
|
407
|
-
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[]>>>;
|
|
408
|
-
}, z.core.$strict>]>]>;
|
|
386
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
409
387
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
410
388
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
411
389
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -459,14 +437,15 @@ export declare const KeyAuthorization: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
459
437
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
460
438
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
461
439
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
462
|
-
|
|
463
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
464
|
-
threshold: z.ZodMiniNumber<number>;
|
|
440
|
+
config: z.ZodMiniObject<{
|
|
465
441
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
466
442
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
467
443
|
weight: z.ZodMiniNumber<number>;
|
|
468
444
|
}, z.core.$strip>>>;
|
|
469
|
-
|
|
445
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
446
|
+
threshold: z.ZodMiniNumber<number>;
|
|
447
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
448
|
+
}, z.core.$strip>;
|
|
470
449
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
471
450
|
type: z.ZodMiniLiteral<"multisig">;
|
|
472
451
|
}, z.core.$strip>]>;
|
|
@@ -522,14 +501,15 @@ export declare const KeyAuthorization: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
522
501
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
523
502
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
524
503
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
525
|
-
|
|
526
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
527
|
-
threshold: z.ZodMiniNumber<number>;
|
|
504
|
+
config: z.ZodMiniObject<{
|
|
528
505
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
529
506
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
530
507
|
weight: z.ZodMiniNumber<number>;
|
|
531
508
|
}, z.core.$strip>>>;
|
|
532
|
-
|
|
509
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
510
|
+
threshold: z.ZodMiniNumber<number>;
|
|
511
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
512
|
+
}, z.core.$strip>;
|
|
533
513
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
534
514
|
type: z.ZodMiniLiteral<"multisig">;
|
|
535
515
|
}, z.core.$strip>]>;
|
|
@@ -576,20 +556,7 @@ export declare const KeyAuthorizationToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
576
556
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
577
557
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
578
558
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
579
|
-
}, z.core.$strip>]>, z.
|
|
580
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
581
|
-
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[]>>>;
|
|
582
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
583
|
-
init: z.ZodMiniObject<{
|
|
584
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
585
|
-
threshold: z.ZodMiniNumber<number>;
|
|
586
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
587
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
588
|
-
weight: z.ZodMiniNumber<number>;
|
|
589
|
-
}, z.core.$strip>>>;
|
|
590
|
-
}, z.core.$strip>;
|
|
591
|
-
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[]>>>;
|
|
592
|
-
}, z.core.$strict>]>]>;
|
|
559
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
593
560
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
594
561
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
595
562
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -643,14 +610,15 @@ export declare const KeyAuthorizationToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
643
610
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
644
611
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
645
612
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
646
|
-
|
|
647
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
648
|
-
threshold: z.ZodMiniNumber<number>;
|
|
613
|
+
config: z.ZodMiniObject<{
|
|
649
614
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
650
615
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
651
616
|
weight: z.ZodMiniNumber<number>;
|
|
652
617
|
}, z.core.$strip>>>;
|
|
653
|
-
|
|
618
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
619
|
+
threshold: z.ZodMiniNumber<number>;
|
|
620
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
621
|
+
}, z.core.$strip>;
|
|
654
622
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
655
623
|
type: z.ZodMiniLiteral<"multisig">;
|
|
656
624
|
}, z.core.$strip>]>;
|
|
@@ -706,14 +674,15 @@ export declare const KeyAuthorizationToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
706
674
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
707
675
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
708
676
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
709
|
-
|
|
710
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
711
|
-
threshold: z.ZodMiniNumber<number>;
|
|
677
|
+
config: z.ZodMiniObject<{
|
|
712
678
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
713
679
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
714
680
|
weight: z.ZodMiniNumber<number>;
|
|
715
681
|
}, z.core.$strip>>>;
|
|
716
|
-
|
|
682
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
683
|
+
threshold: z.ZodMiniNumber<number>;
|
|
684
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
685
|
+
}, z.core.$strip>;
|
|
717
686
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
718
687
|
type: z.ZodMiniLiteral<"multisig">;
|
|
719
688
|
}, z.core.$strip>]>;
|
|
@@ -760,20 +729,7 @@ export declare const Signed: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
760
729
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
761
730
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
762
731
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
763
|
-
}, z.core.$strip>]>, z.
|
|
764
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
765
|
-
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[]>>>;
|
|
766
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
767
|
-
init: z.ZodMiniObject<{
|
|
768
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
769
|
-
threshold: z.ZodMiniNumber<number>;
|
|
770
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
771
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
772
|
-
weight: z.ZodMiniNumber<number>;
|
|
773
|
-
}, z.core.$strip>>>;
|
|
774
|
-
}, z.core.$strip>;
|
|
775
|
-
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[]>>>;
|
|
776
|
-
}, z.core.$strict>]>]>;
|
|
732
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
777
733
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
778
734
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
779
735
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -827,14 +783,15 @@ export declare const Signed: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
827
783
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
828
784
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
829
785
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
830
|
-
|
|
831
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
832
|
-
threshold: z.ZodMiniNumber<number>;
|
|
786
|
+
config: z.ZodMiniObject<{
|
|
833
787
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
834
788
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
835
789
|
weight: z.ZodMiniNumber<number>;
|
|
836
790
|
}, z.core.$strip>>>;
|
|
837
|
-
|
|
791
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
792
|
+
threshold: z.ZodMiniNumber<number>;
|
|
793
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
794
|
+
}, z.core.$strip>;
|
|
838
795
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
839
796
|
type: z.ZodMiniLiteral<"multisig">;
|
|
840
797
|
}, z.core.$strip>]>;
|
|
@@ -890,14 +847,15 @@ export declare const Signed: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
890
847
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
891
848
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
892
849
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
893
|
-
|
|
894
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
895
|
-
threshold: z.ZodMiniNumber<number>;
|
|
850
|
+
config: z.ZodMiniObject<{
|
|
896
851
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
897
852
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
898
853
|
weight: z.ZodMiniNumber<number>;
|
|
899
854
|
}, z.core.$strip>>>;
|
|
900
|
-
|
|
855
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
856
|
+
threshold: z.ZodMiniNumber<number>;
|
|
857
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
858
|
+
}, z.core.$strip>;
|
|
901
859
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
902
860
|
type: z.ZodMiniLiteral<"multisig">;
|
|
903
861
|
}, z.core.$strip>]>;
|
|
@@ -944,20 +902,7 @@ export declare const SignedToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
944
902
|
s: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
945
903
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
946
904
|
webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
947
|
-
}, z.core.$strip>]>, z.
|
|
948
|
-
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
949
|
-
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[]>>>;
|
|
950
|
-
}, z.core.$strict>, z.ZodMiniObject<{
|
|
951
|
-
init: z.ZodMiniObject<{
|
|
952
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
953
|
-
threshold: z.ZodMiniNumber<number>;
|
|
954
|
-
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
955
|
-
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
956
|
-
weight: z.ZodMiniNumber<number>;
|
|
957
|
-
}, z.core.$strip>>>;
|
|
958
|
-
}, z.core.$strip>;
|
|
959
|
-
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[]>>>;
|
|
960
|
-
}, z.core.$strict>]>]>;
|
|
905
|
+
}, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
|
|
961
906
|
witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
962
907
|
}, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
963
908
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
@@ -1011,14 +956,15 @@ export declare const SignedToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1011
956
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1012
957
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1013
958
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1014
|
-
|
|
1015
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1016
|
-
threshold: z.ZodMiniNumber<number>;
|
|
959
|
+
config: z.ZodMiniObject<{
|
|
1017
960
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1018
961
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1019
962
|
weight: z.ZodMiniNumber<number>;
|
|
1020
963
|
}, z.core.$strip>>>;
|
|
1021
|
-
|
|
964
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
965
|
+
threshold: z.ZodMiniNumber<number>;
|
|
966
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
967
|
+
}, z.core.$strip>;
|
|
1022
968
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1023
969
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1024
970
|
}, z.core.$strip>]>;
|
|
@@ -1074,14 +1020,15 @@ export declare const SignedToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
|
1074
1020
|
type: z.ZodMiniLiteral<"webAuthn">;
|
|
1075
1021
|
}, z.core.$strip>]>, z.ZodMiniObject<{
|
|
1076
1022
|
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1077
|
-
|
|
1078
|
-
salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
1079
|
-
threshold: z.ZodMiniNumber<number>;
|
|
1023
|
+
config: z.ZodMiniObject<{
|
|
1080
1024
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
1081
1025
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1082
1026
|
weight: z.ZodMiniNumber<number>;
|
|
1083
1027
|
}, z.core.$strip>>>;
|
|
1084
|
-
|
|
1028
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
1029
|
+
threshold: z.ZodMiniNumber<number>;
|
|
1030
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
1031
|
+
}, z.core.$strip>;
|
|
1085
1032
|
signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
|
|
1086
1033
|
type: z.ZodMiniLiteral<"multisig">;
|
|
1087
1034
|
}, z.core.$strip>]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"KeyAuthorization.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/KeyAuthorization.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAa7B,uCAAuC;AACvC,eAAO,MAAM,aAAa;;;;iBAIxB,CAAA;AAEF,gCAAgC;AAChC,eAAO,MAAM,eAAe;;;iBAG1B,CAAA;AAEF,6BAA6B;AAC7B,eAAO,MAAM,YAAY;;;;;;iBAGvB,CAAA;AAEF,oCAAoC;AACpC,eAAO,MAAM,GAAG
|
|
1
|
+
{"version":3,"file":"KeyAuthorization.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/KeyAuthorization.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAa7B,uCAAuC;AACvC,eAAO,MAAM,aAAa;;;;iBAIxB,CAAA;AAEF,gCAAgC;AAChC,eAAO,MAAM,eAAe;;;iBAG1B,CAAA;AAEF,6BAA6B;AAC7B,eAAO,MAAM,YAAY;;;;;;iBAGvB,CAAA;AAEF,oCAAoC;AACpC,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAWd,CAAA;AAEF,mCAAmC;AACnC,eAAO,MAAM,UAAU;;;;iBAIrB,CAAA;AAEF,kFAAkF;AAClF,eAAO,MAAM,eAAe;;;;iBAI1B,CAAA;AAEF,yBAAyB;AACzB,eAAO,MAAM,KAAK;;;;iBAIhB,CAAA;AAaF,4FAA4F;AAC5F,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAOjB,CAAA;AASF,uFAAuF;AACvF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAOtB,CAAA;AAEF,+EAA+E;AAC/E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAG3B,CAAA;AAEF,8EAA8E;AAC9E,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAGhC,CAAA;AAEF,uCAAuC;AACvC,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAAmB,CAAA;AAEtC,sFAAsF;AACtF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAAwB,CAAA"}
|
|
@@ -4,13 +4,42 @@ export declare const Owner: z.ZodMiniObject<{
|
|
|
4
4
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
5
5
|
weight: z.ZodMiniNumber<number>;
|
|
6
6
|
}, z.core.$strip>;
|
|
7
|
-
/** Native multisig configuration schema. */
|
|
7
|
+
/** Native multisig configuration domain schema. */
|
|
8
8
|
export declare const Config: z.ZodMiniObject<{
|
|
9
|
-
|
|
9
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
10
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
11
|
+
weight: z.ZodMiniNumber<number>;
|
|
12
|
+
}, z.core.$strip>>>;
|
|
13
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
10
14
|
threshold: z.ZodMiniNumber<number>;
|
|
15
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
16
|
+
}, z.core.$strip>;
|
|
17
|
+
/** Native multisig configuration RPC schema. */
|
|
18
|
+
export declare const Rpc: z.ZodMiniObject<{
|
|
11
19
|
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
12
20
|
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
13
21
|
weight: z.ZodMiniNumber<number>;
|
|
14
22
|
}, z.core.$strip>>>;
|
|
23
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
24
|
+
threshold: z.ZodMiniNumber<number>;
|
|
25
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
15
26
|
}, z.core.$strip>;
|
|
27
|
+
/** Codec decoding an RPC multisig configuration into a domain configuration. */
|
|
28
|
+
export declare const MultisigConfig: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
29
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
30
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
31
|
+
weight: z.ZodMiniNumber<number>;
|
|
32
|
+
}, z.core.$strip>>>;
|
|
33
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
34
|
+
threshold: z.ZodMiniNumber<number>;
|
|
35
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
36
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
37
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
38
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
39
|
+
weight: z.ZodMiniNumber<number>;
|
|
40
|
+
}, z.core.$strip>>>;
|
|
41
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
42
|
+
threshold: z.ZodMiniNumber<number>;
|
|
43
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
44
|
+
}, z.core.$strip>>;
|
|
16
45
|
//# sourceMappingURL=MultisigConfig.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MultisigConfig.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/MultisigConfig.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,6BAA6B;AAC7B,eAAO,MAAM,KAAK;;;iBAGhB,CAAA;AAEF,
|
|
1
|
+
{"version":3,"file":"MultisigConfig.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/MultisigConfig.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,6BAA6B;AAC7B,eAAO,MAAM,KAAK;;;iBAGhB,CAAA;AAEF,mDAAmD;AACnD,eAAO,MAAM,MAAM;;;;;;;;iBAYhB,CAAA;AAEH,gDAAgD;AAChD,eAAO,MAAM,GAAG;;;;;;;;iBAgBb,CAAA;AAEH,gFAAgF;AAChF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;kBAGzB,CAAA"}
|
|
@@ -8,12 +8,35 @@ export const Owner = z.object({
|
|
|
8
8
|
owner: z_Address.Address,
|
|
9
9
|
weight: z.number(),
|
|
10
10
|
});
|
|
11
|
-
/** Native multisig configuration schema. */
|
|
11
|
+
/** Native multisig configuration domain schema. */
|
|
12
12
|
export const Config = z
|
|
13
13
|
.object({
|
|
14
|
-
salt: z.optional(z_Hex.Hex),
|
|
15
|
-
threshold: z.number(),
|
|
16
14
|
owners: z.readonly(z.array(Owner)),
|
|
15
|
+
salt: z_Hex.Hex,
|
|
16
|
+
threshold: z.number(),
|
|
17
|
+
version: z.bigint(),
|
|
17
18
|
})
|
|
18
19
|
.check(z.refine((value) => core_MultisigConfig.validate(value), 'expected valid native multisig configuration'));
|
|
20
|
+
/** Native multisig configuration RPC schema. */
|
|
21
|
+
export const Rpc = z
|
|
22
|
+
.object({
|
|
23
|
+
owners: z.readonly(z.array(Owner)),
|
|
24
|
+
salt: z_Hex.Hex,
|
|
25
|
+
threshold: z.number(),
|
|
26
|
+
version: z_Hex.Hex,
|
|
27
|
+
})
|
|
28
|
+
.check(z.refine((value) => {
|
|
29
|
+
try {
|
|
30
|
+
core_MultisigConfig.fromRpc(value);
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
catch {
|
|
34
|
+
return false;
|
|
35
|
+
}
|
|
36
|
+
}, 'expected valid native multisig configuration'));
|
|
37
|
+
/** Codec decoding an RPC multisig configuration into a domain configuration. */
|
|
38
|
+
export const MultisigConfig = z.codec(Rpc, Config, {
|
|
39
|
+
decode: (value) => core_MultisigConfig.fromRpc(value),
|
|
40
|
+
encode: (value) => core_MultisigConfig.toRpc(value),
|
|
41
|
+
});
|
|
19
42
|
//# sourceMappingURL=MultisigConfig.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MultisigConfig.js","sourceRoot":"","sources":["../../../src/zod/tempo/MultisigConfig.ts"],"names":[],"mappings":"AAAA,mGAAmG;AACnG,OAAO,KAAK,mBAAmB,MAAM,+BAA+B,CAAA;AACpE,OAAO,KAAK,SAAS,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,KAAK,MAAM,WAAW,CAAA;AAClC,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,6BAA6B;AAC7B,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,KAAK,EAAE,SAAS,CAAC,OAAO;IACxB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAA;AAEF,
|
|
1
|
+
{"version":3,"file":"MultisigConfig.js","sourceRoot":"","sources":["../../../src/zod/tempo/MultisigConfig.ts"],"names":[],"mappings":"AAAA,mGAAmG;AACnG,OAAO,KAAK,mBAAmB,MAAM,+BAA+B,CAAA;AACpE,OAAO,KAAK,SAAS,MAAM,eAAe,CAAA;AAC1C,OAAO,KAAK,KAAK,MAAM,WAAW,CAAA;AAClC,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AAE7B,6BAA6B;AAC7B,MAAM,CAAC,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5B,KAAK,EAAE,SAAS,CAAC,OAAO;IACxB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;CACnB,CAAC,CAAA;AAEF,mDAAmD;AACnD,MAAM,CAAC,MAAM,MAAM,GAAG,CAAC;KACpB,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAClC,IAAI,EAAE,KAAK,CAAC,GAAG;IACf,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC;KACD,KAAK,CACJ,CAAC,CAAC,MAAM,CACN,CAAC,KAAK,EAAE,EAAE,CAAC,mBAAmB,CAAC,QAAQ,CAAC,KAAK,CAAC,EAC9C,8CAA8C,CAC/C,CACF,CAAA;AAEH,gDAAgD;AAChD,MAAM,CAAC,MAAM,GAAG,GAAG,CAAC;KACjB,MAAM,CAAC;IACN,MAAM,EAAE,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IAClC,IAAI,EAAE,KAAK,CAAC,GAAG;IACf,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,OAAO,EAAE,KAAK,CAAC,GAAG;CACnB,CAAC;KACD,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC,CAAC,KAAK,EAAE,EAAE;IACjB,IAAI,CAAC;QACH,mBAAmB,CAAC,OAAO,CAAC,KAAK,CAAC,CAAA;QAClC,OAAO,IAAI,CAAA;IACb,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,KAAK,CAAA;IACd,CAAC;AACH,CAAC,EAAE,8CAA8C,CAAC,CACnD,CAAA;AAEH,gFAAgF;AAChF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,EAAE,MAAM,EAAE;IACjD,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,mBAAmB,CAAC,OAAO,CAAC,KAAK,CAAC;IACrD,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,mBAAmB,CAAC,KAAK,CAAC,KAAK,CAAC;CACpD,CAAC,CAAA"}
|
|
@@ -0,0 +1,158 @@
|
|
|
1
|
+
import * as z from 'zod/mini';
|
|
2
|
+
/** Fields shared by every multisig operation schema. */
|
|
3
|
+
export declare const Base: z.ZodMiniObject<{
|
|
4
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
5
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
6
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
7
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
8
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
9
|
+
weight: z.ZodMiniNumber<number>;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
11
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
12
|
+
threshold: z.ZodMiniNumber<number>;
|
|
13
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
14
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
15
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
16
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
17
|
+
weight: z.ZodMiniNumber<number>;
|
|
18
|
+
}, z.core.$strip>>>;
|
|
19
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
20
|
+
threshold: z.ZodMiniNumber<number>;
|
|
21
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
22
|
+
}, z.core.$strip>>;
|
|
23
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
24
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
25
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
26
|
+
threshold: z.ZodMiniNumber<number>;
|
|
27
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
28
|
+
weight: z.ZodMiniNumber<number>;
|
|
29
|
+
}, z.core.$strip>;
|
|
30
|
+
/** Multisig transaction approval operation schema. */
|
|
31
|
+
export declare const TransactionOperation: z.ZodMiniObject<{
|
|
32
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
33
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
34
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
35
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
36
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
37
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
38
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
39
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
40
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
41
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
42
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
43
|
+
weight: z.ZodMiniNumber<number>;
|
|
44
|
+
}, z.core.$strip>>>;
|
|
45
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
46
|
+
threshold: z.ZodMiniNumber<number>;
|
|
47
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
48
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
49
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
50
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
51
|
+
weight: z.ZodMiniNumber<number>;
|
|
52
|
+
}, z.core.$strip>>>;
|
|
53
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
54
|
+
threshold: z.ZodMiniNumber<number>;
|
|
55
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
56
|
+
}, z.core.$strip>>;
|
|
57
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
58
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
59
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
60
|
+
threshold: z.ZodMiniNumber<number>;
|
|
61
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
62
|
+
weight: z.ZodMiniNumber<number>;
|
|
63
|
+
}, z.core.$strip>;
|
|
64
|
+
/** Multisig key authorization approval operation schema. */
|
|
65
|
+
export declare const KeyAuthorizationOperation: z.ZodMiniObject<{
|
|
66
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
67
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
68
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
69
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
70
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
71
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
72
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
73
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
74
|
+
weight: z.ZodMiniNumber<number>;
|
|
75
|
+
}, z.core.$strip>>>;
|
|
76
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
77
|
+
threshold: z.ZodMiniNumber<number>;
|
|
78
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
79
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
80
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
81
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
82
|
+
weight: z.ZodMiniNumber<number>;
|
|
83
|
+
}, z.core.$strip>>>;
|
|
84
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
85
|
+
threshold: z.ZodMiniNumber<number>;
|
|
86
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
87
|
+
}, z.core.$strip>>;
|
|
88
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
89
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
90
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
91
|
+
threshold: z.ZodMiniNumber<number>;
|
|
92
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
93
|
+
weight: z.ZodMiniNumber<number>;
|
|
94
|
+
}, z.core.$strip>;
|
|
95
|
+
/** Transaction or key authorization multisig operation schema. */
|
|
96
|
+
export declare const Operation: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
|
|
97
|
+
expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
|
|
98
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
|
|
99
|
+
submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
100
|
+
transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
101
|
+
transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
|
|
102
|
+
type: z.ZodMiniLiteral<"transaction">;
|
|
103
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
104
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
105
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
106
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
107
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
108
|
+
weight: z.ZodMiniNumber<number>;
|
|
109
|
+
}, z.core.$strip>>>;
|
|
110
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
111
|
+
threshold: z.ZodMiniNumber<number>;
|
|
112
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
113
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
114
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
115
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
116
|
+
weight: z.ZodMiniNumber<number>;
|
|
117
|
+
}, z.core.$strip>>>;
|
|
118
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
119
|
+
threshold: z.ZodMiniNumber<number>;
|
|
120
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
121
|
+
}, z.core.$strip>>;
|
|
122
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
123
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
124
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
125
|
+
threshold: z.ZodMiniNumber<number>;
|
|
126
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
127
|
+
weight: z.ZodMiniNumber<number>;
|
|
128
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
129
|
+
keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
130
|
+
status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
|
|
131
|
+
type: z.ZodMiniLiteral<"keyAuthorization">;
|
|
132
|
+
account: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
133
|
+
approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
|
|
134
|
+
config: z.ZodMiniCodec<z.ZodMiniObject<{
|
|
135
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
136
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
137
|
+
weight: z.ZodMiniNumber<number>;
|
|
138
|
+
}, z.core.$strip>>>;
|
|
139
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
140
|
+
threshold: z.ZodMiniNumber<number>;
|
|
141
|
+
version: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
142
|
+
}, z.core.$strip>, z.ZodMiniObject<{
|
|
143
|
+
owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
|
|
144
|
+
owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
145
|
+
weight: z.ZodMiniNumber<number>;
|
|
146
|
+
}, z.core.$strip>>>;
|
|
147
|
+
salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
148
|
+
threshold: z.ZodMiniNumber<number>;
|
|
149
|
+
version: z.ZodMiniBigInt<bigint>;
|
|
150
|
+
}, z.core.$strip>>;
|
|
151
|
+
createdAt: z.ZodMiniNumber<number>;
|
|
152
|
+
hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
|
|
153
|
+
signatureCount: z.ZodMiniNumber<number>;
|
|
154
|
+
threshold: z.ZodMiniNumber<number>;
|
|
155
|
+
updatedAt: z.ZodMiniNumber<number>;
|
|
156
|
+
weight: z.ZodMiniNumber<number>;
|
|
157
|
+
}, z.core.$strip>]>;
|
|
158
|
+
//# sourceMappingURL=MultisigOperation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MultisigOperation.d.ts","sourceRoot":"","sources":["../../../src/zod/tempo/MultisigOperation.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,CAAC,MAAM,UAAU,CAAA;AA0B7B,wDAAwD;AACxD,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;iBAAyB,CAAA;AAE1C,sDAAsD;AACtD,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAclB,CAAA;AAEf,4DAA4D;AAC5D,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAOvB,CAAA;AAEf,kEAAkE;AAClE,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAGpB,CAAA"}
|