ox 1.7.4 → 1.7.5

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.
Files changed (105) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/core/AbiEvent.d.ts.map +1 -1
  3. package/dist/core/AbiEvent.js +10 -9
  4. package/dist/core/AbiEvent.js.map +1 -1
  5. package/dist/core/Blobs.d.ts.map +1 -1
  6. package/dist/core/Blobs.js +6 -2
  7. package/dist/core/Blobs.js.map +1 -1
  8. package/dist/core/Signature.d.ts +6 -5
  9. package/dist/core/Signature.d.ts.map +1 -1
  10. package/dist/core/Signature.js +17 -7
  11. package/dist/core/Signature.js.map +1 -1
  12. package/dist/core/Siwe.d.ts.map +1 -1
  13. package/dist/core/Siwe.js +21 -1
  14. package/dist/core/Siwe.js.map +1 -1
  15. package/dist/tempo/KeyAuthorization.d.ts +42 -38
  16. package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
  17. package/dist/tempo/KeyAuthorization.js +24 -4
  18. package/dist/tempo/KeyAuthorization.js.map +1 -1
  19. package/dist/tempo/MultisigConfig.d.ts +18 -15
  20. package/dist/tempo/MultisigConfig.d.ts.map +1 -1
  21. package/dist/tempo/MultisigConfig.js +49 -20
  22. package/dist/tempo/MultisigConfig.js.map +1 -1
  23. package/dist/tempo/MultisigOperation.d.ts +3 -2
  24. package/dist/tempo/MultisigOperation.d.ts.map +1 -1
  25. package/dist/tempo/MultisigOperation.js +20 -100
  26. package/dist/tempo/MultisigOperation.js.map +1 -1
  27. package/dist/tempo/MultisigSimulation.d.ts +2 -49
  28. package/dist/tempo/MultisigSimulation.d.ts.map +1 -1
  29. package/dist/tempo/MultisigSimulation.js +18 -46
  30. package/dist/tempo/MultisigSimulation.js.map +1 -1
  31. package/dist/tempo/SignatureEnvelope.d.ts +72 -140
  32. package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
  33. package/dist/tempo/SignatureEnvelope.js +130 -181
  34. package/dist/tempo/SignatureEnvelope.js.map +1 -1
  35. package/dist/tempo/TransactionRequest.d.ts +4 -2
  36. package/dist/tempo/TransactionRequest.d.ts.map +1 -1
  37. package/dist/tempo/TransactionRequest.js +6 -1
  38. package/dist/tempo/TransactionRequest.js.map +1 -1
  39. package/dist/tempo/index.d.ts +3 -1
  40. package/dist/tempo/index.d.ts.map +1 -1
  41. package/dist/tempo/index.js +3 -1
  42. package/dist/tempo/index.js.map +1 -1
  43. package/dist/zod/tempo/AuthorizationTempo.d.ts +350 -10
  44. package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
  45. package/dist/zod/tempo/KeyAuthorization.d.ts +242 -422
  46. package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
  47. package/dist/zod/tempo/KeyAuthorization.js +29 -31
  48. package/dist/zod/tempo/KeyAuthorization.js.map +1 -1
  49. package/dist/zod/tempo/MultisigSimulation.d.ts +8 -76
  50. package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -1
  51. package/dist/zod/tempo/MultisigSimulation.js +3 -37
  52. package/dist/zod/tempo/MultisigSimulation.js.map +1 -1
  53. package/dist/zod/tempo/RpcSchemaTempo.d.ts +284 -228
  54. package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
  55. package/dist/zod/tempo/SignatureEnvelope.d.ts +105 -3
  56. package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
  57. package/dist/zod/tempo/SignatureEnvelope.js +21 -9
  58. package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
  59. package/dist/zod/tempo/Transaction.d.ts +676 -448
  60. package/dist/zod/tempo/Transaction.d.ts.map +1 -1
  61. package/dist/zod/tempo/TransactionRequest.d.ts +590 -473
  62. package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
  63. package/dist/zod/tempo/TransactionRequest.js +8 -0
  64. package/dist/zod/tempo/TransactionRequest.js.map +1 -1
  65. package/dist/zod/tempo/TxEnvelopeTempo.d.ts +327 -213
  66. package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
  67. package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +105 -3
  68. package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
  69. package/package.json +1 -1
  70. package/src/core/AbiEvent.ts +11 -9
  71. package/src/core/Blobs.ts +6 -2
  72. package/src/core/Signature.ts +41 -11
  73. package/src/core/Siwe.ts +20 -1
  74. package/src/core/_test/AbiEvent.test.ts +45 -0
  75. package/src/core/_test/Blobs.test.ts +22 -0
  76. package/src/core/_test/Signature.test.ts +166 -0
  77. package/src/core/_test/Siwe.test.ts +100 -1
  78. package/src/tempo/AuthorizationTempo.test.ts +8 -4
  79. package/src/tempo/KeyAuthorization.test-d.ts +16 -63
  80. package/src/tempo/KeyAuthorization.test.ts +69 -11
  81. package/src/tempo/KeyAuthorization.ts +107 -63
  82. package/src/tempo/MultisigConfig.test.ts +44 -20
  83. package/src/tempo/MultisigConfig.ts +65 -23
  84. package/src/tempo/MultisigOperation.test.ts +79 -550
  85. package/src/tempo/MultisigOperation.ts +31 -146
  86. package/src/tempo/MultisigSimulation.test-d.ts +2 -2
  87. package/src/tempo/MultisigSimulation.test.ts +21 -110
  88. package/src/tempo/MultisigSimulation.ts +25 -99
  89. package/src/tempo/SignatureEnvelope.test-d.ts +29 -47
  90. package/src/tempo/SignatureEnvelope.test.ts +328 -541
  91. package/src/tempo/SignatureEnvelope.ts +196 -291
  92. package/src/tempo/Transaction.test.ts +4 -4
  93. package/src/tempo/TransactionRequest.test.ts +17 -80
  94. package/src/tempo/TransactionRequest.ts +19 -2
  95. package/src/tempo/index.ts +3 -1
  96. package/src/tempo/multisig.e2e.test.ts +321 -860
  97. package/src/version.ts +1 -1
  98. package/src/zod/tempo/KeyAuthorization.ts +50 -39
  99. package/src/zod/tempo/MultisigSimulation.ts +3 -48
  100. package/src/zod/tempo/SignatureEnvelope.ts +46 -35
  101. package/src/zod/tempo/TransactionRequest.ts +14 -0
  102. package/src/zod/tempo/_test/KeyAuthorization.test.ts +69 -20
  103. package/src/zod/tempo/_test/MultisigSimulation.test.ts +6 -31
  104. package/src/zod/tempo/_test/SignatureEnvelope.test.ts +118 -85
  105. package/src/zod/tempo/_test/TransactionRequest.test.ts +9 -19
@@ -88,7 +88,41 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
88
88
  threshold: z.ZodMiniNumber<number>;
89
89
  version: z.ZodMiniBigInt<bigint>;
90
90
  }, z.core.$strip>;
