zksync-sso 0.5.0-beta.3 → 1.0.0-beta.2

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 (595) hide show
  1. package/dist/_cjs/abi/SessionKeyValidator.js +729 -993
  2. package/dist/_cjs/abi/SessionKeyValidator.js.map +1 -1
  3. package/dist/_cjs/abi/{WebAuthValidator.js → WebAuthnValidator.js} +273 -306
  4. package/dist/_cjs/abi/WebAuthnValidator.js.map +1 -0
  5. package/dist/_cjs/abi/index.js +17 -15
  6. package/dist/_cjs/abi/index.js.map +1 -1
  7. package/dist/_cjs/actions/sendUserOperation.js +14 -0
  8. package/dist/_cjs/actions/sendUserOperation.js.map +1 -0
  9. package/dist/_cjs/client/actions/deploy.js +53 -0
  10. package/dist/_cjs/client/actions/deploy.js.map +1 -0
  11. package/dist/_cjs/client/actions/index.js +22 -0
  12. package/dist/_cjs/client/actions/index.js.map +1 -0
  13. package/dist/_cjs/client/actions/modules.js +42 -0
  14. package/dist/_cjs/client/actions/modules.js.map +1 -0
  15. package/dist/_cjs/client/actions/passkey.js +89 -0
  16. package/dist/_cjs/client/actions/passkey.js.map +1 -0
  17. package/dist/_cjs/client/actions/sessions.js +178 -0
  18. package/dist/_cjs/client/actions/sessions.js.map +1 -0
  19. package/dist/_cjs/client/actions/utils.js +8 -0
  20. package/dist/_cjs/client/actions/utils.js.map +1 -0
  21. package/dist/_cjs/client/common/smart-account-client-actions.js +173 -0
  22. package/dist/_cjs/client/common/smart-account-client-actions.js.map +1 -0
  23. package/dist/_cjs/client/ecdsa/account.js +75 -30
  24. package/dist/_cjs/client/ecdsa/account.js.map +1 -1
  25. package/dist/_cjs/client/ecdsa/client-actions.js +14 -0
  26. package/dist/_cjs/client/ecdsa/client-actions.js.map +1 -0
  27. package/dist/_cjs/client/ecdsa/client.js +29 -23
  28. package/dist/_cjs/client/ecdsa/client.js.map +1 -1
  29. package/dist/_cjs/client/ecdsa/index.js +5 -5
  30. package/dist/_cjs/client/ecdsa/index.js.map +1 -1
  31. package/dist/_cjs/client/index.js +7 -82
  32. package/dist/_cjs/client/index.js.map +1 -1
  33. package/dist/_cjs/client/passkey/account.js +88 -33
  34. package/dist/_cjs/client/passkey/account.js.map +1 -1
  35. package/dist/_cjs/client/passkey/client-actions.js +42 -0
  36. package/dist/_cjs/client/passkey/client-actions.js.map +1 -0
  37. package/dist/_cjs/client/passkey/client.js +32 -41
  38. package/dist/_cjs/client/passkey/client.js.map +1 -1
  39. package/dist/_cjs/client/passkey/index.js +14 -18
  40. package/dist/_cjs/client/passkey/index.js.map +1 -1
  41. package/dist/_cjs/client/passkey/webauthn.js +381 -0
  42. package/dist/_cjs/client/passkey/webauthn.js.map +1 -0
  43. package/dist/_cjs/client/session/account.js +91 -34
  44. package/dist/_cjs/client/session/account.js.map +1 -1
  45. package/dist/_cjs/client/session/client-actions.js +19 -0
  46. package/dist/_cjs/client/session/client-actions.js.map +1 -0
  47. package/dist/_cjs/client/session/client.js +29 -83
  48. package/dist/_cjs/client/session/client.js.map +1 -1
  49. package/dist/_cjs/client/session/formatSessionPreferences.js +263 -0
  50. package/dist/_cjs/client/session/formatSessionPreferences.js.map +1 -0
  51. package/dist/_cjs/client/session/index.js +5 -0
  52. package/dist/_cjs/client/session/index.js.map +1 -1
  53. package/dist/_cjs/client/session/monitor.js +138 -0
  54. package/dist/_cjs/client/session/monitor.js.map +1 -0
  55. package/dist/_cjs/client/session/types.js +83 -0
  56. package/dist/_cjs/client/session/types.js.map +1 -0
  57. package/dist/_cjs/client/session/utils.js +95 -0
  58. package/dist/_cjs/client/session/utils.js.map +1 -0
  59. package/dist/_cjs/client-auth-server/Signer.js +67 -43
  60. package/dist/_cjs/client-auth-server/Signer.js.map +1 -1
  61. package/dist/_cjs/client-auth-server/WalletProvider.js +6 -7
  62. package/dist/_cjs/client-auth-server/WalletProvider.js.map +1 -1
  63. package/dist/_cjs/client-auth-server/session/index.js +36 -21
  64. package/dist/_cjs/client-auth-server/session/index.js.map +1 -1
  65. package/dist/_cjs/client-auth-server/session/utils.js.map +1 -1
  66. package/dist/_cjs/client-auth-server/utils/helpers.js.map +1 -0
  67. package/dist/_cjs/{client/recovery → client-auth-server/utils}/index.js +2 -2
  68. package/dist/_cjs/client-auth-server/utils/index.js.map +1 -0
  69. package/dist/_cjs/client-auth-server/utils/storage.js.map +1 -0
  70. package/dist/_cjs/connector/index.js +92 -13
  71. package/dist/_cjs/connector/index.js.map +1 -1
  72. package/dist/_cjs/index.js +19 -3
  73. package/dist/_cjs/index.js.map +1 -1
  74. package/dist/_esm/abi/SessionKeyValidator.js +729 -993
  75. package/dist/_esm/abi/SessionKeyValidator.js.map +1 -1
  76. package/dist/_esm/abi/{WebAuthValidator.js → WebAuthnValidator.js} +272 -305
  77. package/dist/_esm/abi/WebAuthnValidator.js.map +1 -0
  78. package/dist/_esm/abi/index.js +3 -7
  79. package/dist/_esm/abi/index.js.map +1 -1
  80. package/dist/_esm/actions/sendUserOperation.js +26 -0
  81. package/dist/_esm/actions/sendUserOperation.js.map +1 -0
  82. package/dist/_esm/client/actions/deploy.js +114 -0
  83. package/dist/_esm/client/actions/deploy.js.map +1 -0
  84. package/dist/_esm/client/actions/index.js +7 -0
  85. package/dist/_esm/client/actions/index.js.map +1 -0
  86. package/dist/_esm/client/actions/modules.js +75 -0
  87. package/dist/_esm/client/actions/modules.js.map +1 -0
  88. package/dist/_esm/client/actions/passkey.js +200 -0
  89. package/dist/_esm/client/actions/passkey.js.map +1 -0
  90. package/dist/_esm/client/actions/sessions.js +279 -0
  91. package/dist/_esm/client/actions/sessions.js.map +1 -0
  92. package/dist/_esm/client/actions/utils.js +27 -0
  93. package/dist/_esm/client/actions/utils.js.map +1 -0
  94. package/dist/_esm/client/common/smart-account-client-actions.js +209 -0
  95. package/dist/_esm/client/common/smart-account-client-actions.js.map +1 -0
  96. package/dist/_esm/client/ecdsa/account.js +91 -29
  97. package/dist/_esm/client/ecdsa/account.js.map +1 -1
  98. package/dist/_esm/client/ecdsa/client-actions.js +16 -0
  99. package/dist/_esm/client/ecdsa/client-actions.js.map +1 -0
  100. package/dist/_esm/client/ecdsa/client.js +90 -23
  101. package/dist/_esm/client/ecdsa/client.js.map +1 -1
  102. package/dist/_esm/client/ecdsa/index.js +2 -5
  103. package/dist/_esm/client/ecdsa/index.js.map +1 -1
  104. package/dist/_esm/client/index.js +6 -77
  105. package/dist/_esm/client/index.js.map +1 -1
  106. package/dist/_esm/client/passkey/account.js +118 -32
  107. package/dist/_esm/client/passkey/account.js.map +1 -1
  108. package/dist/_esm/client/passkey/client-actions.js +51 -0
  109. package/dist/_esm/client/passkey/client-actions.js.map +1 -0
  110. package/dist/_esm/client/passkey/client.js +99 -42
  111. package/dist/_esm/client/passkey/client.js.map +1 -1
  112. package/dist/_esm/client/passkey/index.js +4 -4
  113. package/dist/_esm/client/passkey/index.js.map +1 -1
  114. package/dist/_esm/client/passkey/webauthn.js +493 -0
  115. package/dist/_esm/client/passkey/webauthn.js.map +1 -0
  116. package/dist/_esm/client/session/account.js +114 -33
  117. package/dist/_esm/client/session/account.js.map +1 -1
  118. package/dist/_esm/client/session/client-actions.js +20 -0
  119. package/dist/_esm/client/session/client-actions.js.map +1 -0
  120. package/dist/_esm/client/session/client.js +34 -84
  121. package/dist/_esm/client/session/client.js.map +1 -1
  122. package/dist/_esm/client/session/formatSessionPreferences.js +283 -0
  123. package/dist/_esm/client/session/formatSessionPreferences.js.map +1 -0
  124. package/dist/_esm/client/session/index.js +5 -0
  125. package/dist/_esm/client/session/index.js.map +1 -1
  126. package/dist/_esm/client/session/monitor.js +195 -0
  127. package/dist/_esm/client/session/monitor.js.map +1 -0
  128. package/dist/_esm/client/session/types.js +110 -0
  129. package/dist/_esm/client/session/types.js.map +1 -0
  130. package/dist/_esm/client/session/utils.js +115 -0
  131. package/dist/_esm/client/session/utils.js.map +1 -0
  132. package/dist/_esm/client-auth-server/Signer.js +84 -43
  133. package/dist/_esm/client-auth-server/Signer.js.map +1 -1
  134. package/dist/_esm/client-auth-server/WalletProvider.js +6 -5
  135. package/dist/_esm/client-auth-server/WalletProvider.js.map +1 -1
  136. package/dist/_esm/client-auth-server/session/index.js +2 -1
  137. package/dist/_esm/client-auth-server/session/index.js.map +1 -1
  138. package/dist/_esm/client-auth-server/session/utils.js.map +1 -1
  139. package/dist/_esm/client-auth-server/utils/helpers.js.map +1 -0
  140. package/dist/_esm/client-auth-server/utils/index.js +3 -0
  141. package/dist/_esm/client-auth-server/utils/index.js.map +1 -0
  142. package/dist/_esm/client-auth-server/utils/storage.js.map +1 -0
  143. package/dist/_esm/connector/index.js +105 -11
  144. package/dist/_esm/connector/index.js.map +1 -1
  145. package/dist/_esm/index.js +9 -1
  146. package/dist/_esm/index.js.map +1 -1
  147. package/dist/_types/abi/SessionKeyValidator.d.ts +612 -602
  148. package/dist/_types/abi/SessionKeyValidator.d.ts.map +1 -1
  149. package/dist/_types/abi/{WebAuthValidator.d.ts → WebAuthnValidator.d.ts} +234 -186
  150. package/dist/_types/abi/WebAuthnValidator.d.ts.map +1 -0
  151. package/dist/_types/abi/index.d.ts +3 -7
  152. package/dist/_types/abi/index.d.ts.map +1 -1
  153. package/dist/_types/actions/sendUserOperation.d.ts +49 -0
  154. package/dist/_types/actions/sendUserOperation.d.ts.map +1 -0
  155. package/dist/_types/client/actions/deploy.d.ts +108 -0
  156. package/dist/_types/client/actions/deploy.d.ts.map +1 -0
  157. package/dist/_types/client/actions/index.d.ts +10 -0
  158. package/dist/_types/client/actions/index.d.ts.map +1 -0
  159. package/dist/_types/client/actions/modules.d.ts +65 -0
  160. package/dist/_types/client/actions/modules.d.ts.map +1 -0
  161. package/dist/_types/client/actions/passkey.d.ts +192 -0
  162. package/dist/_types/client/actions/passkey.d.ts.map +1 -0
  163. package/dist/_types/client/actions/sessions.d.ts +225 -0
  164. package/dist/_types/client/actions/sessions.d.ts.map +1 -0
  165. package/dist/_types/client/actions/utils.d.ts +25 -0
  166. package/dist/_types/client/actions/utils.d.ts.map +1 -0
  167. package/dist/_types/client/common/smart-account-client-actions.d.ts +50 -0
  168. package/dist/_types/client/common/smart-account-client-actions.d.ts.map +1 -0
  169. package/dist/_types/client/ecdsa/account.d.ts +16 -11
  170. package/dist/_types/client/ecdsa/account.d.ts.map +1 -1
  171. package/dist/_types/client/ecdsa/client-actions.d.ts +25 -0
  172. package/dist/_types/client/ecdsa/client-actions.d.ts.map +1 -0
  173. package/dist/_types/client/ecdsa/client.d.ts +92 -22
  174. package/dist/_types/client/ecdsa/client.d.ts.map +1 -1
  175. package/dist/_types/client/ecdsa/index.d.ts +2 -5
  176. package/dist/_types/client/ecdsa/index.d.ts.map +1 -1
  177. package/dist/_types/client/index.d.ts +7 -31
  178. package/dist/_types/client/index.d.ts.map +1 -1
  179. package/dist/_types/client/passkey/account.d.ts +22 -15
  180. package/dist/_types/client/passkey/account.d.ts.map +1 -1
  181. package/dist/_types/client/passkey/client-actions.d.ts +54 -0
  182. package/dist/_types/client/passkey/client-actions.d.ts.map +1 -0
  183. package/dist/_types/client/passkey/client.d.ts +103 -32
  184. package/dist/_types/client/passkey/client.d.ts.map +1 -1
  185. package/dist/_types/client/passkey/index.d.ts +4 -4
  186. package/dist/_types/client/passkey/index.d.ts.map +1 -1
  187. package/dist/_types/client/passkey/webauthn.d.ts +123 -0
  188. package/dist/_types/client/passkey/webauthn.d.ts.map +1 -0
  189. package/dist/_types/client/session/account.d.ts +26 -13
  190. package/dist/_types/client/session/account.d.ts.map +1 -1
  191. package/dist/_types/client/session/client-actions.d.ts +26 -0
  192. package/dist/_types/client/session/client-actions.d.ts.map +1 -0
  193. package/dist/_types/client/session/client.d.ts +38 -36
  194. package/dist/_types/client/session/client.d.ts.map +1 -1
  195. package/dist/_types/client/session/formatSessionPreferences.d.ts +101 -0
  196. package/dist/_types/client/session/formatSessionPreferences.d.ts.map +1 -0
  197. package/dist/_types/client/session/index.d.ts +5 -0
  198. package/dist/_types/client/session/index.d.ts.map +1 -1
  199. package/dist/_types/client/session/monitor.d.ts +93 -0
  200. package/dist/_types/client/session/monitor.d.ts.map +1 -0
  201. package/dist/_types/client/session/types.d.ts +133 -0
  202. package/dist/_types/client/session/types.d.ts.map +1 -0
  203. package/dist/_types/client/session/utils.d.ts +47 -0
  204. package/dist/_types/client/session/utils.d.ts.map +1 -0
  205. package/dist/_types/client-auth-server/Signer.d.ts +241 -245
  206. package/dist/_types/client-auth-server/Signer.d.ts.map +1 -1
  207. package/dist/_types/client-auth-server/WalletProvider.d.ts +236 -241
  208. package/dist/_types/client-auth-server/WalletProvider.d.ts.map +1 -1
  209. package/dist/_types/client-auth-server/interface.d.ts +2 -2
  210. package/dist/_types/client-auth-server/interface.d.ts.map +1 -1
  211. package/dist/_types/client-auth-server/rpc.d.ts +4 -0
  212. package/dist/_types/client-auth-server/rpc.d.ts.map +1 -1
  213. package/dist/_types/client-auth-server/session/index.d.ts +5 -4
  214. package/dist/_types/client-auth-server/session/index.d.ts.map +1 -1
  215. package/dist/_types/client-auth-server/session/utils.d.ts +3 -3
  216. package/dist/_types/client-auth-server/session/utils.d.ts.map +1 -1
  217. package/dist/_types/client-auth-server/utils/helpers.d.ts.map +1 -0
  218. package/dist/_types/client-auth-server/utils/index.d.ts +3 -0
  219. package/dist/_types/client-auth-server/utils/index.d.ts.map +1 -0
  220. package/dist/_types/client-auth-server/utils/storage.d.ts.map +1 -0
  221. package/dist/_types/communicator/interface.d.ts +5 -0
  222. package/dist/_types/communicator/interface.d.ts.map +1 -1
  223. package/dist/_types/connector/index.d.ts +11 -9
  224. package/dist/_types/connector/index.d.ts.map +1 -1
  225. package/dist/_types/index.d.ts +5 -3
  226. package/dist/_types/index.d.ts.map +1 -1
  227. package/package.json +36 -55
  228. package/prepare-package.mjs +8 -0
  229. package/project.json +7 -7
  230. package/src/abi/SessionKeyValidator.ts +861 -1125
  231. package/src/abi/WebAuthnValidator.ts +324 -0
  232. package/src/abi/index.ts +3 -7
  233. package/src/actions/sendUserOperation.ts +98 -0
  234. package/src/client/actions/deploy.ts +225 -0
  235. package/src/client/actions/index.ts +39 -0
  236. package/src/client/actions/modules.ts +112 -0
  237. package/src/client/actions/passkey.ts +344 -0
  238. package/src/client/actions/sessions.ts +457 -0
  239. package/src/client/actions/utils.ts +30 -0
  240. package/src/client/common/smart-account-client-actions.ts +317 -0
  241. package/src/client/ecdsa/account.ts +146 -42
  242. package/src/client/ecdsa/client-actions.ts +54 -0
  243. package/src/client/ecdsa/client.ts +177 -75
  244. package/src/client/ecdsa/index.ts +9 -5
  245. package/src/client/index.ts +10 -122
  246. package/src/client/passkey/account.ts +180 -55
  247. package/src/client/passkey/client-actions.ts +117 -0
  248. package/src/client/passkey/client.ts +194 -108
  249. package/src/client/passkey/index.ts +21 -4
  250. package/src/client/passkey/webauthn.ts +638 -0
  251. package/src/client/session/account.ts +211 -46
  252. package/src/client/session/client-actions.ts +62 -0
  253. package/src/client/session/client.ts +121 -160
  254. package/src/client/session/formatSessionPreferences.ts +444 -0
  255. package/src/client/session/index.ts +5 -0
  256. package/src/client/session/monitor.ts +292 -0
  257. package/src/client/session/types.ts +205 -0
  258. package/src/client/session/utils.ts +160 -0
  259. package/src/client-auth-server/Signer.ts +91 -41
  260. package/src/client-auth-server/WalletProvider.ts +12 -11
  261. package/src/client-auth-server/interface.ts +2 -2
  262. package/src/client-auth-server/rpc.ts +4 -0
  263. package/src/client-auth-server/session/index.ts +6 -4
  264. package/src/client-auth-server/session/utils.ts +4 -4
  265. package/src/client-auth-server/utils/index.ts +2 -0
  266. package/src/communicator/interface.ts +6 -0
  267. package/src/connector/index.ts +137 -24
  268. package/src/index.ts +12 -3
  269. package/tsconfig.json +1 -1
  270. package/dist/_cjs/abi/GuardianRecoveryModule.js +0 -767
  271. package/dist/_cjs/abi/GuardianRecoveryModule.js.map +0 -1
  272. package/dist/_cjs/abi/GuardianRecoveryValidator.js +0 -813
  273. package/dist/_cjs/abi/GuardianRecoveryValidator.js.map +0 -1
  274. package/dist/_cjs/abi/OidcKeyRegistry.js +0 -492
  275. package/dist/_cjs/abi/OidcKeyRegistry.js.map +0 -1
  276. package/dist/_cjs/abi/OidcRecoveryValidator.js +0 -650
  277. package/dist/_cjs/abi/OidcRecoveryValidator.js.map +0 -1
  278. package/dist/_cjs/abi/SsoAccount.js +0 -1354
  279. package/dist/_cjs/abi/SsoAccount.js.map +0 -1
  280. package/dist/_cjs/abi/WebAuthValidator.js.map +0 -1
  281. package/dist/_cjs/client/ecdsa/actions/account.js +0 -83
  282. package/dist/_cjs/client/ecdsa/actions/account.js.map +0 -1
  283. package/dist/_cjs/client/ecdsa/decorators/ecdsa.js +0 -22
  284. package/dist/_cjs/client/ecdsa/decorators/ecdsa.js.map +0 -1
  285. package/dist/_cjs/client/ecdsa/decorators/wallet.js +0 -53
  286. package/dist/_cjs/client/ecdsa/decorators/wallet.js.map +0 -1
  287. package/dist/_cjs/client/ecdsa/types.js +0 -63
  288. package/dist/_cjs/client/ecdsa/types.js.map +0 -1
  289. package/dist/_cjs/client/oidc/account.js +0 -43
  290. package/dist/_cjs/client/oidc/account.js.map +0 -1
  291. package/dist/_cjs/client/oidc/actions/addNewPasskeyViaOidc.js +0 -28
  292. package/dist/_cjs/client/oidc/actions/addNewPasskeyViaOidc.js.map +0 -1
  293. package/dist/_cjs/client/oidc/actions/index.js +0 -12
  294. package/dist/_cjs/client/oidc/actions/index.js.map +0 -1
  295. package/dist/_cjs/client/oidc/client.js +0 -46
  296. package/dist/_cjs/client/oidc/client.js.map +0 -1
  297. package/dist/_cjs/client/oidc/decorators/actions.js +0 -3
  298. package/dist/_cjs/client/oidc/decorators/actions.js.map +0 -1
  299. package/dist/_cjs/client/oidc/index.js +0 -20
  300. package/dist/_cjs/client/oidc/index.js.map +0 -1
  301. package/dist/_cjs/client/oidc/serialize.js +0 -3
  302. package/dist/_cjs/client/oidc/serialize.js.map +0 -1
  303. package/dist/_cjs/client/passkey/actions/account.js +0 -169
  304. package/dist/_cjs/client/passkey/actions/account.js.map +0 -1
  305. package/dist/_cjs/client/passkey/actions/passkey.js +0 -151
  306. package/dist/_cjs/client/passkey/actions/passkey.js.map +0 -1
  307. package/dist/_cjs/client/passkey/decorators/passkey.js +0 -52
  308. package/dist/_cjs/client/passkey/decorators/passkey.js.map +0 -1
  309. package/dist/_cjs/client/passkey/decorators/wallet.js +0 -54
  310. package/dist/_cjs/client/passkey/decorators/wallet.js.map +0 -1
  311. package/dist/_cjs/client/recovery/account.js +0 -46
  312. package/dist/_cjs/client/recovery/account.js.map +0 -1
  313. package/dist/_cjs/client/recovery/actions/oidc.js +0 -69
  314. package/dist/_cjs/client/recovery/actions/oidc.js.map +0 -1
  315. package/dist/_cjs/client/recovery/actions/recovery.js +0 -114
  316. package/dist/_cjs/client/recovery/actions/recovery.js.map +0 -1
  317. package/dist/_cjs/client/recovery/actions/sendEip712Transaction.js +0 -45
  318. package/dist/_cjs/client/recovery/actions/sendEip712Transaction.js.map +0 -1
  319. package/dist/_cjs/client/recovery/client.js +0 -49
  320. package/dist/_cjs/client/recovery/client.js.map +0 -1
  321. package/dist/_cjs/client/recovery/decorators/publicActionsRewrite.js +0 -33
  322. package/dist/_cjs/client/recovery/decorators/publicActionsRewrite.js.map +0 -1
  323. package/dist/_cjs/client/recovery/decorators/recovery.js +0 -15
  324. package/dist/_cjs/client/recovery/decorators/recovery.js.map +0 -1
  325. package/dist/_cjs/client/recovery/decorators/wallet.js +0 -46
  326. package/dist/_cjs/client/recovery/decorators/wallet.js.map +0 -1
  327. package/dist/_cjs/client/recovery/index.js.map +0 -1
  328. package/dist/_cjs/client/session/actions/sendEip712Transaction.js +0 -45
  329. package/dist/_cjs/client/session/actions/sendEip712Transaction.js.map +0 -1
  330. package/dist/_cjs/client/session/actions/session.js +0 -116
  331. package/dist/_cjs/client/session/actions/session.js.map +0 -1
  332. package/dist/_cjs/client/session/decorators/publicActionsRewrite.js +0 -58
  333. package/dist/_cjs/client/session/decorators/publicActionsRewrite.js.map +0 -1
  334. package/dist/_cjs/client/session/decorators/wallet.js +0 -93
  335. package/dist/_cjs/client/session/decorators/wallet.js.map +0 -1
  336. package/dist/_cjs/client/utils/assertEip712Transaction.js +0 -44
  337. package/dist/_cjs/client/utils/assertEip712Transaction.js.map +0 -1
  338. package/dist/_cjs/client/utils/getEip712Domain.js +0 -57
  339. package/dist/_cjs/client/utils/getEip712Domain.js.map +0 -1
  340. package/dist/_cjs/client/utils/isEip712Transaction.js +0 -16
  341. package/dist/_cjs/client/utils/isEip712Transaction.js.map +0 -1
  342. package/dist/_cjs/paymaster/handlers/general.js +0 -13
  343. package/dist/_cjs/paymaster/handlers/general.js.map +0 -1
  344. package/dist/_cjs/paymaster/handlers/index.js +0 -19
  345. package/dist/_cjs/paymaster/handlers/index.js.map +0 -1
  346. package/dist/_cjs/paymaster/handlers/zyfi.js +0 -57
  347. package/dist/_cjs/paymaster/handlers/zyfi.js.map +0 -1
  348. package/dist/_cjs/paymaster/index.js +0 -54
  349. package/dist/_cjs/paymaster/index.js.map +0 -1
  350. package/dist/_cjs/utils/encoding.js +0 -56
  351. package/dist/_cjs/utils/encoding.js.map +0 -1
  352. package/dist/_cjs/utils/helpers.js.map +0 -1
  353. package/dist/_cjs/utils/index.js +0 -20
  354. package/dist/_cjs/utils/index.js.map +0 -1
  355. package/dist/_cjs/utils/passkey.js +0 -245
  356. package/dist/_cjs/utils/passkey.js.map +0 -1
  357. package/dist/_cjs/utils/session.js +0 -346
  358. package/dist/_cjs/utils/session.js.map +0 -1
  359. package/dist/_cjs/utils/storage.js.map +0 -1
  360. package/dist/_esm/abi/GuardianRecoveryModule.js +0 -764
  361. package/dist/_esm/abi/GuardianRecoveryModule.js.map +0 -1
  362. package/dist/_esm/abi/GuardianRecoveryValidator.js +0 -810
  363. package/dist/_esm/abi/GuardianRecoveryValidator.js.map +0 -1
  364. package/dist/_esm/abi/OidcKeyRegistry.js +0 -489
  365. package/dist/_esm/abi/OidcKeyRegistry.js.map +0 -1
  366. package/dist/_esm/abi/OidcRecoveryValidator.js +0 -647
  367. package/dist/_esm/abi/OidcRecoveryValidator.js.map +0 -1
  368. package/dist/_esm/abi/SsoAccount.js +0 -1351
  369. package/dist/_esm/abi/SsoAccount.js.map +0 -1
  370. package/dist/_esm/abi/WebAuthValidator.js.map +0 -1
  371. package/dist/_esm/client/ecdsa/actions/account.js +0 -82
  372. package/dist/_esm/client/ecdsa/actions/account.js.map +0 -1
  373. package/dist/_esm/client/ecdsa/decorators/ecdsa.js +0 -19
  374. package/dist/_esm/client/ecdsa/decorators/ecdsa.js.map +0 -1
  375. package/dist/_esm/client/ecdsa/decorators/wallet.js +0 -54
  376. package/dist/_esm/client/ecdsa/decorators/wallet.js.map +0 -1
  377. package/dist/_esm/client/ecdsa/types.js +0 -61
  378. package/dist/_esm/client/ecdsa/types.js.map +0 -1
  379. package/dist/_esm/client/oidc/account.js +0 -40
  380. package/dist/_esm/client/oidc/account.js.map +0 -1
  381. package/dist/_esm/client/oidc/actions/addNewPasskeyViaOidc.js +0 -26
  382. package/dist/_esm/client/oidc/actions/addNewPasskeyViaOidc.js.map +0 -1
  383. package/dist/_esm/client/oidc/actions/index.js +0 -9
  384. package/dist/_esm/client/oidc/actions/index.js.map +0 -1
  385. package/dist/_esm/client/oidc/client.js +0 -41
  386. package/dist/_esm/client/oidc/client.js.map +0 -1
  387. package/dist/_esm/client/oidc/decorators/actions.js +0 -2
  388. package/dist/_esm/client/oidc/decorators/actions.js.map +0 -1
  389. package/dist/_esm/client/oidc/index.js +0 -4
  390. package/dist/_esm/client/oidc/index.js.map +0 -1
  391. package/dist/_esm/client/oidc/serialize.js +0 -2
  392. package/dist/_esm/client/oidc/serialize.js.map +0 -1
  393. package/dist/_esm/client/passkey/actions/account.js +0 -165
  394. package/dist/_esm/client/passkey/actions/account.js.map +0 -1
  395. package/dist/_esm/client/passkey/actions/passkey.js +0 -148
  396. package/dist/_esm/client/passkey/actions/passkey.js.map +0 -1
  397. package/dist/_esm/client/passkey/decorators/passkey.js +0 -50
  398. package/dist/_esm/client/passkey/decorators/passkey.js.map +0 -1
  399. package/dist/_esm/client/passkey/decorators/wallet.js +0 -54
  400. package/dist/_esm/client/passkey/decorators/wallet.js.map +0 -1
  401. package/dist/_esm/client/recovery/account.js +0 -43
  402. package/dist/_esm/client/recovery/account.js.map +0 -1
  403. package/dist/_esm/client/recovery/actions/oidc.js +0 -69
  404. package/dist/_esm/client/recovery/actions/oidc.js.map +0 -1
  405. package/dist/_esm/client/recovery/actions/recovery.js +0 -111
  406. package/dist/_esm/client/recovery/actions/recovery.js.map +0 -1
  407. package/dist/_esm/client/recovery/actions/sendEip712Transaction.js +0 -93
  408. package/dist/_esm/client/recovery/actions/sendEip712Transaction.js.map +0 -1
  409. package/dist/_esm/client/recovery/client.js +0 -45
  410. package/dist/_esm/client/recovery/client.js.map +0 -1
  411. package/dist/_esm/client/recovery/decorators/publicActionsRewrite.js +0 -31
  412. package/dist/_esm/client/recovery/decorators/publicActionsRewrite.js.map +0 -1
  413. package/dist/_esm/client/recovery/decorators/recovery.js +0 -13
  414. package/dist/_esm/client/recovery/decorators/recovery.js.map +0 -1
  415. package/dist/_esm/client/recovery/decorators/wallet.js +0 -45
  416. package/dist/_esm/client/recovery/decorators/wallet.js.map +0 -1
  417. package/dist/_esm/client/recovery/index.js +0 -3
  418. package/dist/_esm/client/recovery/index.js.map +0 -1
  419. package/dist/_esm/client/session/actions/sendEip712Transaction.js +0 -93
  420. package/dist/_esm/client/session/actions/sendEip712Transaction.js.map +0 -1
  421. package/dist/_esm/client/session/actions/session.js +0 -119
  422. package/dist/_esm/client/session/actions/session.js.map +0 -1
  423. package/dist/_esm/client/session/decorators/publicActionsRewrite.js +0 -55
  424. package/dist/_esm/client/session/decorators/publicActionsRewrite.js.map +0 -1
  425. package/dist/_esm/client/session/decorators/wallet.js +0 -100
  426. package/dist/_esm/client/session/decorators/wallet.js.map +0 -1
  427. package/dist/_esm/client/utils/assertEip712Transaction.js +0 -39
  428. package/dist/_esm/client/utils/assertEip712Transaction.js.map +0 -1
  429. package/dist/_esm/client/utils/getEip712Domain.js +0 -57
  430. package/dist/_esm/client/utils/getEip712Domain.js.map +0 -1
  431. package/dist/_esm/client/utils/isEip712Transaction.js +0 -13
  432. package/dist/_esm/client/utils/isEip712Transaction.js.map +0 -1
  433. package/dist/_esm/paymaster/handlers/general.js +0 -11
  434. package/dist/_esm/paymaster/handlers/general.js.map +0 -1
  435. package/dist/_esm/paymaster/handlers/index.js +0 -3
  436. package/dist/_esm/paymaster/handlers/index.js.map +0 -1
  437. package/dist/_esm/paymaster/handlers/zyfi.js +0 -54
  438. package/dist/_esm/paymaster/handlers/zyfi.js.map +0 -1
  439. package/dist/_esm/paymaster/index.js +0 -37
  440. package/dist/_esm/paymaster/index.js.map +0 -1
  441. package/dist/_esm/utils/encoding.js +0 -49
  442. package/dist/_esm/utils/encoding.js.map +0 -1
  443. package/dist/_esm/utils/helpers.js.map +0 -1
  444. package/dist/_esm/utils/index.js +0 -4
  445. package/dist/_esm/utils/index.js.map +0 -1
  446. package/dist/_esm/utils/passkey.js +0 -296
  447. package/dist/_esm/utils/passkey.js.map +0 -1
  448. package/dist/_esm/utils/session.js +0 -358
  449. package/dist/_esm/utils/session.js.map +0 -1
  450. package/dist/_esm/utils/storage.js.map +0 -1
  451. package/dist/_types/abi/GuardianRecoveryModule.d.ts +0 -590
  452. package/dist/_types/abi/GuardianRecoveryModule.d.ts.map +0 -1
  453. package/dist/_types/abi/GuardianRecoveryValidator.d.ts +0 -626
  454. package/dist/_types/abi/GuardianRecoveryValidator.d.ts.map +0 -1
  455. package/dist/_types/abi/OidcKeyRegistry.d.ts +0 -375
  456. package/dist/_types/abi/OidcKeyRegistry.d.ts.map +0 -1
  457. package/dist/_types/abi/OidcRecoveryValidator.d.ts +0 -501
  458. package/dist/_types/abi/OidcRecoveryValidator.d.ts.map +0 -1
  459. package/dist/_types/abi/SsoAccount.d.ts +0 -1044
  460. package/dist/_types/abi/SsoAccount.d.ts.map +0 -1
  461. package/dist/_types/abi/WebAuthValidator.d.ts.map +0 -1
  462. package/dist/_types/client/ecdsa/actions/account.d.ts +0 -38
  463. package/dist/_types/client/ecdsa/actions/account.d.ts.map +0 -1
  464. package/dist/_types/client/ecdsa/decorators/ecdsa.d.ts +0 -16
  465. package/dist/_types/client/ecdsa/decorators/ecdsa.d.ts.map +0 -1
  466. package/dist/_types/client/ecdsa/decorators/wallet.d.ts +0 -5
  467. package/dist/_types/client/ecdsa/decorators/wallet.d.ts.map +0 -1
  468. package/dist/_types/client/ecdsa/types.d.ts +0 -10
  469. package/dist/_types/client/ecdsa/types.d.ts.map +0 -1
  470. package/dist/_types/client/oidc/account.d.ts +0 -13
  471. package/dist/_types/client/oidc/account.d.ts.map +0 -1
  472. package/dist/_types/client/oidc/actions/addNewPasskeyViaOidc.d.ts +0 -12
  473. package/dist/_types/client/oidc/actions/addNewPasskeyViaOidc.d.ts.map +0 -1
  474. package/dist/_types/client/oidc/actions/index.d.ts +0 -5
  475. package/dist/_types/client/oidc/actions/index.d.ts.map +0 -1
  476. package/dist/_types/client/oidc/client.d.ts +0 -24
  477. package/dist/_types/client/oidc/client.d.ts.map +0 -1
  478. package/dist/_types/client/oidc/decorators/actions.d.ts +0 -5
  479. package/dist/_types/client/oidc/decorators/actions.d.ts.map +0 -1
  480. package/dist/_types/client/oidc/index.d.ts +0 -4
  481. package/dist/_types/client/oidc/index.d.ts.map +0 -1
  482. package/dist/_types/client/oidc/serialize.d.ts +0 -10
  483. package/dist/_types/client/oidc/serialize.d.ts.map +0 -1
  484. package/dist/_types/client/passkey/actions/account.d.ts +0 -48
  485. package/dist/_types/client/passkey/actions/account.d.ts.map +0 -1
  486. package/dist/_types/client/passkey/actions/passkey.d.ts +0 -55
  487. package/dist/_types/client/passkey/actions/passkey.d.ts.map +0 -1
  488. package/dist/_types/client/passkey/decorators/passkey.d.ts +0 -16
  489. package/dist/_types/client/passkey/decorators/passkey.d.ts.map +0 -1
  490. package/dist/_types/client/passkey/decorators/wallet.d.ts +0 -5
  491. package/dist/_types/client/passkey/decorators/wallet.d.ts.map +0 -1
  492. package/dist/_types/client/recovery/account.d.ts +0 -14
  493. package/dist/_types/client/recovery/account.d.ts.map +0 -1
  494. package/dist/_types/client/recovery/actions/oidc.d.ts +0 -24
  495. package/dist/_types/client/recovery/actions/oidc.d.ts.map +0 -1
  496. package/dist/_types/client/recovery/actions/recovery.d.ts +0 -50
  497. package/dist/_types/client/recovery/actions/recovery.d.ts.map +0 -1
  498. package/dist/_types/client/recovery/actions/sendEip712Transaction.d.ts +0 -60
  499. package/dist/_types/client/recovery/actions/sendEip712Transaction.d.ts.map +0 -1
  500. package/dist/_types/client/recovery/client.d.ts +0 -23
  501. package/dist/_types/client/recovery/client.d.ts.map +0 -1
  502. package/dist/_types/client/recovery/decorators/publicActionsRewrite.d.ts +0 -4
  503. package/dist/_types/client/recovery/decorators/publicActionsRewrite.d.ts.map +0 -1
  504. package/dist/_types/client/recovery/decorators/recovery.d.ts +0 -8
  505. package/dist/_types/client/recovery/decorators/recovery.d.ts.map +0 -1
  506. package/dist/_types/client/recovery/decorators/wallet.d.ts +0 -5
  507. package/dist/_types/client/recovery/decorators/wallet.d.ts.map +0 -1
  508. package/dist/_types/client/recovery/index.d.ts +0 -3
  509. package/dist/_types/client/recovery/index.d.ts.map +0 -1
  510. package/dist/_types/client/session/actions/sendEip712Transaction.d.ts +0 -60
  511. package/dist/_types/client/session/actions/sendEip712Transaction.d.ts.map +0 -1
  512. package/dist/_types/client/session/actions/session.d.ts +0 -61
  513. package/dist/_types/client/session/actions/session.d.ts.map +0 -1
  514. package/dist/_types/client/session/decorators/publicActionsRewrite.d.ts +0 -4
  515. package/dist/_types/client/session/decorators/publicActionsRewrite.d.ts.map +0 -1
  516. package/dist/_types/client/session/decorators/wallet.d.ts +0 -5
  517. package/dist/_types/client/session/decorators/wallet.d.ts.map +0 -1
  518. package/dist/_types/client/utils/assertEip712Transaction.d.ts +0 -11
  519. package/dist/_types/client/utils/assertEip712Transaction.d.ts.map +0 -1
  520. package/dist/_types/client/utils/getEip712Domain.d.ts +0 -3
  521. package/dist/_types/client/utils/getEip712Domain.d.ts.map +0 -1
  522. package/dist/_types/client/utils/isEip712Transaction.d.ts +0 -4
  523. package/dist/_types/client/utils/isEip712Transaction.d.ts.map +0 -1
  524. package/dist/_types/paymaster/handlers/general.d.ts +0 -4
  525. package/dist/_types/paymaster/handlers/general.d.ts.map +0 -1
  526. package/dist/_types/paymaster/handlers/index.d.ts +0 -3
  527. package/dist/_types/paymaster/handlers/index.d.ts.map +0 -1
  528. package/dist/_types/paymaster/handlers/zyfi.d.ts +0 -18
  529. package/dist/_types/paymaster/handlers/zyfi.d.ts.map +0 -1
  530. package/dist/_types/paymaster/index.d.ts +0 -29
  531. package/dist/_types/paymaster/index.d.ts.map +0 -1
  532. package/dist/_types/utils/encoding.d.ts +0 -19
  533. package/dist/_types/utils/encoding.d.ts.map +0 -1
  534. package/dist/_types/utils/helpers.d.ts.map +0 -1
  535. package/dist/_types/utils/index.d.ts +0 -4
  536. package/dist/_types/utils/index.d.ts.map +0 -1
  537. package/dist/_types/utils/passkey.d.ts +0 -47
  538. package/dist/_types/utils/passkey.d.ts.map +0 -1
  539. package/dist/_types/utils/session.d.ts +0 -179
  540. package/dist/_types/utils/session.d.ts.map +0 -1
  541. package/dist/_types/utils/storage.d.ts.map +0 -1
  542. package/src/abi/GuardianRecoveryModule.ts +0 -763
  543. package/src/abi/GuardianRecoveryValidator.ts +0 -809
  544. package/src/abi/OidcKeyRegistry.ts +0 -488
  545. package/src/abi/OidcRecoveryValidator.ts +0 -646
  546. package/src/abi/SsoAccount.ts +0 -1350
  547. package/src/abi/WebAuthValidator.ts +0 -357
  548. package/src/client/ecdsa/actions/account.ts +0 -146
  549. package/src/client/ecdsa/decorators/ecdsa.ts +0 -32
  550. package/src/client/ecdsa/decorators/wallet.ts +0 -80
  551. package/src/client/ecdsa/types.ts +0 -108
  552. package/src/client/oidc/account.ts +0 -65
  553. package/src/client/oidc/actions/addNewPasskeyViaOidc.ts +0 -54
  554. package/src/client/oidc/actions/index.ts +0 -16
  555. package/src/client/oidc/client.ts +0 -122
  556. package/src/client/oidc/decorators/actions.ts +0 -5
  557. package/src/client/oidc/index.ts +0 -3
  558. package/src/client/oidc/serialize.ts +0 -10
  559. package/src/client/passkey/actions/account.ts +0 -241
  560. package/src/client/passkey/actions/passkey.ts +0 -208
  561. package/src/client/passkey/decorators/passkey.ts +0 -77
  562. package/src/client/passkey/decorators/wallet.ts +0 -79
  563. package/src/client/recovery/account.ts +0 -61
  564. package/src/client/recovery/actions/oidc.ts +0 -119
  565. package/src/client/recovery/actions/recovery.ts +0 -176
  566. package/src/client/recovery/actions/sendEip712Transaction.ts +0 -149
  567. package/src/client/recovery/client.ts +0 -102
  568. package/src/client/recovery/decorators/publicActionsRewrite.ts +0 -38
  569. package/src/client/recovery/decorators/recovery.ts +0 -22
  570. package/src/client/recovery/decorators/wallet.ts +0 -59
  571. package/src/client/recovery/index.ts +0 -2
  572. package/src/client/session/actions/sendEip712Transaction.ts +0 -149
  573. package/src/client/session/actions/session.ts +0 -204
  574. package/src/client/session/decorators/publicActionsRewrite.ts +0 -63
  575. package/src/client/session/decorators/wallet.ts +0 -143
  576. package/src/client/utils/assertEip712Transaction.ts +0 -49
  577. package/src/client/utils/getEip712Domain.ts +0 -84
  578. package/src/client/utils/isEip712Transaction.ts +0 -18
  579. package/src/paymaster/handlers/general.ts +0 -14
  580. package/src/paymaster/handlers/index.ts +0 -2
  581. package/src/paymaster/handlers/zyfi.ts +0 -108
  582. package/src/paymaster/index.ts +0 -76
  583. package/src/types/index.d.ts +0 -9
  584. package/src/utils/encoding.ts +0 -70
  585. package/src/utils/index.ts +0 -3
  586. package/src/utils/passkey.ts +0 -347
  587. package/src/utils/session.ts +0 -524
  588. /package/dist/_cjs/{utils → client-auth-server/utils}/helpers.js +0 -0
  589. /package/dist/_cjs/{utils → client-auth-server/utils}/storage.js +0 -0
  590. /package/dist/_esm/{utils → client-auth-server/utils}/helpers.js +0 -0
  591. /package/dist/_esm/{utils → client-auth-server/utils}/storage.js +0 -0
  592. /package/dist/_types/{utils → client-auth-server/utils}/helpers.d.ts +0 -0
  593. /package/dist/_types/{utils → client-auth-server/utils}/storage.d.ts +0 -0
  594. /package/src/{utils → client-auth-server/utils}/helpers.ts +0 -0
  595. /package/src/{utils → client-auth-server/utils}/storage.ts +0 -0
