ox 1.0.0-beta.8 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (413) hide show
  1. package/CHANGELOG.md +1143 -0
  2. package/dist/core/Abi.d.ts +6 -2
  3. package/dist/core/Abi.d.ts.map +1 -1
  4. package/dist/core/Abi.js +6 -3
  5. package/dist/core/Abi.js.map +1 -1
  6. package/dist/core/AbiConstructor.d.ts +2 -1
  7. package/dist/core/AbiConstructor.d.ts.map +1 -1
  8. package/dist/core/AbiConstructor.js +2 -2
  9. package/dist/core/AbiConstructor.js.map +1 -1
  10. package/dist/core/AbiError.d.ts +3 -1
  11. package/dist/core/AbiError.d.ts.map +1 -1
  12. package/dist/core/AbiError.js +2 -2
  13. package/dist/core/AbiError.js.map +1 -1
  14. package/dist/core/AbiEvent.d.ts +3 -1
  15. package/dist/core/AbiEvent.d.ts.map +1 -1
  16. package/dist/core/AbiEvent.js +2 -2
  17. package/dist/core/AbiEvent.js.map +1 -1
  18. package/dist/core/AbiFunction.d.ts +3 -1
  19. package/dist/core/AbiFunction.d.ts.map +1 -1
  20. package/dist/core/AbiFunction.js +2 -2
  21. package/dist/core/AbiFunction.js.map +1 -1
  22. package/dist/core/AbiItem.d.ts +6 -3
  23. package/dist/core/AbiItem.d.ts.map +1 -1
  24. package/dist/core/AbiItem.js +9 -7
  25. package/dist/core/AbiItem.js.map +1 -1
  26. package/dist/core/AbiParameter.d.ts +88 -0
  27. package/dist/core/AbiParameter.d.ts.map +1 -0
  28. package/dist/core/AbiParameter.js +82 -0
  29. package/dist/core/AbiParameter.js.map +1 -0
  30. package/dist/core/AbiParameters.d.ts +58 -2
  31. package/dist/core/AbiParameters.d.ts.map +1 -1
  32. package/dist/core/AbiParameters.js +60 -6
  33. package/dist/core/AbiParameters.js.map +1 -1
  34. package/dist/core/Rlp.d.ts +27 -5
  35. package/dist/core/Rlp.d.ts.map +1 -1
  36. package/dist/core/Rlp.js +40 -4
  37. package/dist/core/Rlp.js.map +1 -1
  38. package/dist/core/RpcSchema.d.ts +2 -2
  39. package/dist/core/internal/abiParameters.d.ts.map +1 -1
  40. package/dist/core/internal/abiParameters.js +21 -3
  41. package/dist/core/internal/abiParameters.js.map +1 -1
  42. package/dist/core/internal/human-readable/errors.d.ts +103 -0
  43. package/dist/core/internal/human-readable/errors.d.ts.map +1 -0
  44. package/dist/core/internal/human-readable/errors.js +142 -0
  45. package/dist/core/internal/human-readable/errors.js.map +1 -0
  46. package/dist/core/internal/human-readable/formatAbi.d.ts +19 -0
  47. package/dist/core/internal/human-readable/formatAbi.d.ts.map +1 -0
  48. package/dist/core/internal/human-readable/formatAbi.js +18 -0
  49. package/dist/core/internal/human-readable/formatAbi.js.map +1 -0
  50. package/dist/core/internal/human-readable/formatAbiItem.d.ts +23 -0
  51. package/dist/core/internal/human-readable/formatAbiItem.d.ts.map +1 -0
  52. package/dist/core/internal/human-readable/formatAbiItem.js +25 -0
  53. package/dist/core/internal/human-readable/formatAbiItem.js.map +1 -0
  54. package/dist/core/internal/human-readable/formatAbiParameter.d.ts +41 -0
  55. package/dist/core/internal/human-readable/formatAbiParameter.d.ts.map +1 -0
  56. package/dist/core/internal/human-readable/formatAbiParameter.js +36 -0
  57. package/dist/core/internal/human-readable/formatAbiParameter.js.map +1 -0
  58. package/dist/core/internal/human-readable/formatAbiParameters.d.ts +26 -0
  59. package/dist/core/internal/human-readable/formatAbiParameters.d.ts.map +1 -0
  60. package/dist/core/internal/human-readable/formatAbiParameters.js +19 -0
  61. package/dist/core/internal/human-readable/formatAbiParameters.js.map +1 -0
  62. package/dist/core/internal/human-readable/parseAbi.d.ts +22 -0
  63. package/dist/core/internal/human-readable/parseAbi.d.ts.map +1 -0
  64. package/dist/core/internal/human-readable/parseAbi.js +22 -0
  65. package/dist/core/internal/human-readable/parseAbi.js.map +1 -0
  66. package/dist/core/internal/human-readable/parseAbiItem.d.ts +23 -0
  67. package/dist/core/internal/human-readable/parseAbiItem.d.ts.map +1 -0
  68. package/dist/core/internal/human-readable/parseAbiItem.js +30 -0
  69. package/dist/core/internal/human-readable/parseAbiItem.js.map +1 -0
  70. package/dist/core/internal/human-readable/parseAbiParameter.d.ts +28 -0
  71. package/dist/core/internal/human-readable/parseAbiParameter.d.ts.map +1 -0
  72. package/dist/core/internal/human-readable/parseAbiParameter.js +32 -0
  73. package/dist/core/internal/human-readable/parseAbiParameter.js.map +1 -0
  74. package/dist/core/internal/human-readable/parseAbiParameters.d.ts +38 -0
  75. package/dist/core/internal/human-readable/parseAbiParameters.d.ts.map +1 -0
  76. package/dist/core/internal/human-readable/parseAbiParameters.js +39 -0
  77. package/dist/core/internal/human-readable/parseAbiParameters.js.map +1 -0
  78. package/dist/core/internal/human-readable/regex.d.ts +9 -0
  79. package/dist/core/internal/human-readable/regex.d.ts.map +1 -0
  80. package/dist/core/internal/human-readable/regex.js +12 -0
  81. package/dist/core/internal/human-readable/regex.js.map +1 -0
  82. package/dist/core/internal/human-readable/runtime/cache.d.ts +22 -0
  83. package/dist/core/internal/human-readable/runtime/cache.d.ts.map +1 -0
  84. package/dist/core/internal/human-readable/runtime/cache.js +86 -0
  85. package/dist/core/internal/human-readable/runtime/cache.js.map +1 -0
  86. package/dist/core/internal/human-readable/runtime/signatures.d.ts +39 -0
  87. package/dist/core/internal/human-readable/runtime/signatures.d.ts.map +1 -0
  88. package/dist/core/internal/human-readable/runtime/signatures.js +67 -0
  89. package/dist/core/internal/human-readable/runtime/signatures.js.map +1 -0
  90. package/dist/core/internal/human-readable/runtime/structs.d.ts +3 -0
  91. package/dist/core/internal/human-readable/runtime/structs.d.ts.map +1 -0
  92. package/dist/core/internal/human-readable/runtime/structs.js +79 -0
  93. package/dist/core/internal/human-readable/runtime/structs.js.map +1 -0
  94. package/dist/core/internal/human-readable/runtime/utils.d.ts +205 -0
  95. package/dist/core/internal/human-readable/runtime/utils.d.ts.map +1 -0
  96. package/dist/core/internal/human-readable/runtime/utils.js +232 -0
  97. package/dist/core/internal/human-readable/runtime/utils.js.map +1 -0
  98. package/dist/core/internal/human-readable/types/signatures.d.ts +38 -0
  99. package/dist/core/internal/human-readable/types/signatures.d.ts.map +1 -0
  100. package/dist/core/internal/human-readable/types/signatures.js +2 -0
  101. package/dist/core/internal/human-readable/types/signatures.js.map +1 -0
  102. package/dist/core/internal/human-readable/types/structs.d.ts +48 -0
  103. package/dist/core/internal/human-readable/types/structs.d.ts.map +1 -0
  104. package/dist/core/internal/human-readable/types/structs.js +2 -0
  105. package/dist/core/internal/human-readable/types/structs.js.map +1 -0
  106. package/dist/core/internal/human-readable/types/utils.d.ts +163 -0
  107. package/dist/core/internal/human-readable/types/utils.d.ts.map +1 -0
  108. package/dist/core/internal/human-readable/types/utils.js +2 -0
  109. package/dist/core/internal/human-readable/types/utils.js.map +1 -0
  110. package/dist/core/internal/human-readable/types.d.ts +29 -0
  111. package/dist/core/internal/human-readable/types.d.ts.map +1 -0
  112. package/dist/core/internal/human-readable/types.js +2 -0
  113. package/dist/core/internal/human-readable/types.js.map +1 -0
  114. package/dist/core/internal/rpcSchemas/eth.d.ts +36 -0
  115. package/dist/core/internal/rpcSchemas/eth.d.ts.map +1 -1
  116. package/dist/erc4337/EntryPoint.d.ts +1072 -1
  117. package/dist/erc4337/EntryPoint.d.ts.map +1 -1
  118. package/dist/erc4337/EntryPoint.js +872 -0
  119. package/dist/erc4337/EntryPoint.js.map +1 -1
  120. package/dist/erc4337/RpcSchema.d.ts +2 -2
  121. package/dist/erc4337/RpcSchema.d.ts.map +1 -1
  122. package/dist/erc4337/UserOperation.d.ts +39 -10
  123. package/dist/erc4337/UserOperation.d.ts.map +1 -1
  124. package/dist/erc4337/UserOperation.js +62 -48
  125. package/dist/erc4337/UserOperation.js.map +1 -1
  126. package/dist/erc4337/UserOperationGas.d.ts +9 -5
  127. package/dist/erc4337/UserOperationGas.d.ts.map +1 -1
  128. package/dist/erc4337/UserOperationGas.js +17 -15
  129. package/dist/erc4337/UserOperationGas.js.map +1 -1
  130. package/dist/erc4337/UserOperationReceipt.d.ts +4 -4
  131. package/dist/erc4337/UserOperationReceipt.d.ts.map +1 -1
  132. package/dist/erc4337/UserOperationReceipt.js.map +1 -1
  133. package/dist/index.d.ts +37 -0
  134. package/dist/index.d.ts.map +1 -1
  135. package/dist/index.js +37 -0
  136. package/dist/index.js.map +1 -1
  137. package/dist/tempo/Channel.d.ts +8 -14
  138. package/dist/tempo/Channel.d.ts.map +1 -1
  139. package/dist/tempo/Channel.js +4 -8
  140. package/dist/tempo/Channel.js.map +1 -1
  141. package/dist/tempo/KeyAuthorization.d.ts +5 -5
  142. package/dist/tempo/KeyAuthorization.d.ts.map +1 -1
  143. package/dist/tempo/KeyAuthorization.js +4 -4
  144. package/dist/tempo/KeyAuthorization.js.map +1 -1
  145. package/dist/tempo/MultisigConfig.d.ts +37 -85
  146. package/dist/tempo/MultisigConfig.d.ts.map +1 -1
  147. package/dist/tempo/MultisigConfig.js +39 -83
  148. package/dist/tempo/MultisigConfig.js.map +1 -1
  149. package/dist/tempo/PoolId.d.ts +8 -7
  150. package/dist/tempo/PoolId.d.ts.map +1 -1
  151. package/dist/tempo/PoolId.js +10 -6
  152. package/dist/tempo/PoolId.js.map +1 -1
  153. package/dist/tempo/SignatureEnvelope.d.ts +32 -30
  154. package/dist/tempo/SignatureEnvelope.d.ts.map +1 -1
  155. package/dist/tempo/SignatureEnvelope.js +56 -51
  156. package/dist/tempo/SignatureEnvelope.js.map +1 -1
  157. package/dist/tempo/Transaction.d.ts +16 -5
  158. package/dist/tempo/Transaction.d.ts.map +1 -1
  159. package/dist/tempo/Transaction.js +34 -7
  160. package/dist/tempo/Transaction.js.map +1 -1
  161. package/dist/tempo/TransactionReceipt.d.ts +3 -3
  162. package/dist/tempo/TransactionReceipt.d.ts.map +1 -1
  163. package/dist/tempo/TransactionReceipt.js +8 -1
  164. package/dist/tempo/TransactionReceipt.js.map +1 -1
  165. package/dist/tempo/TransactionRequest.d.ts +15 -2
  166. package/dist/tempo/TransactionRequest.d.ts.map +1 -1
  167. package/dist/tempo/TransactionRequest.js +65 -29
  168. package/dist/tempo/TransactionRequest.js.map +1 -1
  169. package/dist/tempo/TxEnvelopeTempo.d.ts +2 -3
  170. package/dist/tempo/TxEnvelopeTempo.d.ts.map +1 -1
  171. package/dist/tempo/TxEnvelopeTempo.js +5 -6
  172. package/dist/tempo/TxEnvelopeTempo.js.map +1 -1
  173. package/dist/tempo/index.d.ts +6 -26
  174. package/dist/tempo/index.d.ts.map +1 -1
  175. package/dist/tempo/index.js +6 -26
  176. package/dist/tempo/index.js.map +1 -1
  177. package/dist/zod/Abi.d.ts +214 -0
  178. package/dist/zod/Abi.d.ts.map +1 -0
  179. package/dist/zod/Abi.js +5 -0
  180. package/dist/zod/Abi.js.map +1 -0
  181. package/dist/zod/AbiConstructor.d.ts +58 -0
  182. package/dist/zod/AbiConstructor.d.ts.map +1 -0
  183. package/dist/zod/AbiConstructor.js +18 -0
  184. package/dist/zod/AbiConstructor.js.map +1 -0
  185. package/dist/zod/AbiError.d.ts +20 -0
  186. package/dist/zod/AbiError.d.ts.map +1 -0
  187. package/dist/zod/AbiError.js +9 -0
  188. package/dist/zod/AbiError.js.map +1 -0
  189. package/dist/zod/AbiEvent.d.ts +23 -0
  190. package/dist/zod/AbiEvent.d.ts.map +1 -0
  191. package/dist/zod/AbiEvent.js +11 -0
  192. package/dist/zod/AbiEvent.js.map +1 -0
  193. package/dist/zod/AbiFallback.d.ts +16 -0
  194. package/dist/zod/AbiFallback.d.ts.map +1 -0
  195. package/dist/zod/AbiFallback.js +16 -0
  196. package/dist/zod/AbiFallback.js.map +1 -0
  197. package/dist/zod/AbiFunction.d.ts +109 -0
  198. package/dist/zod/AbiFunction.d.ts.map +1 -0
  199. package/dist/zod/AbiFunction.js +26 -0
  200. package/dist/zod/AbiFunction.js.map +1 -0
  201. package/dist/zod/AbiItem.d.ts +216 -0
  202. package/dist/zod/AbiItem.d.ts.map +1 -0
  203. package/dist/zod/AbiItem.js +26 -0
  204. package/dist/zod/AbiItem.js.map +1 -0
  205. package/dist/zod/AbiParameter.d.ts +32 -0
  206. package/dist/zod/AbiParameter.d.ts.map +1 -0
  207. package/dist/zod/AbiParameter.js +28 -0
  208. package/dist/zod/AbiParameter.js.map +1 -0
  209. package/dist/zod/AbiParameters.d.ts +30 -0
  210. package/dist/zod/AbiParameters.d.ts.map +1 -0
  211. package/dist/zod/AbiParameters.js +6 -0
  212. package/dist/zod/AbiParameters.js.map +1 -0
  213. package/dist/zod/AbiReceive.d.ts +6 -0
  214. package/dist/zod/AbiReceive.d.ts.map +1 -0
  215. package/dist/zod/AbiReceive.js +7 -0
  216. package/dist/zod/AbiReceive.js.map +1 -0
  217. package/dist/zod/RpcSchema.d.ts +6 -5
  218. package/dist/zod/RpcSchema.d.ts.map +1 -1
  219. package/dist/zod/Solidity.d.ts +15 -0
  220. package/dist/zod/Solidity.d.ts.map +1 -0
  221. package/dist/zod/Solidity.js +41 -0
  222. package/dist/zod/Solidity.js.map +1 -0
  223. package/dist/zod/TypedData.d.ts +226 -0
  224. package/dist/zod/TypedData.d.ts.map +1 -0
  225. package/dist/zod/TypedData.js +84 -0
  226. package/dist/zod/TypedData.js.map +1 -0
  227. package/dist/zod/internal/rpcSchemas/Eth.d.ts +1 -0
  228. package/dist/zod/internal/rpcSchemas/Eth.d.ts.map +1 -1
  229. package/dist/zod/internal/rpcSchemas/Eth.js +5 -0
  230. package/dist/zod/internal/rpcSchemas/Eth.js.map +1 -1
  231. package/dist/zod/tempo/AuthorizationTempo.d.ts +0 -20
  232. package/dist/zod/tempo/AuthorizationTempo.d.ts.map +1 -1
  233. package/dist/zod/tempo/KeyAuthorization.d.ts +503 -67
  234. package/dist/zod/tempo/KeyAuthorization.d.ts.map +1 -1
  235. package/dist/zod/tempo/KeyAuthorization.js +32 -15
  236. package/dist/zod/tempo/KeyAuthorization.js.map +1 -1
  237. package/dist/zod/tempo/RpcSchemaTempo.d.ts +216 -34
  238. package/dist/zod/tempo/RpcSchemaTempo.d.ts.map +1 -1
  239. package/dist/zod/tempo/SignatureEnvelope.d.ts +0 -6
  240. package/dist/zod/tempo/SignatureEnvelope.d.ts.map +1 -1
  241. package/dist/zod/tempo/SignatureEnvelope.js +0 -2
  242. package/dist/zod/tempo/SignatureEnvelope.js.map +1 -1
  243. package/dist/zod/tempo/Transaction.d.ts +1479 -333
  244. package/dist/zod/tempo/Transaction.d.ts.map +1 -1
  245. package/dist/zod/tempo/Transaction.js +65 -16
  246. package/dist/zod/tempo/Transaction.js.map +1 -1
  247. package/dist/zod/tempo/TransactionRequest.d.ts +410 -57
  248. package/dist/zod/tempo/TransactionRequest.d.ts.map +1 -1
  249. package/dist/zod/tempo/TransactionRequest.js +81 -18
  250. package/dist/zod/tempo/TransactionRequest.js.map +1 -1
  251. package/dist/zod/tempo/TxEnvelopeTempo.d.ts +225 -18
  252. package/dist/zod/tempo/TxEnvelopeTempo.d.ts.map +1 -1
  253. package/dist/zod/tempo/TxEnvelopeTempo.js +1 -1
  254. package/dist/zod/tempo/TxEnvelopeTempo.js.map +1 -1
  255. package/dist/zod/tempo/ZoneRpcAuthentication.d.ts +0 -3
  256. package/dist/zod/tempo/ZoneRpcAuthentication.d.ts.map +1 -1
  257. package/dist/zod/tempo/z.d.ts +0 -1
  258. package/dist/zod/tempo/z.d.ts.map +1 -1
  259. package/dist/zod/tempo/z.js +0 -1
  260. package/dist/zod/tempo/z.js.map +1 -1
  261. package/dist/zod/z.d.ts +12 -0
  262. package/dist/zod/z.d.ts.map +1 -1
  263. package/dist/zod/z.js +12 -0
  264. package/dist/zod/z.js.map +1 -1
  265. package/package.json +67 -11
  266. package/src/core/Abi.bench.ts +30 -0
  267. package/src/core/Abi.ts +13 -4
  268. package/src/core/AbiConstructor.ts +3 -2
  269. package/src/core/AbiError.ts +6 -2
  270. package/src/core/AbiEvent.ts +6 -2
  271. package/src/core/AbiFunction.ts +6 -2
  272. package/src/core/AbiItem.bench.ts +19 -0
  273. package/src/core/AbiItem.ts +20 -10
  274. package/src/core/AbiParameter.bench.ts +35 -0
  275. package/src/core/AbiParameter.ts +126 -0
  276. package/src/core/AbiParameters.bench.ts +22 -0
  277. package/src/core/AbiParameters.ts +77 -8
  278. package/src/core/Rlp.ts +66 -3
  279. package/src/core/RpcSchema.ts +2 -2
  280. package/src/core/_test/Abi.test.ts +4 -0
  281. package/src/core/_test/AbiItem.test.ts +3 -0
  282. package/src/core/_test/AbiParameter.test-d.ts +41 -0
  283. package/src/core/_test/AbiParameter.test.ts +84 -0
  284. package/src/core/_test/AbiParameters.decode.test.ts +88 -12
  285. package/src/core/_test/AbiParameters.encode.test.ts +68 -0
  286. package/src/core/_test/AbiParameters.test.ts +7 -0
  287. package/src/core/_test/Rlp.test.ts +101 -0
  288. package/src/core/_test/index.test.ts +1 -0
  289. package/src/core/internal/abiParameters.ts +21 -3
  290. package/src/core/internal/human-readable/_snap/formatAbi.test.ts.snap +74 -0
  291. package/src/core/internal/human-readable/_snap/parseAbi.test.ts.snap +2353 -0
  292. package/src/core/internal/human-readable/errors.test.ts +258 -0
  293. package/src/core/internal/human-readable/errors.ts +205 -0
  294. package/src/core/internal/human-readable/formatAbi.test-d.ts +144 -0
  295. package/src/core/internal/human-readable/formatAbi.test.ts +23 -0
  296. package/src/core/internal/human-readable/formatAbi.ts +37 -0
  297. package/src/core/internal/human-readable/formatAbiItem.test-d.ts +115 -0
  298. package/src/core/internal/human-readable/formatAbiItem.test.ts +102 -0
  299. package/src/core/internal/human-readable/formatAbiItem.ts +136 -0
  300. package/src/core/internal/human-readable/formatAbiParameter.test-d.ts +125 -0
  301. package/src/core/internal/human-readable/formatAbiParameter.test.ts +126 -0
  302. package/src/core/internal/human-readable/formatAbiParameter.ts +86 -0
  303. package/src/core/internal/human-readable/formatAbiParameters.test-d.ts +92 -0
  304. package/src/core/internal/human-readable/formatAbiParameters.test.ts +32 -0
  305. package/src/core/internal/human-readable/formatAbiParameters.ts +46 -0
  306. package/src/core/internal/human-readable/human-readable.bench-d.ts +58 -0
  307. package/src/core/internal/human-readable/integration.test.ts +68 -0
  308. package/src/core/internal/human-readable/parseAbi.test-d.ts +188 -0
  309. package/src/core/internal/human-readable/parseAbi.test.ts +82 -0
  310. package/src/core/internal/human-readable/parseAbi.ts +59 -0
  311. package/src/core/internal/human-readable/parseAbiItem.test-d.ts +183 -0
  312. package/src/core/internal/human-readable/parseAbiItem.test.ts +264 -0
  313. package/src/core/internal/human-readable/parseAbiItem.ts +91 -0
  314. package/src/core/internal/human-readable/parseAbiParameter.test-d.ts +68 -0
  315. package/src/core/internal/human-readable/parseAbiParameter.test.ts +207 -0
  316. package/src/core/internal/human-readable/parseAbiParameter.ts +95 -0
  317. package/src/core/internal/human-readable/parseAbiParameters.test-d.ts +160 -0
  318. package/src/core/internal/human-readable/parseAbiParameters.test.ts +80 -0
  319. package/src/core/internal/human-readable/parseAbiParameters.ts +123 -0
  320. package/src/core/internal/human-readable/regex.ts +15 -0
  321. package/src/core/internal/human-readable/runtime/cache.ts +96 -0
  322. package/src/core/internal/human-readable/runtime/signatures.test.ts +236 -0
  323. package/src/core/internal/human-readable/runtime/signatures.ts +106 -0
  324. package/src/core/internal/human-readable/runtime/structs.test.ts +210 -0
  325. package/src/core/internal/human-readable/runtime/structs.ts +97 -0
  326. package/src/core/internal/human-readable/runtime/utils.test.ts +717 -0
  327. package/src/core/internal/human-readable/runtime/utils.ts +344 -0
  328. package/src/core/internal/human-readable/types/signatures.test-d.ts +255 -0
  329. package/src/core/internal/human-readable/types/signatures.ts +369 -0
  330. package/src/core/internal/human-readable/types/structs.test-d.ts +221 -0
  331. package/src/core/internal/human-readable/types/structs.ts +88 -0
  332. package/src/core/internal/human-readable/types/utils.test-d.ts +1029 -0
  333. package/src/core/internal/human-readable/types/utils.ts +392 -0
  334. package/src/core/internal/human-readable/types.ts +69 -0
  335. package/src/core/internal/rpcSchemas/eth.ts +36 -0
  336. package/src/erc4337/EntryPoint.ts +875 -1
  337. package/src/erc4337/RpcSchema.ts +4 -2
  338. package/src/erc4337/UserOperation.ts +130 -60
  339. package/src/erc4337/UserOperationGas.ts +36 -28
  340. package/src/erc4337/UserOperationReceipt.ts +15 -7
  341. package/src/erc4337/_test/EntryPoint.test.ts +48 -0
  342. package/src/erc4337/_test/RpcSchema.test-d.ts +56 -0
  343. package/src/erc4337/_test/UserOperation.snap-d.ts +31 -0
  344. package/src/erc4337/_test/UserOperation.test.ts +221 -5
  345. package/src/erc4337/_test/UserOperationGas.test.ts +30 -1
  346. package/src/index.ts +38 -0
  347. package/src/tempo/Channel.test.ts +2 -23
  348. package/src/tempo/Channel.ts +10 -22
  349. package/src/tempo/KeyAuthorization.test.ts +22 -0
  350. package/src/tempo/KeyAuthorization.ts +9 -9
  351. package/src/tempo/MultisigConfig.test.ts +54 -37
  352. package/src/tempo/MultisigConfig.ts +59 -134
  353. package/src/tempo/PoolId.test.ts +7 -41
  354. package/src/tempo/PoolId.ts +15 -10
  355. package/src/tempo/SignatureEnvelope.test.ts +118 -17
  356. package/src/tempo/SignatureEnvelope.ts +77 -72
  357. package/src/tempo/Transaction.test.ts +0 -15
  358. package/src/tempo/Transaction.ts +63 -12
  359. package/src/tempo/TransactionReceipt.test.ts +76 -0
  360. package/src/tempo/TransactionReceipt.ts +11 -5
  361. package/src/tempo/TransactionRequest.test.ts +174 -1
  362. package/src/tempo/TransactionRequest.ts +84 -32
  363. package/src/tempo/TxEnvelopeTempo.test.ts +2 -2
  364. package/src/tempo/TxEnvelopeTempo.ts +7 -7
  365. package/src/tempo/e2e.test.ts +228 -50
  366. package/src/tempo/index.ts +6 -26
  367. package/src/version.ts +1 -1
  368. package/src/zod/Abi.ts +5 -0
  369. package/src/zod/AbiConstructor.ts +24 -0
  370. package/src/zod/AbiError.ts +9 -0
  371. package/src/zod/AbiEvent.ts +11 -0
  372. package/src/zod/AbiFallback.ts +22 -0
  373. package/src/zod/AbiFunction.ts +32 -0
  374. package/src/zod/AbiItem.ts +28 -0
  375. package/src/zod/AbiParameter.ts +36 -0
  376. package/src/zod/AbiParameters.ts +7 -0
  377. package/src/zod/AbiReceive.ts +7 -0
  378. package/src/zod/RpcSchema.ts +5 -5
  379. package/src/zod/Solidity.ts +83 -0
  380. package/src/zod/TypedData.ts +111 -0
  381. package/src/zod/_test/Abi.test-d.ts +46 -0
  382. package/src/zod/_test/Abi.test.ts +163 -0
  383. package/src/zod/_test/TypedData.test-d.ts +20 -0
  384. package/src/zod/_test/TypedData.test.ts +87 -0
  385. package/src/zod/_test/z.test-d.ts +6 -0
  386. package/src/zod/_test/z.test.ts +17 -0
  387. package/src/zod/internal/rpcSchemas/Eth.ts +6 -0
  388. package/src/zod/tempo/KeyAuthorization.ts +34 -15
  389. package/src/zod/tempo/SignatureEnvelope.ts +0 -2
  390. package/src/zod/tempo/Transaction.ts +84 -22
  391. package/src/zod/tempo/TransactionRequest.ts +86 -20
  392. package/src/zod/tempo/TxEnvelopeTempo.ts +1 -1
  393. package/src/zod/tempo/_test/KeyAuthorization.test.ts +53 -0
  394. package/src/zod/tempo/_test/SignatureEnvelope.test.ts +0 -2
  395. package/src/zod/tempo/_test/Transaction.test.ts +155 -0
  396. package/src/zod/tempo/_test/TransactionRequest.test.ts +44 -0
  397. package/src/zod/tempo/z.ts +0 -1
  398. package/src/zod/z.ts +12 -0
  399. package/dist/tempo/TokenId.d.ts +0 -87
  400. package/dist/tempo/TokenId.d.ts.map +0 -1
  401. package/dist/tempo/TokenId.js +0 -123
  402. package/dist/tempo/TokenId.js.map +0 -1
  403. package/dist/zod/tempo/TokenId.d.ts +0 -6
  404. package/dist/zod/tempo/TokenId.d.ts.map +0 -1
  405. package/dist/zod/tempo/TokenId.js +0 -14
  406. package/dist/zod/tempo/TokenId.js.map +0 -1
  407. package/src/CHANGELOG.md +0 -820
  408. package/src/tempo/TokenId.bench.ts +0 -36
  409. package/src/tempo/TokenId.test.ts +0 -79
  410. package/src/tempo/TokenId.ts +0 -141
  411. package/src/zod/tempo/TokenId.ts +0 -15
  412. package/src/zod/tempo/_test/TokenId.test-d.ts +0 -17
  413. package/src/zod/tempo/_test/TokenId.test.ts +0 -21
