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.
Files changed (123) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/dist/core/Hash.js +1 -1
  3. package/dist/core/Hash.js.map +1 -1
  4. package/dist/tempo/KeyAuthorization.d.ts +2 -2
  5. package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
  6. package/dist/tempo/MultisigConfig.d.ts +151 -83
  7. package/dist/tempo/MultisigConfig.d.ts.map +1 -1
  8. package/dist/tempo/MultisigConfig.js +164 -86
  9. package/dist/tempo/MultisigConfig.js.map +1 -1
  10. package/dist/tempo/MultisigOperation.d.ts +340 -0
  11. package/dist/tempo/MultisigOperation.d.ts.map +1 -0
  12. package/dist/tempo/MultisigOperation.js +839 -0
  13. package/dist/tempo/MultisigOperation.js.map +1 -0
  14. package/dist/tempo/MultisigSimulation.d.ts +132 -0
  15. package/dist/tempo/MultisigSimulation.d.ts.map +1 -0
  16. package/dist/tempo/MultisigSimulation.js +140 -0
  17. package/dist/tempo/MultisigSimulation.js.map +1 -0
  18. package/dist/tempo/RpcSchemaTempo.d.ts +45 -0
  19. package/dist/tempo/RpcSchemaTempo.d.ts.map +1 -1
  20. package/dist/tempo/SignatureEnvelope.d.ts +55 -86
  21. package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
  22. package/dist/tempo/SignatureEnvelope.js +93 -158
  23. package/dist/tempo/SignatureEnvelope.js.map +1 -1
  24. package/dist/tempo/TransactionRequest.d.ts +9 -17
  25. package/dist/tempo/TransactionRequest.d.ts.map +1 -1
  26. package/dist/tempo/TransactionRequest.js +7 -7
  27. package/dist/tempo/TransactionRequest.js.map +1 -1
  28. package/dist/tempo/TxEnvelopeTempo.d.ts +3 -2
  29. package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
  30. package/dist/tempo/TxEnvelopeTempo.js +3 -2
  31. package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
  32. package/dist/tempo/index.d.ts +22 -2
  33. package/dist/tempo/index.d.ts.map +1 -1
  34. package/dist/tempo/index.js +22 -2
  35. package/dist/tempo/index.js.map +1 -1
  36. package/dist/zod/tempo/AuthorizationTempo.d.ts +60 -180
  37. package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
  38. package/dist/zod/tempo/KeyAuthorization.d.ts +65 -118
  39. package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
  40. package/dist/zod/tempo/MultisigConfig.d.ts +31 -2
  41. package/dist/zod/tempo/MultisigConfig.d.ts.map +1 -1
  42. package/dist/zod/tempo/MultisigConfig.js +26 -3
  43. package/dist/zod/tempo/MultisigConfig.js.map +1 -1
  44. package/dist/zod/tempo/MultisigOperation.d.ts +158 -0
  45. package/dist/zod/tempo/MultisigOperation.d.ts.map +1 -0
  46. package/dist/zod/tempo/MultisigOperation.js +62 -0
  47. package/dist/zod/tempo/MultisigOperation.js.map +1 -0
  48. package/dist/zod/tempo/MultisigSimulation.d.ts +120 -0
  49. package/dist/zod/tempo/MultisigSimulation.d.ts.map +1 -0
  50. package/dist/zod/tempo/MultisigSimulation.js +78 -0
  51. package/dist/zod/tempo/MultisigSimulation.js.map +1 -0
  52. package/dist/zod/tempo/RpcSchemaTempo.d.ts +528 -144
  53. package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
  54. package/dist/zod/tempo/RpcSchemaTempo.js +47 -0
  55. package/dist/zod/tempo/RpcSchemaTempo.js.map +1 -1
  56. package/dist/zod/tempo/SignatureEnvelope.d.ts +18 -54
  57. package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
  58. package/dist/zod/tempo/SignatureEnvelope.js +5 -22
  59. package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
  60. package/dist/zod/tempo/Transaction.d.ts +138 -348
  61. package/dist/zod/tempo/Transaction.d.ts.map +1 -1
  62. package/dist/zod/tempo/TransactionRequest.d.ts +286 -239
  63. package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
  64. package/dist/zod/tempo/TransactionRequest.js +11 -22
  65. package/dist/zod/tempo/TransactionRequest.js.map +1 -1
  66. package/dist/zod/tempo/TxEnvelopeTempo.d.ts +60 -48
  67. package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
  68. package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +15 -12
  69. package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
  70. package/dist/zod/tempo/z.d.ts +2 -0
  71. package/dist/zod/tempo/z.d.ts.map +1 -1
  72. package/dist/zod/tempo/z.js +2 -0
  73. package/dist/zod/tempo/z.js.map +1 -1
  74. package/package.json +21 -1
  75. package/src/core/Hash.ts +1 -1
  76. package/src/core/_test/Hash.test.ts +15 -0
  77. package/src/tempo/AuthorizationTempo.test.ts +4 -0
  78. package/src/tempo/KeyAuthorization.test-d.ts +13 -12
  79. package/src/tempo/KeyAuthorization.test.ts +109 -3
  80. package/src/tempo/KeyAuthorization.ts +4 -4
  81. package/src/tempo/MultisigConfig.test-d.ts +52 -0
  82. package/src/tempo/MultisigConfig.test.ts +288 -227
  83. package/src/tempo/MultisigConfig.ts +275 -104
  84. package/src/tempo/MultisigOperation.test-d.ts +79 -0
  85. package/src/tempo/MultisigOperation.test.ts +1950 -0
  86. package/src/tempo/MultisigOperation.ts +1293 -0
  87. package/src/tempo/MultisigSimulation.test-d.ts +33 -0
  88. package/src/tempo/MultisigSimulation.test.ts +283 -0
  89. package/src/tempo/MultisigSimulation.ts +266 -0
  90. package/src/tempo/RpcSchemaTempo.test-d.ts +91 -0
  91. package/src/tempo/RpcSchemaTempo.ts +46 -0
  92. package/src/tempo/SignatureEnvelope.test-d.ts +33 -72
  93. package/src/tempo/SignatureEnvelope.test.ts +533 -500
  94. package/src/tempo/SignatureEnvelope.ts +171 -258
  95. package/src/tempo/Transaction.test.ts +61 -0
  96. package/src/tempo/TransactionRequest.test-d.ts +11 -0
  97. package/src/tempo/TransactionRequest.test.ts +214 -41
  98. package/src/tempo/TransactionRequest.ts +19 -20
  99. package/src/tempo/TxEnvelopeTempo.test-d.ts +7 -0
  100. package/src/tempo/TxEnvelopeTempo.test.ts +25 -0
  101. package/src/tempo/TxEnvelopeTempo.ts +5 -3
  102. package/src/tempo/index.ts +22 -2
  103. package/src/tempo/multisig.e2e.test.ts +164 -87
  104. package/src/version.ts +1 -1
  105. package/src/zod/tempo/MultisigConfig.ts +29 -3
  106. package/src/zod/tempo/MultisigOperation.ts +66 -0
  107. package/src/zod/tempo/MultisigSimulation.ts +98 -0
  108. package/src/zod/tempo/RpcSchemaTempo.ts +53 -0
  109. package/src/zod/tempo/SignatureEnvelope.ts +12 -54
  110. package/src/zod/tempo/TransactionRequest.ts +17 -26
  111. package/src/zod/tempo/_test/KeyAuthorization.test.ts +2 -4
  112. package/src/zod/tempo/_test/MultisigConfig.test-d.ts +13 -0
  113. package/src/zod/tempo/_test/MultisigConfig.test.ts +13 -2
  114. package/src/zod/tempo/_test/MultisigOperation.test-d.ts +27 -0
  115. package/src/zod/tempo/_test/MultisigOperation.test.ts +66 -0
  116. package/src/zod/tempo/_test/MultisigSimulation.test-d.ts +13 -0
  117. package/src/zod/tempo/_test/MultisigSimulation.test.ts +78 -0
  118. package/src/zod/tempo/_test/RpcSchemaTempo.test-d.ts +48 -0
  119. package/src/zod/tempo/_test/RpcSchemaTempo.test.ts +83 -0
  120. package/src/zod/tempo/_test/SignatureEnvelope.test-d.ts +1 -1
  121. package/src/zod/tempo/_test/SignatureEnvelope.test.ts +57 -120
  122. package/src/zod/tempo/_test/TransactionRequest.test.ts +43 -16
  123. package/src/zod/tempo/z.ts +2 -0