91
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
91
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
92
+ signature: z.ZodMiniObject<{
93
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
94
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
95
+ yParity: z.ZodMiniNumber<number>;
96
+ }, z.core.$strip>;
97
+ type: z.ZodMiniLiteral<"secp256k1">;
98
+ }, z.core.$strip>, z.ZodMiniObject<{
99
+ prehash: z.ZodMiniBoolean<boolean>;
100
+ publicKey: z.ZodMiniObject<{
101
+ prefix: z.ZodMiniNumber<number>;
102
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
103
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
104
+ }, z.core.$strip>;
105
+ signature: z.ZodMiniObject<{
106
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
107
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
108
+ }, z.core.$strip>;
109
+ type: z.ZodMiniLiteral<"p256">;
110
+ }, z.core.$strip>, z.ZodMiniObject<{
111
+ metadata: z.ZodMiniObject<{
112
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
113
+ clientDataJSON: z.ZodMiniString<string>;
114
+ }, z.core.$strip>;
115
+ publicKey: z.ZodMiniObject<{
116
+ prefix: z.ZodMiniNumber<number>;
117
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
118
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
119
+ }, z.core.$strip>;
120
+ signature: z.ZodMiniObject<{
121
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
122
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
123
+ }, z.core.$strip>;
124
+ type: z.ZodMiniLiteral<"webAuthn">;
125
+ }, z.core.$strip>]>>>;
92
126
  type: z.ZodMiniLiteral<"multisig">;
93
127
  }, z.core.$strip>]>>;
94
128
  }, z.core.$strip>>>>;
@@ -131,7 +165,7 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
131
165
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
132
166
  isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
133
167
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
134
- keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
168
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
135
169
  limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
136
170
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
137
171
  period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
@@ -159,73 +193,9 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
159
193
  webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
160
194
  }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
161
195
  witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
162
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
163
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
164
- isAdmin: z.ZodMiniBoolean<boolean>;
165
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
166
- chainId: z.ZodMiniBigInt<bigint>;
167
- expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
168
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
169
- limit: z.ZodMiniBigInt<bigint>;
170
- period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
171
- token: z.ZodMiniTemplateLiteral<`0x${string}`>;
172
- }, z.core.$strip>>>>;
173
- scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
174
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
175
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
176
- selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
177
- }, z.core.$strip>>>>;
178
- signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
179
- signature: z.ZodMiniObject<{
180
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
181
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
182
- yParity: z.ZodMiniNumber<number>;
183
- }, z.core.$strip>;
184
- type: z.ZodMiniLiteral<"secp256k1">;
185
- }, z.core.$strip>, z.ZodMiniObject<{
186
- prehash: z.ZodMiniBoolean<boolean>;
187
- publicKey: z.ZodMiniObject<{
188
- prefix: z.ZodMiniNumber<number>;
189
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
190
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
191
- }, z.core.$strip>;
192
- signature: z.ZodMiniObject<{
193
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
194
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
195
- }, z.core.$strip>;
196
- type: z.ZodMiniLiteral<"p256">;
197
- }, z.core.$strip>, z.ZodMiniObject<{
198
- metadata: z.ZodMiniObject<{
199
- authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
200
- clientDataJSON: z.ZodMiniString<string>;
201
- }, z.core.$strip>;
202
- publicKey: z.ZodMiniObject<{
203
- prefix: z.ZodMiniNumber<number>;
204
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
205
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
206
- }, z.core.$strip>;
207
- signature: z.ZodMiniObject<{
208
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
209
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
210
- }, z.core.$strip>;
211
- type: z.ZodMiniLiteral<"webAuthn">;
212
- }, z.core.$strip>]>, z.ZodMiniObject<{
213
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
214
- config: z.ZodMiniObject<{
215
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
216
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
217
- weight: z.ZodMiniNumber<number>;
218
- }, z.core.$strip>>>;
219
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
220
- threshold: z.ZodMiniNumber<number>;
221
- version: z.ZodMiniBigInt<bigint>;
222
- }, z.core.$strip>;
223
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
224
- type: z.ZodMiniLiteral<"multisig">;
225
- }, z.core.$strip>]>;
226
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
227
- witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
228
196
  }, z.core.$strip>, z.ZodMiniObject<{
197
+ account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
198
+ isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
229
199
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
230
200
  chainId: z.ZodMiniBigInt<bigint>;
231
201
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -284,12 +254,46 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
284
254
  threshold: z.ZodMiniNumber<number>;
285
255
  version: z.ZodMiniBigInt<bigint>;
286
256
  }, z.core.$strip>;
287
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
257
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
258
+ signature: z.ZodMiniObject<{
259
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
260
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
261
+ yParity: z.ZodMiniNumber<number>;
262
+ }, z.core.$strip>;
263
+ type: z.ZodMiniLiteral<"secp256k1">;
264
+ }, z.core.$strip>, z.ZodMiniObject<{
265
+ prehash: z.ZodMiniBoolean<boolean>;
266
+ publicKey: z.ZodMiniObject<{
267
+ prefix: z.ZodMiniNumber<number>;
268
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
269
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
270
+ }, z.core.$strip>;
271
+ signature: z.ZodMiniObject<{
272
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
273
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
274
+ }, z.core.$strip>;
275
+ type: z.ZodMiniLiteral<"p256">;
276
+ }, z.core.$strip>, z.ZodMiniObject<{
277
+ metadata: z.ZodMiniObject<{
278
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
279
+ clientDataJSON: z.ZodMiniString<string>;
280
+ }, z.core.$strip>;
281
+ publicKey: z.ZodMiniObject<{
282
+ prefix: z.ZodMiniNumber<number>;
283
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
284
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
285
+ }, z.core.$strip>;
286
+ signature: z.ZodMiniObject<{
287
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
288
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
289
+ }, z.core.$strip>;
290
+ type: z.ZodMiniLiteral<"webAuthn">;
291
+ }, z.core.$strip>]>>>;
288
292
  type: z.ZodMiniLiteral<"multisig">;
289
293
  }, z.core.$strip>]>;
290
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
294
+ type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
291
295
  witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
292
- }, z.core.$strip>]>>>;
296
+ }, z.core.$strip>>>;
293
297
  maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
294
298
  maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
295
299
  nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
@@ -371,7 +375,41 @@ export declare const Tempo: z.ZodMiniCodec<z.ZodMiniObject<{
371
375
  threshold: z.ZodMiniNumber<number>;
372
376
  version: z.ZodMiniBigInt<bigint>;
373
377
  }, z.core.$strip>;
374
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
378
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
379
+ signature: z.ZodMiniObject<{
380
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
381
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
382
+ yParity: z.ZodMiniNumber<number>;
383
+ }, z.core.$strip>;
384
+ type: z.ZodMiniLiteral<"secp256k1">;
385
+ }, z.core.$strip>, z.ZodMiniObject<{
386
+ prehash: z.ZodMiniBoolean<boolean>;
387
+ publicKey: z.ZodMiniObject<{
388
+ prefix: z.ZodMiniNumber<number>;
389
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
390
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
391
+ }, z.core.$strip>;
392
+ signature: z.ZodMiniObject<{
393
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
394
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
395
+ }, z.core.$strip>;
396
+ type: z.ZodMiniLiteral<"p256">;
397
+ }, z.core.$strip>, z.ZodMiniObject<{
398
+ metadata: z.ZodMiniObject<{
399
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
400
+ clientDataJSON: z.ZodMiniString<string>;
401
+ }, z.core.$strip>;
402
+ publicKey: z.ZodMiniObject<{
403
+ prefix: z.ZodMiniNumber<number>;
404
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
405
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
406
+ }, z.core.$strip>;
407
+ signature: z.ZodMiniObject<{
408
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
409
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
410
+ }, z.core.$strip>;
411
+ type: z.ZodMiniLiteral<"webAuthn">;
412
+ }, z.core.$strip>]>>>;
375
413
  type: z.ZodMiniLiteral<"multisig">;