@@ -37,7 +37,6 @@ export declare const Rpc: z.ZodMiniObject<{
37
37
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
38
38
  }, z.core.$strip>, z.ZodMiniObject<{
39
39
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
40
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
41
40
  init: z.ZodMiniOptional<z.ZodMiniObject<{
42
41
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
43
42
  threshold: z.ZodMiniNumber<number>;
@@ -57,6 +56,7 @@ export declare const Rpc: z.ZodMiniObject<{
57
56
  to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
58
57
  value: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
59
58
  }, z.core.$strip>>>>;
59
+ capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
60
60
  chainId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
61
61
  data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
62
62
  feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
@@ -72,22 +72,24 @@ export declare const Rpc: z.ZodMiniObject<{
72
72
  gasPrice: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
73
73
  input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
74
74
  keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
75
- allowedCalls: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
76
- selectorRules: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
77
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
75
+ account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
76
+ allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
77
+ selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
78
+ recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
78
79
  selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
79
- }, z.core.$strip>>>>;
80
+ }, z.core.$strip>>>>>;
80
81
  target: z.ZodMiniTemplateLiteral<`0x${string}`>;
81
- }, z.core.$strip>>>>;
82
+ }, z.core.$strip>>>>>;
82
83
  chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
83
84
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
85
+ isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
84
86
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
85
87
  keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