@@ -52,20 +52,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
52
52
  type: z.ZodMiniLiteral<"keychain">;
53
53
  userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
54
54
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
55
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
56
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
57
- 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[]>>>;
58
- }, z.core.$strict>, z.ZodMiniObject<{
59
- init: z.ZodMiniObject<{
60
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
61
- threshold: z.ZodMiniNumber<number>;
62
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
63
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
64
- weight: z.ZodMiniNumber<number>;
65
- }, z.core.$strip>>>;
66
- }, z.core.$strip>;
67
- 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[]>>>;
68
- }, z.core.$strict>]>]>;
55
+ }, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
69
56
  }, z.core.$strip>>>>;
70
57
  blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
71
58
  blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
@@ -128,20 +115,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
128
115
  s: z.ZodMiniTemplateLiteral<`0x${string}`>;
129
116
  type: z.ZodMiniLiteral<"webAuthn">;
130
117
  webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
131
- }, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
132
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
133
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
134
- }, z.core.$strict>, z.ZodMiniObject<{
135
- init: z.ZodMiniObject<{
136
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
137
- threshold: z.ZodMiniNumber<number>;
138
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
139
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
140
- weight: z.ZodMiniNumber<number>;
141
- }, z.core.$strip>>>;
142
- }, z.core.$strip>;
143
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
144
- }, z.core.$strict>]>]>;
118
+ }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
145
119
  witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
146
120
  }, z.core.$strip>>;
147
121
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -150,15 +124,27 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
150
124
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
151
125
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
152
126
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
153
- multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
154
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
155
- threshold: z.ZodMiniNumber<number>;
156
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
127
+ multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
128
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
129
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
130
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
131
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
157
132
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
158
- weight: z.ZodMiniNumber<number>;
159
- }, z.core.$strip>>>;
133
+ type: z.ZodMiniLiteral<"primitive">;
134
+ }, z.core.$strip>, z.ZodMiniObject<{
135
+ spec: z.ZodMiniObject<{
136
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
137
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
138
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
139
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
140
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
141
+ }, z.core.$strip>>>;
142
+ config: z.ZodMiniTemplateLiteral<`0x${string}`>;
143
+ }, z.core.$strip>;
144
+ type: z.ZodMiniLiteral<"multisig">;
145
+ }, z.core.$strip>]>>>;
146
+ config: z.ZodMiniTemplateLiteral<`0x${string}`>;
160
147
  }, z.core.$strip>>;