376
414
  }, z.core.$strip>]>>;
377
415
  transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
@@ -468,7 +506,41 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
468
506
  threshold: z.ZodMiniNumber<number>;
469
507
  version: z.ZodMiniBigInt<bigint>;
470
508
  }, z.core.$strip>;
471
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
509
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
510
+ signature: z.ZodMiniObject<{
511
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
512
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
513
+ yParity: z.ZodMiniNumber<number>;
514
+ }, z.core.$strip>;
515
+ type: z.ZodMiniLiteral<"secp256k1">;
516
+ }, z.core.$strip>, z.ZodMiniObject<{
517
+ prehash: z.ZodMiniBoolean<boolean>;
518
+ publicKey: z.ZodMiniObject<{
519
+ prefix: z.ZodMiniNumber<number>;
520
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
521
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
522
+ }, z.core.$strip>;
523
+ signature: z.ZodMiniObject<{
524
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
525
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
526
+ }, z.core.$strip>;
527
+ type: z.ZodMiniLiteral<"p256">;
528
+ }, z.core.$strip>, z.ZodMiniObject<{
529
+ metadata: z.ZodMiniObject<{
530
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
531
+ clientDataJSON: z.ZodMiniString<string>;
532
+ }, z.core.$strip>;
533
+ publicKey: z.ZodMiniObject<{
534
+ prefix: z.ZodMiniNumber<number>;
535
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
536
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
537
+ }, z.core.$strip>;
538
+ signature: z.ZodMiniObject<{
539
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
540
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
541
+ }, z.core.$strip>;
542
+ type: z.ZodMiniLiteral<"webAuthn">;
543
+ }, z.core.$strip>]>>>;
472
544
  type: z.ZodMiniLiteral<"multisig">;
473
545
  }, z.core.$strip>]>>;
474
546
  }, z.core.$strip>>>>;
@@ -511,7 +583,7 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
511
583
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
512
584
  isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
513
585
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
514
- keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
586
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
515
587
  limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
516
588
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
517
589
  period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
@@ -539,73 +611,9 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
539
611
  webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
540
612
  }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
541
613
  witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
542
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
543
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
544
- isAdmin: z.ZodMiniBoolean<boolean>;
545
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
546
- chainId: z.ZodMiniBigInt<bigint>;
547
- expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
548
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
549
- limit: z.ZodMiniBigInt<bigint>;
550
- period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
551
- token: z.ZodMiniTemplateLiteral<`0x${string}`>;
552
- }, z.core.$strip>>>>;
553
- scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
554
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
555
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
556
- selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
557
- }, z.core.$strip>>>>;
558
- signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
559
- signature: z.ZodMiniObject<{
560
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
561
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
562
- yParity: z.ZodMiniNumber<number>;
563
- }, z.core.$strip>;
564
- type: z.ZodMiniLiteral<"secp256k1">;
565
- }, z.core.$strip>, z.ZodMiniObject<{
566
- prehash: z.ZodMiniBoolean<boolean>;
567
- publicKey: z.ZodMiniObject<{
568
- prefix: z.ZodMiniNumber<number>;
569
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
570
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
571
- }, z.core.$strip>;
572
- signature: z.ZodMiniObject<{
573
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
574
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
575
- }, z.core.$strip>;
576
- type: z.ZodMiniLiteral<"p256">;
577
- }, z.core.$strip>, z.ZodMiniObject<{
578
- metadata: z.ZodMiniObject<{
579
- authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
580
- clientDataJSON: z.ZodMiniString<string>;
581
- }, z.core.$strip>;
582
- publicKey: z.ZodMiniObject<{
583
- prefix: z.ZodMiniNumber<number>;
584
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
585
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
586
- }, z.core.$strip>;
587
- signature: z.ZodMiniObject<{
588
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
589
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
590
- }, z.core.$strip>;
591
- type: z.ZodMiniLiteral<"webAuthn">;
592
- }, z.core.$strip>]>, z.ZodMiniObject<{
593
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
594
- config: z.ZodMiniObject<{
595
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
596
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
597
- weight: z.ZodMiniNumber<number>;
598
- }, z.core.$strip>>>;
599
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
600
- threshold: z.ZodMiniNumber<number>;
601
- version: z.ZodMiniBigInt<bigint>;
602
- }, z.core.$strip>;
603
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
604
- type: z.ZodMiniLiteral<"multisig">;
605
- }, z.core.$strip>]>;
606
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
607
- witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
608
614
  }, z.core.$strip>, z.ZodMiniObject<{
615
+ account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
616
+ isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
609
617
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
610
618
  chainId: z.ZodMiniBigInt<bigint>;
611
619
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -664,12 +672,46 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
664
672
  threshold: z.ZodMiniNumber<number>;
665
673
  version: z.ZodMiniBigInt<bigint>;
666
674
  }, z.core.$strip>;
667
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
675
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
676
+ signature: z.ZodMiniObject<{
677
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
678
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
679
+ yParity: z.ZodMiniNumber<number>;
680
+ }, z.core.$strip>;
681
+ type: z.ZodMiniLiteral<"secp256k1">;
682
+ }, z.core.$strip>, z.ZodMiniObject<{
683
+ prehash: z.ZodMiniBoolean<boolean>;
684
+ publicKey: z.ZodMiniObject<{
685
+ prefix: z.ZodMiniNumber<number>;
686
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
687
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
688
+ }, z.core.$strip>;
689
+ signature: z.ZodMiniObject<{
690
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
691
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
692
+ }, z.core.$strip>;
693
+ type: z.ZodMiniLiteral<"p256">;
694
+ }, z.core.$strip>, z.ZodMiniObject<{
695
+ metadata: z.ZodMiniObject<{
696
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
697
+ clientDataJSON: z.ZodMiniString<string>;
698
+ }, z.core.$strip>;
699
+ publicKey: z.ZodMiniObject<{
700
+ prefix: z.ZodMiniNumber<number>;
701
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
702
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
703
+ }, z.core.$strip>;
704
+ signature: z.ZodMiniObject<{
705
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
706
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
707
+ }, z.core.$strip>;
708
+ type: z.ZodMiniLiteral<"webAuthn">;
709
+ }, z.core.$strip>]>>>;
668
710
  type: z.ZodMiniLiteral<"multisig">;
669
711
  }, z.core.$strip>]>;
670
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
712
+ type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
671
713
  witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
672
- }, z.core.$strip>]>>>;
714
+ }, z.core.$strip>>>;
673
715
  maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
674
716
  maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
675
717
  nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
@@ -751,7 +793,41 @@ export declare const TempoToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
751
793
  threshold: z.ZodMiniNumber<number>;
752
794
  version: z.ZodMiniBigInt<bigint>;
753
795
  }, z.core.$strip>;