86
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
88
+ limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
87
89
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
88
- period: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
90
+ period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
89
91
  token: z.ZodMiniTemplateLiteral<`0x${string}`>;
90
- }, z.core.$strip>>>>;
92
+ }, z.core.$strip>>>>>;
91
93
  signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
92
94
  r: z.ZodMiniTemplateLiteral<`0x${string}`>;
93
95
  s: z.ZodMiniTemplateLiteral<`0x${string}`>;
@@ -116,7 +118,6 @@ export declare const Rpc: z.ZodMiniObject<{
116
118
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
117
119
  }, z.core.$strip>, z.ZodMiniObject<{
118
120
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
119
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
120
121
  init: z.ZodMiniOptional<z.ZodMiniObject<{
121
122
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
122
123
  threshold: z.ZodMiniNumber<number>;
@@ -128,12 +129,23 @@ export declare const Rpc: z.ZodMiniObject<{
128
129
  signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
129
130
  type: z.ZodMiniLiteral<"multisig">;
130
131
  }, z.core.$strip>]>;
132
+ witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
131
133
  }, z.core.$strip>>;
132
134
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
135
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
133
136
  keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
134
137
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
135
138
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
136
139
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
140
+ multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
141
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
142
+ threshold: z.ZodMiniNumber<number>;
143
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
144
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
145
+ weight: z.ZodMiniNumber<number>;
146
+ }, z.core.$strip>>>;
147
+ }, z.core.$strip>>;
148
+ multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
137
149
  nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