@@ -1,18 +1,18 @@
1
1
  import { type Address, type Chain, type SendTransactionParameters, type Transport, type WalletClient } from "viem";
2
- import { type ZksyncSsoSessionClient } from "../client/index.js";
2
+ import { type BundlerClient } from "viem/account-abstraction";
3
+ import type { PaymasterConfig } from "../actions/sendUserOperation.js";
4
+ import { type SessionClient } from "../client/session/client.js";
3
5
  import type { Communicator } from "../communicator/index.js";
4
- import { type CustomPaymasterHandler } from "../paymaster/index.js";
5
- import type { SessionStateEvent } from "../utils/session.js";
6
- import { type StorageLike } from "../utils/storage.js";
7
6
  import type { AppMetadata, RequestArguments } from "./interface.js";
8
7
  import type { ExtractReturnType, Method } from "./rpc.js";
9
8
  import type { SessionPreferences } from "./session/index.js";
9
+ import { type StorageLike } from "./utils/index.js";
10
10
  interface SignerInterface {
11
11
  accounts: Address[];
12
12
  chain: Chain;
13
13
  getClient(parameters?: {
14
14
  chainId?: number;
15
- }): ZksyncSsoSessionClient | WalletClient;
15
+ }): SessionClient | WalletClient;
16
16
  handshake(): Promise<Address[]>;