754
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
796
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
797
+ signature: z.ZodMiniObject<{
798
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
799
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
800
+ yParity: z.ZodMiniNumber<number>;
801
+ }, z.core.$strip>;
802
+ type: z.ZodMiniLiteral<"secp256k1">;
803
+ }, z.core.$strip>, z.ZodMiniObject<{
804
+ prehash: z.ZodMiniBoolean<boolean>;
805
+ publicKey: z.ZodMiniObject<{
806
+ prefix: z.ZodMiniNumber<number>;
807
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
808
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
809
+ }, z.core.$strip>;
810
+ signature: z.ZodMiniObject<{
811
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
812
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
813
+ }, z.core.$strip>;
814
+ type: z.ZodMiniLiteral<"p256">;
815
+ }, z.core.$strip>, z.ZodMiniObject<{
816
+ metadata: z.ZodMiniObject<{
817
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
818
+ clientDataJSON: z.ZodMiniString<string>;
819
+ }, z.core.$strip>;
820
+ publicKey: z.ZodMiniObject<{
821
+ prefix: z.ZodMiniNumber<number>;
822
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
823
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
824
+ }, z.core.$strip>;
825
+ signature: z.ZodMiniObject<{
826
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
827
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
828
+ }, z.core.$strip>;
829
+ type: z.ZodMiniLiteral<"webAuthn">;
830
+ }, z.core.$strip>]>>>;
755
831
  type: z.ZodMiniLiteral<"multisig">;
756
832
  }, z.core.$strip>]>>;
757
833
  transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
@@ -852,7 +928,41 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
852
928
  threshold: z.ZodMiniNumber<number>;
853
929
  version: z.ZodMiniBigInt<bigint>;
854
930
  }, z.core.$strip>;
855
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
931
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
932
+ signature: z.ZodMiniObject<{
933
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
934
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
935
+ yParity: z.ZodMiniNumber<number>;
936
+ }, z.core.$strip>;
937
+ type: z.ZodMiniLiteral<"secp256k1">;
938
+ }, z.core.$strip>, z.ZodMiniObject<{
939
+ prehash: z.ZodMiniBoolean<boolean>;
940
+ publicKey: z.ZodMiniObject<{
941
+ prefix: z.ZodMiniNumber<number>;
942
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
943
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
944
+ }, z.core.$strip>;
945
+ signature: z.ZodMiniObject<{
946
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
947
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
948
+ }, z.core.$strip>;
949
+ type: z.ZodMiniLiteral<"p256">;
950
+ }, z.core.$strip>, z.ZodMiniObject<{
951
+ metadata: z.ZodMiniObject<{
952
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
953
+ clientDataJSON: z.ZodMiniString<string>;
954
+ }, z.core.$strip>;
955
+ publicKey: z.ZodMiniObject<{
956
+ prefix: z.ZodMiniNumber<number>;
957
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
958
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
959
+ }, z.core.$strip>;
960
+ signature: z.ZodMiniObject<{
961
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
962
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
963
+ }, z.core.$strip>;
964
+ type: z.ZodMiniLiteral<"webAuthn">;
965
+ }, z.core.$strip>]>>>;
856
966
  type: z.ZodMiniLiteral<"multisig">;
857
967
  }, z.core.$strip>]>>;
858
968
  }, z.core.$strip>>>>;
@@ -892,7 +1002,7 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
892
1002
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
893
1003
  isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
894
1004
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
895
- keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1005
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
896
1006
  limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
897
1007
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
898
1008
  period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
@@ -920,73 +1030,9 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
920
1030
  webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
921
1031
  }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
922
1032
  witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
923
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
924
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
925
- isAdmin: z.ZodMiniBoolean<boolean>;
926
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
927
- chainId: z.ZodMiniBigInt<bigint>;
928
- expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
929
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
930
- limit: z.ZodMiniBigInt<bigint>;
931
- period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
932
- token: z.ZodMiniTemplateLiteral<`0x${string}`>;
933
- }, z.core.$strip>>>>;
934
- scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
935
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
936
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
937
- selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
938
- }, z.core.$strip>>>>;
939
- signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
940
- signature: z.ZodMiniObject<{
941
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
942
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
943
- yParity: z.ZodMiniNumber<number>;
944
- }, z.core.$strip>;
945
- type: z.ZodMiniLiteral<"secp256k1">;
946
- }, z.core.$strip>, z.ZodMiniObject<{
947
- prehash: z.ZodMiniBoolean<boolean>;
948
- publicKey: z.ZodMiniObject<{
949
- prefix: z.ZodMiniNumber<number>;
950
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
951
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
952
- }, z.core.$strip>;
953
- signature: z.ZodMiniObject<{
954
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
955
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
956
- }, z.core.$strip>;
957
- type: z.ZodMiniLiteral<"p256">;
958
- }, z.core.$strip>, z.ZodMiniObject<{
959
- metadata: z.ZodMiniObject<{
960
- authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
961
- clientDataJSON: z.ZodMiniString<string>;
962
- }, z.core.$strip>;
963
- publicKey: z.ZodMiniObject<{
964
- prefix: z.ZodMiniNumber<number>;
965
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
966
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
967
- }, z.core.$strip>;
968
- signature: z.ZodMiniObject<{
969
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
970
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
971
- }, z.core.$strip>;
972
- type: z.ZodMiniLiteral<"webAuthn">;
973
- }, z.core.$strip>]>, z.ZodMiniObject<{
974
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
975
- config: z.ZodMiniObject<{
976
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
977
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
978
- weight: z.ZodMiniNumber<number>;
979
- }, z.core.$strip>>>;
980
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
981
- threshold: z.ZodMiniNumber<number>;
982
- version: z.ZodMiniBigInt<bigint>;
983
- }, z.core.$strip>;
984
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
985
- type: z.ZodMiniLiteral<"multisig">;
986
- }, z.core.$strip>]>;
987
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
988
- witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
989
1033
  }, z.core.$strip>, z.ZodMiniObject<{
1034
+ account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1035
+ isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
990
1036
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
991
1037
  chainId: z.ZodMiniBigInt<bigint>;
992
1038
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -1045,12 +1091,46 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
1045
1091
  threshold: z.ZodMiniNumber<number>;
1046
1092
  version: z.ZodMiniBigInt<bigint>;
1047
1093
  }, z.core.$strip>;
1048
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1094
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1095
+ signature: z.ZodMiniObject<{
1096
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1097
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1098
+ yParity: z.ZodMiniNumber<number>;
1099
+ }, z.core.$strip>;
1100
+ type: z.ZodMiniLiteral<"secp256k1">;
1101
+ }, z.core.$strip>, z.ZodMiniObject<{
1102
+ prehash: z.ZodMiniBoolean<boolean>;
1103
+ publicKey: z.ZodMiniObject<{
1104
+ prefix: z.ZodMiniNumber<number>;
1105
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1106
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1107
+ }, z.core.$strip>;
1108
+ signature: z.ZodMiniObject<{
1109
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1110
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1111
+ }, z.core.$strip>;
1112
+ type: z.ZodMiniLiteral<"p256">;
1113
+ }, z.core.$strip>, z.ZodMiniObject<{
1114
+ metadata: z.ZodMiniObject<{
1115
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1116
+ clientDataJSON: z.ZodMiniString<string>;
1117
+ }, z.core.$strip>;
1118
+ publicKey: z.ZodMiniObject<{
1119
+ prefix: z.ZodMiniNumber<number>;
1120
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1121
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1122
+ }, z.core.$strip>;
1123
+ signature: z.ZodMiniObject<{
1124
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1125
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1126
+ }, z.core.$strip>;
1127
+ type: z.ZodMiniLiteral<"webAuthn">;
1128
+ }, z.core.$strip>]>>>;
1049
1129
  type: z.ZodMiniLiteral<"multisig">;
1050
1130
  }, z.core.$strip>]>;