138
150
  nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
139
151
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -166,7 +178,6 @@ export declare const Rpc: z.ZodMiniObject<{
166
178
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
167
179
  }, z.core.$strip>, z.ZodMiniObject<{
168
180
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
169
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
170
181
  init: z.ZodMiniOptional<z.ZodMiniObject<{
171
182
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
172
183
  threshold: z.ZodMiniNumber<number>;
@@ -238,7 +249,6 @@ export declare const Domain: z.ZodMiniObject<{
238
249
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
239
250
  }, z.core.$strip>, z.ZodMiniObject<{
240
251
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
241
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
242
252
  init: z.ZodMiniOptional<z.ZodMiniObject<{
243
253
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
244
254
  threshold: z.ZodMiniNumber<number>;
@@ -258,6 +268,7 @@ export declare const Domain: z.ZodMiniObject<{
258
268
  to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
259
269
  value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
260
270
  }, z.core.$strip>>>>;
271
+ capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
261
272
  chainId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
262
273
  data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
263
274
  feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
@@ -267,12 +278,14 @@ export declare const Domain: z.ZodMiniObject<{
267
278
  v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
268
279
  yParity: z.ZodMiniNumber<number>;
269
280
  }, z.core.$strip>, z.ZodMiniNull]>>;
270
- feeToken: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>]>>;
281
+ feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
271
282
  from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
272
283
  gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
273
284
  gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
274
285
  input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
275
- keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
286
+ keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
287
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
288
+ isAdmin: z.ZodMiniBoolean<boolean>;
276
289
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
277
290
  chainId: z.ZodMiniBigInt<bigint>;
278
291
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -328,7 +341,6 @@ export declare const Domain: z.ZodMiniObject<{
328
341
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
329
342
  }, z.core.$strip>, z.ZodMiniObject<{
330
343
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
331
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
332
344
  init: z.ZodMiniOptional<z.ZodMiniObject<{
333
345
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
334
346
  threshold: z.ZodMiniNumber<number>;
@@ -341,12 +353,92 @@ export declare const Domain: z.ZodMiniObject<{
341
353
  type: z.ZodMiniLiteral<"multisig">;
342
354
  }, z.core.$strip>]>;
343
355
  type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
344
- }, z.core.$strip>>;
356
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
357
+ }, z.core.$strip>, z.ZodMiniObject<{
358
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
359
+ chainId: z.ZodMiniBigInt<bigint>;
360
+ expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
361
+ limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
362
+ limit: z.ZodMiniBigInt<bigint>;
363
+ period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
364
+ token: z.ZodMiniTemplateLiteral<`0x${string}`>;
365
+ }, z.core.$strip>>>>;
366
+ scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
367
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
368
+ recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
369
+ selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
370
+ }, z.core.$strip>>>>;
371
+ signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
372
+ signature: z.ZodMiniObject<{
373
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
374
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
375
+ yParity: z.ZodMiniNumber<number>;
376
+ }, z.core.$strip>;
377
+ type: z.ZodMiniLiteral<"secp256k1">;
378
+ }, z.core.$strip>, z.ZodMiniObject<{
379
+ prehash: z.ZodMiniBoolean<boolean>;
380
+ publicKey: z.ZodMiniObject<{
381
+ prefix: z.ZodMiniNumber<number>;
382
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
383
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
384
+ }, z.core.$strip>;
385
+ signature: z.ZodMiniObject<{
386
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
387
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
388
+ }, z.core.$strip>;
389
+ type: z.ZodMiniLiteral<"p256">;
390
+ }, z.core.$strip>, z.ZodMiniObject<{
391
+ metadata: z.ZodMiniObject<{
392
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
393
+ clientDataJSON: z.ZodMiniString<string>;
394
+ }, z.core.$strip>;
395
+ publicKey: z.ZodMiniObject<{
396
+ prefix: z.ZodMiniNumber<number>;
397
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
398
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
399
+ }, z.core.$strip>;
400
+ signature: z.ZodMiniObject<{
401
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
402
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
403
+ }, z.core.$strip>;
404
+ type: z.ZodMiniLiteral<"webAuthn">;
405
+ }, z.core.$strip>, z.ZodMiniObject<{
406
+ inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
407
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
408
+ type: z.ZodMiniLiteral<"keychain">;
409
+ userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
410
+ version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
411
+ }, z.core.$strip>, z.ZodMiniObject<{
412
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
413
+ init: z.ZodMiniOptional<z.ZodMiniObject<{
414
+ salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
415
+ threshold: z.ZodMiniNumber<number>;
416
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
417
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
418
+ weight: z.ZodMiniNumber<number>;
419
+ }, z.core.$strip>>>;
420
+ }, z.core.$strip>>;
421
+ signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
422
+ type: z.ZodMiniLiteral<"multisig">;
423
+ }, z.core.$strip>]>;
424
+ type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
425
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
426
+ }, z.core.$strip>]>>;
345
427
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
428
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
346
429
  keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