17
17
  request<TMethod extends Method>(request: RequestArguments<TMethod>): Promise<ExtractReturnType<TMethod>>;
18
18
  disconnect: () => Promise<void>;
@@ -27,15 +27,11 @@ type SignerConstructorParams = {
27
27
  updateListener: UpdateListener;
28
28
  chains: readonly Chain[];
29
29
  transports?: Record<number, Transport>;
30
+ bundlerClients?: Record<number, BundlerClient>;
30
31
  session?: () => SessionPreferences | Promise<SessionPreferences>;
31
- paymasterHandler?: CustomPaymasterHandler;
32
- onSessionStateChange?: (event: {
33
- address: Address;
34
- chainId: number;
35
- state: SessionStateEvent;
36
- }) => void;
37
32
  skipPreTransactionStateValidation?: boolean;
38
33
  storage?: StorageLike;
34
+ paymaster?: PaymasterConfig;
39
35
  };
40
36
  export declare class Signer implements SignerInterface {
41
37
  private readonly getMetadata;
@@ -43,14 +39,13 @@ export declare class Signer implements SignerInterface {
43
39
  private readonly updateListener;
44
40
  private readonly chains;
45
41
  private readonly transports;
42
+ private readonly bundlerClients;
46
43
  private readonly sessionParameters?;
47
- private readonly paymasterHandler?;
48
- private readonly onSessionStateChange?;
49
- private readonly skipPreTransactionStateValidation?;
44
+ private readonly paymaster?;
50
45
  private _account;
51
46
  private _chainsInfo;
52
47
  private client;
53
- constructor({ metadata, communicator, updateListener, session, chains, transports, paymasterHandler, onSessionStateChange, skipPreTransactionStateValidation, storage }: SignerConstructorParams);
48
+ constructor({ metadata, communicator, updateListener, session, chains, transports, bundlerClients, /* onSessionStateChange, skipPreTransactionStateValidation, */ storage, paymaster }: SignerConstructorParams);
54
49
  get walletClient(): WalletClient | undefined;
55
50
  getClient(parameters?: {
56
51
  chainId?: number;
@@ -123,7 +118,7 @@ export declare class Signer implements SignerInterface {
123
118
  } ? "eip2930" : never) | (request extends ({
124
119
  accessList?: import("viem").AccessList | undefined;
125
120
  authorizationList?: undefined;
126
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
121
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
127
122
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
128
123
  maxFeePerBlobGas?: bigint | undefined;
129
124
  maxFeePerGas?: bigint | undefined;
@@ -132,7 +127,7 @@ export declare class Signer implements SignerInterface {
132
127
  } | {
133
128
  accessList?: import("viem").AccessList | undefined;
134
129
  authorizationList?: undefined;
135
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
130
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
136
131
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
137
132
  maxFeePerBlobGas?: bigint | undefined;
138
133
  maxFeePerGas?: bigint | undefined;
@@ -204,7 +199,7 @@ export declare class Signer implements SignerInterface {
204
199
  } ? "eip2930" : never) | (request extends ({
205
200
  accessList?: import("viem").AccessList | undefined;
206
201
  authorizationList?: undefined;
207
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
202
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
208
203
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
209
204
  maxFeePerBlobGas?: bigint | undefined;
210
205
  maxFeePerGas?: bigint | undefined;
@@ -213,7 +208,7 @@ export declare class Signer implements SignerInterface {
213
208
  } | {
214
209
  accessList?: import("viem").AccessList | undefined;
215
210
  authorizationList?: undefined;
216
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
211
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
217
212
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
218
213
  maxFeePerBlobGas?: bigint | undefined;
219
214
  maxFeePerGas?: bigint | undefined;
@@ -285,7 +280,7 @@ export declare class Signer implements SignerInterface {
285
280
  } ? "eip2930" : never) | (request extends ({
286
281
  accessList?: import("viem").AccessList | undefined;
287
282
  authorizationList?: undefined;
288
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
283
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
289
284
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
290
285
  maxFeePerBlobGas?: bigint | undefined;
291
286
  maxFeePerGas?: bigint | undefined;
@@ -294,7 +289,7 @@ export declare class Signer implements SignerInterface {
294
289
  } | {
295
290
  accessList?: import("viem").AccessList | undefined;
296
291
  authorizationList?: undefined;
297
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
292
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
298
293
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
299
294
  maxFeePerBlobGas?: bigint | undefined;
300
295
  maxFeePerGas?: bigint | undefined;
@@ -366,7 +361,7 @@ export declare class Signer implements SignerInterface {
366
361
  } ? "eip2930" : never) | (request extends ({
367
362
  accessList?: import("viem").AccessList | undefined;
368
363
  authorizationList?: undefined;
369
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
364
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
370
365
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
371
366
  maxFeePerBlobGas?: bigint | undefined;
372
367
  maxFeePerGas?: bigint | undefined;
@@ -375,7 +370,7 @@ export declare class Signer implements SignerInterface {
375
370
  } | {
376
371
  accessList?: import("viem").AccessList | undefined;
377
372
  authorizationList?: undefined;
378
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
373
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
379
374
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
380
375
  maxFeePerBlobGas?: bigint | undefined;
381
376
  maxFeePerGas?: bigint | undefined;
@@ -447,7 +442,7 @@ export declare class Signer implements SignerInterface {
447
442
  } ? "eip2930" : never) | (request extends ({
448
443
  accessList?: import("viem").AccessList | undefined;
449
444
  authorizationList?: undefined;
450
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
445
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
451
446
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
452
447
  maxFeePerBlobGas?: bigint | undefined;
453
448
  maxFeePerGas?: bigint | undefined;
@@ -456,7 +451,7 @@ export declare class Signer implements SignerInterface {
456
451
  } | {
457
452
  accessList?: import("viem").AccessList | undefined;
458
453
  authorizationList?: undefined;
459
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
454
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
460
455
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
461
456
  maxFeePerBlobGas?: bigint | undefined;
462
457
  maxFeePerGas?: bigint | undefined;
@@ -528,7 +523,7 @@ export declare class Signer implements SignerInterface {
528
523
  } ? "eip2930" : never) | (request extends ({
529
524
  accessList?: import("viem").AccessList | undefined;
530
525
  authorizationList?: undefined;
531
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
526
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
532
527
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
533
528
  maxFeePerBlobGas?: bigint | undefined;
534
529
  maxFeePerGas?: bigint | undefined;
@@ -537,7 +532,7 @@ export declare class Signer implements SignerInterface {
537
532
  } | {
538
533
  accessList?: import("viem").AccessList | undefined;
539
534
  authorizationList?: undefined;
540
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
535
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
541
536
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
542
537
  maxFeePerBlobGas?: bigint | undefined;
543
538
  maxFeePerGas?: bigint | undefined;
@@ -609,7 +604,7 @@ export declare class Signer implements SignerInterface {
609
604
  } ? "eip2930" : never) | (request extends ({
610
605
  accessList?: import("viem").AccessList | undefined;
611
606
  authorizationList?: undefined;
612
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
607
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
613
608
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
614
609
  maxFeePerBlobGas?: bigint | undefined;
615
610
  maxFeePerGas?: bigint | undefined;
@@ -618,7 +613,7 @@ export declare class Signer implements SignerInterface {
618
613
  } | {
619
614
  accessList?: import("viem").AccessList | undefined;
620
615
  authorizationList?: undefined;
621
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
616
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
622
617
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
623
618
  maxFeePerBlobGas?: bigint | undefined;
624
619
  maxFeePerGas?: bigint | undefined;
@@ -690,7 +685,7 @@ export declare class Signer implements SignerInterface {
690
685
  } ? "eip2930" : never) | (request extends ({
691
686
  accessList?: import("viem").AccessList | undefined;
692
687
  authorizationList?: undefined;
693
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
688
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
694
689
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
695
690
  maxFeePerBlobGas?: bigint | undefined;
696
691
  maxFeePerGas?: bigint | undefined;
@@ -699,7 +694,7 @@ export declare class Signer implements SignerInterface {
699
694
  } | {
700
695
  accessList?: import("viem").AccessList | undefined;
701
696
  authorizationList?: undefined;
702
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
697
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
703
698
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
704
699
  maxFeePerBlobGas?: bigint | undefined;
705
700
  maxFeePerGas?: bigint | undefined;
@@ -771,7 +766,7 @@ export declare class Signer implements SignerInterface {
771
766
  } ? "eip2930" : never) | (request extends ({
772
767
  accessList?: import("viem").AccessList | undefined;
773
768
  authorizationList?: undefined;
774
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
769
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
775
770
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
776
771
  maxFeePerBlobGas?: bigint | undefined;
777
772
  maxFeePerGas?: bigint | undefined;
@@ -780,7 +775,7 @@ export declare class Signer implements SignerInterface {
780
775
  } | {
781
776
  accessList?: import("viem").AccessList | undefined;
782
777
  authorizationList?: undefined;
783
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
778
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
784
779
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
785
780
  maxFeePerBlobGas?: bigint | undefined;
786
781
  maxFeePerGas?: bigint | undefined;
@@ -852,7 +847,7 @@ export declare class Signer implements SignerInterface {
852
847
  } ? "eip2930" : never) | (request extends ({
853
848
  accessList?: import("viem").AccessList | undefined;
854
849
  authorizationList?: undefined;
855
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
850
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
856
851
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
857
852
  maxFeePerBlobGas?: bigint | undefined;
858
853
  maxFeePerGas?: bigint | undefined;
@@ -861,7 +856,7 @@ export declare class Signer implements SignerInterface {
861
856
  } | {
862
857
  accessList?: import("viem").AccessList | undefined;
863
858
  authorizationList?: undefined;
864
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
859
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
865
860
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
866
861
  maxFeePerBlobGas?: bigint | undefined;
867
862
  maxFeePerGas?: bigint | undefined;
@@ -933,7 +928,7 @@ export declare class Signer implements SignerInterface {
933
928
  } ? "eip2930" : never) | (request extends ({
934
929
  accessList?: import("viem").AccessList | undefined;
935
930
  authorizationList?: undefined;
936
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
931
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
937
932
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
938
933
  maxFeePerBlobGas?: bigint | undefined;
939
934
  maxFeePerGas?: bigint | undefined;
@@ -942,7 +937,7 @@ export declare class Signer implements SignerInterface {
942
937
  } | {
943
938
  accessList?: import("viem").AccessList | undefined;
944
939
  authorizationList?: undefined;
945
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
940
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
946
941
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
947
942
  maxFeePerBlobGas?: bigint | undefined;
948
943
  maxFeePerGas?: bigint | undefined;
@@ -1014,7 +1009,7 @@ export declare class Signer implements SignerInterface {
1014
1009
  } ? "eip2930" : never) | (request extends ({
1015
1010
  accessList?: import("viem").AccessList | undefined;
1016
1011
  authorizationList?: undefined;
1017
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1012
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1018
1013
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1019
1014
  maxFeePerBlobGas?: bigint | undefined;
1020
1015
  maxFeePerGas?: bigint | undefined;
@@ -1023,7 +1018,7 @@ export declare class Signer implements SignerInterface {
1023
1018
  } | {
1024
1019
  accessList?: import("viem").AccessList | undefined;
1025
1020
  authorizationList?: undefined;
1026
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1021
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1027
1022
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1028
1023
  maxFeePerBlobGas?: bigint | undefined;
1029
1024
  maxFeePerGas?: bigint | undefined;
@@ -1095,7 +1090,7 @@ export declare class Signer implements SignerInterface {
1095
1090
  } ? "eip2930" : never) | (request extends ({
1096
1091
  accessList?: import("viem").AccessList | undefined;
1097
1092
  authorizationList?: undefined;
1098
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1093
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1099
1094
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1100
1095
  maxFeePerBlobGas?: bigint | undefined;
1101
1096
  maxFeePerGas?: bigint | undefined;
@@ -1104,7 +1099,7 @@ export declare class Signer implements SignerInterface {
1104
1099
  } | {
1105
1100
  accessList?: import("viem").AccessList | undefined;
1106
1101
  authorizationList?: undefined;
1107
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1102
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1108
1103
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1109
1104
  maxFeePerBlobGas?: bigint | undefined;
1110
1105
  maxFeePerGas?: bigint | undefined;
@@ -1176,7 +1171,7 @@ export declare class Signer implements SignerInterface {
1176
1171
  } ? "eip2930" : never) | (request extends ({
1177
1172
  accessList?: import("viem").AccessList | undefined;
1178
1173
  authorizationList?: undefined;
1179
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1174
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1180
1175
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1181
1176
  maxFeePerBlobGas?: bigint | undefined;
1182
1177
  maxFeePerGas?: bigint | undefined;
@@ -1185,7 +1180,7 @@ export declare class Signer implements SignerInterface {
1185
1180
  } | {
1186
1181
  accessList?: import("viem").AccessList | undefined;
1187
1182
  authorizationList?: undefined;
1188
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1183
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1189
1184
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1190
1185
  maxFeePerBlobGas?: bigint | undefined;
1191
1186
  maxFeePerGas?: bigint | undefined;
@@ -1257,7 +1252,7 @@ export declare class Signer implements SignerInterface {
1257
1252
  } ? "eip2930" : never) | (request extends ({
1258
1253
  accessList?: import("viem").AccessList | undefined;
1259
1254
  authorizationList?: undefined;
1260
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1255
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1261
1256
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1262
1257
  maxFeePerBlobGas?: bigint | undefined;
1263
1258
  maxFeePerGas?: bigint | undefined;
@@ -1266,7 +1261,7 @@ export declare class Signer implements SignerInterface {
1266
1261
  } | {
1267
1262
  accessList?: import("viem").AccessList | undefined;
1268
1263
  authorizationList?: undefined;
1269
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1264
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1270
1265
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1271
1266
  maxFeePerBlobGas?: bigint | undefined;
1272
1267
  maxFeePerGas?: bigint | undefined;
@@ -1338,7 +1333,7 @@ export declare class Signer implements SignerInterface {
1338
1333
  } ? "eip2930" : never) | (request extends ({
1339
1334
  accessList?: import("viem").AccessList | undefined;
1340
1335
  authorizationList?: undefined;
1341
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1336
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1342
1337
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1343
1338
  maxFeePerBlobGas?: bigint | undefined;
1344
1339
  maxFeePerGas?: bigint | undefined;
@@ -1347,7 +1342,7 @@ export declare class Signer implements SignerInterface {
1347
1342
  } | {
1348
1343
  accessList?: import("viem").AccessList | undefined;
1349
1344
  authorizationList?: undefined;
1350
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1345
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1351
1346
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1352
1347
  maxFeePerBlobGas?: bigint | undefined;
1353
1348
  maxFeePerGas?: bigint | undefined;
@@ -1419,7 +1414,7 @@ export declare class Signer implements SignerInterface {
1419
1414
  } ? "eip2930" : never) | (request extends ({
1420
1415
  accessList?: import("viem").AccessList | undefined;
1421
1416
  authorizationList?: undefined;
1422
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1417
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1423
1418
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1424
1419
  maxFeePerBlobGas?: bigint | undefined;
1425
1420
  maxFeePerGas?: bigint | undefined;
@@ -1428,7 +1423,7 @@ export declare class Signer implements SignerInterface {
1428
1423
  } | {
1429
1424
  accessList?: import("viem").AccessList | undefined;
1430
1425
  authorizationList?: undefined;
1431
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1426
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1432
1427
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1433
1428
  maxFeePerBlobGas?: bigint | undefined;
1434
1429
  maxFeePerGas?: bigint | undefined;
@@ -1500,7 +1495,7 @@ export declare class Signer implements SignerInterface {
1500
1495
  } ? "eip2930" : never) | (request extends ({
1501
1496
  accessList?: import("viem").AccessList | undefined;
1502
1497
  authorizationList?: undefined;
1503
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1498
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1504
1499
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1505
1500
  maxFeePerBlobGas?: bigint | undefined;
1506
1501
  maxFeePerGas?: bigint | undefined;
@@ -1509,7 +1504,7 @@ export declare class Signer implements SignerInterface {
1509
1504
  } | {
1510
1505
  accessList?: import("viem").AccessList | undefined;
1511
1506
  authorizationList?: undefined;
1512
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1507
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1513
1508
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1514
1509
  maxFeePerBlobGas?: bigint | undefined;
1515
1510
  maxFeePerGas?: bigint | undefined;
@@ -1581,7 +1576,7 @@ export declare class Signer implements SignerInterface {
1581
1576
  } ? "eip2930" : never) | (request extends ({
1582
1577
  accessList?: import("viem").AccessList | undefined;
1583
1578
  authorizationList?: undefined;
1584
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1579
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1585
1580
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1586
1581
  maxFeePerBlobGas?: bigint | undefined;
1587
1582
  maxFeePerGas?: bigint | undefined;
@@ -1590,7 +1585,7 @@ export declare class Signer implements SignerInterface {
1590
1585
  } | {
1591
1586
  accessList?: import("viem").AccessList | undefined;
1592
1587
  authorizationList?: undefined;
1593
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1588
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1594
1589
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1595
1590
  maxFeePerBlobGas?: bigint | undefined;
1596
1591
  maxFeePerGas?: bigint | undefined;
@@ -1662,7 +1657,7 @@ export declare class Signer implements SignerInterface {
1662
1657
  } ? "eip2930" : never) | (request extends ({
1663
1658
  accessList?: import("viem").AccessList | undefined;
1664
1659
  authorizationList?: undefined;
1665
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1660
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1666
1661
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1667
1662
  maxFeePerBlobGas?: bigint | undefined;
1668
1663
  maxFeePerGas?: bigint | undefined;
@@ -1671,7 +1666,7 @@ export declare class Signer implements SignerInterface {
1671
1666
  } | {
1672
1667
  accessList?: import("viem").AccessList | undefined;
1673
1668
  authorizationList?: undefined;
1674
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1669
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1675
1670
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1676
1671
  maxFeePerBlobGas?: bigint | undefined;
1677
1672
  maxFeePerGas?: bigint | undefined;
@@ -1743,7 +1738,7 @@ export declare class Signer implements SignerInterface {
1743
1738
  } ? "eip2930" : never) | (request extends ({
1744
1739
  accessList?: import("viem").AccessList | undefined;
1745
1740
  authorizationList?: undefined;
1746
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1741
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1747
1742
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1748
1743
  maxFeePerBlobGas?: bigint | undefined;
1749
1744
  maxFeePerGas?: bigint | undefined;
@@ -1752,7 +1747,7 @@ export declare class Signer implements SignerInterface {
1752
1747
  } | {
1753
1748
  accessList?: import("viem").AccessList | undefined;
1754
1749
  authorizationList?: undefined;
1755
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1750
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1756
1751
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1757
1752
  maxFeePerBlobGas?: bigint | undefined;
1758
1753
  maxFeePerGas?: bigint | undefined;
@@ -1824,7 +1819,7 @@ export declare class Signer implements SignerInterface {
1824
1819
  } ? "eip2930" : never) | (request extends ({
1825
1820
  accessList?: import("viem").AccessList | undefined;
1826
1821
  authorizationList?: undefined;
1827
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1822
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1828
1823
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1829
1824
  maxFeePerBlobGas?: bigint | undefined;
1830
1825
  maxFeePerGas?: bigint | undefined;
@@ -1833,7 +1828,7 @@ export declare class Signer implements SignerInterface {
1833
1828
  } | {
1834
1829
  accessList?: import("viem").AccessList | undefined;
1835
1830
  authorizationList?: undefined;
1836
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1831
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1837
1832
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1838
1833
  maxFeePerBlobGas?: bigint | undefined;
1839
1834
  maxFeePerGas?: bigint | undefined;
@@ -1905,7 +1900,7 @@ export declare class Signer implements SignerInterface {
1905
1900
  } ? "eip2930" : never) | (request extends ({
1906
1901
  accessList?: import("viem").AccessList | undefined;
1907
1902
  authorizationList?: undefined;
1908
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1903
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1909
1904
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1910
1905
  maxFeePerBlobGas?: bigint | undefined;
1911
1906
  maxFeePerGas?: bigint | undefined;
@@ -1914,7 +1909,7 @@ export declare class Signer implements SignerInterface {
1914
1909
  } | {
1915
1910
  accessList?: import("viem").AccessList | undefined;
1916
1911
  authorizationList?: undefined;
1917
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1912
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1918
1913
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1919
1914
  maxFeePerBlobGas?: bigint | undefined;
1920
1915
  maxFeePerGas?: bigint | undefined;
@@ -1986,7 +1981,7 @@ export declare class Signer implements SignerInterface {
1986
1981
  } ? "eip2930" : never) | (request extends ({
1987
1982
  accessList?: import("viem").AccessList | undefined;
1988
1983
  authorizationList?: undefined;
1989
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1984
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1990
1985
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1991
1986
  maxFeePerBlobGas?: bigint | undefined;
1992
1987
  maxFeePerGas?: bigint | undefined;
@@ -1995,7 +1990,7 @@ export declare class Signer implements SignerInterface {
1995
1990
  } | {
1996
1991
  accessList?: import("viem").AccessList | undefined;
1997
1992
  authorizationList?: undefined;
1998
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
1993
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
1999
1994
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2000
1995
  maxFeePerBlobGas?: bigint | undefined;
2001
1996
  maxFeePerGas?: bigint | undefined;
@@ -2067,7 +2062,7 @@ export declare class Signer implements SignerInterface {
2067
2062
  } ? "eip2930" : never) | (request extends ({
2068
2063
  accessList?: import("viem").AccessList | undefined;
2069
2064
  authorizationList?: undefined;
2070
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2065
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2071
2066
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2072
2067
  maxFeePerBlobGas?: bigint | undefined;
2073
2068
  maxFeePerGas?: bigint | undefined;
@@ -2076,7 +2071,7 @@ export declare class Signer implements SignerInterface {
2076
2071
  } | {
2077
2072
  accessList?: import("viem").AccessList | undefined;
2078
2073
  authorizationList?: undefined;
2079
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2074
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2080
2075
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2081
2076
  maxFeePerBlobGas?: bigint | undefined;
2082
2077
  maxFeePerGas?: bigint | undefined;
@@ -2148,7 +2143,7 @@ export declare class Signer implements SignerInterface {
2148
2143
  } ? "eip2930" : never) | (request extends ({
2149
2144
  accessList?: import("viem").AccessList | undefined;
2150
2145
  authorizationList?: undefined;
2151
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2146
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2152
2147
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2153
2148
  maxFeePerBlobGas?: bigint | undefined;
2154
2149
  maxFeePerGas?: bigint | undefined;
@@ -2157,7 +2152,7 @@ export declare class Signer implements SignerInterface {
2157
2152
  } | {
2158
2153
  accessList?: import("viem").AccessList | undefined;
2159
2154
  authorizationList?: undefined;
2160
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2155
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2161
2156
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2162
2157
  maxFeePerBlobGas?: bigint | undefined;
2163
2158
  maxFeePerGas?: bigint | undefined;
@@ -2229,7 +2224,7 @@ export declare class Signer implements SignerInterface {
2229
2224
  } ? "eip2930" : never) | (request extends ({
2230
2225
  accessList?: import("viem").AccessList | undefined;
2231
2226
  authorizationList?: undefined;
2232
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2227
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2233
2228
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2234
2229
  maxFeePerBlobGas?: bigint | undefined;
2235
2230
  maxFeePerGas?: bigint | undefined;
@@ -2238,7 +2233,7 @@ export declare class Signer implements SignerInterface {
2238
2233
  } | {
2239
2234
  accessList?: import("viem").AccessList | undefined;
2240
2235
  authorizationList?: undefined;
2241
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2236
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2242
2237
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2243
2238
  maxFeePerBlobGas?: bigint | undefined;
2244
2239
  maxFeePerGas?: bigint | undefined;
@@ -2310,7 +2305,7 @@ export declare class Signer implements SignerInterface {
2310
2305
  } ? "eip2930" : never) | (request extends ({
2311
2306
  accessList?: import("viem").AccessList | undefined;
2312
2307
  authorizationList?: undefined;
2313
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2308
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2314
2309
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2315
2310
  maxFeePerBlobGas?: bigint | undefined;
2316
2311
  maxFeePerGas?: bigint | undefined;
@@ -2319,7 +2314,7 @@ export declare class Signer implements SignerInterface {
2319
2314
  } | {
2320
2315
  accessList?: import("viem").AccessList | undefined;
2321
2316
  authorizationList?: undefined;
2322
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2317
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2323
2318
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2324
2319
  maxFeePerBlobGas?: bigint | undefined;
2325
2320
  maxFeePerGas?: bigint | undefined;
@@ -2391,7 +2386,7 @@ export declare class Signer implements SignerInterface {
2391
2386
  } ? "eip2930" : never) | (request extends ({
2392
2387
  accessList?: import("viem").AccessList | undefined;
2393
2388
  authorizationList?: undefined;
2394
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2389
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2395
2390
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2396
2391
  maxFeePerBlobGas?: bigint | undefined;
2397
2392
  maxFeePerGas?: bigint | undefined;
@@ -2400,7 +2395,7 @@ export declare class Signer implements SignerInterface {
2400
2395
  } | {
2401
2396
  accessList?: import("viem").AccessList | undefined;
2402
2397
  authorizationList?: undefined;
2403
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2398
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2404
2399
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2405
2400
  maxFeePerBlobGas?: bigint | undefined;
2406
2401
  maxFeePerGas?: bigint | undefined;
@@ -2472,7 +2467,7 @@ export declare class Signer implements SignerInterface {
2472
2467
  } ? "eip2930" : never) | (request extends ({
2473
2468
  accessList?: import("viem").AccessList | undefined;
2474
2469
  authorizationList?: undefined;
2475
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2470
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2476
2471
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2477
2472
  maxFeePerBlobGas?: bigint | undefined;
2478
2473
  maxFeePerGas?: bigint | undefined;
@@ -2481,7 +2476,7 @@ export declare class Signer implements SignerInterface {
2481
2476
  } | {
2482
2477
  accessList?: import("viem").AccessList | undefined;
2483
2478
  authorizationList?: undefined;
2484
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2479
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2485
2480
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2486
2481
  maxFeePerBlobGas?: bigint | undefined;
2487
2482
  maxFeePerGas?: bigint | undefined;
@@ -2553,7 +2548,7 @@ export declare class Signer implements SignerInterface {
2553
2548
  } ? "eip2930" : never) | (request extends ({
2554
2549
  accessList?: import("viem").AccessList | undefined;
2555
2550
  authorizationList?: undefined;
2556
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2551
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2557
2552
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2558
2553
  maxFeePerBlobGas?: bigint | undefined;
2559
2554
  maxFeePerGas?: bigint | undefined;
@@ -2562,7 +2557,7 @@ export declare class Signer implements SignerInterface {
2562
2557
  } | {
2563
2558
  accessList?: import("viem").AccessList | undefined;
2564
2559
  authorizationList?: undefined;
2565
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2560
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2566
2561
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2567
2562
  maxFeePerBlobGas?: bigint | undefined;
2568
2563
  maxFeePerGas?: bigint | undefined;
@@ -2634,7 +2629,7 @@ export declare class Signer implements SignerInterface {
2634
2629
  } ? "eip2930" : never) | (request extends ({
2635
2630
  accessList?: import("viem").AccessList | undefined;
2636
2631
  authorizationList?: undefined;
2637
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2632
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2638
2633
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2639
2634
  maxFeePerBlobGas?: bigint | undefined;
2640
2635
  maxFeePerGas?: bigint | undefined;
@@ -2643,7 +2638,7 @@ export declare class Signer implements SignerInterface {
2643
2638
  } | {
2644
2639
  accessList?: import("viem").AccessList | undefined;
2645
2640
  authorizationList?: undefined;
2646
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2641
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2647
2642
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2648
2643
  maxFeePerBlobGas?: bigint | undefined;
2649
2644
  maxFeePerGas?: bigint | undefined;
@@ -2715,7 +2710,7 @@ export declare class Signer implements SignerInterface {
2715
2710
  } ? "eip2930" : never) | (request extends ({
2716
2711
  accessList?: import("viem").AccessList | undefined;
2717
2712
  authorizationList?: undefined;
2718
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2713
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2719
2714
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2720
2715
  maxFeePerBlobGas?: bigint | undefined;
2721
2716
  maxFeePerGas?: bigint | undefined;
@@ -2724,7 +2719,7 @@ export declare class Signer implements SignerInterface {
2724
2719
  } | {
2725
2720
  accessList?: import("viem").AccessList | undefined;
2726
2721
  authorizationList?: undefined;
2727
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2722
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2728
2723
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2729
2724
  maxFeePerBlobGas?: bigint | undefined;
2730
2725
  maxFeePerGas?: bigint | undefined;
@@ -2796,7 +2791,7 @@ export declare class Signer implements SignerInterface {
2796
2791
  } ? "eip2930" : never) | (request extends ({
2797
2792
  accessList?: import("viem").AccessList | undefined;
2798
2793
  authorizationList?: undefined;
2799
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2794
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2800
2795
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2801
2796
  maxFeePerBlobGas?: bigint | undefined;
2802
2797
  maxFeePerGas?: bigint | undefined;
@@ -2805,7 +2800,7 @@ export declare class Signer implements SignerInterface {
2805
2800
  } | {
2806
2801
  accessList?: import("viem").AccessList | undefined;
2807
2802
  authorizationList?: undefined;
2808
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2803
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2809
2804
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2810
2805
  maxFeePerBlobGas?: bigint | undefined;
2811
2806
  maxFeePerGas?: bigint | undefined;
@@ -2877,7 +2872,7 @@ export declare class Signer implements SignerInterface {
2877
2872
  } ? "eip2930" : never) | (request extends ({
2878
2873
  accessList?: import("viem").AccessList | undefined;
2879
2874
  authorizationList?: undefined;
2880
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2875
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2881
2876
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2882
2877
  maxFeePerBlobGas?: bigint | undefined;
2883
2878
  maxFeePerGas?: bigint | undefined;
@@ -2886,7 +2881,7 @@ export declare class Signer implements SignerInterface {
2886
2881
  } | {
2887
2882
  accessList?: import("viem").AccessList | undefined;
2888
2883
  authorizationList?: undefined;
2889
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2884
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2890
2885
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2891
2886
  maxFeePerBlobGas?: bigint | undefined;
2892
2887
  maxFeePerGas?: bigint | undefined;
@@ -2958,7 +2953,7 @@ export declare class Signer implements SignerInterface {
2958
2953
  } ? "eip2930" : never) | (request extends ({
2959
2954
  accessList?: import("viem").AccessList | undefined;
2960
2955
  authorizationList?: undefined;
2961
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2956
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2962
2957
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2963
2958
  maxFeePerBlobGas?: bigint | undefined;
2964
2959
  maxFeePerGas?: bigint | undefined;
@@ -2967,7 +2962,7 @@ export declare class Signer implements SignerInterface {
2967
2962
  } | {
2968
2963
  accessList?: import("viem").AccessList | undefined;
2969
2964
  authorizationList?: undefined;
2970
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
2965
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
2971
2966
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2972
2967
  maxFeePerBlobGas?: bigint | undefined;
2973
2968
  maxFeePerGas?: bigint | undefined;
@@ -3039,7 +3034,7 @@ export declare class Signer implements SignerInterface {
3039
3034
  } ? "eip2930" : never) | (request extends ({
3040
3035
  accessList?: import("viem").AccessList | undefined;
3041
3036
  authorizationList?: undefined;
3042
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3037
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3043
3038
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3044
3039
  maxFeePerBlobGas?: bigint | undefined;
3045
3040
  maxFeePerGas?: bigint | undefined;
@@ -3048,7 +3043,7 @@ export declare class Signer implements SignerInterface {
3048
3043
  } | {
3049
3044
  accessList?: import("viem").AccessList | undefined;
3050
3045
  authorizationList?: undefined;
3051
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3046
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3052
3047
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3053
3048
  maxFeePerBlobGas?: bigint | undefined;
3054
3049
  maxFeePerGas?: bigint | undefined;
@@ -3120,7 +3115,7 @@ export declare class Signer implements SignerInterface {
3120
3115
  } ? "eip2930" : never) | (request extends ({
3121
3116
  accessList?: import("viem").AccessList | undefined;
3122
3117
  authorizationList?: undefined;
3123
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3118
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3124
3119
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3125
3120
  maxFeePerBlobGas?: bigint | undefined;
3126
3121
  maxFeePerGas?: bigint | undefined;
@@ -3129,7 +3124,7 @@ export declare class Signer implements SignerInterface {
3129
3124
  } | {
3130
3125
  accessList?: import("viem").AccessList | undefined;
3131
3126
  authorizationList?: undefined;
3132
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3127
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3133
3128
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3134
3129
  maxFeePerBlobGas?: bigint | undefined;
3135
3130
  maxFeePerGas?: bigint | undefined;
@@ -3201,7 +3196,7 @@ export declare class Signer implements SignerInterface {
3201
3196
  } ? "eip2930" : never) | (request extends ({
3202
3197
  accessList?: import("viem").AccessList | undefined;
3203
3198
  authorizationList?: undefined;
3204
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3199
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3205
3200
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3206
3201
  maxFeePerBlobGas?: bigint | undefined;
3207
3202
  maxFeePerGas?: bigint | undefined;
@@ -3210,7 +3205,7 @@ export declare class Signer implements SignerInterface {
3210
3205
  } | {
3211
3206
  accessList?: import("viem").AccessList | undefined;
3212
3207
  authorizationList?: undefined;
3213
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3208
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3214
3209
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3215
3210
  maxFeePerBlobGas?: bigint | undefined;
3216
3211
  maxFeePerGas?: bigint | undefined;
@@ -3282,7 +3277,7 @@ export declare class Signer implements SignerInterface {
3282
3277
  } ? "eip2930" : never) | (request extends ({
3283
3278
  accessList?: import("viem").AccessList | undefined;
3284
3279
  authorizationList?: undefined;
3285
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3280
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3286
3281
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3287
3282
  maxFeePerBlobGas?: bigint | undefined;
3288
3283
  maxFeePerGas?: bigint | undefined;
@@ -3291,7 +3286,7 @@ export declare class Signer implements SignerInterface {
3291
3286
  } | {
3292
3287
  accessList?: import("viem").AccessList | undefined;
3293
3288
  authorizationList?: undefined;
3294
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3289
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3295
3290
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3296
3291
  maxFeePerBlobGas?: bigint | undefined;
3297
3292
  maxFeePerGas?: bigint | undefined;
@@ -3327,7 +3322,7 @@ export declare class Signer implements SignerInterface {
3327
3322
  authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3328
3323
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
3329
3324
  chainId?: number | undefined;
3330
- }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "chainId" | "blobVersionedHashes" | "fees") extends infer T_8 ? T_8 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "chainId" | "blobVersionedHashes" | "fees") ? T_8 extends "fees" ? "maxFeePerGas" | "maxPriorityFeePerGas" | "gasPrice" : T_8 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain | undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain | undefined, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain | undefined, chainOverride> ? T_1 extends Chain ? {
3325
+ }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "gas" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_8 ? T_8 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "gas" | "blobVersionedHashes" | "fees" | "chainId") ? T_8 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_8 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: (import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain | undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain | undefined, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain | undefined, chainOverride> ? T_1 extends Chain ? {
3331
3326
  chain: T_1;
3332
3327
  } : {
3333
3328
  chain?: undefined;
@@ -3375,7 +3370,7 @@ export declare class Signer implements SignerInterface {
3375
3370
  } ? "eip2930" : never) | (request extends ({
3376
3371
  accessList?: import("viem").AccessList | undefined;
3377
3372
  authorizationList?: undefined;
3378
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3373
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3379
3374
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3380
3375
  maxFeePerBlobGas?: bigint | undefined;
3381
3376
  maxFeePerGas?: bigint | undefined;
@@ -3384,7 +3379,7 @@ export declare class Signer implements SignerInterface {
3384
3379
  } | {
3385
3380
  accessList?: import("viem").AccessList | undefined;
3386
3381
  authorizationList?: undefined;
3387
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3382
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3388
3383
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3389
3384
  maxFeePerBlobGas?: bigint | undefined;
3390
3385
  maxFeePerGas?: bigint | undefined;
@@ -3456,7 +3451,7 @@ export declare class Signer implements SignerInterface {
3456
3451
  } ? "eip2930" : never) | (request extends ({
3457
3452
  accessList?: import("viem").AccessList | undefined;
3458
3453
  authorizationList?: undefined;
3459
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3454
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3460
3455
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3461
3456
  maxFeePerBlobGas?: bigint | undefined;
3462
3457
  maxFeePerGas?: bigint | undefined;
@@ -3465,7 +3460,7 @@ export declare class Signer implements SignerInterface {
3465
3460
  } | {
3466
3461
  accessList?: import("viem").AccessList | undefined;
3467
3462
  authorizationList?: undefined;
3468
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3463
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3469
3464
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3470
3465
  maxFeePerBlobGas?: bigint | undefined;
3471
3466
  maxFeePerGas?: bigint | undefined;
@@ -3537,7 +3532,7 @@ export declare class Signer implements SignerInterface {
3537
3532
  } ? "eip2930" : never) | (request extends ({
3538
3533
  accessList?: import("viem").AccessList | undefined;
3539
3534
  authorizationList?: undefined;
3540
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3535
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3541
3536
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3542
3537
  maxFeePerBlobGas?: bigint | undefined;
3543
3538
  maxFeePerGas?: bigint | undefined;
@@ -3546,7 +3541,7 @@ export declare class Signer implements SignerInterface {
3546
3541
  } | {
3547
3542
  accessList?: import("viem").AccessList | undefined;
3548
3543
  authorizationList?: undefined;
3549
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3544
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3550
3545
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3551
3546
  maxFeePerBlobGas?: bigint | undefined;
3552
3547
  maxFeePerGas?: bigint | undefined;
@@ -3618,7 +3613,7 @@ export declare class Signer implements SignerInterface {
3618
3613
  } ? "eip2930" : never) | (request extends ({
3619
3614
  accessList?: import("viem").AccessList | undefined;
3620
3615
  authorizationList?: undefined;
3621
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3616
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3622
3617
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3623
3618
  maxFeePerBlobGas?: bigint | undefined;
3624
3619
  maxFeePerGas?: bigint | undefined;
@@ -3627,7 +3622,7 @@ export declare class Signer implements SignerInterface {
3627
3622
  } | {
3628
3623
  accessList?: import("viem").AccessList | undefined;
3629
3624
  authorizationList?: undefined;
3630
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3625
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3631
3626
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3632
3627
  maxFeePerBlobGas?: bigint | undefined;
3633
3628
  maxFeePerGas?: bigint | undefined;
@@ -3699,7 +3694,7 @@ export declare class Signer implements SignerInterface {
3699
3694
  } ? "eip2930" : never) | (request extends ({
3700
3695
  accessList?: import("viem").AccessList | undefined;
3701
3696
  authorizationList?: undefined;
3702
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3697
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3703
3698
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3704
3699
  maxFeePerBlobGas?: bigint | undefined;
3705
3700
  maxFeePerGas?: bigint | undefined;
@@ -3708,7 +3703,7 @@ export declare class Signer implements SignerInterface {
3708
3703
  } | {
3709
3704
  accessList?: import("viem").AccessList | undefined;
3710
3705
  authorizationList?: undefined;
3711
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3706
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3712
3707
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3713
3708
  maxFeePerBlobGas?: bigint | undefined;
3714
3709
  maxFeePerGas?: bigint | undefined;
@@ -3780,7 +3775,7 @@ export declare class Signer implements SignerInterface {
3780
3775
  } ? "eip2930" : never) | (request extends ({
3781
3776
  accessList?: import("viem").AccessList | undefined;
3782
3777
  authorizationList?: undefined;
3783
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3778
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3784
3779
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3785
3780
  maxFeePerBlobGas?: bigint | undefined;
3786
3781
  maxFeePerGas?: bigint | undefined;
@@ -3789,7 +3784,7 @@ export declare class Signer implements SignerInterface {
3789
3784
  } | {
3790
3785
  accessList?: import("viem").AccessList | undefined;
3791
3786
  authorizationList?: undefined;
3792
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3787
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3793
3788
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3794
3789
  maxFeePerBlobGas?: bigint | undefined;
3795
3790
  maxFeePerGas?: bigint | undefined;
@@ -3861,7 +3856,7 @@ export declare class Signer implements SignerInterface {
3861
3856
  } ? "eip2930" : never) | (request extends ({
3862
3857
  accessList?: import("viem").AccessList | undefined;
3863
3858
  authorizationList?: undefined;
3864
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3859
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3865
3860
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3866
3861
  maxFeePerBlobGas?: bigint | undefined;
3867
3862
  maxFeePerGas?: bigint | undefined;
@@ -3870,7 +3865,7 @@ export declare class Signer implements SignerInterface {
3870
3865
  } | {
3871
3866
  accessList?: import("viem").AccessList | undefined;
3872
3867
  authorizationList?: undefined;
3873
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3868
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3874
3869
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3875
3870
  maxFeePerBlobGas?: bigint | undefined;
3876
3871
  maxFeePerGas?: bigint | undefined;
@@ -3942,7 +3937,7 @@ export declare class Signer implements SignerInterface {
3942
3937
  } ? "eip2930" : never) | (request extends ({
3943
3938
  accessList?: import("viem").AccessList | undefined;
3944
3939
  authorizationList?: undefined;
3945
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3940
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3946
3941
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3947
3942
  maxFeePerBlobGas?: bigint | undefined;
3948
3943
  maxFeePerGas?: bigint | undefined;
@@ -3951,7 +3946,7 @@ export declare class Signer implements SignerInterface {
3951
3946
  } | {
3952
3947
  accessList?: import("viem").AccessList | undefined;
3953
3948
  authorizationList?: undefined;
3954
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
3949
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
3955
3950
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3956
3951
  maxFeePerBlobGas?: bigint | undefined;
3957
3952
  maxFeePerGas?: bigint | undefined;
@@ -4023,7 +4018,7 @@ export declare class Signer implements SignerInterface {
4023
4018
  } ? "eip2930" : never) | (request extends ({
4024
4019
  accessList?: import("viem").AccessList | undefined;
4025
4020
  authorizationList?: undefined;
4026
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4021
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4027
4022
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4028
4023
  maxFeePerBlobGas?: bigint | undefined;
4029
4024
  maxFeePerGas?: bigint | undefined;
@@ -4032,7 +4027,7 @@ export declare class Signer implements SignerInterface {
4032
4027
  } | {
4033
4028
  accessList?: import("viem").AccessList | undefined;
4034
4029
  authorizationList?: undefined;
4035
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4030
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4036
4031
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4037
4032
  maxFeePerBlobGas?: bigint | undefined;
4038
4033
  maxFeePerGas?: bigint | undefined;
@@ -4104,7 +4099,7 @@ export declare class Signer implements SignerInterface {
4104
4099
  } ? "eip2930" : never) | (request extends ({
4105
4100
  accessList?: import("viem").AccessList | undefined;
4106
4101
  authorizationList?: undefined;
4107
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4102
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4108
4103
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4109
4104
  maxFeePerBlobGas?: bigint | undefined;
4110
4105
  maxFeePerGas?: bigint | undefined;
@@ -4113,7 +4108,7 @@ export declare class Signer implements SignerInterface {
4113
4108
  } | {
4114
4109
  accessList?: import("viem").AccessList | undefined;
4115
4110
  authorizationList?: undefined;
4116
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4111
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4117
4112
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4118
4113
  maxFeePerBlobGas?: bigint | undefined;
4119
4114
  maxFeePerGas?: bigint | undefined;
@@ -4185,7 +4180,7 @@ export declare class Signer implements SignerInterface {
4185
4180
  } ? "eip2930" : never) | (request extends ({
4186
4181
  accessList?: import("viem").AccessList | undefined;
4187
4182
  authorizationList?: undefined;
4188
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4183
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4189
4184
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4190
4185
  maxFeePerBlobGas?: bigint | undefined;
4191
4186
  maxFeePerGas?: bigint | undefined;
@@ -4194,7 +4189,7 @@ export declare class Signer implements SignerInterface {
4194
4189
  } | {
4195
4190
  accessList?: import("viem").AccessList | undefined;
4196
4191
  authorizationList?: undefined;
4197
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4192
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4198
4193
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4199
4194
  maxFeePerBlobGas?: bigint | undefined;
4200
4195
  maxFeePerGas?: bigint | undefined;
@@ -4266,7 +4261,7 @@ export declare class Signer implements SignerInterface {
4266
4261
  } ? "eip2930" : never) | (request extends ({
4267
4262
  accessList?: import("viem").AccessList | undefined;
4268
4263
  authorizationList?: undefined;
4269
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4264
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4270
4265
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4271
4266
  maxFeePerBlobGas?: bigint | undefined;
4272
4267
  maxFeePerGas?: bigint | undefined;
@@ -4275,7 +4270,7 @@ export declare class Signer implements SignerInterface {
4275
4270
  } | {
4276
4271
  accessList?: import("viem").AccessList | undefined;
4277
4272
  authorizationList?: undefined;
4278
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4273
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4279
4274
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4280
4275
  maxFeePerBlobGas?: bigint | undefined;
4281
4276
  maxFeePerGas?: bigint | undefined;
@@ -4347,7 +4342,7 @@ export declare class Signer implements SignerInterface {
4347
4342
  } ? "eip2930" : never) | (request extends ({
4348
4343
  accessList?: import("viem").AccessList | undefined;
4349
4344
  authorizationList?: undefined;
4350
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4345
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4351
4346
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4352
4347
  maxFeePerBlobGas?: bigint | undefined;
4353
4348
  maxFeePerGas?: bigint | undefined;
@@ -4356,7 +4351,7 @@ export declare class Signer implements SignerInterface {
4356
4351
  } | {
4357
4352
  accessList?: import("viem").AccessList | undefined;
4358
4353
  authorizationList?: undefined;
4359
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4354
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4360
4355
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4361
4356
  maxFeePerBlobGas?: bigint | undefined;
4362
4357
  maxFeePerGas?: bigint | undefined;
@@ -4428,7 +4423,7 @@ export declare class Signer implements SignerInterface {
4428
4423
  } ? "eip2930" : never) | (request extends ({
4429
4424
  accessList?: import("viem").AccessList | undefined;
4430
4425
  authorizationList?: undefined;
4431
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4426
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4432
4427
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4433
4428
  maxFeePerBlobGas?: bigint | undefined;
4434
4429
  maxFeePerGas?: bigint | undefined;
@@ -4437,7 +4432,7 @@ export declare class Signer implements SignerInterface {
4437
4432
  } | {
4438
4433
  accessList?: import("viem").AccessList | undefined;
4439
4434
  authorizationList?: undefined;
4440
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4435
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4441
4436
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4442
4437
  maxFeePerBlobGas?: bigint | undefined;
4443
4438
  maxFeePerGas?: bigint | undefined;
@@ -4509,7 +4504,7 @@ export declare class Signer implements SignerInterface {
4509
4504
  } ? "eip2930" : never) | (request extends ({
4510
4505
  accessList?: import("viem").AccessList | undefined;
4511
4506
  authorizationList?: undefined;
4512
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4507
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4513
4508
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4514
4509
  maxFeePerBlobGas?: bigint | undefined;
4515
4510
  maxFeePerGas?: bigint | undefined;
@@ -4518,7 +4513,7 @@ export declare class Signer implements SignerInterface {
4518
4513
  } | {
4519
4514
  accessList?: import("viem").AccessList | undefined;
4520
4515
  authorizationList?: undefined;
4521
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4516
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4522
4517
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4523
4518
  maxFeePerBlobGas?: bigint | undefined;
4524
4519
  maxFeePerGas?: bigint | undefined;
@@ -4590,7 +4585,7 @@ export declare class Signer implements SignerInterface {
4590
4585
  } ? "eip2930" : never) | (request extends ({
4591
4586
  accessList?: import("viem").AccessList | undefined;
4592
4587
  authorizationList?: undefined;
4593
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4588
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4594
4589
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4595
4590
  maxFeePerBlobGas?: bigint | undefined;
4596
4591
  maxFeePerGas?: bigint | undefined;
@@ -4599,7 +4594,7 @@ export declare class Signer implements SignerInterface {
4599
4594
  } | {
4600
4595
  accessList?: import("viem").AccessList | undefined;
4601
4596
  authorizationList?: undefined;
4602
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4597
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4603
4598
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4604
4599
  maxFeePerBlobGas?: bigint | undefined;
4605
4600
  maxFeePerGas?: bigint | undefined;
@@ -4671,7 +4666,7 @@ export declare class Signer implements SignerInterface {
4671
4666
  } ? "eip2930" : never) | (request extends ({
4672
4667
  accessList?: import("viem").AccessList | undefined;
4673
4668
  authorizationList?: undefined;
4674
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4669
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4675
4670
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4676
4671
  maxFeePerBlobGas?: bigint | undefined;
4677
4672
  maxFeePerGas?: bigint | undefined;
@@ -4680,7 +4675,7 @@ export declare class Signer implements SignerInterface {
4680
4675
  } | {
4681
4676
  accessList?: import("viem").AccessList | undefined;
4682
4677
  authorizationList?: undefined;
4683
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4678
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4684
4679
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4685
4680
  maxFeePerBlobGas?: bigint | undefined;
4686
4681
  maxFeePerGas?: bigint | undefined;
@@ -4752,7 +4747,7 @@ export declare class Signer implements SignerInterface {
4752
4747
  } ? "eip2930" : never) | (request extends ({
4753
4748
  accessList?: import("viem").AccessList | undefined;
4754
4749
  authorizationList?: undefined;
4755
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4750
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4756
4751
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4757
4752
  maxFeePerBlobGas?: bigint | undefined;
4758
4753
  maxFeePerGas?: bigint | undefined;
@@ -4761,7 +4756,7 @@ export declare class Signer implements SignerInterface {
4761
4756
  } | {
4762
4757
  accessList?: import("viem").AccessList | undefined;
4763
4758
  authorizationList?: undefined;
4764
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4759
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4765
4760
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4766
4761
  maxFeePerBlobGas?: bigint | undefined;
4767
4762
  maxFeePerGas?: bigint | undefined;
@@ -4833,7 +4828,7 @@ export declare class Signer implements SignerInterface {
4833
4828
  } ? "eip2930" : never) | (request extends ({
4834
4829
  accessList?: import("viem").AccessList | undefined;
4835
4830
  authorizationList?: undefined;
4836
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4831
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4837
4832
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4838
4833
  maxFeePerBlobGas?: bigint | undefined;
4839
4834
  maxFeePerGas?: bigint | undefined;
@@ -4842,7 +4837,7 @@ export declare class Signer implements SignerInterface {
4842
4837
  } | {
4843
4838
  accessList?: import("viem").AccessList | undefined;
4844
4839
  authorizationList?: undefined;
4845
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4840
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4846
4841
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4847
4842
  maxFeePerBlobGas?: bigint | undefined;
4848
4843
  maxFeePerGas?: bigint | undefined;
@@ -4914,7 +4909,7 @@ export declare class Signer implements SignerInterface {
4914
4909
  } ? "eip2930" : never) | (request extends ({
4915
4910
  accessList?: import("viem").AccessList | undefined;
4916
4911
  authorizationList?: undefined;
4917
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4912
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4918
4913
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4919
4914
  maxFeePerBlobGas?: bigint | undefined;
4920
4915
  maxFeePerGas?: bigint | undefined;
@@ -4923,7 +4918,7 @@ export declare class Signer implements SignerInterface {
4923
4918
  } | {
4924
4919
  accessList?: import("viem").AccessList | undefined;
4925
4920
  authorizationList?: undefined;
4926
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4921
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4927
4922
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4928
4923
  maxFeePerBlobGas?: bigint | undefined;
4929
4924
  maxFeePerGas?: bigint | undefined;
@@ -4995,7 +4990,7 @@ export declare class Signer implements SignerInterface {
4995
4990
  } ? "eip2930" : never) | (request extends ({
4996
4991
  accessList?: import("viem").AccessList | undefined;
4997
4992
  authorizationList?: undefined;
4998
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
4993
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
4999
4994
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5000
4995
  maxFeePerBlobGas?: bigint | undefined;
5001
4996
  maxFeePerGas?: bigint | undefined;
@@ -5004,7 +4999,7 @@ export declare class Signer implements SignerInterface {
5004
4999
  } | {
5005
5000
  accessList?: import("viem").AccessList | undefined;
5006
5001
  authorizationList?: undefined;
5007
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5002
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5008
5003
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5009
5004
  maxFeePerBlobGas?: bigint | undefined;
5010
5005
  maxFeePerGas?: bigint | undefined;
@@ -5076,7 +5071,7 @@ export declare class Signer implements SignerInterface {
5076
5071
  } ? "eip2930" : never) | (request extends ({
5077
5072
  accessList?: import("viem").AccessList | undefined;
5078
5073
  authorizationList?: undefined;
5079
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5074
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5080
5075
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5081
5076
  maxFeePerBlobGas?: bigint | undefined;
5082
5077
  maxFeePerGas?: bigint | undefined;
@@ -5085,7 +5080,7 @@ export declare class Signer implements SignerInterface {
5085
5080
  } | {
5086
5081
  accessList?: import("viem").AccessList | undefined;
5087
5082
  authorizationList?: undefined;
5088
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5083
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5089
5084
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5090
5085
  maxFeePerBlobGas?: bigint | undefined;
5091
5086
  maxFeePerGas?: bigint | undefined;
@@ -5157,7 +5152,7 @@ export declare class Signer implements SignerInterface {
5157
5152
  } ? "eip2930" : never) | (request extends ({
5158
5153
  accessList?: import("viem").AccessList | undefined;
5159
5154
  authorizationList?: undefined;
5160
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5155
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5161
5156
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5162
5157
  maxFeePerBlobGas?: bigint | undefined;
5163
5158
  maxFeePerGas?: bigint | undefined;
@@ -5166,7 +5161,7 @@ export declare class Signer implements SignerInterface {
5166
5161
  } | {
5167
5162
  accessList?: import("viem").AccessList | undefined;
5168
5163
  authorizationList?: undefined;
5169
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5164
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5170
5165
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5171
5166
  maxFeePerBlobGas?: bigint | undefined;
5172
5167
  maxFeePerGas?: bigint | undefined;
@@ -5238,7 +5233,7 @@ export declare class Signer implements SignerInterface {
5238
5233
  } ? "eip2930" : never) | (request extends ({
5239
5234
  accessList?: import("viem").AccessList | undefined;
5240
5235
  authorizationList?: undefined;
5241
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5236
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5242
5237
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5243
5238
  maxFeePerBlobGas?: bigint | undefined;
5244
5239
  maxFeePerGas?: bigint | undefined;
@@ -5247,7 +5242,7 @@ export declare class Signer implements SignerInterface {
5247
5242
  } | {
5248
5243
  accessList?: import("viem").AccessList | undefined;
5249
5244
  authorizationList?: undefined;
5250
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5245
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5251
5246
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5252
5247
  maxFeePerBlobGas?: bigint | undefined;
5253
5248
  maxFeePerGas?: bigint | undefined;
@@ -5319,7 +5314,7 @@ export declare class Signer implements SignerInterface {
5319
5314
  } ? "eip2930" : never) | (request extends ({
5320
5315
  accessList?: import("viem").AccessList | undefined;
5321
5316
  authorizationList?: undefined;
5322
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5317
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5323
5318
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5324
5319
  maxFeePerBlobGas?: bigint | undefined;
5325
5320
  maxFeePerGas?: bigint | undefined;
@@ -5328,7 +5323,7 @@ export declare class Signer implements SignerInterface {
5328
5323
  } | {
5329
5324
  accessList?: import("viem").AccessList | undefined;
5330
5325
  authorizationList?: undefined;
5331
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5326
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5332
5327
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5333
5328
  maxFeePerBlobGas?: bigint | undefined;
5334
5329
  maxFeePerGas?: bigint | undefined;
@@ -5400,7 +5395,7 @@ export declare class Signer implements SignerInterface {
5400
5395
  } ? "eip2930" : never) | (request extends ({
5401
5396
  accessList?: import("viem").AccessList | undefined;
5402
5397
  authorizationList?: undefined;
5403
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5398
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5404
5399
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5405
5400
  maxFeePerBlobGas?: bigint | undefined;
5406
5401
  maxFeePerGas?: bigint | undefined;
@@ -5409,7 +5404,7 @@ export declare class Signer implements SignerInterface {
5409
5404
  } | {
5410
5405
  accessList?: import("viem").AccessList | undefined;
5411
5406
  authorizationList?: undefined;
5412
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5407
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5413
5408
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5414
5409
  maxFeePerBlobGas?: bigint | undefined;
5415
5410
  maxFeePerGas?: bigint | undefined;
@@ -5481,7 +5476,7 @@ export declare class Signer implements SignerInterface {
5481
5476
  } ? "eip2930" : never) | (request extends ({
5482
5477
  accessList?: import("viem").AccessList | undefined;
5483
5478
  authorizationList?: undefined;
5484
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5479
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5485
5480
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5486
5481
  maxFeePerBlobGas?: bigint | undefined;
5487
5482
  maxFeePerGas?: bigint | undefined;
@@ -5490,7 +5485,7 @@ export declare class Signer implements SignerInterface {
5490
5485
  } | {
5491
5486
  accessList?: import("viem").AccessList | undefined;
5492
5487
  authorizationList?: undefined;
5493
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5488
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5494
5489
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5495
5490
  maxFeePerBlobGas?: bigint | undefined;
5496
5491
  maxFeePerGas?: bigint | undefined;
@@ -5562,7 +5557,7 @@ export declare class Signer implements SignerInterface {
5562
5557
  } ? "eip2930" : never) | (request extends ({
5563
5558
  accessList?: import("viem").AccessList | undefined;
5564
5559
  authorizationList?: undefined;
5565
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5560
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5566
5561
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5567
5562
  maxFeePerBlobGas?: bigint | undefined;
5568
5563
  maxFeePerGas?: bigint | undefined;
@@ -5571,7 +5566,7 @@ export declare class Signer implements SignerInterface {
5571
5566
  } | {
5572
5567
  accessList?: import("viem").AccessList | undefined;
5573
5568
  authorizationList?: undefined;
5574
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5569
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5575
5570
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5576
5571
  maxFeePerBlobGas?: bigint | undefined;
5577
5572
  maxFeePerGas?: bigint | undefined;
@@ -5643,7 +5638,7 @@ export declare class Signer implements SignerInterface {
5643
5638
  } ? "eip2930" : never) | (request extends ({
5644
5639
  accessList?: import("viem").AccessList | undefined;
5645
5640
  authorizationList?: undefined;
5646
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5641
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5647
5642
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5648
5643
  maxFeePerBlobGas?: bigint | undefined;
5649
5644
  maxFeePerGas?: bigint | undefined;
@@ -5652,7 +5647,7 @@ export declare class Signer implements SignerInterface {
5652
5647
  } | {
5653
5648
  accessList?: import("viem").AccessList | undefined;
5654
5649
  authorizationList?: undefined;
5655
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5650
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5656
5651
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5657
5652
  maxFeePerBlobGas?: bigint | undefined;
5658
5653
  maxFeePerGas?: bigint | undefined;
@@ -5724,7 +5719,7 @@ export declare class Signer implements SignerInterface {
5724
5719
  } ? "eip2930" : never) | (request extends ({
5725
5720
  accessList?: import("viem").AccessList | undefined;
5726
5721
  authorizationList?: undefined;
5727
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5722
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5728
5723
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5729
5724
  maxFeePerBlobGas?: bigint | undefined;
5730
5725
  maxFeePerGas?: bigint | undefined;
@@ -5733,7 +5728,7 @@ export declare class Signer implements SignerInterface {
5733
5728
  } | {
5734
5729
  accessList?: import("viem").AccessList | undefined;
5735
5730
  authorizationList?: undefined;
5736
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5731
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5737
5732
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5738
5733
  maxFeePerBlobGas?: bigint | undefined;
5739
5734
  maxFeePerGas?: bigint | undefined;
@@ -5805,7 +5800,7 @@ export declare class Signer implements SignerInterface {
5805
5800
  } ? "eip2930" : never) | (request extends ({
5806
5801
  accessList?: import("viem").AccessList | undefined;
5807
5802
  authorizationList?: undefined;
5808
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5803
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5809
5804
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5810
5805
  maxFeePerBlobGas?: bigint | undefined;
5811
5806
  maxFeePerGas?: bigint | undefined;
@@ -5814,7 +5809,7 @@ export declare class Signer implements SignerInterface {
5814
5809
  } | {
5815
5810
  accessList?: import("viem").AccessList | undefined;
5816
5811
  authorizationList?: undefined;
5817
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5812
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5818
5813
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5819
5814
  maxFeePerBlobGas?: bigint | undefined;
5820
5815
  maxFeePerGas?: bigint | undefined;
@@ -5886,7 +5881,7 @@ export declare class Signer implements SignerInterface {
5886
5881
  } ? "eip2930" : never) | (request extends ({
5887
5882
  accessList?: import("viem").AccessList | undefined;
5888
5883
  authorizationList?: undefined;
5889
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5884
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5890
5885
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5891
5886
  maxFeePerBlobGas?: bigint | undefined;
5892
5887
  maxFeePerGas?: bigint | undefined;
@@ -5895,7 +5890,7 @@ export declare class Signer implements SignerInterface {
5895
5890
  } | {
5896
5891
  accessList?: import("viem").AccessList | undefined;
5897
5892
  authorizationList?: undefined;
5898
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5893
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5899
5894
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5900
5895
  maxFeePerBlobGas?: bigint | undefined;
5901
5896
  maxFeePerGas?: bigint | undefined;
@@ -5967,7 +5962,7 @@ export declare class Signer implements SignerInterface {
5967
5962
  } ? "eip2930" : never) | (request extends ({
5968
5963
  accessList?: import("viem").AccessList | undefined;
5969
5964
  authorizationList?: undefined;
5970
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5965
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5971
5966
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5972
5967
  maxFeePerBlobGas?: bigint | undefined;
5973
5968
  maxFeePerGas?: bigint | undefined;
@@ -5976,7 +5971,7 @@ export declare class Signer implements SignerInterface {
5976
5971
  } | {
5977
5972
  accessList?: import("viem").AccessList | undefined;
5978
5973
  authorizationList?: undefined;
5979
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
5974
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
5980
5975
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
5981
5976
  maxFeePerBlobGas?: bigint | undefined;
5982
5977
  maxFeePerGas?: bigint | undefined;
@@ -6048,7 +6043,7 @@ export declare class Signer implements SignerInterface {
6048
6043
  } ? "eip2930" : never) | (request extends ({
6049
6044
  accessList?: import("viem").AccessList | undefined;
6050
6045
  authorizationList?: undefined;
6051
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6046
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6052
6047
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6053
6048
  maxFeePerBlobGas?: bigint | undefined;
6054
6049
  maxFeePerGas?: bigint | undefined;
@@ -6057,7 +6052,7 @@ export declare class Signer implements SignerInterface {
6057
6052
  } | {
6058
6053
  accessList?: import("viem").AccessList | undefined;
6059
6054
  authorizationList?: undefined;
6060
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6055
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6061
6056
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6062
6057
  maxFeePerBlobGas?: bigint | undefined;
6063
6058
  maxFeePerGas?: bigint | undefined;
@@ -6129,7 +6124,7 @@ export declare class Signer implements SignerInterface {
6129
6124
  } ? "eip2930" : never) | (request extends ({
6130
6125
  accessList?: import("viem").AccessList | undefined;
6131
6126
  authorizationList?: undefined;
6132
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6127
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6133
6128
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6134
6129
  maxFeePerBlobGas?: bigint | undefined;
6135
6130
  maxFeePerGas?: bigint | undefined;
@@ -6138,7 +6133,7 @@ export declare class Signer implements SignerInterface {
6138
6133
  } | {
6139
6134
  accessList?: import("viem").AccessList | undefined;
6140
6135
  authorizationList?: undefined;
6141
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6136
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6142
6137
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6143
6138
  maxFeePerBlobGas?: bigint | undefined;
6144
6139
  maxFeePerGas?: bigint | undefined;
@@ -6210,7 +6205,7 @@ export declare class Signer implements SignerInterface {
6210
6205
  } ? "eip2930" : never) | (request extends ({
6211
6206
  accessList?: import("viem").AccessList | undefined;
6212
6207
  authorizationList?: undefined;
6213
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6208
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6214
6209
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6215
6210
  maxFeePerBlobGas?: bigint | undefined;
6216
6211
  maxFeePerGas?: bigint | undefined;
@@ -6219,7 +6214,7 @@ export declare class Signer implements SignerInterface {
6219
6214
  } | {
6220
6215
  accessList?: import("viem").AccessList | undefined;
6221
6216
  authorizationList?: undefined;
6222
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6217
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6223
6218
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6224
6219
  maxFeePerBlobGas?: bigint | undefined;
6225
6220
  maxFeePerGas?: bigint | undefined;
@@ -6291,7 +6286,7 @@ export declare class Signer implements SignerInterface {
6291
6286
  } ? "eip2930" : never) | (request extends ({
6292
6287
  accessList?: import("viem").AccessList | undefined;
6293
6288
  authorizationList?: undefined;
6294
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6289
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6295
6290
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6296
6291
  maxFeePerBlobGas?: bigint | undefined;
6297
6292
  maxFeePerGas?: bigint | undefined;
@@ -6300,7 +6295,7 @@ export declare class Signer implements SignerInterface {
6300
6295
  } | {
6301
6296
  accessList?: import("viem").AccessList | undefined;
6302
6297
  authorizationList?: undefined;
6303
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6298
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6304
6299
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6305
6300
  maxFeePerBlobGas?: bigint | undefined;
6306
6301
  maxFeePerGas?: bigint | undefined;
@@ -6372,7 +6367,7 @@ export declare class Signer implements SignerInterface {
6372
6367
  } ? "eip2930" : never) | (request extends ({
6373
6368
  accessList?: import("viem").AccessList | undefined;
6374
6369
  authorizationList?: undefined;
6375
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6370
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6376
6371
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6377
6372
  maxFeePerBlobGas?: bigint | undefined;
6378
6373
  maxFeePerGas?: bigint | undefined;
@@ -6381,7 +6376,7 @@ export declare class Signer implements SignerInterface {
6381
6376
  } | {
6382
6377
  accessList?: import("viem").AccessList | undefined;
6383
6378
  authorizationList?: undefined;
6384
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6379
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6385
6380
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6386
6381
  maxFeePerBlobGas?: bigint | undefined;
6387
6382
  maxFeePerGas?: bigint | undefined;
@@ -6453,7 +6448,7 @@ export declare class Signer implements SignerInterface {
6453
6448
  } ? "eip2930" : never) | (request extends ({
6454
6449
  accessList?: import("viem").AccessList | undefined;
6455
6450
  authorizationList?: undefined;
6456
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6451
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6457
6452
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6458
6453
  maxFeePerBlobGas?: bigint | undefined;
6459
6454
  maxFeePerGas?: bigint | undefined;
@@ -6462,7 +6457,7 @@ export declare class Signer implements SignerInterface {
6462
6457
  } | {
6463
6458
  accessList?: import("viem").AccessList | undefined;
6464
6459
  authorizationList?: undefined;
6465
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6460
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6466
6461
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6467
6462
  maxFeePerBlobGas?: bigint | undefined;
6468
6463
  maxFeePerGas?: bigint | undefined;
@@ -6534,7 +6529,7 @@ export declare class Signer implements SignerInterface {
6534
6529
  } ? "eip2930" : never) | (request extends ({
6535
6530
  accessList?: import("viem").AccessList | undefined;
6536
6531
  authorizationList?: undefined;
6537
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6532
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6538
6533
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6539
6534
  maxFeePerBlobGas?: bigint | undefined;
6540
6535
  maxFeePerGas?: bigint | undefined;
@@ -6543,7 +6538,7 @@ export declare class Signer implements SignerInterface {
6543
6538
  } | {
6544
6539
  accessList?: import("viem").AccessList | undefined;
6545
6540
  authorizationList?: undefined;
6546
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6541
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6547
6542
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6548
6543
  maxFeePerBlobGas?: bigint | undefined;
6549
6544
  maxFeePerGas?: bigint | undefined;
@@ -6579,7 +6574,7 @@ export declare class Signer implements SignerInterface {
6579
6574
  authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
6580
6575
  } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
6581
6576
  chainId?: number | undefined;
6582
- }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "chainId" | "blobVersionedHashes" | "fees") extends infer T_8 ? T_8 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "gas" | "nonce" | "type" | "chainId" | "blobVersionedHashes" | "fees") ? T_8 extends "fees" ? "maxFeePerGas" | "maxPriorityFeePerGas" | "gasPrice" : T_8 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
6577
+ }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "gas" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_8 ? T_8 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "nonce" | "type" | "gas" | "blobVersionedHashes" | "fees" | "chainId") ? T_8 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_8 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">))[K]; } : never>;
6583
6578
  requestAddresses: () => Promise<import("viem").RequestAddressesReturnType>;
6584
6579
  requestPermissions: (args: import("viem").RequestPermissionsParameters) => Promise<import("viem").RequestPermissionsReturnType>;
6585
6580
  sendCalls: <const calls extends readonly unknown[], chainOverride extends Chain | undefined = undefined>(parameters: import("viem").SendCallsParameters<Chain | undefined, import("viem").Account | undefined, chainOverride, calls>) => Promise<{
@@ -6631,7 +6626,7 @@ export declare class Signer implements SignerInterface {
6631
6626
  } ? "eip2930" : never) | (request extends ({
6632
6627
  accessList?: import("viem").AccessList | undefined;
6633
6628
  authorizationList?: undefined;
6634
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6629
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6635
6630
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6636
6631
  maxFeePerBlobGas?: bigint | undefined;
6637
6632
  maxFeePerGas?: bigint | undefined;
@@ -6640,7 +6635,7 @@ export declare class Signer implements SignerInterface {
6640
6635
  } | {
6641
6636
  accessList?: import("viem").AccessList | undefined;
6642
6637
  authorizationList?: undefined;
6643
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6638
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6644
6639
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6645
6640
  maxFeePerBlobGas?: bigint | undefined;
6646
6641
  maxFeePerGas?: bigint | undefined;
@@ -6712,7 +6707,7 @@ export declare class Signer implements SignerInterface {
6712
6707
  } ? "eip2930" : never) | (request extends ({
6713
6708
  accessList?: import("viem").AccessList | undefined;
6714
6709
  authorizationList?: undefined;
6715
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6710
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6716
6711
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6717
6712
  maxFeePerBlobGas?: bigint | undefined;
6718
6713
  maxFeePerGas?: bigint | undefined;
@@ -6721,7 +6716,7 @@ export declare class Signer implements SignerInterface {
6721
6716
  } | {
6722
6717
  accessList?: import("viem").AccessList | undefined;
6723
6718
  authorizationList?: undefined;
6724
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6719
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6725
6720
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6726
6721
  maxFeePerBlobGas?: bigint | undefined;
6727
6722
  maxFeePerGas?: bigint | undefined;
@@ -6793,7 +6788,7 @@ export declare class Signer implements SignerInterface {
6793
6788
  } ? "eip2930" : never) | (request extends ({
6794
6789
  accessList?: import("viem").AccessList | undefined;
6795
6790
  authorizationList?: undefined;
6796
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6791
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6797
6792
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6798
6793
  maxFeePerBlobGas?: bigint | undefined;
6799
6794
  maxFeePerGas?: bigint | undefined;
@@ -6802,7 +6797,7 @@ export declare class Signer implements SignerInterface {
6802
6797
  } | {
6803
6798
  accessList?: import("viem").AccessList | undefined;
6804
6799
  authorizationList?: undefined;
6805
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6800
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6806
6801
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6807
6802
  maxFeePerBlobGas?: bigint | undefined;
6808
6803
  maxFeePerGas?: bigint | undefined;
@@ -6874,7 +6869,7 @@ export declare class Signer implements SignerInterface {
6874
6869
  } ? "eip2930" : never) | (request extends ({
6875
6870
  accessList?: import("viem").AccessList | undefined;
6876
6871
  authorizationList?: undefined;
6877
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6872
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6878
6873
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6879
6874
  maxFeePerBlobGas?: bigint | undefined;
6880
6875
  maxFeePerGas?: bigint | undefined;
@@ -6883,7 +6878,7 @@ export declare class Signer implements SignerInterface {
6883
6878
  } | {
6884
6879
  accessList?: import("viem").AccessList | undefined;
6885
6880
  authorizationList?: undefined;
6886
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6881
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6887
6882
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6888
6883
  maxFeePerBlobGas?: bigint | undefined;
6889
6884
  maxFeePerGas?: bigint | undefined;
@@ -6955,7 +6950,7 @@ export declare class Signer implements SignerInterface {
6955
6950
  } ? "eip2930" : never) | (request extends ({
6956
6951
  accessList?: import("viem").AccessList | undefined;
6957
6952
  authorizationList?: undefined;
6958
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6953
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6959
6954
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6960
6955
  maxFeePerBlobGas?: bigint | undefined;
6961
6956
  maxFeePerGas?: bigint | undefined;
@@ -6964,7 +6959,7 @@ export declare class Signer implements SignerInterface {
6964
6959
  } | {
6965
6960
  accessList?: import("viem").AccessList | undefined;
6966
6961
  authorizationList?: undefined;
6967
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
6962
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
6968
6963
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
6969
6964
  maxFeePerBlobGas?: bigint | undefined;
6970
6965
  maxFeePerGas?: bigint | undefined;
@@ -7036,7 +7031,7 @@ export declare class Signer implements SignerInterface {
7036
7031
  } ? "eip2930" : never) | (request extends ({
7037
7032
  accessList?: import("viem").AccessList | undefined;
7038
7033
  authorizationList?: undefined;
7039
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7034
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7040
7035
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7041
7036
  maxFeePerBlobGas?: bigint | undefined;
7042
7037
  maxFeePerGas?: bigint | undefined;
@@ -7045,7 +7040,7 @@ export declare class Signer implements SignerInterface {
7045
7040
  } | {
7046
7041
  accessList?: import("viem").AccessList | undefined;
7047
7042
  authorizationList?: undefined;
7048
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7043
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7049
7044
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7050
7045
  maxFeePerBlobGas?: bigint | undefined;
7051
7046
  maxFeePerGas?: bigint | undefined;
@@ -7117,7 +7112,7 @@ export declare class Signer implements SignerInterface {
7117
7112
  } ? "eip2930" : never) | (request extends ({
7118
7113
  accessList?: import("viem").AccessList | undefined;
7119
7114
  authorizationList?: undefined;
7120
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7115
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7121
7116
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7122
7117
  maxFeePerBlobGas?: bigint | undefined;
7123
7118
  maxFeePerGas?: bigint | undefined;
@@ -7126,7 +7121,7 @@ export declare class Signer implements SignerInterface {
7126
7121
  } | {
7127
7122
  accessList?: import("viem").AccessList | undefined;
7128
7123
  authorizationList?: undefined;
7129
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7124
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7130
7125
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7131
7126
  maxFeePerBlobGas?: bigint | undefined;
7132
7127
  maxFeePerGas?: bigint | undefined;
@@ -7198,7 +7193,7 @@ export declare class Signer implements SignerInterface {
7198
7193
  } ? "eip2930" : never) | (request extends ({
7199
7194
  accessList?: import("viem").AccessList | undefined;
7200
7195
  authorizationList?: undefined;
7201
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7196
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7202
7197
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7203
7198
  maxFeePerBlobGas?: bigint | undefined;
7204
7199
  maxFeePerGas?: bigint | undefined;
@@ -7207,7 +7202,7 @@ export declare class Signer implements SignerInterface {
7207
7202
  } | {
7208
7203
  accessList?: import("viem").AccessList | undefined;
7209
7204
  authorizationList?: undefined;
7210
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7205
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7211
7206
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7212
7207
  maxFeePerBlobGas?: bigint | undefined;
7213
7208
  maxFeePerGas?: bigint | undefined;
@@ -7279,7 +7274,7 @@ export declare class Signer implements SignerInterface {
7279
7274
  } ? "eip2930" : never) | (request extends ({
7280
7275
  accessList?: import("viem").AccessList | undefined;
7281
7276
  authorizationList?: undefined;
7282
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7277
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7283
7278
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7284
7279
  maxFeePerBlobGas?: bigint | undefined;
7285
7280
  maxFeePerGas?: bigint | undefined;
@@ -7288,7 +7283,7 @@ export declare class Signer implements SignerInterface {
7288
7283
  } | {
7289
7284
  accessList?: import("viem").AccessList | undefined;
7290
7285
  authorizationList?: undefined;
7291
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7286
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7292
7287
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7293
7288
  maxFeePerBlobGas?: bigint | undefined;
7294
7289
  maxFeePerGas?: bigint | undefined;
@@ -7360,7 +7355,7 @@ export declare class Signer implements SignerInterface {
7360
7355
  } ? "eip2930" : never) | (request extends ({
7361
7356
  accessList?: import("viem").AccessList | undefined;
7362
7357
  authorizationList?: undefined;
7363
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7358
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7364
7359
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7365
7360
  maxFeePerBlobGas?: bigint | undefined;
7366
7361
  maxFeePerGas?: bigint | undefined;
@@ -7369,7 +7364,7 @@ export declare class Signer implements SignerInterface {
7369
7364
  } | {
7370
7365
  accessList?: import("viem").AccessList | undefined;
7371
7366
  authorizationList?: undefined;
7372
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7367
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7373
7368
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7374
7369
  maxFeePerBlobGas?: bigint | undefined;
7375
7370
  maxFeePerGas?: bigint | undefined;
@@ -7441,7 +7436,7 @@ export declare class Signer implements SignerInterface {
7441
7436
  } ? "eip2930" : never) | (request extends ({
7442
7437
  accessList?: import("viem").AccessList | undefined;
7443
7438
  authorizationList?: undefined;
7444
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7439
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7445
7440
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7446
7441
  maxFeePerBlobGas?: bigint | undefined;
7447
7442
  maxFeePerGas?: bigint | undefined;
@@ -7450,7 +7445,7 @@ export declare class Signer implements SignerInterface {
7450
7445
  } | {
7451
7446
  accessList?: import("viem").AccessList | undefined;
7452
7447
  authorizationList?: undefined;
7453
- blobs?: readonly Uint8Array[] | readonly `0x${string}`[] | undefined;
7448
+ blobs?: readonly `0x${string}`[] | readonly Uint8Array[] | undefined;
7454
7449
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
7455
7450
  maxFeePerBlobGas?: bigint | undefined;
7456
7451
  maxFeePerGas?: bigint | undefined;
@@ -7489,58 +7484,58 @@ export declare class Signer implements SignerInterface {
7489
7484
  [x: string]: readonly import("viem").TypedDataParameter[];
7490
7485
  [x: `string[${string}]`]: undefined;
7491
7486
  [x: `function[${string}]`]: undefined;
7492
- [x: `bytes32[${string}]`]: undefined;
7493
7487
  [x: `address[${string}]`]: undefined;
7494
- [x: `bytes[${string}]`]: undefined;
7488
+ [x: `uint48[${string}]`]: undefined;
7489
+ [x: `uint8[${string}]`]: undefined;
7495
7490
  [x: `uint256[${string}]`]: undefined;
7496
- [x: `uint64[${string}]`]: undefined;
7497
7491
  [x: `bytes4[${string}]`]: undefined;
7498
- [x: `uint8[${string}]`]: undefined;
7492
+ [x: `uint64[${string}]`]: undefined;
7493
+ [x: `bytes32[${string}]`]: undefined;
7494
+ [x: `bytes[${string}]`]: undefined;
7499
7495
  [x: `bool[${string}]`]: undefined;
7500
7496
  [x: `bytes1[${string}]`]: undefined;
7497
+ [x: `uint192[${string}]`]: undefined;
7501
7498
  [x: `bytes2[${string}]`]: undefined;
7502
7499
  [x: `bytes3[${string}]`]: undefined;
7503
- [x: `bytes16[${string}]`]: undefined;
7504
7500
  [x: `bytes5[${string}]`]: undefined;
7505
- [x: `bytes23[${string}]`]: undefined;
7506
- [x: `bytes24[${string}]`]: undefined;
7507
- [x: `bytes25[${string}]`]: undefined;
7508
- [x: `bytes31[${string}]`]: undefined;
7509
- [x: `bytes7[${string}]`]: undefined;
7510
- [x: `bytes15[${string}]`]: undefined;
7511
7501
  [x: `bytes6[${string}]`]: undefined;
7512
- [x: `bytes8[${string}]`]: undefined;
7513
7502
  [x: `bytes9[${string}]`]: undefined;
7514
7503
  [x: `bytes10[${string}]`]: undefined;
7504
+ [x: `bytes7[${string}]`]: undefined;
7505
+ [x: `bytes8[${string}]`]: undefined;
7515
7506
  [x: `bytes11[${string}]`]: undefined;
7516
7507
  [x: `bytes12[${string}]`]: undefined;
7517
7508
  [x: `bytes13[${string}]`]: undefined;
7518
7509
  [x: `bytes14[${string}]`]: undefined;
7510
+ [x: `bytes15[${string}]`]: undefined;
7511
+ [x: `bytes16[${string}]`]: undefined;
7519
7512
  [x: `bytes17[${string}]`]: undefined;
7520
7513
  [x: `bytes18[${string}]`]: undefined;
7521
7514
  [x: `bytes19[${string}]`]: undefined;
7522
7515
  [x: `bytes20[${string}]`]: undefined;
7523
7516
  [x: `bytes21[${string}]`]: undefined;
7524
7517
  [x: `bytes22[${string}]`]: undefined;
7518
+ [x: `bytes23[${string}]`]: undefined;
7519
+ [x: `bytes24[${string}]`]: undefined;
7520
+ [x: `bytes25[${string}]`]: undefined;
7525
7521
  [x: `bytes26[${string}]`]: undefined;
7526
7522
  [x: `bytes27[${string}]`]: undefined;
7527
7523
  [x: `bytes28[${string}]`]: undefined;
7528
7524
  [x: `bytes29[${string}]`]: undefined;
7529
7525
  [x: `bytes30[${string}]`]: undefined;
7526
+ [x: `bytes31[${string}]`]: undefined;
7530
7527
  [x: `int[${string}]`]: undefined;
7528
+ [x: `int8[${string}]`]: undefined;
7531
7529
  [x: `int16[${string}]`]: undefined;
7532
7530
  [x: `int24[${string}]`]: undefined;
7533
- [x: `int256[${string}]`]: undefined;
7534
7531
  [x: `int32[${string}]`]: undefined;
7535
- [x: `int56[${string}]`]: undefined;
7536
- [x: `int64[${string}]`]: undefined;
7537
- [x: `int88[${string}]`]: undefined;
7538
- [x: `int160[${string}]`]: undefined;
7539
- [x: `int8[${string}]`]: undefined;
7540
7532
  [x: `int40[${string}]`]: undefined;
7541
7533
  [x: `int48[${string}]`]: undefined;
7534
+ [x: `int56[${string}]`]: undefined;
7535
+ [x: `int64[${string}]`]: undefined;
7542
7536
  [x: `int72[${string}]`]: undefined;
7543
7537
  [x: `int80[${string}]`]: undefined;
7538
+ [x: `int88[${string}]`]: undefined;
7544
7539
  [x: `int96[${string}]`]: undefined;
7545
7540
  [x: `int104[${string}]`]: undefined;
7546
7541
  [x: `int112[${string}]`]: undefined;
@@ -7549,6 +7544,7 @@ export declare class Signer implements SignerInterface {
7549
7544
  [x: `int136[${string}]`]: undefined;
7550
7545
  [x: `int144[${string}]`]: undefined;
7551
7546
  [x: `int152[${string}]`]: undefined;
7547
+ [x: `int160[${string}]`]: undefined;
7552
7548
  [x: `int168[${string}]`]: undefined;
7553
7549
  [x: `int176[${string}]`]: undefined;
7554
7550
  [x: `int184[${string}]`]: undefined;
@@ -7560,17 +7556,16 @@ export declare class Signer implements SignerInterface {
7560
7556
  [x: `int232[${string}]`]: undefined;
7561
7557
  [x: `int240[${string}]`]: undefined;
7562
7558
  [x: `int248[${string}]`]: undefined;
7559
+ [x: `int256[${string}]`]: undefined;
7563
7560
  [x: `uint[${string}]`]: undefined;
7564
7561
  [x: `uint16[${string}]`]: undefined;
7565
7562
  [x: `uint24[${string}]`]: undefined;
7566
7563
  [x: `uint32[${string}]`]: undefined;
7567
- [x: `uint56[${string}]`]: undefined;
7568
- [x: `uint88[${string}]`]: undefined;
7569
- [x: `uint160[${string}]`]: undefined;
7570
7564
  [x: `uint40[${string}]`]: undefined;
7571
- [x: `uint48[${string}]`]: undefined;
7565
+ [x: `uint56[${string}]`]: undefined;
7572
7566
  [x: `uint72[${string}]`]: undefined;
7573
7567
  [x: `uint80[${string}]`]: undefined;
7568
+ [x: `uint88[${string}]`]: undefined;
7574
7569
  [x: `uint96[${string}]`]: undefined;
7575
7570
  [x: `uint104[${string}]`]: undefined;
7576
7571
  [x: `uint112[${string}]`]: undefined;
@@ -7579,10 +7574,10 @@ export declare class Signer implements SignerInterface {
7579
7574
  [x: `uint136[${string}]`]: undefined;
7580
7575
  [x: `uint144[${string}]`]: undefined;
7581
7576
  [x: `uint152[${string}]`]: undefined;
7577
+ [x: `uint160[${string}]`]: undefined;
7582
7578
  [x: `uint168[${string}]`]: undefined;
7583
7579
  [x: `uint176[${string}]`]: undefined;
7584
7580
  [x: `uint184[${string}]`]: undefined;
7585
- [x: `uint192[${string}]`]: undefined;
7586
7581
  [x: `uint200[${string}]`]: undefined;
7587
7582
  [x: `uint208[${string}]`]: undefined;
7588
7583
  [x: `uint216[${string}]`]: undefined;
@@ -7591,57 +7586,57 @@ export declare class Signer implements SignerInterface {
7591
7586
  [x: `uint240[${string}]`]: undefined;
7592
7587
  [x: `uint248[${string}]`]: undefined;
7593
7588
  string?: undefined;
7594
- bytes32?: undefined;
7595
7589
  address?: undefined;
7596
- bytes?: undefined;
7590
+ uint48?: undefined;
7591
+ uint8?: undefined;
7597
7592
  uint256?: undefined;
7598
- uint64?: undefined;
7599
7593
  bytes4?: undefined;
7600
- uint8?: undefined;
7594
+ uint64?: undefined;
7595
+ bytes32?: undefined;
7596
+ bytes?: undefined;
7601
7597
  bool?: undefined;
7602
7598
  bytes1?: undefined;
7599
+ uint192?: undefined;
7603
7600
  bytes2?: undefined;
7604
7601
  bytes3?: undefined;
7605
- bytes16?: undefined;
7606
7602
  bytes5?: undefined;
7607
- bytes23?: undefined;
7608
- bytes24?: undefined;
7609
- bytes25?: undefined;
7610
- bytes31?: undefined;
7611
- bytes7?: undefined;
7612
- bytes15?: undefined;
7613
7603
  bytes6?: undefined;
7614
- bytes8?: undefined;
7615
7604
  bytes9?: undefined;
7616
7605
  bytes10?: undefined;
7606
+ bytes7?: undefined;
7607
+ bytes8?: undefined;
7617
7608
  bytes11?: undefined;
7618
7609
  bytes12?: undefined;
7619
7610
  bytes13?: undefined;
7620
7611
  bytes14?: undefined;
7612
+ bytes15?: undefined;
7613
+ bytes16?: undefined;
7621
7614
  bytes17?: undefined;
7622
7615
  bytes18?: undefined;
7623
7616
  bytes19?: undefined;
7624
7617
  bytes20?: undefined;
7625
7618
  bytes21?: undefined;
7626
7619
  bytes22?: undefined;
7620
+ bytes23?: undefined;
7621
+ bytes24?: undefined;
7622
+ bytes25?: undefined;
7627
7623
  bytes26?: undefined;
7628
7624
  bytes27?: undefined;
7629
7625
  bytes28?: undefined;
7630
7626
  bytes29?: undefined;
7631
7627
  bytes30?: undefined;
7628
+ bytes31?: undefined;
7629
+ int8?: undefined;
7632
7630
  int16?: undefined;
7633
7631
  int24?: undefined;
7634
- int256?: undefined;
7635
7632
  int32?: undefined;
7636
- int56?: undefined;
7637
- int64?: undefined;
7638
- int88?: undefined;
7639
- int160?: undefined;
7640
- int8?: undefined;
7641
7633
  int40?: undefined;
7642
7634
  int48?: undefined;
7635
+ int56?: undefined;
7636
+ int64?: undefined;
7643
7637
  int72?: undefined;
7644
7638
  int80?: undefined;
7639
+ int88?: undefined;
7645
7640
  int96?: undefined;
7646
7641
  int104?: undefined;
7647
7642
  int112?: undefined;
@@ -7650,6 +7645,7 @@ export declare class Signer implements SignerInterface {
7650
7645
  int136?: undefined;
7651
7646
  int144?: undefined;
7652
7647
  int152?: undefined;
7648
+ int160?: undefined;
7653
7649
  int168?: undefined;
7654
7650
  int176?: undefined;
7655
7651
  int184?: undefined;
@@ -7661,16 +7657,15 @@ export declare class Signer implements SignerInterface {
7661
7657
  int232?: undefined;
7662
7658
  int240?: undefined;
7663
7659
  int248?: undefined;
7660
+ int256?: undefined;
7664
7661
  uint16?: undefined;
7665
7662
  uint24?: undefined;
7666
7663
  uint32?: undefined;
7667
- uint56?: undefined;
7668
- uint88?: undefined;
7669
- uint160?: undefined;
7670
7664
  uint40?: undefined;
7671
- uint48?: undefined;
7665
+ uint56?: undefined;
7672
7666
  uint72?: undefined;
7673
7667
  uint80?: undefined;
7668
+ uint88?: undefined;
7674
7669
  uint96?: undefined;
7675
7670
  uint104?: undefined;
7676
7671
  uint112?: undefined;
@@ -7679,10 +7674,10 @@ export declare class Signer implements SignerInterface {
7679
7674
  uint136?: undefined;
7680
7675
  uint144?: undefined;
7681
7676
  uint152?: undefined;
7677
+ uint160?: undefined;
7682
7678
  uint168?: undefined;
7683
7679
  uint176?: undefined;
7684
7680
  uint184?: undefined;
7685
- uint192?: undefined;
7686
7681
  uint200?: undefined;
7687
7682
  uint208?: undefined;
7688
7683
  uint216?: undefined;
@@ -7719,6 +7714,7 @@ export declare class Signer implements SignerInterface {
7719
7714
  private readonly clearState;
7720
7715
  get accounts(): `0x${string}`[];
7721
7716
  get chain(): Chain;
7717
+ private getBundlerClient;
7722
7718
  createWalletClient(): void;
7723
7719
  handshake(): Promise<Address[]>;
7724
7720
  switchChain(chainId: number): boolean;