1051
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1131
+ type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
1052
1132
  witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1053
- }, z.core.$strip>]>>>;
1133
+ }, z.core.$strip>>>;
1054
1134
  maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
1055
1135
  maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
1056
1136
  nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
@@ -1132,7 +1212,41 @@ export declare const PendingTempo: z.ZodMiniCodec<z.ZodMiniObject<{
1132
1212
  threshold: z.ZodMiniNumber<number>;
1133
1213
  version: z.ZodMiniBigInt<bigint>;
1134
1214
  }, z.core.$strip>;
1135
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1215
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1216
+ signature: z.ZodMiniObject<{
1217
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1218
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1219
+ yParity: z.ZodMiniNumber<number>;
1220
+ }, z.core.$strip>;
1221
+ type: z.ZodMiniLiteral<"secp256k1">;
1222
+ }, z.core.$strip>, z.ZodMiniObject<{
1223
+ prehash: z.ZodMiniBoolean<boolean>;
1224
+ publicKey: z.ZodMiniObject<{
1225
+ prefix: z.ZodMiniNumber<number>;
1226
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1227
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1228
+ }, z.core.$strip>;
1229
+ signature: z.ZodMiniObject<{
1230
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1231
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1232
+ }, z.core.$strip>;
1233
+ type: z.ZodMiniLiteral<"p256">;
1234
+ }, z.core.$strip>, z.ZodMiniObject<{
1235
+ metadata: z.ZodMiniObject<{
1236
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1237
+ clientDataJSON: z.ZodMiniString<string>;
1238
+ }, z.core.$strip>;
1239
+ publicKey: z.ZodMiniObject<{
1240
+ prefix: z.ZodMiniNumber<number>;
1241
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1242
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1243
+ }, z.core.$strip>;
1244
+ signature: z.ZodMiniObject<{
1245
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1246
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1247
+ }, z.core.$strip>;
1248
+ type: z.ZodMiniLiteral<"webAuthn">;
1249
+ }, z.core.$strip>]>>>;
1136
1250
  type: z.ZodMiniLiteral<"multisig">;
1137
1251
  }, z.core.$strip>]>>;
1138
1252
  type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;
@@ -1228,7 +1342,41 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
1228
1342
  threshold: z.ZodMiniNumber<number>;
1229
1343
  version: z.ZodMiniBigInt<bigint>;
1230
1344
  }, z.core.$strip>;
1231
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1345
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1346
+ signature: z.ZodMiniObject<{
1347
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1348
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1349
+ yParity: z.ZodMiniNumber<number>;
1350
+ }, z.core.$strip>;
1351
+ type: z.ZodMiniLiteral<"secp256k1">;
1352
+ }, z.core.$strip>, z.ZodMiniObject<{
1353
+ prehash: z.ZodMiniBoolean<boolean>;
1354
+ publicKey: z.ZodMiniObject<{
1355
+ prefix: z.ZodMiniNumber<number>;
1356
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1357
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1358
+ }, z.core.$strip>;
1359
+ signature: z.ZodMiniObject<{
1360
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1361
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1362
+ }, z.core.$strip>;
1363
+ type: z.ZodMiniLiteral<"p256">;
1364
+ }, z.core.$strip>, z.ZodMiniObject<{
1365
+ metadata: z.ZodMiniObject<{
1366
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1367
+ clientDataJSON: z.ZodMiniString<string>;
1368
+ }, z.core.$strip>;
1369
+ publicKey: z.ZodMiniObject<{
1370
+ prefix: z.ZodMiniNumber<number>;
1371
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1372
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1373
+ }, z.core.$strip>;
1374
+ signature: z.ZodMiniObject<{
1375
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1376
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1377
+ }, z.core.$strip>;
1378
+ type: z.ZodMiniLiteral<"webAuthn">;
1379
+ }, z.core.$strip>]>>>;
1232
1380
  type: z.ZodMiniLiteral<"multisig">;
1233
1381
  }, z.core.$strip>]>>;
1234
1382
  }, z.core.$strip>>>>;
@@ -1271,7 +1419,7 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
1271
1419
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1272
1420
  isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
1273
1421
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1274
- keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1422
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
1275
1423
  limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1276
1424
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
1277
1425
  period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
@@ -1282,90 +1430,26 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
1282
1430
  s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1283
1431
  type: z.ZodMiniLiteral<"secp256k1">;
1284
1432
  v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1285
- yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1286
- }, z.core.$strip>, z.ZodMiniObject<{
1287
- preHash: z.ZodMiniBoolean<boolean>;
1288
- pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
1289
- pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
1290
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1291
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1292
- type: z.ZodMiniLiteral<"p256">;
1293
- }, z.core.$strip>, z.ZodMiniObject<{
1294
- pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
1295
- pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
1296
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1297
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1298
- type: z.ZodMiniLiteral<"webAuthn">;
1299
- webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1300
- }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
1301
- witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1302
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1303
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1304
- isAdmin: z.ZodMiniBoolean<boolean>;
1305
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1306
- chainId: z.ZodMiniBigInt<bigint>;
1307
- expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1308
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1309
- limit: z.ZodMiniBigInt<bigint>;
1310
- period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1311
- token: z.ZodMiniTemplateLiteral<`0x${string}`>;
1312
- }, z.core.$strip>>>>;
1313
- scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1314
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1315
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
1316
- selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
1317
- }, z.core.$strip>>>>;
1318
- signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1319
- signature: z.ZodMiniObject<{
1320
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1321
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1322
- yParity: z.ZodMiniNumber<number>;
1323
- }, z.core.$strip>;
1324
- type: z.ZodMiniLiteral<"secp256k1">;
1325
- }, z.core.$strip>, z.ZodMiniObject<{
1326
- prehash: z.ZodMiniBoolean<boolean>;
1327
- publicKey: z.ZodMiniObject<{
1328
- prefix: z.ZodMiniNumber<number>;
1329
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1330
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1331
- }, z.core.$strip>;
1332
- signature: z.ZodMiniObject<{
1333
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1334
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1335
- }, z.core.$strip>;
1336
- type: z.ZodMiniLiteral<"p256">;
1337
- }, z.core.$strip>, z.ZodMiniObject<{
1338
- metadata: z.ZodMiniObject<{
1339
- authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1340
- clientDataJSON: z.ZodMiniString<string>;
1341
- }, z.core.$strip>;
1342
- publicKey: z.ZodMiniObject<{
1343
- prefix: z.ZodMiniNumber<number>;
1344
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1345
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1346
- }, z.core.$strip>;
1347
- signature: z.ZodMiniObject<{
1348
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1349
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1350
- }, z.core.$strip>;
1433
+ yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1434
+ }, z.core.$strip>, z.ZodMiniObject<{
1435
+ preHash: z.ZodMiniBoolean<boolean>;
1436
+ pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
1437
+ pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
1438
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1439
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1440
+ type: z.ZodMiniLiteral<"p256">;
1441
+ }, z.core.$strip>, z.ZodMiniObject<{
1442
+ pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
1443
+ pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
1444
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1445
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1351
1446
  type: z.ZodMiniLiteral<"webAuthn">;
1352
- }, z.core.$strip>]>, z.ZodMiniObject<{
1353
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1354
- config: z.ZodMiniObject<{
1355
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1356
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1357
- weight: z.ZodMiniNumber<number>;
1358
- }, z.core.$strip>>>;
1359
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1360
- threshold: z.ZodMiniNumber<number>;
1361
- version: z.ZodMiniBigInt<bigint>;
1362
- }, z.core.$strip>;
1363
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1364
- type: z.ZodMiniLiteral<"multisig">;
1365
- }, z.core.$strip>]>;
1366
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1367
- witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1447
+ webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1448
+ }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
1449
+ witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1368
1450
  }, z.core.$strip>, z.ZodMiniObject<{
1451
+ account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1452
+ isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1369
1453
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1370
1454
  chainId: z.ZodMiniBigInt<bigint>;
1371
1455
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -1424,12 +1508,46 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
1424
1508
  threshold: z.ZodMiniNumber<number>;
1425
1509
  version: z.ZodMiniBigInt<bigint>;
1426
1510
  }, z.core.$strip>;