347
430
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
348
431
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
349
432
  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<{
437
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
438
+ weight: z.ZodMiniNumber<number>;
439
+ }, z.core.$strip>>>;
440
+ }, z.core.$strip>>;
441
+ multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
350
442
  nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
351
443
  nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
352
444
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -393,7 +485,6 @@ export declare const Domain: z.ZodMiniObject<{
393
485
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
394
486
  }, z.core.$strip>, z.ZodMiniObject<{
395
487
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
396
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
397
488
  init: z.ZodMiniOptional<z.ZodMiniObject<{
398
489
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
399
490
  threshold: z.ZodMiniNumber<number>;
@@ -465,7 +556,6 @@ export declare const DomainToRpc: z.ZodMiniObject<{
465
556
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
466
557
  }, z.core.$strip>, z.ZodMiniObject<{
467
558
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
468
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
469
559
  init: z.ZodMiniOptional<z.ZodMiniObject<{
470
560
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
471
561
  threshold: z.ZodMiniNumber<number>;
@@ -485,6 +575,7 @@ export declare const DomainToRpc: z.ZodMiniObject<{
485
575
  to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
486
576
  value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
487
577
  }, z.core.$strip>>>>;
578
+ capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
488
579
  chainId: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
489
580
  data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
490
581
  feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
@@ -494,13 +585,83 @@ export declare const DomainToRpc: z.ZodMiniObject<{
494
585
  v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
495
586
  yParity: z.ZodMiniNumber<number>;
496
587
  }, z.core.$strip>, z.ZodMiniNull]>>;
497
- feeToken: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>]>>;
588
+ feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
498
589
  from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
499
590
  gas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
500
591
  gasPrice: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
501
592
  input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
502
- keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
593
+ keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
594
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
595
+ isAdmin: z.ZodMiniBoolean<boolean>;
596
+ chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
597
+ expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
598
+ limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
599
+ limit: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
600
+ period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
601
+ token: z.ZodMiniTemplateLiteral<`0x${string}`>;
602
+ }, z.core.$strip>>>>;
503
603
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
604
+ scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
605
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
606
+ recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
607
+ selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
608
+ }, z.core.$strip>>>>;
609
+ signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
610
+ signature: z.ZodMiniObject<{
611
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
612
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
613
+ yParity: z.ZodMiniNumber<number>;
614
+ }, z.core.$strip>;
615
+ type: z.ZodMiniLiteral<"secp256k1">;
616
+ }, z.core.$strip>, z.ZodMiniObject<{
617
+ prehash: z.ZodMiniBoolean<boolean>;
618
+ publicKey: z.ZodMiniObject<{
619
+ prefix: z.ZodMiniNumber<number>;
620
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
621
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
622
+ }, z.core.$strip>;
623
+ signature: z.ZodMiniObject<{
624
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
625
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
626
+ }, z.core.$strip>;
627
+ type: z.ZodMiniLiteral<"p256">;
628
+ }, z.core.$strip>, z.ZodMiniObject<{
629
+ metadata: z.ZodMiniObject<{
630
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
631
+ clientDataJSON: z.ZodMiniString<string>;
632
+ }, z.core.$strip>;
633
+ publicKey: z.ZodMiniObject<{
634
+ prefix: z.ZodMiniNumber<number>;
635
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
636
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
637
+ }, z.core.$strip>;
638
+ signature: z.ZodMiniObject<{
639
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
640
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
641
+ }, z.core.$strip>;
642
+ type: z.ZodMiniLiteral<"webAuthn">;
643
+ }, z.core.$strip>, z.ZodMiniObject<{
644
+ inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
645
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
646
+ type: z.ZodMiniLiteral<"keychain">;
647
+ userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
648
+ version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
649
+ }, z.core.$strip>, z.ZodMiniObject<{
650
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
651
+ init: z.ZodMiniOptional<z.ZodMiniObject<{
652
+ salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
653
+ threshold: z.ZodMiniNumber<number>;
654
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
655
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
656
+ weight: z.ZodMiniNumber<number>;
657
+ }, z.core.$strip>>>;
658
+ }, z.core.$strip>>;
659
+ signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
660
+ type: z.ZodMiniLiteral<"multisig">;
661
+ }, z.core.$strip>]>;
662
+ type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
663
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
664
+ }, z.core.$strip>, z.ZodMiniObject<{
504
665
  chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
505
666
  expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
506
667
  limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
@@ -508,6 +669,7 @@ export declare const DomainToRpc: z.ZodMiniObject<{
508
669
  period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
509
670
  token: z.ZodMiniTemplateLiteral<`0x${string}`>;
510
671
  }, z.core.$strip>>>>;
672
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
511
673
  scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
512
674
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
513
675
  recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
@@ -555,7 +717,6 @@ export declare const DomainToRpc: z.ZodMiniObject<{
555
717
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
556
718
  }, z.core.$strip>, z.ZodMiniObject<{
557
719
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
558
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
559
720
  init: z.ZodMiniOptional<z.ZodMiniObject<{
560
721
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
561
722
  threshold: z.ZodMiniNumber<number>;
@@ -568,12 +729,23 @@ export declare const DomainToRpc: z.ZodMiniObject<{
568
729
  type: z.ZodMiniLiteral<"multisig">;
569
730
  }, z.core.$strip>]>;
570
731
  type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
571
- }, z.core.$strip>>;
732
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
733
+ }, z.core.$strip>]>>;
572
734
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
735
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
573
736
  keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