161
- multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
162
148
  nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
163
149
  nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
164
150
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -189,20 +175,7 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
189
175
  type: z.ZodMiniLiteral<"keychain">;
190
176
  userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
191
177
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
192
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
193
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
194
- 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[]>>>;
195
- }, z.core.$strict>, z.ZodMiniObject<{
196
- init: z.ZodMiniObject<{
197
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
198
- threshold: z.ZodMiniNumber<number>;
199
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
200
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
201
- weight: z.ZodMiniNumber<number>;
202
- }, z.core.$strip>>>;
203
- }, z.core.$strip>;
204
- 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[]>>>;
205
- }, z.core.$strict>]>]>>;
178
+ }, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
206
179
  to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
207
180
  type: z.ZodMiniOptional<z.ZodMiniString<string>>;
208
181
  v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -261,14 +234,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
261
234
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
262
235
  }, z.core.$strip>, z.ZodMiniObject<{
263
236
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
264
- init: z.ZodMiniOptional<z.ZodMiniObject<{
265
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
266
- threshold: z.ZodMiniNumber<number>;
237
+ config: z.ZodMiniObject<{
267
238
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
268
239
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
269
240
  weight: z.ZodMiniNumber<number>;
270
241
  }, z.core.$strip>>>;
271
- }, z.core.$strip>>;
242
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
243
+ threshold: z.ZodMiniNumber<number>;
244
+ version: z.ZodMiniBigInt<bigint>;
245
+ }, z.core.$strip>;
272
246
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
273
247
  type: z.ZodMiniLiteral<"multisig">;
274
248
  }, z.core.$strip>]>;
@@ -347,14 +321,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
347
321
  type: z.ZodMiniLiteral<"webAuthn">;
348
322
  }, z.core.$strip>]>, z.ZodMiniObject<{
349
323
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
350
- init: z.ZodMiniOptional<z.ZodMiniObject<{
351
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
352
- threshold: z.ZodMiniNumber<number>;
324
+ config: z.ZodMiniObject<{
353
325
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
354
326
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
355
327
  weight: z.ZodMiniNumber<number>;
356
328
  }, z.core.$strip>>>;
357
- }, z.core.$strip>>;
329
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
330
+ threshold: z.ZodMiniNumber<number>;
331
+ version: z.ZodMiniBigInt<bigint>;
332
+ }, z.core.$strip>;
358
333
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
359
334
  type: z.ZodMiniLiteral<"multisig">;
360
335
  }, z.core.$strip>]>;
@@ -410,14 +385,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
410
385
  type: z.ZodMiniLiteral<"webAuthn">;
411
386
  }, z.core.$strip>]>, z.ZodMiniObject<{
412
387
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
413
- init: z.ZodMiniOptional<z.ZodMiniObject<{
414
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
415
- threshold: z.ZodMiniNumber<number>;
388
+ config: z.ZodMiniObject<{
416
389
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
417
390
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
418
391
  weight: z.ZodMiniNumber<number>;
419
392
  }, z.core.$strip>>>;
420
- }, z.core.$strip>>;
393
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
394
+ threshold: z.ZodMiniNumber<number>;
395
+ version: z.ZodMiniBigInt<bigint>;
396
+ }, z.core.$strip>;
421
397
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
422
398
  type: z.ZodMiniLiteral<"multisig">;
423
399
  }, z.core.$strip>]>;
@@ -430,15 +406,43 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
430
406
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
431
407
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
432
408
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
433
- multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
434
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
435
- threshold: z.ZodMiniNumber<number>;
436
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
409
+ multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
410
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
411
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
412
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
413
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
437
414
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
438
- weight: z.ZodMiniNumber<number>;
439
- }, z.core.$strip>>>;
415
+ type: z.ZodMiniLiteral<"primitive">;
416
+ }, z.core.$strip>, z.ZodMiniObject<{
417
+ spec: z.ZodMiniObject<{
418
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
419
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
420
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
421
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
422
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
423
+ }, z.core.$strip>>>;
424
+ config: z.ZodMiniObject<{
425
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
426
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
427
+ weight: z.ZodMiniNumber<number>;
428
+ }, z.core.$strip>>>;
429
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
430
+ threshold: z.ZodMiniNumber<number>;
431
+ version: z.ZodMiniBigInt<bigint>;
432
+ }, z.core.$strip>;
433
+ }, z.core.$strip>;
434
+ type: z.ZodMiniLiteral<"multisig">;
435
+ }, z.core.$strip>]>>>;
436
+ config: z.ZodMiniObject<{
437
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
438
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
439
+ weight: z.ZodMiniNumber<number>;
440
+ }, z.core.$strip>>>;
441
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
442
+ threshold: z.ZodMiniNumber<number>;
443
+ version: z.ZodMiniBigInt<bigint>;
444
+ }, z.core.$strip>;
440
445
  }, z.core.$strip>>;
441
- multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
442
446
  nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
443
447
  nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