1427
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1511
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1512
+ signature: z.ZodMiniObject<{
1513
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1514
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1515
+ yParity: z.ZodMiniNumber<number>;
1516
+ }, z.core.$strip>;
1517
+ type: z.ZodMiniLiteral<"secp256k1">;
1518
+ }, z.core.$strip>, z.ZodMiniObject<{
1519
+ prehash: z.ZodMiniBoolean<boolean>;
1520
+ publicKey: z.ZodMiniObject<{
1521
+ prefix: z.ZodMiniNumber<number>;
1522
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1523
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1524
+ }, z.core.$strip>;
1525
+ signature: z.ZodMiniObject<{
1526
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1527
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1528
+ }, z.core.$strip>;
1529
+ type: z.ZodMiniLiteral<"p256">;
1530
+ }, z.core.$strip>, z.ZodMiniObject<{
1531
+ metadata: z.ZodMiniObject<{
1532
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1533
+ clientDataJSON: z.ZodMiniString<string>;
1534
+ }, z.core.$strip>;
1535
+ publicKey: z.ZodMiniObject<{
1536
+ prefix: z.ZodMiniNumber<number>;
1537
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1538
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1539
+ }, z.core.$strip>;
1540
+ signature: z.ZodMiniObject<{
1541
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1542
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1543
+ }, z.core.$strip>;
1544
+ type: z.ZodMiniLiteral<"webAuthn">;
1545
+ }, z.core.$strip>]>>>;
1428
1546
  type: z.ZodMiniLiteral<"multisig">;
1429
1547
  }, z.core.$strip>]>;
1430
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1548
+ type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
1431
1549
  witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1432
- }, z.core.$strip>]>>>;
1550
+ }, z.core.$strip>>>;
1433
1551
  maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
1434
1552
  maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
1435
1553
  nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
@@ -1511,7 +1629,41 @@ export declare const Transaction: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodM
1511
1629
  threshold: z.ZodMiniNumber<number>;
1512
1630
  version: z.ZodMiniBigInt<bigint>;
1513
1631
  }, z.core.$strip>;
1514
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1632
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1633
+ signature: z.ZodMiniObject<{
1634
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1635
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1636
+ yParity: z.ZodMiniNumber<number>;
1637
+ }, z.core.$strip>;
1638
+ type: z.ZodMiniLiteral<"secp256k1">;
1639
+ }, z.core.$strip>, z.ZodMiniObject<{
1640
+ prehash: z.ZodMiniBoolean<boolean>;
1641
+ publicKey: z.ZodMiniObject<{
1642
+ prefix: z.ZodMiniNumber<number>;
1643
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1644
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1645
+ }, z.core.$strip>;
1646
+ signature: z.ZodMiniObject<{
1647
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1648
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1649
+ }, z.core.$strip>;
1650
+ type: z.ZodMiniLiteral<"p256">;
1651
+ }, z.core.$strip>, z.ZodMiniObject<{
1652
+ metadata: z.ZodMiniObject<{
1653
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1654
+ clientDataJSON: z.ZodMiniString<string>;
1655
+ }, z.core.$strip>;
1656
+ publicKey: z.ZodMiniObject<{
1657
+ prefix: z.ZodMiniNumber<number>;
1658
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1659
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1660
+ }, z.core.$strip>;
1661
+ signature: z.ZodMiniObject<{
1662
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1663
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1664
+ }, z.core.$strip>;
1665
+ type: z.ZodMiniLiteral<"webAuthn">;
1666
+ }, z.core.$strip>]>>>;
1515
1667
  type: z.ZodMiniLiteral<"multisig">;
1516
1668
  }, z.core.$strip>]>>;
1517
1669
  transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat>;
@@ -1757,7 +1909,41 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
1757
1909
  threshold: z.ZodMiniNumber<number>;
1758
1910
  version: z.ZodMiniBigInt<bigint>;
1759
1911
  }, z.core.$strip>;
1760
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1912
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1913
+ signature: z.ZodMiniObject<{
1914
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1915
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1916
+ yParity: z.ZodMiniNumber<number>;
1917
+ }, z.core.$strip>;
1918
+ type: z.ZodMiniLiteral<"secp256k1">;
1919
+ }, z.core.$strip>, z.ZodMiniObject<{
1920
+ prehash: z.ZodMiniBoolean<boolean>;
1921
+ publicKey: z.ZodMiniObject<{
1922
+ prefix: z.ZodMiniNumber<number>;
1923
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1924
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1925
+ }, z.core.$strip>;
1926
+ signature: z.ZodMiniObject<{
1927
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1928
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1929
+ }, z.core.$strip>;
1930
+ type: z.ZodMiniLiteral<"p256">;
1931
+ }, z.core.$strip>, z.ZodMiniObject<{
1932
+ metadata: z.ZodMiniObject<{
1933
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1934
+ clientDataJSON: z.ZodMiniString<string>;
1935
+ }, z.core.$strip>;
1936
+ publicKey: z.ZodMiniObject<{
1937
+ prefix: z.ZodMiniNumber<number>;
1938
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1939
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1940
+ }, z.core.$strip>;
1941
+ signature: z.ZodMiniObject<{
1942
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1943
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1944
+ }, z.core.$strip>;
1945
+ type: z.ZodMiniLiteral<"webAuthn">;
1946
+ }, z.core.$strip>]>>>;
1761
1947
  type: z.ZodMiniLiteral<"multisig">;
1762
1948
  }, z.core.$strip>]>>;
1763
1949
  }, z.core.$strip>>>>;
@@ -1800,7 +1986,7 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
1800
1986
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1801
1987
  isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
1802
1988
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1803
- keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1989
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
1804
1990
  limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1805
1991
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
1806
1992
  period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
@@ -1828,73 +2014,9 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
1828
2014
  webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1829
2015
  }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