574
737
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
575
738
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
576
739
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
740
+ multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
741
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
742
+ threshold: z.ZodMiniNumber<number>;
743
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
744
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
745
+ weight: z.ZodMiniNumber<number>;
746
+ }, z.core.$strip>>>;
747
+ }, z.core.$strip>>;
748
+ multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
577
749
  nonce: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
578
750
  nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>, z.ZodMiniLiteral<"random">]>>;
579
751
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -620,7 +792,6 @@ export declare const DomainToRpc: z.ZodMiniObject<{
620
792
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
621
793
  }, z.core.$strip>, z.ZodMiniObject<{
622
794
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
623
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
624
795
  init: z.ZodMiniOptional<z.ZodMiniObject<{
625
796
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
626
797
  threshold: z.ZodMiniNumber<number>;
@@ -678,7 +849,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
678
849
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
679
850
  }, z.core.$strip>, z.ZodMiniObject<{
680
851
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
681
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
682
852
  init: z.ZodMiniOptional<z.ZodMiniObject<{
683
853
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
684
854
  threshold: z.ZodMiniNumber<number>;
@@ -698,6 +868,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
698
868
  to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
699
869
  value: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
700
870
  }, z.core.$strip>>>>;
871
+ capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
701
872
  chainId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
702
873
  data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
703
874
  feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
@@ -713,22 +884,24 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
713
884
  gasPrice: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
714
885
  input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
715
886
  keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
716
- allowedCalls: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
717
- selectorRules: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
718
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
887
+ account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
888
+ allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
889
+ selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
890
+ recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
719
891
  selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
720
- }, z.core.$strip>>>>;
892
+ }, z.core.$strip>>>>>;
721
893
  target: z.ZodMiniTemplateLiteral<`0x${string}`>;
722
- }, z.core.$strip>>>>;
894
+ }, z.core.$strip>>>>>;
723
895
  chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
724
896
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
897
+ isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
725
898
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
726
899
  keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
727
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
900
+ limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
728
901
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
729
- period: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
902
+ period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
730
903
  token: z.ZodMiniTemplateLiteral<`0x${string}`>;
731
- }, z.core.$strip>>>>;
904
+ }, z.core.$strip>>>>>;
732
905
  signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
733
906
  r: z.ZodMiniTemplateLiteral<`0x${string}`>;
734
907
  s: z.ZodMiniTemplateLiteral<`0x${string}`>;
@@ -757,7 +930,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
757
930
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
758
931
  }, z.core.$strip>, z.ZodMiniObject<{
759
932
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
760
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
761
933
  init: z.ZodMiniOptional<z.ZodMiniObject<{
762
934
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
763
935
  threshold: z.ZodMiniNumber<number>;
@@ -769,12 +941,23 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
769
941
  signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
770
942
  type: z.ZodMiniLiteral<"multisig">;
771
943
  }, z.core.$strip>]>;
944
+ witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
772
945
  }, z.core.$strip>>;
773
946
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
947
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
774
948
  keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
775
949
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
776
950
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
777
951
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
952
+ multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
953
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
954
+ threshold: z.ZodMiniNumber<number>;
955
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
956
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
957
+ weight: z.ZodMiniNumber<number>;
958
+ }, z.core.$strip>>>;
959
+ }, z.core.$strip>>;
960
+ multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
778
961
  nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
779
962
  nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
780
963
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -807,7 +990,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
807
990
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
808
991
  }, z.core.$strip>, z.ZodMiniObject<{
809
992
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
810
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
811
993
  init: z.ZodMiniOptional<z.ZodMiniObject<{
812
994
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
813
995
  threshold: z.ZodMiniNumber<number>;
@@ -877,7 +1059,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
877
1059
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
878
1060
  }, z.core.$strip>, z.ZodMiniObject<{
879
1061
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
880
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
881
1062
  init: z.ZodMiniOptional<z.ZodMiniObject<{
882
1063
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
883
1064
  threshold: z.ZodMiniNumber<number>;
@@ -897,6 +1078,7 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
897
1078
  to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
898
1079
  value: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
899
1080
  }, z.core.$strip>>>>;
1081
+ capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
900
1082
  chainId: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
901
1083
  data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
902
1084
  feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
@@ -906,12 +1088,14 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
906
1088
  v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
907
1089
  yParity: z.ZodMiniNumber<number>;
908
1090
  }, z.core.$strip>, z.ZodMiniNull]>>;
909
- feeToken: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>]>>;
1091
+ feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
910
1092
  from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
911
1093
  gas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
912
1094
  gasPrice: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
913
1095
  input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
914
- keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
1096
+ keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1097
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1098
+ isAdmin: z.ZodMiniBoolean<boolean>;
915
1099
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
916
1100
  chainId: z.ZodMiniBigInt<bigint>;