444
448
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -485,14 +489,15 @@ export declare const tempo_simulateV1: import("../internal/rpcSchemas/from.js").
485
489
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
486
490
  }, z.core.$strip>, z.ZodMiniObject<{
487
491
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
488
- init: z.ZodMiniOptional<z.ZodMiniObject<{
489
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
490
- threshold: z.ZodMiniNumber<number>;
492
+ config: z.ZodMiniObject<{
491
493
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
492
494
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
493
495
  weight: z.ZodMiniNumber<number>;
494
496
  }, z.core.$strip>>>;
495
- }, z.core.$strip>>;
497
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
498
+ threshold: z.ZodMiniNumber<number>;
499
+ version: z.ZodMiniBigInt<bigint>;
500
+ }, z.core.$strip>;
496
501
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
497
502
  type: z.ZodMiniLiteral<"multisig">;
498
503
  }, z.core.$strip>]>>;
@@ -1046,20 +1051,7 @@ export declare const Tempo: {
1046
1051
  type: z.ZodMiniLiteral<"keychain">;
1047
1052
  userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
1048
1053
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1049
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1050
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1051
- 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[]>>>;
1052
- }, z.core.$strict>, z.ZodMiniObject<{
1053
- init: z.ZodMiniObject<{
1054
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1055
- threshold: z.ZodMiniNumber<number>;
1056
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1057
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1058
- weight: z.ZodMiniNumber<number>;
1059
- }, z.core.$strip>>>;
1060
- }, z.core.$strip>;
1061
- 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[]>>>;
1062
- }, z.core.$strict>]>]>;
1054
+ }, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
1063
1055
  }, z.core.$strip>>>>;
1064
1056
  blobVersionedHashes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
1065
1057
  blobs: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
@@ -1122,20 +1114,7 @@ export declare const Tempo: {
1122
1114
  s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1123
1115
  type: z.ZodMiniLiteral<"webAuthn">;
1124
1116
  webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1125
- }, z.core.$strip>]>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1126
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1127
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
1128
- }, z.core.$strict>, z.ZodMiniObject<{
1129
- init: z.ZodMiniObject<{
1130
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1131
- threshold: z.ZodMiniNumber<number>;
1132
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1133
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1134
- weight: z.ZodMiniNumber<number>;
1135
- }, z.core.$strip>>>;
1136
- }, z.core.$strip>;
1137
- signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[], readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelopeRpc[]>>>;
1138
- }, z.core.$strict>]>]>;
1117
+ }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
1139
1118
  witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1140
1119
  }, z.core.$strip>>;
1141
1120
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -1144,15 +1123,27 @@ export declare const Tempo: {
1144
1123
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1145
1124
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1146
1125
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1147
- multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
1148
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1149
- threshold: z.ZodMiniNumber<number>;
1150
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1126
+ multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
1127
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1128
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1129
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1130
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
1151
1131
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1152
- weight: z.ZodMiniNumber<number>;
1153
- }, z.core.$strip>>>;
1132
+ type: z.ZodMiniLiteral<"primitive">;
1133
+ }, z.core.$strip>, z.ZodMiniObject<{
1134
+ spec: z.ZodMiniObject<{
1135
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1136
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1137
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1138
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
1139
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1140
+ }, z.core.$strip>>>;
1141
+ config: z.ZodMiniTemplateLiteral<`0x${string}`>;
1142
+ }, z.core.$strip>;
1143
+ type: z.ZodMiniLiteral<"multisig">;
1144
+ }, z.core.$strip>]>>>;
1145
+ config: z.ZodMiniTemplateLiteral<`0x${string}`>;
1154
1146
  }, z.core.$strip>>;
1155
- multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1156
1147
  nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1157
1148
  nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1158
1149
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -1183,20 +1174,7 @@ export declare const Tempo: {
1183
1174
  type: z.ZodMiniLiteral<"keychain">;
1184
1175
  userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
1185
1176
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1186
- }, z.core.$strip>, z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1187
- account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1188
- 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[]>>>;
1189
- }, z.core.$strict>, z.ZodMiniObject<{
1190
- init: z.ZodMiniObject<{
1191
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1192
- threshold: z.ZodMiniNumber<number>;
1193
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1194
- owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1195
- weight: z.ZodMiniNumber<number>;
1196
- }, z.core.$strip>>>;
1197
- }, z.core.$strip>;
1198
- 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[]>>>;
1199
- }, z.core.$strict>]>]>>;
1177
+ }, z.core.$strip>, z.ZodMiniTemplateLiteral<`0x${string}`>]>>;
1200
1178
  to: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNull]>>;
1201
1179
  type: z.ZodMiniOptional<z.ZodMiniString<string>>;
1202
1180
  v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -1255,14 +1233,15 @@ export declare const Tempo: {
1255
1233
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1256
1234
  }, z.core.$strip>, z.ZodMiniObject<{
1257
1235
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1258
- init: z.ZodMiniOptional<z.ZodMiniObject<{
1259
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1260
- threshold: z.ZodMiniNumber<number>;
1236
+ config: z.ZodMiniObject<{
1261
1237
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1262
1238
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1263
1239
  weight: z.ZodMiniNumber<number>;
1264
1240
  }, z.core.$strip>>>;
1265
- }, z.core.$strip>>;
1241
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1242
+ threshold: z.ZodMiniNumber<number>;
1243
+ version: z.ZodMiniBigInt<bigint>;
1244
+ }, z.core.$strip>;
1266
1245
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1267
1246
  type: z.ZodMiniLiteral<"multisig">;