1830
2016
  witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1831
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1832
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1833
- isAdmin: z.ZodMiniBoolean<boolean>;
1834
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1835
- chainId: z.ZodMiniBigInt<bigint>;
1836
- expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1837
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1838
- limit: z.ZodMiniBigInt<bigint>;
1839
- period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1840
- token: z.ZodMiniTemplateLiteral<`0x${string}`>;
1841
- }, z.core.$strip>>>>;
1842
- scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1843
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1844
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
1845
- selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
1846
- }, z.core.$strip>>>>;
1847
- signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1848
- signature: z.ZodMiniObject<{
1849
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1850
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1851
- yParity: z.ZodMiniNumber<number>;
1852
- }, z.core.$strip>;
1853
- type: z.ZodMiniLiteral<"secp256k1">;
1854
- }, z.core.$strip>, z.ZodMiniObject<{
1855
- prehash: z.ZodMiniBoolean<boolean>;
1856
- publicKey: z.ZodMiniObject<{
1857
- prefix: z.ZodMiniNumber<number>;
1858
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1859
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1860
- }, z.core.$strip>;
1861
- signature: z.ZodMiniObject<{
1862
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1863
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1864
- }, z.core.$strip>;
1865
- type: z.ZodMiniLiteral<"p256">;
1866
- }, z.core.$strip>, z.ZodMiniObject<{
1867
- metadata: z.ZodMiniObject<{
1868
- authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1869
- clientDataJSON: z.ZodMiniString<string>;
1870
- }, z.core.$strip>;
1871
- publicKey: z.ZodMiniObject<{
1872
- prefix: z.ZodMiniNumber<number>;
1873
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1874
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1875
- }, z.core.$strip>;
1876
- signature: z.ZodMiniObject<{
1877
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1878
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1879
- }, z.core.$strip>;
1880
- type: z.ZodMiniLiteral<"webAuthn">;
1881
- }, z.core.$strip>]>, z.ZodMiniObject<{
1882
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1883
- config: z.ZodMiniObject<{
1884
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1885
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1886
- weight: z.ZodMiniNumber<number>;
1887
- }, z.core.$strip>>>;
1888
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1889
- threshold: z.ZodMiniNumber<number>;
1890
- version: z.ZodMiniBigInt<bigint>;
1891
- }, z.core.$strip>;
1892
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1893
- type: z.ZodMiniLiteral<"multisig">;
1894
- }, z.core.$strip>]>;
1895
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1896
- witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1897
2017
  }, z.core.$strip>, z.ZodMiniObject<{
2018
+ account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2019
+ isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
1898
2020
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1899
2021
  chainId: z.ZodMiniBigInt<bigint>;
1900
2022
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -1953,12 +2075,46 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
1953
2075
  threshold: z.ZodMiniNumber<number>;
1954
2076
  version: z.ZodMiniBigInt<bigint>;
1955
2077
  }, z.core.$strip>;
1956
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
2078
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2079
+ signature: z.ZodMiniObject<{
2080
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2081
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2082
+ yParity: z.ZodMiniNumber<number>;
2083
+ }, z.core.$strip>;
2084
+ type: z.ZodMiniLiteral<"secp256k1">;
2085
+ }, z.core.$strip>, z.ZodMiniObject<{
2086
+ prehash: z.ZodMiniBoolean<boolean>;
2087
+ publicKey: z.ZodMiniObject<{
2088
+ prefix: z.ZodMiniNumber<number>;
2089
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2090
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2091
+ }, z.core.$strip>;
2092
+ signature: z.ZodMiniObject<{
2093
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2094
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2095
+ }, z.core.$strip>;
2096
+ type: z.ZodMiniLiteral<"p256">;
2097
+ }, z.core.$strip>, z.ZodMiniObject<{
2098
+ metadata: z.ZodMiniObject<{
2099
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2100
+ clientDataJSON: z.ZodMiniString<string>;
2101
+ }, z.core.$strip>;
2102
+ publicKey: z.ZodMiniObject<{
2103
+ prefix: z.ZodMiniNumber<number>;
2104
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2105
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2106
+ }, z.core.$strip>;
2107
+ signature: z.ZodMiniObject<{
2108
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2109
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2110
+ }, z.core.$strip>;
2111
+ type: z.ZodMiniLiteral<"webAuthn">;
2112
+ }, z.core.$strip>]>>>;
1957
2113
  type: z.ZodMiniLiteral<"multisig">;
1958
2114
  }, z.core.$strip>]>;
1959
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
2115
+ type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
1960
2116
  witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1961
- }, z.core.$strip>]>>>;
2117
+ }, z.core.$strip>>>;
1962
2118
  maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1963
2119
  maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1964
2120
  nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
@@ -2040,7 +2196,41 @@ export declare const TransactionToRpc: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z
2040
2196
  threshold: z.ZodMiniNumber<number>;
2041
2197
  version: z.ZodMiniBigInt<bigint>;
2042
2198
  }, z.core.$strip>;
2043
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
2199
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2200
+ signature: z.ZodMiniObject<{
2201
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2202
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2203
+ yParity: z.ZodMiniNumber<number>;
2204
+ }, z.core.$strip>;
2205
+ type: z.ZodMiniLiteral<"secp256k1">;
2206
+ }, z.core.$strip>, z.ZodMiniObject<{
2207
+ prehash: z.ZodMiniBoolean<boolean>;
2208
+ publicKey: z.ZodMiniObject<{
2209
+ prefix: z.ZodMiniNumber<number>;
2210
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2211
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2212
+ }, z.core.$strip>;
2213
+ signature: z.ZodMiniObject<{
2214
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2215
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2216
+ }, z.core.$strip>;
2217
+ type: z.ZodMiniLiteral<"p256">;
2218
+ }, z.core.$strip>, z.ZodMiniObject<{
2219
+ metadata: z.ZodMiniObject<{
2220
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2221
+ clientDataJSON: z.ZodMiniString<string>;
2222
+ }, z.core.$strip>;
2223
+ publicKey: z.ZodMiniObject<{
2224
+ prefix: z.ZodMiniNumber<number>;
2225
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2226
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2227
+ }, z.core.$strip>;
2228
+ signature: z.ZodMiniObject<{
2229
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2230
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2231
+ }, z.core.$strip>;
2232
+ type: z.ZodMiniLiteral<"webAuthn">;
2233
+ }, z.core.$strip>]>>>;
2044
2234
  type: z.ZodMiniLiteral<"multisig">;
2045
2235
  }, z.core.$strip>]>>;
2046
2236
  transactionIndex: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
@@ -2290,7 +2480,41 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
2290
2480
  threshold: z.ZodMiniNumber<number>;
2291
2481
  version: z.ZodMiniBigInt<bigint>;
2292
2482
  }, z.core.$strip>;
2293
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
2483
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2484
+ signature: z.ZodMiniObject<{
2485
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2486
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2487
+ yParity: z.ZodMiniNumber<number>;
2488
+ }, z.core.$strip>;
2489
+ type: z.ZodMiniLiteral<"secp256k1">;
2490
+ }, z.core.$strip>, z.ZodMiniObject<{
2491
+ prehash: z.ZodMiniBoolean<boolean>;
2492
+ publicKey: z.ZodMiniObject<{
2493
+ prefix: z.ZodMiniNumber<number>;
2494
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2495
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2496
+ }, z.core.$strip>;
2497
+ signature: z.ZodMiniObject<{
2498
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2499
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2500
+ }, z.core.$strip>;
2501
+ type: z.ZodMiniLiteral<"p256">;
2502
+ }, z.core.$strip>, z.ZodMiniObject<{
2503
+ metadata: z.ZodMiniObject<{
2504
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2505
+ clientDataJSON: z.ZodMiniString<string>;
2506
+ }, z.core.$strip>;
2507
+ publicKey: z.ZodMiniObject<{
2508
+ prefix: z.ZodMiniNumber<number>;
2509
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2510
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2511
+ }, z.core.$strip>;
2512
+ signature: z.ZodMiniObject<{
2513
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2514
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2515
+ }, z.core.$strip>;
2516
+ type: z.ZodMiniLiteral<"webAuthn">;
2517
+ }, z.core.$strip>]>>>;
2294
2518
  type: z.ZodMiniLiteral<"multisig">;