917
1101
  expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
@@ -967,7 +1151,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
967
1151
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
968
1152
  }, z.core.$strip>, z.ZodMiniObject<{
969
1153
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
970
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
971
1154
  init: z.ZodMiniOptional<z.ZodMiniObject<{
972
1155
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
973
1156
  threshold: z.ZodMiniNumber<number>;
@@ -980,12 +1163,92 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
980
1163
  type: z.ZodMiniLiteral<"multisig">;
981
1164
  }, z.core.$strip>]>;
982
1165
  type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
983
- }, z.core.$strip>>;
1166
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1167
+ }, z.core.$strip>, z.ZodMiniObject<{
1168
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1169
+ chainId: z.ZodMiniBigInt<bigint>;
1170
+ expiry: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1171
+ limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1172
+ limit: z.ZodMiniBigInt<bigint>;
1173
+ period: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1174
+ token: z.ZodMiniTemplateLiteral<`0x${string}`>;
1175
+ }, z.core.$strip>>>>;
1176
+ scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1177
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1178
+ recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
1179
+ selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
1180
+ }, z.core.$strip>>>>;
1181
+ signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1182
+ signature: z.ZodMiniObject<{
1183
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1184
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1185
+ yParity: z.ZodMiniNumber<number>;
1186
+ }, z.core.$strip>;
1187
+ type: z.ZodMiniLiteral<"secp256k1">;
1188
+ }, z.core.$strip>, z.ZodMiniObject<{
1189
+ prehash: z.ZodMiniBoolean<boolean>;
1190
+ publicKey: z.ZodMiniObject<{
1191
+ prefix: z.ZodMiniNumber<number>;
1192
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1193
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1194
+ }, z.core.$strip>;
1195
+ signature: z.ZodMiniObject<{
1196
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1197
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1198
+ }, z.core.$strip>;
1199
+ type: z.ZodMiniLiteral<"p256">;
1200
+ }, z.core.$strip>, z.ZodMiniObject<{
1201
+ metadata: z.ZodMiniObject<{
1202
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1203
+ clientDataJSON: z.ZodMiniString<string>;
1204
+ }, z.core.$strip>;
1205
+ publicKey: z.ZodMiniObject<{
1206
+ prefix: z.ZodMiniNumber<number>;
1207
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1208
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1209
+ }, z.core.$strip>;
1210
+ signature: z.ZodMiniObject<{
1211
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1212
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1213
+ }, z.core.$strip>;
1214
+ type: z.ZodMiniLiteral<"webAuthn">;
1215
+ }, z.core.$strip>, z.ZodMiniObject<{
1216
+ inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
1217
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1218
+ type: z.ZodMiniLiteral<"keychain">;
1219
+ userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
1220
+ version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1221
+ }, z.core.$strip>, z.ZodMiniObject<{
1222
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1223
+ init: z.ZodMiniOptional<z.ZodMiniObject<{
1224
+ salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1225
+ threshold: z.ZodMiniNumber<number>;
1226
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1227
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1228
+ weight: z.ZodMiniNumber<number>;
1229
+ }, z.core.$strip>>>;
1230
+ }, 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>>>;
1232
+ type: z.ZodMiniLiteral<"multisig">;
1233
+ }, z.core.$strip>]>;
1234
+ type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1235
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1236
+ }, z.core.$strip>]>>;
984
1237
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1238
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
985
1239
  keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
986
1240
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
987
1241
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
988
1242
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
1243
+ multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
1244
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1245
+ threshold: z.ZodMiniNumber<number>;
1246
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1247
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1248
+ weight: z.ZodMiniNumber<number>;
1249
+ }, z.core.$strip>>>;
1250
+ }, z.core.$strip>>;
1251
+ multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
989
1252
  nonce: z.ZodMiniOptional<z.ZodMiniBigInt<bigint>>;
990
1253
  nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniBigInt<bigint>, z.ZodMiniLiteral<"random">]>>;
991
1254
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -1032,7 +1295,6 @@ export declare const TransactionRequest: z.ZodMiniCodec<z.ZodMiniObject<{
1032
1295
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1033
1296
  }, z.core.$strip>, z.ZodMiniObject<{
1034
1297
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1035
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1036
1298
  init: z.ZodMiniOptional<z.ZodMiniObject<{
1037
1299
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1038
1300
  threshold: z.ZodMiniNumber<number>;
@@ -1090,7 +1352,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1090
1352
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1091
1353
  }, z.core.$strip>, z.ZodMiniObject<{
1092
1354
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1093
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1094
1355
  init: z.ZodMiniOptional<z.ZodMiniObject<{
1095
1356
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1096
1357
  threshold: z.ZodMiniNumber<number>;
@@ -1110,6 +1371,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1110
1371
  to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1111
1372
  value: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1112
1373
  }, z.core.$strip>>>>;
1374
+ capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
1113
1375
  chainId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1114
1376
  data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1115
1377
  feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
@@ -1125,22 +1387,24 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1125
1387
  gasPrice: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1126
1388
  input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1127
1389
  keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
1128
- allowedCalls: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1129
- selectorRules: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1130
- recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
1390
+ account: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1391
+ allowedCalls: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1392
+ selectorRules: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1393
+ recipients: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>>;
1131
1394
  selector: z.ZodMiniTemplateLiteral<`0x${string}`>;
1132
- }, z.core.$strip>>>>;
1395
+ }, z.core.$strip>>>>>;
1133
1396
  target: z.ZodMiniTemplateLiteral<`0x${string}`>;
1134
- }, z.core.$strip>>>>;
1397
+ }, z.core.$strip>>>>>;
1135
1398
  chainId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1136
1399
  expiry: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1400
+ isAdmin: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniBoolean<boolean>>>;
1137
1401
  keyId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1138
1402
  keyType: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1139
- limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1403
+ limits: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1140
1404
  limit: z.ZodMiniTemplateLiteral<`0x${string}`>;
1141
- period: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1405
+ period: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1142
1406
  token: z.ZodMiniTemplateLiteral<`0x${string}`>;
1143
- }, z.core.$strip>>>>;
1407
+ }, z.core.$strip>>>>>;
1144
1408
  signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1145
1409
  r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1146
1410
  s: z.ZodMiniTemplateLiteral<`0x${string}`>;
@@ -1169,7 +1433,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1169
1433
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1170
1434
  }, z.core.$strip>, z.ZodMiniObject<{
1171
1435
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1172
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1173
1436
  init: z.ZodMiniOptional<z.ZodMiniObject<{
1174
1437
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1175
1438
  threshold: z.ZodMiniNumber<number>;
@@ -1181,12 +1444,23 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1181
1444
  signatures: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1182
1445
  type: z.ZodMiniLiteral<"multisig">;
1183
1446
  }, z.core.$strip>]>;
1447
+ witness: z.ZodMiniOptional<z.ZodMiniNullable<z.ZodMiniTemplateLiteral<`0x${string}`>>>;
1184
1448
  }, z.core.$strip>>;
1185
1449
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1450
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1186
1451
  keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
1187
1452
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1188
1453
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1189
1454
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1455
+ multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
1456
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1457
+ threshold: z.ZodMiniNumber<number>;
1458
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1459
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1460
+ weight: z.ZodMiniNumber<number>;
1461
+ }, z.core.$strip>>>;
1462
+ }, z.core.$strip>>;
1463
+ multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1190
1464
  nonce: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1191
1465
  nonceKey: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1192