1268
1247
  }, z.core.$strip>]>;
@@ -1341,14 +1320,15 @@ export declare const Tempo: {
1341
1320
  type: z.ZodMiniLiteral<"webAuthn">;
1342
1321
  }, z.core.$strip>]>, z.ZodMiniObject<{
1343
1322
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1344
- init: z.ZodMiniOptional<z.ZodMiniObject<{
1345
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1346
- threshold: z.ZodMiniNumber<number>;
1323
+ config: z.ZodMiniObject<{
1347
1324
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1348
1325
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1349
1326
  weight: z.ZodMiniNumber<number>;
1350
1327
  }, z.core.$strip>>>;
1351
- }, z.core.$strip>>;
1328
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1329
+ threshold: z.ZodMiniNumber<number>;
1330
+ version: z.ZodMiniBigInt<bigint>;
1331
+ }, z.core.$strip>;
1352
1332
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1353
1333
  type: z.ZodMiniLiteral<"multisig">;
1354
1334
  }, z.core.$strip>]>;
@@ -1404,14 +1384,15 @@ export declare const Tempo: {
1404
1384
  type: z.ZodMiniLiteral<"webAuthn">;
1405
1385
  }, z.core.$strip>]>, z.ZodMiniObject<{
1406
1386
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1407
- init: z.ZodMiniOptional<z.ZodMiniObject<{
1408
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1409
- threshold: z.ZodMiniNumber<number>;
1387
+ config: z.ZodMiniObject<{
1410
1388
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1411
1389
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1412
1390
  weight: z.ZodMiniNumber<number>;
1413
1391
  }, z.core.$strip>>>;
1414
- }, z.core.$strip>>;
1392
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1393
+ threshold: z.ZodMiniNumber<number>;
1394
+ version: z.ZodMiniBigInt<bigint>;
1395
+ }, z.core.$strip>;
1415
1396
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1416
1397
  type: z.ZodMiniLiteral<"multisig">;
1417
1398
  }, z.core.$strip>]>;
@@ -1424,15 +1405,43 @@ export declare const Tempo: {
1424
1405
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
1425
1406
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
1426
1407
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
1427
- multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
1428
- salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1429
- threshold: z.ZodMiniNumber<number>;
1430
- owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1408
+ multisigSimulation: z.ZodMiniOptional<z.ZodMiniObject<{
1409
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1410
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1411
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1412
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
1431
1413
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1432
- weight: z.ZodMiniNumber<number>;
1433
- }, z.core.$strip>>>;
1414
+ type: z.ZodMiniLiteral<"primitive">;
1415
+ }, z.core.$strip>, z.ZodMiniObject<{
1416
+ spec: z.ZodMiniObject<{
1417
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1418
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1419
+ keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1420
+ keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
1421
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1422
+ }, z.core.$strip>>>;
1423
+ config: z.ZodMiniObject<{
1424
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1425
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1426
+ weight: z.ZodMiniNumber<number>;
1427
+ }, z.core.$strip>>>;
1428
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1429
+ threshold: z.ZodMiniNumber<number>;
1430
+ version: z.ZodMiniBigInt<bigint>;
1431
+ }, z.core.$strip>;
1432
+ }, z.core.$strip>;
1433
+ type: z.ZodMiniLiteral<"multisig">;
1434
+ }, z.core.$strip>]>>>;
1435
+ config: z.ZodMiniObject<{
1436
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1437
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1438
+ weight: z.ZodMiniNumber<number>;
1439
+ }, z.core.$strip>>>;
1440
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1441
+ threshold: z.ZodMiniNumber<number>;
1442
+ version: z.ZodMiniBigInt<bigint>;
1443
+ }, z.core.$strip>;
1434
1444
  }, z.core.$strip>>;
1435
- multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1436
1445
  nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
1437
1446
  nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
1438
1447
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -1479,14 +1488,15 @@ export declare const Tempo: {
1479
1488
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1480
1489
  }, z.core.$strip>, z.ZodMiniObject<{
1481
1490
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1482
- init: z.ZodMiniOptional<z.ZodMiniObject<{
1483
- salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1484
- threshold: z.ZodMiniNumber<number>;
1491
+ config: z.ZodMiniObject<{
1485
1492
  owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1486
1493
  owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1487
1494
  weight: z.ZodMiniNumber<number>;
1488
1495
  }, z.core.$strip>>>;
1489
- }, z.core.$strip>>;
1496
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1497
+ threshold: z.ZodMiniNumber<number>;
1498
+ version: z.ZodMiniBigInt<bigint>;
1499
+ }, z.core.$strip>;
1490
1500
  signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1491
1501
  type: z.ZodMiniLiteral<"multisig">;
1492
1502
  }, z.core.$strip>]>>;
@@ -1987,4 +1997,378 @@ export declare const Tempo: {
1987
1997
  }, z.core.$strip>>;
1988
1998
  }, z.core.$strip>>;
1989
1999
  };