2295
2519
  }, z.core.$strip>]>>;
2296
2520
  }, z.core.$strip>>>>;
@@ -2330,7 +2554,7 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
2330
2554
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2331
2555
  isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
2332
2556
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
2333
- keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
2557
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
2334
2558
  limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2335
2559
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
2336
2560
  period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
@@ -2358,73 +2582,9 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
2358
2582
  webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2359
2583
  }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
2360
2584
  witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2361
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2362
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2363
- isAdmin: z.ZodMiniBoolean<boolean>;
2364
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
2365
- chainId: z.ZodMiniBigInt<bigint>;
2366
- expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
2367
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2368
- limit: z.ZodMiniBigInt<bigint>;
2369
- period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
2370
- token: z.ZodMiniTemplateLiteral<`0x${string}`>;
2371
- }, z.core.$strip>>>>;
2372
- scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2373
- address: z.ZodMiniTemplateLiteral<`0x${string}`>;
2374
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
2375
- selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
2376
- }, z.core.$strip>>>>;
2377
- signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2378
- signature: z.ZodMiniObject<{
2379
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2380
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2381
- yParity: z.ZodMiniNumber<number>;
2382
- }, z.core.$strip>;
2383
- type: z.ZodMiniLiteral<"secp256k1">;
2384
- }, z.core.$strip>, z.ZodMiniObject<{
2385
- prehash: z.ZodMiniBoolean<boolean>;
2386
- publicKey: z.ZodMiniObject<{
2387
- prefix: z.ZodMiniNumber<number>;
2388
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2389
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2390
- }, z.core.$strip>;
2391
- signature: z.ZodMiniObject<{
2392
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2393
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2394
- }, z.core.$strip>;
2395
- type: z.ZodMiniLiteral<"p256">;
2396
- }, z.core.$strip>, z.ZodMiniObject<{
2397
- metadata: z.ZodMiniObject<{
2398
- authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2399
- clientDataJSON: z.ZodMiniString<string>;
2400
- }, z.core.$strip>;
2401
- publicKey: z.ZodMiniObject<{
2402
- prefix: z.ZodMiniNumber<number>;
2403
- x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2404
- y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2405
- }, z.core.$strip>;
2406
- signature: z.ZodMiniObject<{
2407
- r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2408
- s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2409
- }, z.core.$strip>;
2410
- type: z.ZodMiniLiteral<"webAuthn">;
2411
- }, z.core.$strip>]>, z.ZodMiniObject<{
2412
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2413
- config: z.ZodMiniObject<{
2414
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2415
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2416
- weight: z.ZodMiniNumber<number>;
2417
- }, z.core.$strip>>>;
2418
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2419
- threshold: z.ZodMiniNumber<number>;
2420
- version: z.ZodMiniBigInt<bigint>;
2421
- }, z.core.$strip>;
2422
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
2423
- type: z.ZodMiniLiteral<"multisig">;
2424
- }, z.core.$strip>]>;
2425
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
2426
- witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2427
2585
  }, z.core.$strip>, z.ZodMiniObject<{
2586
+ account: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2587
+ isAdmin: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
2428
2588
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
2429
2589
  chainId: z.ZodMiniBigInt<bigint>;
2430
2590
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -2483,12 +2643,46 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
2483
2643
  threshold: z.ZodMiniNumber<number>;
2484
2644
  version: z.ZodMiniBigInt<bigint>;
2485
2645
  }, z.core.$strip>;
2486
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
2646
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2647
+ signature: z.ZodMiniObject<{
2648
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2649
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2650
+ yParity: z.ZodMiniNumber<number>;
2651
+ }, z.core.$strip>;
2652
+ type: z.ZodMiniLiteral<"secp256k1">;
2653
+ }, z.core.$strip>, z.ZodMiniObject<{
2654
+ prehash: z.ZodMiniBoolean<boolean>;
2655
+ publicKey: z.ZodMiniObject<{
2656
+ prefix: z.ZodMiniNumber<number>;
2657
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2658
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2659
+ }, z.core.$strip>;
2660
+ signature: z.ZodMiniObject<{
2661
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2662
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2663
+ }, z.core.$strip>;
2664
+ type: z.ZodMiniLiteral<"p256">;
2665
+ }, z.core.$strip>, z.ZodMiniObject<{
2666
+ metadata: z.ZodMiniObject<{
2667
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2668
+ clientDataJSON: z.ZodMiniString<string>;
2669
+ }, z.core.$strip>;
2670
+ publicKey: z.ZodMiniObject<{
2671
+ prefix: z.ZodMiniNumber<number>;
2672
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2673
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2674
+ }, z.core.$strip>;
2675
+ signature: z.ZodMiniObject<{
2676
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2677
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2678
+ }, z.core.$strip>;
2679
+ type: z.ZodMiniLiteral<"webAuthn">;
2680
+ }, z.core.$strip>]>>>;
2487
2681
  type: z.ZodMiniLiteral<"multisig">;
2488
2682
  }, z.core.$strip>]>;
2489
- type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
2683
+ type: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>, z.ZodMiniLiteral<"multisig">]>;
2490
2684
  witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2491
- }, z.core.$strip>]>>>;
2685
+ }, z.core.$strip>>>;
2492
2686
  maxFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
2493
2687
  maxPriorityFeePerGas: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
2494
2688
  nonce: z.ZodMiniCodec<z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>>;
@@ -2570,7 +2764,41 @@ export declare const Pending: z.ZodMiniUnion<readonly [z.ZodMiniCodec<z.ZodMiniO
2570
2764
  threshold: z.ZodMiniNumber<number>;
2571
2765
  version: z.ZodMiniBigInt<bigint>;
2572
2766
  }, z.core.$strip>;
2573
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
2767
+ signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2768
+ signature: z.ZodMiniObject<{
2769
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2770
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2771
+ yParity: z.ZodMiniNumber<number>;
2772
+ }, z.core.$strip>;
2773
+ type: z.ZodMiniLiteral<"secp256k1">;
2774
+ }, z.core.$strip>, z.ZodMiniObject<{
2775
+ prehash: z.ZodMiniBoolean<boolean>;
2776
+ publicKey: z.ZodMiniObject<{
2777
+ prefix: z.ZodMiniNumber<number>;
2778
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2779
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2780
+ }, z.core.$strip>;
2781
+ signature: z.ZodMiniObject<{
2782
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2783
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2784
+ }, z.core.$strip>;
2785
+ type: z.ZodMiniLiteral<"p256">;
2786
+ }, z.core.$strip>, z.ZodMiniObject<{
2787
+ metadata: z.ZodMiniObject<{
2788
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2789
+ clientDataJSON: z.ZodMiniString<string>;
2790
+ }, z.core.$strip>;
2791
+ publicKey: z.ZodMiniObject<{
2792
+ prefix: z.ZodMiniNumber<number>;
2793
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
2794
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
2795
+ }, z.core.$strip>;
2796
+ signature: z.ZodMiniObject<{
2797
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2798
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2799
+ }, z.core.$strip>;
2800
+ type: z.ZodMiniLiteral<"webAuthn">;
2801
+ }, z.core.$strip>]>>>;
2574
2802
  type: z.ZodMiniLiteral<"multisig">;
2575
2803
  }, z.core.$strip>]>>;
2576
2804
  type: z.ZodMiniCodec<z.ZodMiniLiteral<"0x76">, z.ZodMiniLiteral<"tempo">>;