1466
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -1219,7 +1493,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1219
1493
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1220
1494
  }, z.core.$strip>, z.ZodMiniObject<{
1221
1495
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1222
- configId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1223
1496
  init: z.ZodMiniOptional<z.ZodMiniObject<{
1224
1497
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1225
1498
  threshold: z.ZodMiniNumber<number>;
@@ -1289,7 +1562,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1289
1562
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1290
1563
  }, z.core.$strip>, z.ZodMiniObject<{
1291
1564
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1292
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1293
1565
  init: z.ZodMiniOptional<z.ZodMiniObject<{
1294
1566
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1295
1567
  threshold: z.ZodMiniNumber<number>;
@@ -1309,6 +1581,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1309
1581
  to: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1310
1582
  value: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1311
1583
  }, z.core.$strip>>>>;
1584
+ capabilities: z.ZodMiniOptional<z.ZodMiniRecord<z.ZodMiniString<string>, z.ZodMiniUnknown>>;
1312
1585
  chainId: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
1313
1586
  data: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1314
1587
  feePayer: z.ZodMiniOptional<z.ZodMiniBoolean<boolean>>;
@@ -1318,13 +1591,83 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1318
1591
  v: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1319
1592
  yParity: z.ZodMiniNumber<number>;
1320
1593
  }, z.core.$strip>, z.ZodMiniNull]>>;
1321
- feeToken: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>]>>;
1594
+ feeToken: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1322
1595
  from: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1323
1596
  gas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1324
1597
  gasPrice: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1325
1598
  input: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1326
- keyAuthorization: z.ZodMiniOptional<z.ZodMiniObject<{
1599
+ keyAuthorization: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1600
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1601
+ isAdmin: z.ZodMiniBoolean<boolean>;
1602
+ chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
1603
+ expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
1604
+ limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1605
+ limit: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
1606
+ period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
1607
+ token: z.ZodMiniTemplateLiteral<`0x${string}`>;
1608
+ }, z.core.$strip>>>>;
1327
1609
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1610
+ scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1611
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1612
+ recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
1613
+ selector: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniString<string>]>>;
1614
+ }, z.core.$strip>>>>;
1615
+ signature: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
1616
+ signature: z.ZodMiniObject<{
1617
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1618
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1619
+ yParity: z.ZodMiniNumber<number>;
1620
+ }, z.core.$strip>;
1621
+ type: z.ZodMiniLiteral<"secp256k1">;
1622
+ }, z.core.$strip>, z.ZodMiniObject<{
1623
+ prehash: z.ZodMiniBoolean<boolean>;
1624
+ publicKey: z.ZodMiniObject<{
1625
+ prefix: z.ZodMiniNumber<number>;
1626
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1627
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1628
+ }, z.core.$strip>;
1629
+ signature: z.ZodMiniObject<{
1630
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1631
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1632
+ }, z.core.$strip>;
1633
+ type: z.ZodMiniLiteral<"p256">;
1634
+ }, z.core.$strip>, z.ZodMiniObject<{
1635
+ metadata: z.ZodMiniObject<{
1636
+ authenticatorData: z.ZodMiniTemplateLiteral<`0x${string}`>;
1637
+ clientDataJSON: z.ZodMiniString<string>;
1638
+ }, z.core.$strip>;
1639
+ publicKey: z.ZodMiniObject<{
1640
+ prefix: z.ZodMiniNumber<number>;
1641
+ x: z.ZodMiniTemplateLiteral<`0x${string}`>;
1642
+ y: z.ZodMiniTemplateLiteral<`0x${string}`>;
1643
+ }, z.core.$strip>;
1644
+ signature: z.ZodMiniObject<{
1645
+ r: z.ZodMiniTemplateLiteral<`0x${string}`>;
1646
+ s: z.ZodMiniTemplateLiteral<`0x${string}`>;
1647
+ }, z.core.$strip>;
1648
+ type: z.ZodMiniLiteral<"webAuthn">;
1649
+ }, z.core.$strip>, z.ZodMiniObject<{
1650
+ inner: z.ZodMiniLazy<z.ZodMiniType<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown, z.core.$ZodTypeInternals<import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>, unknown>>>;
1651
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1652
+ type: z.ZodMiniLiteral<"keychain">;
1653
+ userAddress: z.ZodMiniTemplateLiteral<`0x${string}`>;
1654
+ version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1655
+ }, z.core.$strip>, z.ZodMiniObject<{
1656
+ account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1657
+ init: z.ZodMiniOptional<z.ZodMiniObject<{
1658
+ salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1659
+ threshold: z.ZodMiniNumber<number>;
1660
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1661
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1662
+ weight: z.ZodMiniNumber<number>;
1663
+ }, z.core.$strip>>>;
1664
+ }, z.core.$strip>>;
1665
+ signatures: z.ZodMiniLazy<z.ZodMiniType<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown, z.core.$ZodTypeInternals<readonly import("../../tempo/SignatureEnvelope.js").SignatureEnvelope<number>[], unknown>>>;
1666
+ type: z.ZodMiniLiteral<"multisig">;
1667
+ }, z.core.$strip>]>;
1668
+ type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1669
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1670
+ }, z.core.$strip>, z.ZodMiniObject<{
1328
1671
  chainId: z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>;
1329
1672
  expiry: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
1330
1673
  limits: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
@@ -1332,6 +1675,7 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1332
1675
  period: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniNumberFormat]>>;
1333
1676
  token: z.ZodMiniTemplateLiteral<`0x${string}`>;
1334
1677
  }, z.core.$strip>>>>;
1678
+ address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1335
1679
  scopes: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1336
1680
  address: z.ZodMiniTemplateLiteral<`0x${string}`>;
1337
1681
  recipients: z.ZodMiniOptional<z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniTemplateLiteral<`0x${string}`>>>>;
@@ -1379,7 +1723,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1379
1723
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1380
1724
  }, z.core.$strip>, z.ZodMiniObject<{
1381
1725
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1382
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1383
1726
  init: z.ZodMiniOptional<z.ZodMiniObject<{
1384
1727
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1385
1728
  threshold: z.ZodMiniNumber<number>;
@@ -1392,12 +1735,23 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1392
1735
  type: z.ZodMiniLiteral<"multisig">;
1393
1736
  }, z.core.$strip>]>;
1394
1737
  type: z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>;
1395
- }, z.core.$strip>>;
1738
+ witness: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1739
+ }, z.core.$strip>]>>;
1396
1740
  keyData: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1741
+ keyId: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1397
1742
  keyType: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"secp256k1">, z.ZodMiniLiteral<"p256">, z.ZodMiniLiteral<"webAuthn">]>>;
1398
1743
  maxFeePerBlobGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1399
1744
  maxFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1400
1745
  maxPriorityFeePerGas: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1746
+ multisigInit: z.ZodMiniOptional<z.ZodMiniObject<{
1747
+ salt: z.ZodMiniTemplateLiteral<`0x${string}`>;
1748
+ threshold: z.ZodMiniNumber<number>;
1749
+ owners: z.ZodMiniReadonly<z.ZodMiniArray<z.ZodMiniObject<{
1750
+ owner: z.ZodMiniTemplateLiteral<`0x${string}`>;
1751
+ weight: z.ZodMiniNumber<number>;
1752
+ }, z.core.$strip>>>;
1753
+ }, z.core.$strip>>;
1754
+ multisigSignatureCount: z.ZodMiniOptional<z.ZodMiniNumber<number>>;
1401
1755
  nonce: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>>;
1402
1756
  nonceKey: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniUnion<readonly [z.ZodMiniTemplateLiteral<`0x${string}`>, z.ZodMiniBigInt<bigint>, z.ZodMiniNumberFormat]>, z.ZodMiniLiteral<"random">]>>;
1403
1757
  r: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
@@ -1444,7 +1798,6 @@ export declare const TransactionRequestToRpc: z.ZodMiniCodec<z.ZodMiniObject<{
1444
1798
  version: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniLiteral<"v1">, z.ZodMiniLiteral<"v2">]>>;
1445
1799
  }, z.core.$strip>, z.ZodMiniObject<{
1446
1800
  account: z.ZodMiniTemplateLiteral<`0x${string}`>;
1447
- genesisConfigId: z.ZodMiniTemplateLiteral<`0x${string}`>;
1448
1801
  init: z.ZodMiniOptional<z.ZodMiniObject<{
1449
1802
  salt: z.ZodMiniOptional<z.ZodMiniTemplateLiteral<`0x${string}`>>;
1450
1803
  threshold: z.ZodMiniNumber<number>;