2000
+ /** Schema for the `multisig_approveKeyAuthorization` JSON-RPC method. */
2001
+ export declare const multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2002
+ keyAuthorization: z.ZodMiniObject<{
2003
+ account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2004
+ allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2005
+ selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2006
+ recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
2007
+ selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
2008
+ }, z.core.$strip>>>>>;
2009
+ target: z.ZodMiniTemplateLiteral<`0x${string}`>;
2010
+ }, z.core.$strip>>>>>;
2011
+ chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
2012
+ expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2013
+ isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
2014
+ keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
2015
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
2016
+ limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2017
+ limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
2018
+ period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2019
+ token: z.ZodMiniTemplateLiteral<`0x${string}`>;
2020
+ }, z.core.$strip>>>>>;
2021
+ signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2022
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2023
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2024
+ type: z.ZodMiniLiteral<"secp256k1">;
2025
+ v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2026
+ yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2027
+ }, z.core.$strip>, z.ZodMiniObject<{
2028
+ preHash: z.ZodMiniBoolean<boolean>;
2029
+ pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
2030
+ pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
2031
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2032
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2033
+ type: z.ZodMiniLiteral<"p256">;
2034
+ }, z.core.$strip>, z.ZodMiniObject<{
2035
+ pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
2036
+ pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
2037
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2038
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2039
+ type: z.ZodMiniLiteral<"webAuthn">;
2040
+ webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2041
+ }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
2042
+ witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2043
+ }, z.core.$strip>;
2044
+ }, z.core.$strip>, z.ZodMiniObject<{
2045
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2046
+ signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
2047
+ }, z.core.$strip>]>], null>, z.ZodMiniObject<{
2048
+ keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
2049
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
2050
+ type: z.ZodMiniLiteral<"keyAuthorization">;
2051
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2052
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2053
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2054
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2055
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2056
+ weight: z.ZodMiniNumber<number>;
2057
+ }, z.core.$strip>>>;
2058
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2059
+ threshold: z.ZodMiniNumber<number>;
2060
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2061
+ }, z.core.$strip>, z.ZodMiniObject<{
2062
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2063
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2064
+ weight: z.ZodMiniNumber<number>;
2065
+ }, z.core.$strip>>>;
2066
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2067
+ threshold: z.ZodMiniNumber<number>;
2068
+ version: z.ZodMiniBigInt<bigint>;
2069
+ }, z.core.$strip>>;
2070
+ createdAt: z.ZodMiniNumber<number>;
2071
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2072
+ signatureCount: z.ZodMiniNumber<number>;
2073
+ threshold: z.ZodMiniNumber<number>;
2074
+ updatedAt: z.ZodMiniNumber<number>;
2075
+ weight: z.ZodMiniNumber<number>;
2076
+ }, z.core.$strip>>;
2077
+ /** Schema for the `multisig_approveRawTransaction` JSON-RPC method. */
2078
+ export declare const multisig_approveRawTransaction: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransaction", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniTemplateLiteral<`0x${string}`>>;
2079
+ /** Schema for the `multisig_approveRawTransactionSync` JSON-RPC method. */
2080
+ export declare const multisig_approveRawTransactionSync: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransactionSync", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniOptional<z.ZodMiniNumber<number>>], null>, z.ZodMiniObject<{
2081
+ expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
2082
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
2083
+ submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2084
+ transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
2085
+ transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2086
+ type: z.ZodMiniLiteral<"transaction">;
2087
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2088
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2089
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2090
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2091
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2092
+ weight: z.ZodMiniNumber<number>;
2093
+ }, z.core.$strip>>>;
2094
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2095
+ threshold: z.ZodMiniNumber<number>;
2096
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2097
+ }, z.core.$strip>, z.ZodMiniObject<{
2098
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2099
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2100
+ weight: z.ZodMiniNumber<number>;
2101
+ }, z.core.$strip>>>;
2102
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2103
+ threshold: z.ZodMiniNumber<number>;
2104
+ version: z.ZodMiniBigInt<bigint>;
2105
+ }, z.core.$strip>>;
2106
+ createdAt: z.ZodMiniNumber<number>;
2107
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2108
+ signatureCount: z.ZodMiniNumber<number>;
2109
+ threshold: z.ZodMiniNumber<number>;
2110
+ updatedAt: z.ZodMiniNumber<number>;
2111
+ weight: z.ZodMiniNumber<number>;
2112
+ }, z.core.$strip>>;
2113
+ /** Schema for the `multisig_getConfig` JSON-RPC method. */
2114
+ export declare const multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
2115
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
2116
+ }, z.core.$strip>], null>, z.ZodMiniNullable<z.ZodMiniObject<{
2117
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2118
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2119
+ weight: z.ZodMiniNumber<number>;
2120
+ }, z.core.$strip>>>;
2121
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2122
+ threshold: z.ZodMiniNumber<number>;
2123
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2124
+ }, z.core.$strip>>>;
2125
+ /** Schema for the `multisig_getOperation` JSON-RPC method. */
2126
+ export declare const multisig_getOperation: import("../internal/rpcSchemas/from.js").Item<"multisig_getOperation", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniNullable<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2127
+ expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
2128
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
2129
+ submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2130
+ transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
2131
+ transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2132
+ type: z.ZodMiniLiteral<"transaction">;
2133
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2134
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2135
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2136
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2137
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2138
+ weight: z.ZodMiniNumber<number>;
2139
+ }, z.core.$strip>>>;
2140
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2141
+ threshold: z.ZodMiniNumber<number>;
2142
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2143
+ }, z.core.$strip>, z.ZodMiniObject<{
2144
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2145
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2146
+ weight: z.ZodMiniNumber<number>;
2147
+ }, z.core.$strip>>>;
2148
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2149
+ threshold: z.ZodMiniNumber<number>;
2150
+ version: z.ZodMiniBigInt<bigint>;
2151
+ }, z.core.$strip>>;
2152
+ createdAt: z.ZodMiniNumber<number>;
2153
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2154
+ signatureCount: z.ZodMiniNumber<number>;
2155
+ threshold: z.ZodMiniNumber<number>;
2156
+ updatedAt: z.ZodMiniNumber<number>;
2157
+ weight: z.ZodMiniNumber<number>;
2158
+ }, z.core.$strip>, z.ZodMiniObject<{
2159
+ keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
2160
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
2161
+ type: z.ZodMiniLiteral<"keyAuthorization">;
2162
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2163
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2164
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2165
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2166
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2167
+ weight: z.ZodMiniNumber<number>;
2168
+ }, z.core.$strip>>>;
2169
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2170
+ threshold: z.ZodMiniNumber<number>;
2171
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2172
+ }, z.core.$strip>, z.ZodMiniObject<{
2173
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2174
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2175
+ weight: z.ZodMiniNumber<number>;
2176
+ }, z.core.$strip>>>;
2177
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2178
+ threshold: z.ZodMiniNumber<number>;
2179
+ version: z.ZodMiniBigInt<bigint>;
2180
+ }, z.core.$strip>>;
2181
+ createdAt: z.ZodMiniNumber<number>;
2182
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2183
+ signatureCount: z.ZodMiniNumber<number>;
2184
+ threshold: z.ZodMiniNumber<number>;
2185
+ updatedAt: z.ZodMiniNumber<number>;
2186
+ weight: z.ZodMiniNumber<number>;
2187
+ }, z.core.$strip>]>>>;
2188
+ /** JSON-RPC method schemas for the `multisig_` namespace. */
2189
+ export declare const Multisig: {
2190
+ multisig_approveKeyAuthorization: import("../internal/rpcSchemas/from.js").Item<"multisig_approveKeyAuthorization", z.ZodMiniTuple<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2191
+ keyAuthorization: z.ZodMiniObject<{
2192
+ account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2193
+ allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2194
+ selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2195
+ recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
2196
+ selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
2197
+ }, z.core.$strip>>>>>;
2198
+ target: z.ZodMiniTemplateLiteral<`0x${string}`>;
2199
+ }, z.core.$strip>>>>>;
2200
+ chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
2201
+ expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2202
+ isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
2203
+ keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
2204
+ keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
2205
+ limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2206
+ limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
2207
+ period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2208
+ token: z.ZodMiniTemplateLiteral<`0x${string}`>;
2209
+ }, z.core.$strip>>>>>;
2210
+ signature: z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2211
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2212
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2213
+ type: z.ZodMiniLiteral<"secp256k1">;
2214
+ v: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2215
+ yParity: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2216
+ }, z.core.$strip>, z.ZodMiniObject<{
2217
+ preHash: z.ZodMiniBoolean<boolean>;
2218
+ pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
2219
+ pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
2220
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2221
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2222
+ type: z.ZodMiniLiteral<"p256">;
2223
+ }, z.core.$strip>, z.ZodMiniObject<{
2224
+ pubKeyX: z.ZodMiniTemplateLiteral<`0x${string}`>;
2225
+ pubKeyY: z.ZodMiniTemplateLiteral<`0x${string}`>;
2226
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
2227
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
2228
+ type: z.ZodMiniLiteral<"webAuthn">;
2229
+ webauthnData: z.ZodMiniTemplateLiteral<`0x${string}`>;
2230
+ }, z.core.$strip>]>, z.ZodMiniTemplateLiteral<`0x${string}`>]>;
2231
+ witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2232
+ }, z.core.$strip>;
2233
+ }, z.core.$strip>, z.ZodMiniObject<{
2234
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2235
+ signature: z.ZodMiniTemplateLiteral<`0x${string}`>;
2236
+ }, z.core.$strip>]>], null>, z.ZodMiniObject<{
2237
+ keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
2238
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
2239
+ type: z.ZodMiniLiteral<"keyAuthorization">;
2240
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2241
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2242
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2243
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2244
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2245
+ weight: z.ZodMiniNumber<number>;
2246
+ }, z.core.$strip>>>;
2247
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2248
+ threshold: z.ZodMiniNumber<number>;
2249
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2250
+ }, z.core.$strip>, z.ZodMiniObject<{
2251
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2252
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2253
+ weight: z.ZodMiniNumber<number>;
2254
+ }, z.core.$strip>>>;
2255
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2256
+ threshold: z.ZodMiniNumber<number>;
2257
+ version: z.ZodMiniBigInt<bigint>;
2258
+ }, z.core.$strip>>;
2259
+ createdAt: z.ZodMiniNumber<number>;
2260
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2261
+ signatureCount: z.ZodMiniNumber<number>;
2262
+ threshold: z.ZodMiniNumber<number>;
2263
+ updatedAt: z.ZodMiniNumber<number>;
2264
+ weight: z.ZodMiniNumber<number>;
2265
+ }, z.core.$strip>>;
2266
+ multisig_approveRawTransaction: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransaction", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniTemplateLiteral<`0x${string}`>>;
2267
+ multisig_approveRawTransactionSync: import("../internal/rpcSchemas/from.js").Item<"multisig_approveRawTransactionSync", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniOptional<z.ZodMiniNumber<number>>], null>, z.ZodMiniObject<{
2268
+ expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
2269
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
2270
+ submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2271
+ transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
2272
+ transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2273
+ type: z.ZodMiniLiteral<"transaction">;
2274
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2275
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2276
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2277
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2278
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2279
+ weight: z.ZodMiniNumber<number>;
2280
+ }, z.core.$strip>>>;
2281
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2282
+ threshold: z.ZodMiniNumber<number>;
2283
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2284
+ }, z.core.$strip>, z.ZodMiniObject<{
2285
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2286
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2287
+ weight: z.ZodMiniNumber<number>;
2288
+ }, z.core.$strip>>>;
2289
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2290
+ threshold: z.ZodMiniNumber<number>;
2291
+ version: z.ZodMiniBigInt<bigint>;
2292
+ }, z.core.$strip>>;
2293
+ createdAt: z.ZodMiniNumber<number>;
2294
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2295
+ signatureCount: z.ZodMiniNumber<number>;
2296
+ threshold: z.ZodMiniNumber<number>;
2297
+ updatedAt: z.ZodMiniNumber<number>;
2298
+ weight: z.ZodMiniNumber<number>;
2299
+ }, z.core.$strip>>;
2300
+ multisig_getConfig: import("../internal/rpcSchemas/from.js").Item<"multisig_getConfig", z.ZodMiniTuple<readonly [z.ZodMiniObject<{
2301
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
2302
+ }, z.core.$strip>], null>, z.ZodMiniNullable<z.ZodMiniObject<{
2303
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2304
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2305
+ weight: z.ZodMiniNumber<number>;
2306
+ }, z.core.$strip>>>;
2307
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2308
+ threshold: z.ZodMiniNumber<number>;
2309
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2310
+ }, z.core.$strip>>>;
2311
+ multisig_getOperation: import("../internal/rpcSchemas/from.js").Item<"multisig_getOperation", z.ZodMiniTuple<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>], null>, z.ZodMiniNullable<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
2312
+ expiresAt: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
2313
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"submitting">, z.ZodMiniLiteral<"success">]>;
2314
+ submissionId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2315
+ transaction: z.ZodMiniTemplateLiteral<`0x${string}`>;
2316
+ transactionHash: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
2317
+ type: z.ZodMiniLiteral<"transaction">;
2318
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2319
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2320
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2321
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2322
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2323
+ weight: z.ZodMiniNumber<number>;
2324
+ }, z.core.$strip>>>;
2325
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2326
+ threshold: z.ZodMiniNumber<number>;
2327
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2328
+ }, z.core.$strip>, z.ZodMiniObject<{
2329
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2330
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2331
+ weight: z.ZodMiniNumber<number>;
2332
+ }, z.core.$strip>>>;
2333
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2334
+ threshold: z.ZodMiniNumber<number>;
2335
+ version: z.ZodMiniBigInt<bigint>;
2336
+ }, z.core.$strip>>;
2337
+ createdAt: z.ZodMiniNumber<number>;
2338
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2339
+ signatureCount: z.ZodMiniNumber<number>;
2340
+ threshold: z.ZodMiniNumber<number>;
2341
+ updatedAt: z.ZodMiniNumber<number>;
2342
+ weight: z.ZodMiniNumber<number>;
2343
+ }, z.core.$strip>, z.ZodMiniObject<{
2344
+ keyAuthorization: z.ZodMiniTemplateLiteral<`0x${string}`>;
2345
+ status: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"pending">, z.ZodMiniLiteral<"success">]>;
2346
+ type: z.ZodMiniLiteral<"keyAuthorization">;
2347
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
2348
+ approvals: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
2349
+ config: z.ZodMiniCodec<z.ZodMiniObject<{
2350
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2351
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2352
+ weight: z.ZodMiniNumber<number>;
2353
+ }, z.core.$strip>>>;
2354
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2355
+ threshold: z.ZodMiniNumber<number>;
2356
+ version: z.ZodMiniTemplateLiteral<`0x${string}`>;
2357
+ }, z.core.$strip>, z.ZodMiniObject<{
2358
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
2359
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
2360
+ weight: z.ZodMiniNumber<number>;
2361
+ }, z.core.$strip>>>;
2362
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
2363
+ threshold: z.ZodMiniNumber<number>;
2364
+ version: z.ZodMiniBigInt<bigint>;
2365
+ }, z.core.$strip>>;
2366
+ createdAt: z.ZodMiniNumber<number>;
2367
+ hash: z.ZodMiniTemplateLiteral<`0x${string}`>;
2368
+ signatureCount: z.ZodMiniNumber<number>;
2369
+ threshold: z.ZodMiniNumber<number>;
2370
+ updatedAt: z.ZodMiniNumber<number>;
2371
+ weight: z.ZodMiniNumber<number>;
2372
+ }, z.core.$strip>]>>>;
2373
+ };
1990
2374
  //# sourceMappingURL=RpcSchemaTempo.d.ts.map