@dhedge/trading-widget 0.0.1 → 0.0.3

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 (314) hide show
  1. package/BPGFTGZB-2d541509.cjs +1101 -0
  2. package/BPGFTGZB-d2a161d1.js +9284 -0
  3. package/core-kit/abi/aave-lending-pool.d.ts +846 -0
  4. package/core-kit/abi/dhedge-easy-swapper.d.ts +231 -0
  5. package/core-kit/abi/dhedge-staking-v2.d.ts +127 -0
  6. package/core-kit/abi/erc20.d.ts +1 -0
  7. package/core-kit/abi/index.d.ts +9 -0
  8. package/core-kit/abi/pool-factory.d.ts +57 -0
  9. package/core-kit/abi/pool-logic.d.ts +823 -0
  10. package/core-kit/abi/pool-manager-logic.d.ts +70 -0
  11. package/core-kit/abi/reward-distribution.d.ts +121 -0
  12. package/core-kit/abi/synthetix-v3/i-trusted-multicall-forwarder.d.ts +41 -0
  13. package/core-kit/abi/synthetix-v3/ierc-2771-context.d.ts +15 -0
  14. package/core-kit/abi/synthetix-v3/ierc-7412.d.ts +41 -0
  15. package/core-kit/abi/synthetix-v3/index.d.ts +6 -0
  16. package/core-kit/abi/synthetix-v3/synthetix-v3-asset-guard.d.ts +37 -0
  17. package/core-kit/abi/synthetix-v3/synthetix-v3-contract-guard.d.ts +45 -0
  18. package/core-kit/abi/synthetix-v3/synthetix-v3-core.d.ts +41 -0
  19. package/core-kit/const/config.d.ts +10 -0
  20. package/core-kit/const/contracts/arbitrum.d.ts +3 -0
  21. package/core-kit/const/contracts/base.d.ts +2 -0
  22. package/core-kit/const/contracts/index.d.ts +4 -0
  23. package/core-kit/const/contracts/optimism.d.ts +5 -0
  24. package/core-kit/const/contracts/polygon.d.ts +4 -0
  25. package/core-kit/const/currency.d.ts +2 -0
  26. package/core-kit/const/default-data.d.ts +23 -0
  27. package/core-kit/const/error.d.ts +4 -0
  28. package/core-kit/const/index.d.ts +11 -0
  29. package/core-kit/const/links.d.ts +1 -0
  30. package/core-kit/const/logger.d.ts +38 -0
  31. package/core-kit/const/network.d.ts +2232 -0
  32. package/core-kit/const/synthetix.d.ts +4 -0
  33. package/core-kit/const/tokens/arbitrum.d.ts +5 -0
  34. package/core-kit/const/tokens/base.d.ts +5 -0
  35. package/core-kit/const/tokens/index.d.ts +8 -0
  36. package/core-kit/const/tokens/optimism.d.ts +10 -0
  37. package/core-kit/const/tokens/polygon.d.ts +9 -0
  38. package/core-kit/const/web3.d.ts +4 -0
  39. package/core-kit/hooks/component/index.d.ts +2 -0
  40. package/core-kit/hooks/component/panel.d.ts +1 -0
  41. package/core-kit/hooks/component/tab.d.ts +2 -0
  42. package/core-kit/hooks/pool/index.d.ts +14 -0
  43. package/core-kit/hooks/pool/multicall/index.d.ts +4 -0
  44. package/core-kit/hooks/pool/multicall/use-pool-manager.dynamic.d.ts +910 -0
  45. package/core-kit/hooks/pool/multicall/use-pool-manager.static.d.ts +153 -0
  46. package/core-kit/hooks/pool/multicall/use-pool.static.d.ts +2432 -0
  47. package/core-kit/hooks/pool/multicall/use-pools.dynamic.d.ts +2489 -0
  48. package/core-kit/hooks/pool/synthetixV3/use-pool-token-price-mutable.d.ts +8 -0
  49. package/core-kit/hooks/pool/synthetixV3/use-synthetix-v3-asset-balance.d.ts +8 -0
  50. package/core-kit/hooks/pool/synthetixV3/use-total-funds-value-mutable.d.ts +8 -0
  51. package/core-kit/hooks/pool/use-check-whitelist.d.ts +2 -0
  52. package/core-kit/hooks/pool/use-contract-pool-composition.d.ts +3 -0
  53. package/core-kit/hooks/pool/use-invalidate-pool-contract-data.d.ts +1 -0
  54. package/core-kit/hooks/pool/use-is-dhedge-pool.d.ts +5 -0
  55. package/core-kit/hooks/pool/use-manager-logic-address.d.ts +2 -0
  56. package/core-kit/hooks/pool/use-pool-composition-with-fraction.d.ts +14 -0
  57. package/core-kit/hooks/pool/use-pool-composition.d.ts +3 -0
  58. package/core-kit/hooks/pool/use-pool-dynamic-contract-data.d.ts +19 -0
  59. package/core-kit/hooks/pool/use-pool-fees.d.ts +12 -0
  60. package/core-kit/hooks/pool/use-pool-manager-logic-data.d.ts +14 -0
  61. package/core-kit/hooks/pool/use-pool-token-price.d.ts +9 -0
  62. package/core-kit/hooks/referral/index.d.ts +1 -0
  63. package/core-kit/hooks/referral/use-referral-program.d.ts +2 -0
  64. package/core-kit/hooks/state/action.d.ts +23 -0
  65. package/core-kit/hooks/state/context.d.ts +2 -0
  66. package/core-kit/hooks/state/index.d.ts +9 -0
  67. package/core-kit/hooks/state/input.d.ts +13 -0
  68. package/core-kit/hooks/state/meta.d.ts +8 -0
  69. package/core-kit/hooks/state/modal.d.ts +5 -0
  70. package/core-kit/hooks/state/pool.d.ts +16 -0
  71. package/core-kit/hooks/state/settings.d.ts +5 -0
  72. package/core-kit/hooks/state/transaction.d.ts +5 -0
  73. package/core-kit/hooks/state/type.d.ts +6 -0
  74. package/core-kit/hooks/trading/allowance/index.d.ts +3 -0
  75. package/core-kit/hooks/trading/allowance/use-approve.d.ts +9 -0
  76. package/core-kit/hooks/trading/allowance/use-can-spend.d.ts +11 -0
  77. package/core-kit/hooks/trading/allowance/use-token-allowance-handler.d.ts +1 -0
  78. package/core-kit/hooks/trading/deposit/index.d.ts +9 -0
  79. package/core-kit/hooks/trading/deposit/use-deposit-allowance.d.ts +4 -0
  80. package/core-kit/hooks/trading/deposit/use-deposit-method-handler.d.ts +2 -0
  81. package/core-kit/hooks/trading/deposit/use-deposit-quote.d.ts +2 -0
  82. package/core-kit/hooks/trading/deposit/use-deposit-slippage.d.ts +1 -0
  83. package/core-kit/hooks/trading/deposit/use-deposit.d.ts +2 -0
  84. package/core-kit/hooks/trading/deposit/use-handle-pool-deposit-data.d.ts +1 -0
  85. package/core-kit/hooks/trading/deposit/use-pool-deposit-asset-address.d.ts +9 -0
  86. package/core-kit/hooks/trading/deposit/use-pool-deposit-tokens.d.ts +2 -0
  87. package/core-kit/hooks/trading/deposit/use-should-be-whitelisted.d.ts +4 -0
  88. package/core-kit/hooks/trading/index.d.ts +15 -0
  89. package/core-kit/hooks/trading/projected-earnings/use-deposit-projected-earnings.d.ts +2 -0
  90. package/core-kit/hooks/trading/projected-earnings/use-projected-earnings-core.d.ts +10 -0
  91. package/core-kit/hooks/trading/use-asset-price.d.ts +8 -0
  92. package/core-kit/hooks/trading/use-exchange-rate.d.ts +5 -0
  93. package/core-kit/hooks/trading/use-handle-pool-swap-info.d.ts +1 -0
  94. package/core-kit/hooks/trading/use-handle-trade.d.ts +6 -0
  95. package/core-kit/hooks/trading/use-is-easy-swapper-trading.d.ts +1 -0
  96. package/core-kit/hooks/trading/use-is-trading-enabled.d.ts +1 -0
  97. package/core-kit/hooks/trading/use-max-slippage-placeholder.d.ts +1 -0
  98. package/core-kit/hooks/trading/use-min-receive-text.d.ts +4 -0
  99. package/core-kit/hooks/trading/use-raw-asset-price.d.ts +8 -0
  100. package/core-kit/hooks/trading/use-synthetix-v3-oracles-update.d.ts +10 -0
  101. package/core-kit/hooks/trading/use-trading-params.d.ts +2 -0
  102. package/core-kit/hooks/trading/use-trading-price-diff.d.ts +8 -0
  103. package/core-kit/hooks/trading/use-trading-result-handling.d.ts +1 -0
  104. package/core-kit/hooks/trading/use-trading-settle-handler.d.ts +3 -0
  105. package/core-kit/hooks/trading/withdraw/index.d.ts +6 -0
  106. package/core-kit/hooks/trading/withdraw/use-is-multi-asset-withdraw.d.ts +1 -0
  107. package/core-kit/hooks/trading/withdraw/use-withdraw-allowance.d.ts +4 -0
  108. package/core-kit/hooks/trading/withdraw/use-withdraw-quote.d.ts +2 -0
  109. package/core-kit/hooks/trading/withdraw/use-withdraw-slippage.d.ts +9 -0
  110. package/core-kit/hooks/trading/withdraw/use-withdraw-type-handler.d.ts +1 -0
  111. package/core-kit/hooks/trading/withdraw/use-withdraw.d.ts +2 -0
  112. package/core-kit/hooks/user/index.d.ts +3 -0
  113. package/core-kit/hooks/user/use-is-insufficient-balance.d.ts +1 -0
  114. package/core-kit/hooks/user/use-is-pool-manager-account.d.ts +1 -0
  115. package/core-kit/hooks/user/use-user-token-balance.d.ts +8 -0
  116. package/core-kit/hooks/utils/index.d.ts +2 -0
  117. package/core-kit/hooks/utils/use-browser-storage.d.ts +1 -0
  118. package/core-kit/hooks/utils/use-debounce.d.ts +1 -0
  119. package/core-kit/hooks/web3/index.d.ts +13 -0
  120. package/core-kit/hooks/web3/use-account.d.ts +7 -0
  121. package/core-kit/hooks/web3/use-balance.d.ts +2 -0
  122. package/core-kit/hooks/web3/use-contract-function.d.ts +17 -0
  123. package/core-kit/hooks/web3/use-contract-read-error-logging.d.ts +6 -0
  124. package/core-kit/hooks/web3/use-contract-reads-error-logging.d.ts +5 -0
  125. package/core-kit/hooks/web3/use-gas-price.d.ts +2 -0
  126. package/core-kit/hooks/web3/use-invalidate-on-block.d.ts +6 -0
  127. package/core-kit/hooks/web3/use-invalidate-trading-queries.d.ts +4 -0
  128. package/core-kit/hooks/web3/use-is-wallet-connected.d.ts +1 -0
  129. package/core-kit/hooks/web3/use-network.d.ts +13 -0
  130. package/core-kit/hooks/web3/use-static-call-query.d.ts +12 -0
  131. package/core-kit/hooks/web3/use-token-allowance.d.ts +3 -0
  132. package/core-kit/index.d.ts +1 -0
  133. package/core-kit/models/buying-with-easyswapper-args.d.ts +18 -0
  134. package/core-kit/models/buying-with-native-asset-args.d.ts +16 -0
  135. package/core-kit/models/buying-with-pool-logic-args.d.ts +14 -0
  136. package/core-kit/models/default-selling-params.d.ts +18 -0
  137. package/core-kit/models/estimation-error.d.ts +20 -0
  138. package/core-kit/models/index.d.ts +5 -0
  139. package/core-kit/providers/index.d.ts +6 -0
  140. package/core-kit/providers/wagmi-provider.d.ts +2 -0
  141. package/core-kit/types/config.types.d.ts +29 -0
  142. package/core-kit/types/index.d.ts +8 -0
  143. package/core-kit/types/pool.types.d.ts +16 -0
  144. package/core-kit/types/referral.types.d.ts +12 -0
  145. package/core-kit/types/state.types.d.ts +113 -0
  146. package/core-kit/types/synthetix-v3.types.d.ts +9 -0
  147. package/core-kit/types/trading-panel.types.d.ts +49 -0
  148. package/core-kit/types/trading.types.d.ts +21 -0
  149. package/core-kit/types/web3.types.d.ts +51 -0
  150. package/core-kit/utils/error.d.ts +10 -0
  151. package/core-kit/utils/formatter.d.ts +16 -0
  152. package/core-kit/utils/index.d.ts +9 -0
  153. package/core-kit/utils/number.d.ts +8 -0
  154. package/core-kit/utils/synthetix-v3/eip-7412.d.ts +10 -0
  155. package/core-kit/utils/synthetix-v3/multicall-forwarder-batcher.d.ts +8 -0
  156. package/core-kit/utils/synthetix-v3/parse-error.d.ts +3 -0
  157. package/core-kit/utils/synthetix-v3/pyth-adapter.d.ts +12 -0
  158. package/core-kit/utils/synthetix.d.ts +10 -0
  159. package/core-kit/utils/token.d.ts +4 -0
  160. package/core-kit/utils/transaction.d.ts +4 -0
  161. package/core-kit/utils/ua.d.ts +1 -0
  162. package/core-kit/utils/url.d.ts +3 -0
  163. package/core-kit/utils/web3.d.ts +11 -0
  164. package/index-391fb5a2.js +38864 -0
  165. package/index-a69f882e.cjs +217 -0
  166. package/index.cjs +1 -0
  167. package/index.d.ts +18 -1
  168. package/index.js +264 -337
  169. package/package.json +18 -11
  170. package/pyth-adapter-1d7e0e82.js +4106 -0
  171. package/pyth-adapter-4f5ca109.cjs +11 -0
  172. package/style.css +1 -1
  173. package/{components → trading-widget/components}/common/badge/token-badge/token-badge.d.ts +1 -1
  174. package/{components → trading-widget/components}/common/icon/token-icon/token-icon.d.ts +1 -1
  175. package/trading-widget/components/common/layout/overlay/overlay.d.ts +7 -0
  176. package/{components → trading-widget/components}/common/meta/transaction-disclosure/transaction-disclosure-item/transaction-disclosure-item.d.ts +1 -1
  177. package/{components → trading-widget/components}/common/meta/transaction-disclosure/transaction-disclosure.d.ts +1 -1
  178. package/{components → trading-widget/components}/common/spinner/spinner.d.ts +1 -1
  179. package/{components → trading-widget/components}/common/tab/tab-button/tab-button.d.ts +1 -1
  180. package/trading-widget/components/default-examples/image/image.d.ts +3 -0
  181. package/trading-widget/components/deposit/button/trade-button/trade-button.hooks.d.ts +5 -0
  182. package/{components → trading-widget/components}/deposit/input-group/input-group.hooks.d.ts +1 -1
  183. package/{components → trading-widget/components}/deposit/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +2 -2
  184. package/{components → trading-widget/components}/index.d.ts +1 -1
  185. package/{components → trading-widget/components}/widget/widget-input/asset-composition-table/asset-composition-table.hooks.d.ts +2 -2
  186. package/{components → trading-widget/components}/widget/widget-input/token-selector/token-selector.d.ts +1 -1
  187. package/{components → trading-widget/components}/widget/widget-input/widget-input.hooks.d.ts +1 -1
  188. package/trading-widget/components/widget/widget-overlay/high-slippage-overlay/high-slippage-overlay.d.ts +3 -0
  189. package/trading-widget/components/widget/widget-overlay/index.d.ts +4 -0
  190. package/trading-widget/components/widget/widget-overlay/overlay-switch/overlay-switch.d.ts +2 -0
  191. package/trading-widget/components/widget/widget-overlay/terms-of-use-overlay/terms-of-use-overlay.d.ts +3 -0
  192. package/{components → trading-widget/components}/widget/widget-settings/slippage-selector/slippage-selector.hooks.d.ts +1 -1
  193. package/{components → trading-widget/components}/widget/widget-settings/widget-settings.d.ts +1 -1
  194. package/{components → trading-widget/components}/widget/widget.hooks.d.ts +1 -1
  195. package/{components → trading-widget/components}/withdraw/button/valid-withdraw-button/valid-withdraw-button.hooks.d.ts +1 -1
  196. package/{components → trading-widget/components}/withdraw/input-group/input-group.hooks.d.ts +1 -1
  197. package/{components → trading-widget/components}/withdraw/meta/transaction-disclosure/transaction-disclosure.hooks.d.ts +1 -1
  198. package/{constants → trading-widget/constants}/synthetix-v3.d.ts +1 -1
  199. package/{hooks → trading-widget/hooks}/use-get-slippage-placeholder.d.ts +1 -1
  200. package/{hooks → trading-widget/hooks}/use-get-theme-type-by-slippage.d.ts +1 -1
  201. package/{hooks → trading-widget/hooks}/use-trading-type-name.d.ts +1 -1
  202. package/{hooks → trading-widget/hooks}/use-user-staked-pools.d.ts +1 -1
  203. package/trading-widget/hooks/use-user-vault-balance.d.ts +3 -0
  204. package/{hooks → trading-widget/hooks}/use-user-vaults-balances.d.ts +1 -1
  205. package/{providers → trading-widget/providers}/component-provider/component-provider.d.ts +1 -0
  206. package/{providers → trading-widget/providers}/component-provider/component-provider.hooks.d.ts +1 -0
  207. package/{providers → trading-widget/providers}/component-provider/component-provider.types.d.ts +2 -0
  208. package/{providers → trading-widget/providers}/config-provider/config-provider.types.d.ts +3 -1
  209. package/trading-widget/providers/overlay-provider/index.d.ts +2 -0
  210. package/trading-widget/providers/overlay-provider/overlay-provider.d.ts +2 -0
  211. package/trading-widget/providers/overlay-provider/overlay-provider.hooks.d.ts +12 -0
  212. package/trading-widget/providers/overlay-provider/overlay-provider.types.d.ts +12 -0
  213. package/{providers → trading-widget/providers}/theme-provider/theme-provider.types.d.ts +3 -3
  214. package/{providers → trading-widget/providers}/translation-provider/translation-provider.types.d.ts +14 -0
  215. package/{types → trading-widget/types}/index.d.ts +1 -0
  216. package/trading-widget/types/overlay.types.d.ts +8 -0
  217. package/{types → trading-widget/types}/staking.types.d.ts +1 -1
  218. package/{utils → trading-widget/utils}/format.d.ts +1 -1
  219. package/{utils → trading-widget/utils}/synthetix-v3.d.ts +3 -3
  220. package/components/common/layout/overlay/overlay.d.ts +0 -2
  221. package/components/default-examples/image/image.d.ts +0 -3
  222. package/components/widget/widget-overlay/index.d.ts +0 -1
  223. package/hooks/use-user-vault-balance.d.ts +0 -3
  224. package/index.mjs +0 -54443
  225. package/native-15074a2a.mjs +0 -15
  226. package/native-243c3d4c.js +0 -1
  227. /package/{components → trading-widget/components}/common/balance/balance.d.ts +0 -0
  228. /package/{components → trading-widget/components}/common/button/action-button/action-button.d.ts +0 -0
  229. /package/{components → trading-widget/components}/common/button/disabled-button-with-prompt/disabled-button-with-prompt.d.ts +0 -0
  230. /package/{components → trading-widget/components}/common/button/icon-button/icon-button.d.ts +0 -0
  231. /package/{components → trading-widget/components}/common/button/max-balance-button/max-balance-button.d.ts +0 -0
  232. /package/{components → trading-widget/components}/common/index.d.ts +0 -0
  233. /package/{components → trading-widget/components}/common/layout/balance/balance.d.ts +0 -0
  234. /package/{components → trading-widget/components}/common/layout/index.d.ts +0 -0
  235. /package/{components → trading-widget/components}/common/layout/input-group/input-group.d.ts +0 -0
  236. /package/{components → trading-widget/components}/common/layout/meta/meta.d.ts +0 -0
  237. /package/{components → trading-widget/components}/common/layout/panel/panel.d.ts +0 -0
  238. /package/{components → trading-widget/components}/common/layout/settings/settings-popover/settings-popover.d.ts +0 -0
  239. /package/{components → trading-widget/components}/common/layout/settings/settings.d.ts +0 -0
  240. /package/{components → trading-widget/components}/common/overlay/pending-overlay/pending-overlay.d.ts +0 -0
  241. /package/{components → trading-widget/components}/common/settings/settings-option/settings-option.d.ts +0 -0
  242. /package/{components → trading-widget/components}/common/skeleton/skeleton.d.ts +0 -0
  243. /package/{components → trading-widget/components}/common/switch/switch.d.ts +0 -0
  244. /package/{components → trading-widget/components}/common/tooltip/info-tooltip/info-tooltip.d.ts +0 -0
  245. /package/{components → trading-widget/components}/common/tooltip/tooltip-icon/tooltip-icon.d.ts +0 -0
  246. /package/{components → trading-widget/components}/common/tooltip/tooltip-wrapper/tooltip-wrapper.d.ts +0 -0
  247. /package/{components → trading-widget/components}/deposit/balance/balance.d.ts +0 -0
  248. /package/{components → trading-widget/components}/deposit/balance/balance.hooks.d.ts +0 -0
  249. /package/{components → trading-widget/components}/deposit/button/trade-button/trade-button.d.ts +0 -0
  250. /package/{components → trading-widget/components}/deposit/button/valid-deposit-button/valid-deposit-button.d.ts +0 -0
  251. /package/{components → trading-widget/components}/deposit/button/valid-deposit-button/valid-deposit-button.hooks.d.ts +0 -0
  252. /package/{components → trading-widget/components}/deposit/index.d.ts +0 -0
  253. /package/{components → trading-widget/components}/deposit/input-group/input-group.d.ts +0 -0
  254. /package/{components → trading-widget/components}/deposit/meta/meta.d.ts +0 -0
  255. /package/{components → trading-widget/components}/deposit/meta/transaction-disclosure/transaction-disclosure.d.ts +0 -0
  256. /package/{components → trading-widget/components}/deposit/settings/deposit-fee-switch/deposit-fee-switch.d.ts +0 -0
  257. /package/{components → trading-widget/components}/deposit/settings/deposit-fee-switch/deposit-fee-switch.hooks.d.ts +0 -0
  258. /package/{components → trading-widget/components}/deposit/settings/deposit-settings/deposit-settings.d.ts +0 -0
  259. /package/{components → trading-widget/components}/deposit/settings/deposit-settings/deposit-settings.hooks.d.ts +0 -0
  260. /package/{components → trading-widget/components}/deposit/tab-panel/tab-panel.d.ts +0 -0
  261. /package/{components → trading-widget/components}/deposit/tab-panel/tab-panel.hooks.d.ts +0 -0
  262. /package/{components → trading-widget/components}/widget/widget-buttons/approve-button/approve-button.d.ts +0 -0
  263. /package/{components → trading-widget/components}/widget/widget-buttons/approve-button/approve-button.hooks.d.ts +0 -0
  264. /package/{components → trading-widget/components}/widget/widget-buttons/connect-wallet-button/connect-wallet-button.d.ts +0 -0
  265. /package/{components → trading-widget/components}/widget/widget-buttons/index.d.ts +0 -0
  266. /package/{components → trading-widget/components}/widget/widget-buttons/switch-network-button/switch-network-button.d.ts +0 -0
  267. /package/{components → trading-widget/components}/widget/widget-buttons/valid-network-button/valid-network-button.d.ts +0 -0
  268. /package/{components → trading-widget/components}/widget/widget-buttons/valid-network-button/valid-network-button.hooks.d.ts +0 -0
  269. /package/{components → trading-widget/components}/widget/widget-input/asset-composition-table/asset-composition-table.d.ts +0 -0
  270. /package/{components → trading-widget/components}/widget/widget-input/index.d.ts +0 -0
  271. /package/{components → trading-widget/components}/widget/widget-input/token-selector/token-selector.hooks.d.ts +0 -0
  272. /package/{components → trading-widget/components}/widget/widget-input/widget-input.d.ts +0 -0
  273. /package/{components → trading-widget/components}/widget/widget-input/widget-input.utils.d.ts +0 -0
  274. /package/{components → trading-widget/components}/widget/widget-meta/exchange-rate/exchange-rate.d.ts +0 -0
  275. /package/{components → trading-widget/components}/widget/widget-meta/index.d.ts +0 -0
  276. /package/{components → trading-widget/components}/widget/widget-overlay/pending-approval-overlay/pending-approval-overlay.d.ts +0 -0
  277. /package/{components → trading-widget/components}/widget/widget-overlay/pending-approval-overlay/pending-approval-overlay.hooks.d.ts +0 -0
  278. /package/{components → trading-widget/components}/widget/widget-settings/index.d.ts +0 -0
  279. /package/{components → trading-widget/components}/widget/widget-settings/slippage-selector/slippage-selector.d.ts +0 -0
  280. /package/{components → trading-widget/components}/widget/widget-settings/token-allowance-switch/token-allowance-switch.d.ts +0 -0
  281. /package/{components → trading-widget/components}/widget/widget-tabs/widget-tabs.d.ts +0 -0
  282. /package/{components → trading-widget/components}/widget/widget.d.ts +0 -0
  283. /package/{components → trading-widget/components}/withdraw/balance/balance.d.ts +0 -0
  284. /package/{components → trading-widget/components}/withdraw/balance/balance.hooks.d.ts +0 -0
  285. /package/{components → trading-widget/components}/withdraw/button/trade-button/trade-button.d.ts +0 -0
  286. /package/{components → trading-widget/components}/withdraw/button/valid-withdraw-button/valid-withdraw-button.d.ts +0 -0
  287. /package/{components → trading-widget/components}/withdraw/index.d.ts +0 -0
  288. /package/{components → trading-widget/components}/withdraw/input-group/input-group.d.ts +0 -0
  289. /package/{components → trading-widget/components}/withdraw/meta/meta.d.ts +0 -0
  290. /package/{components → trading-widget/components}/withdraw/meta/transaction-disclosure/transaction-disclosure.d.ts +0 -0
  291. /package/{components → trading-widget/components}/withdraw/settings/withdraw-settings/withdraw-settings.d.ts +0 -0
  292. /package/{components → trading-widget/components}/withdraw/tab-panel/tab-panel.d.ts +0 -0
  293. /package/{components → trading-widget/components}/withdraw/tab-panel/tab-panel.hooks.d.ts +0 -0
  294. /package/{constants → trading-widget/constants}/tab.d.ts +0 -0
  295. /package/{hooks → trading-widget/hooks}/index.d.ts +0 -0
  296. /package/{hooks → trading-widget/hooks}/use-crypto-icon.d.ts +0 -0
  297. /package/{hooks → trading-widget/hooks}/use-high-slippage-check.d.ts +0 -0
  298. /package/{hooks → trading-widget/hooks}/use-synthetix-withdrawal-window.d.ts +0 -0
  299. /package/{providers → trading-widget/providers}/component-provider/index.d.ts +0 -0
  300. /package/{providers → trading-widget/providers}/config-provider/config-provider.d.ts +0 -0
  301. /package/{providers → trading-widget/providers}/config-provider/config-provider.defaults.d.ts +0 -0
  302. /package/{providers → trading-widget/providers}/config-provider/config-provider.hooks.d.ts +0 -0
  303. /package/{providers → trading-widget/providers}/config-provider/index.d.ts +0 -0
  304. /package/{providers → trading-widget/providers}/index.d.ts +0 -0
  305. /package/{providers → trading-widget/providers}/theme-provider/index.d.ts +0 -0
  306. /package/{providers → trading-widget/providers}/theme-provider/theme-provider.d.ts +0 -0
  307. /package/{providers → trading-widget/providers}/translation-provider/index.d.ts +0 -0
  308. /package/{providers → trading-widget/providers}/translation-provider/translation-provider.d.ts +0 -0
  309. /package/{providers → trading-widget/providers}/translation-provider/translation-provider.defaults.d.ts +0 -0
  310. /package/{providers → trading-widget/providers}/translation-provider/translation-provider.hooks.d.ts +0 -0
  311. /package/{types → trading-widget/types}/balance.types.d.ts +0 -0
  312. /package/{types → trading-widget/types}/synthetix-v3.types.d.ts +0 -0
  313. /package/{types → trading-widget/types}/theme.types.d.ts +0 -0
  314. /package/{utils → trading-widget/utils}/icon.d.ts +0 -0
@@ -0,0 +1,2232 @@
1
+ import { arbitrum, base, optimism, polygon } from 'wagmi/chains';
2
+ import type { ChainId, ChainNativeTokenMap } from 'core-kit/types';
3
+ export declare const CHAIN_MAP: {
4
+ readonly 137: {
5
+ blockExplorers: {
6
+ readonly default: {
7
+ readonly name: "PolygonScan";
8
+ readonly url: "https://polygonscan.com";
9
+ readonly apiUrl: "https://api.polygonscan.com/api";
10
+ };
11
+ };
12
+ contracts: {
13
+ readonly multicall3: {
14
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
15
+ readonly blockCreated: 25770160;
16
+ };
17
+ };
18
+ id: 137;
19
+ name: "Polygon";
20
+ nativeCurrency: {
21
+ readonly name: "MATIC";
22
+ readonly symbol: "MATIC";
23
+ readonly decimals: 18;
24
+ };
25
+ rpcUrls: {
26
+ readonly default: {
27
+ readonly http: readonly ["https://polygon-rpc.com"];
28
+ };
29
+ };
30
+ sourceId?: number | undefined;
31
+ testnet?: boolean | undefined;
32
+ custom?: Record<string, unknown> | undefined;
33
+ formatters?: undefined;
34
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
35
+ fees?: import("viem").ChainFees<undefined> | undefined;
36
+ };
37
+ readonly 10: {
38
+ blockExplorers: {
39
+ readonly default: {
40
+ readonly name: "Optimism Explorer";
41
+ readonly url: "https://optimistic.etherscan.io";
42
+ readonly apiUrl: "https://api-optimistic.etherscan.io/api";
43
+ };
44
+ };
45
+ contracts: {
46
+ readonly l2OutputOracle: {
47
+ readonly 1: {
48
+ readonly address: "0xdfe97868233d1aa22e815a266982f2cf17685a27";
49
+ };
50
+ };
51
+ readonly multicall3: {
52
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
53
+ readonly blockCreated: 4286263;
54
+ };
55
+ readonly portal: {
56
+ readonly 1: {
57
+ readonly address: "0xbEb5Fc579115071764c7423A4f12eDde41f106Ed";
58
+ };
59
+ };
60
+ readonly l1StandardBridge: {
61
+ readonly 1: {
62
+ readonly address: "0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1";
63
+ };
64
+ };
65
+ readonly gasPriceOracle: {
66
+ readonly address: "0x420000000000000000000000000000000000000F";
67
+ };
68
+ readonly l1Block: {
69
+ readonly address: "0x4200000000000000000000000000000000000015";
70
+ };
71
+ readonly l2CrossDomainMessenger: {
72
+ readonly address: "0x4200000000000000000000000000000000000007";
73
+ };
74
+ readonly l2Erc721Bridge: {
75
+ readonly address: "0x4200000000000000000000000000000000000014";
76
+ };
77
+ readonly l2StandardBridge: {
78
+ readonly address: "0x4200000000000000000000000000000000000010";
79
+ };
80
+ readonly l2ToL1MessagePasser: {
81
+ readonly address: "0x4200000000000000000000000000000000000016";
82
+ };
83
+ };
84
+ id: 10;
85
+ name: "OP Mainnet";
86
+ nativeCurrency: {
87
+ readonly name: "Ether";
88
+ readonly symbol: "ETH";
89
+ readonly decimals: 18;
90
+ };
91
+ rpcUrls: {
92
+ readonly default: {
93
+ readonly http: readonly ["https://mainnet.optimism.io"];
94
+ };
95
+ };
96
+ sourceId: 1;
97
+ testnet?: boolean | undefined;
98
+ custom?: Record<string, unknown> | undefined;
99
+ formatters: {
100
+ readonly block: {
101
+ exclude: [] | undefined;
102
+ format: (args: import("wagmi/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock<import("viem").BlockTag, boolean, import("viem").RpcTransaction<boolean>>>, import("wagmi/chains").OpStackRpcBlockOverrides & {
103
+ transactions: `0x${string}`[] | import("wagmi/chains").OpStackRpcTransaction<boolean>[];
104
+ }>) => {
105
+ baseFeePerGas: bigint | null;
106
+ blobGasUsed: bigint;
107
+ difficulty: bigint;
108
+ excessBlobGas: bigint;
109
+ extraData: `0x${string}`;
110
+ gasLimit: bigint;
111
+ gasUsed: bigint;
112
+ hash: `0x${string}` | null;
113
+ logsBloom: `0x${string}` | null;
114
+ miner: `0x${string}`;
115
+ mixHash: `0x${string}`;
116
+ nonce: `0x${string}` | null;
117
+ number: bigint | null;
118
+ parentHash: `0x${string}`;
119
+ receiptsRoot: `0x${string}`;
120
+ sealFields: `0x${string}`[];
121
+ sha3Uncles: `0x${string}`;
122
+ size: bigint;
123
+ stateRoot: `0x${string}`;
124
+ timestamp: bigint;
125
+ totalDifficulty: bigint | null;
126
+ transactions: `0x${string}`[] | import("wagmi/chains").OpStackTransaction<boolean>[];
127
+ transactionsRoot: `0x${string}`;
128
+ uncles: `0x${string}`[];
129
+ withdrawals?: import("viem").Withdrawal[] | undefined;
130
+ withdrawalsRoot?: `0x${string}` | undefined;
131
+ };
132
+ type: "block";
133
+ };
134
+ readonly transaction: {
135
+ exclude: [] | undefined;
136
+ format: (args: ({
137
+ r?: `0x${string}` | undefined;
138
+ s?: `0x${string}` | undefined;
139
+ v?: `0x${string}` | undefined;
140
+ yParity?: `0x${string}` | undefined;
141
+ gasPrice?: `0x${string}` | undefined;
142
+ maxFeePerBlobGas?: `0x${string}` | undefined;
143
+ maxFeePerGas?: `0x${string}` | undefined;
144
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
145
+ to?: `0x${string}` | null | undefined;
146
+ from?: `0x${string}` | undefined;
147
+ gas?: `0x${string}` | undefined;
148
+ nonce?: `0x${string}` | undefined;
149
+ value?: `0x${string}` | undefined;
150
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
151
+ accessList?: undefined;
152
+ blockHash?: `0x${string}` | null | undefined;
153
+ blockNumber?: `0x${string}` | null | undefined;
154
+ hash?: `0x${string}` | undefined;
155
+ input?: `0x${string}` | undefined;
156
+ transactionIndex?: `0x${string}` | null | undefined;
157
+ blobVersionedHashes?: undefined;
158
+ chainId?: `0x${string}` | undefined;
159
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
160
+ r: `0x${string}`;
161
+ s: `0x${string}`;
162
+ v: `0x${string}`;
163
+ to: `0x${string}` | null;
164
+ from: `0x${string}`;
165
+ gas: `0x${string}`;
166
+ nonce: `0x${string}`;
167
+ value: `0x${string}`;
168
+ blockHash: `0x${string}` | null;
169
+ blockNumber: `0x${string}` | null;
170
+ hash: `0x${string}`;
171
+ input: `0x${string}`;
172
+ transactionIndex: `0x${string}` | null;
173
+ typeHex: `0x${string}` | null;
174
+ gasPrice: `0x${string}`;
175
+ maxFeePerBlobGas?: undefined;
176
+ maxFeePerGas?: undefined;
177
+ maxPriorityFeePerGas?: undefined;
178
+ accessList?: undefined;
179
+ blobVersionedHashes?: undefined;
180
+ chainId?: `0x${string}` | undefined;
181
+ yParity?: undefined;
182
+ type: "0x0";
183
+ }, "yParity">, "typeHex"> & {
184
+ isSystemTx?: undefined;
185
+ mint?: undefined;
186
+ sourceHash?: undefined;
187
+ }) | ({
188
+ r?: `0x${string}` | undefined;
189
+ s?: `0x${string}` | undefined;
190
+ v?: `0x${string}` | undefined;
191
+ yParity?: `0x${string}` | undefined;
192
+ gasPrice?: `0x${string}` | undefined;
193
+ maxFeePerBlobGas?: `0x${string}` | undefined;
194
+ maxFeePerGas?: `0x${string}` | undefined;
195
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
196
+ to?: `0x${string}` | null | undefined;
197
+ from?: `0x${string}` | undefined;
198
+ gas?: `0x${string}` | undefined;
199
+ nonce?: `0x${string}` | undefined;
200
+ value?: `0x${string}` | undefined;
201
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
202
+ accessList?: undefined;
203
+ blockHash?: `0x${string}` | null | undefined;
204
+ blockNumber?: `0x${string}` | null | undefined;
205
+ hash?: `0x${string}` | undefined;
206
+ input?: `0x${string}` | undefined;
207
+ transactionIndex?: `0x${string}` | null | undefined;
208
+ blobVersionedHashes?: undefined;
209
+ chainId?: `0x${string}` | undefined;
210
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
211
+ isSystemTx?: boolean | undefined;
212
+ mint?: `0x${string}` | undefined;
213
+ sourceHash: `0x${string}`;
214
+ type: "0x7e";
215
+ }) | ({
216
+ r?: `0x${string}` | undefined;
217
+ s?: `0x${string}` | undefined;
218
+ v?: `0x${string}` | undefined;
219
+ yParity?: `0x${string}` | undefined;
220
+ gasPrice?: `0x${string}` | undefined;
221
+ maxFeePerBlobGas?: `0x${string}` | undefined;
222
+ maxFeePerGas?: `0x${string}` | undefined;
223
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
224
+ to?: `0x${string}` | null | undefined;
225
+ from?: `0x${string}` | undefined;
226
+ gas?: `0x${string}` | undefined;
227
+ nonce?: `0x${string}` | undefined;
228
+ value?: `0x${string}` | undefined;
229
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
230
+ accessList?: import("viem").AccessList | undefined;
231
+ blockHash?: `0x${string}` | null | undefined;
232
+ blockNumber?: `0x${string}` | null | undefined;
233
+ hash?: `0x${string}` | undefined;
234
+ input?: `0x${string}` | undefined;
235
+ transactionIndex?: `0x${string}` | null | undefined;
236
+ blobVersionedHashes?: undefined;
237
+ chainId?: `0x${string}` | undefined;
238
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
239
+ r: `0x${string}`;
240
+ s: `0x${string}`;
241
+ v: `0x${string}`;
242
+ to: `0x${string}` | null;
243
+ from: `0x${string}`;
244
+ gas: `0x${string}`;
245
+ nonce: `0x${string}`;
246
+ value: `0x${string}`;
247
+ blockHash: `0x${string}` | null;
248
+ blockNumber: `0x${string}` | null;
249
+ hash: `0x${string}`;
250
+ input: `0x${string}`;
251
+ transactionIndex: `0x${string}` | null;
252
+ typeHex: `0x${string}` | null;
253
+ gasPrice: `0x${string}`;
254
+ maxFeePerBlobGas?: undefined;
255
+ maxFeePerGas?: undefined;
256
+ maxPriorityFeePerGas?: undefined;
257
+ accessList?: undefined;
258
+ blobVersionedHashes?: undefined;
259
+ chainId?: `0x${string}` | undefined;
260
+ yParity?: undefined;
261
+ type: "0x0";
262
+ }, "yParity">, "typeHex"> & {
263
+ isSystemTx?: undefined;
264
+ mint?: undefined;
265
+ sourceHash?: undefined;
266
+ }) | ({
267
+ r?: `0x${string}` | undefined;
268
+ s?: `0x${string}` | undefined;
269
+ v?: `0x${string}` | undefined;
270
+ yParity?: `0x${string}` | undefined;
271
+ gasPrice?: `0x${string}` | undefined;
272
+ maxFeePerBlobGas?: `0x${string}` | undefined;
273
+ maxFeePerGas?: `0x${string}` | undefined;
274
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
275
+ to?: `0x${string}` | null | undefined;
276
+ from?: `0x${string}` | undefined;
277
+ gas?: `0x${string}` | undefined;
278
+ nonce?: `0x${string}` | undefined;
279
+ value?: `0x${string}` | undefined;
280
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
281
+ accessList?: import("viem").AccessList | undefined;
282
+ blockHash?: `0x${string}` | null | undefined;
283
+ blockNumber?: `0x${string}` | null | undefined;
284
+ hash?: `0x${string}` | undefined;
285
+ input?: `0x${string}` | undefined;
286
+ transactionIndex?: `0x${string}` | null | undefined;
287
+ blobVersionedHashes?: undefined;
288
+ chainId?: `0x${string}` | undefined;
289
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
290
+ blockHash: `0x${string}` | null;
291
+ blockNumber: `0x${string}` | null;
292
+ from: `0x${string}`;
293
+ gas: `0x${string}`;
294
+ hash: `0x${string}`;
295
+ input: `0x${string}`;
296
+ nonce: `0x${string}`;
297
+ r: `0x${string}`;
298
+ s: `0x${string}`;
299
+ to: `0x${string}` | null;
300
+ transactionIndex: `0x${string}` | null;
301
+ typeHex: `0x${string}` | null;
302
+ v: `0x${string}`;
303
+ value: `0x${string}`;
304
+ yParity: `0x${string}`;
305
+ gasPrice: `0x${string}`;
306
+ maxFeePerBlobGas?: undefined;
307
+ maxFeePerGas?: undefined;
308
+ maxPriorityFeePerGas?: undefined;
309
+ accessList: import("viem").AccessList;
310
+ blobVersionedHashes?: undefined;
311
+ chainId: `0x${string}`;
312
+ type: "0x1";
313
+ }, "yParity">, "typeHex"> & {
314
+ isSystemTx?: undefined;
315
+ mint?: undefined;
316
+ sourceHash?: undefined;
317
+ }) | ({
318
+ r?: `0x${string}` | undefined;
319
+ s?: `0x${string}` | undefined;
320
+ v?: `0x${string}` | undefined;
321
+ yParity?: `0x${string}` | undefined;
322
+ gasPrice?: `0x${string}` | undefined;
323
+ maxFeePerBlobGas?: `0x${string}` | undefined;
324
+ maxFeePerGas?: `0x${string}` | undefined;
325
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
326
+ to?: `0x${string}` | null | undefined;
327
+ from?: `0x${string}` | undefined;
328
+ gas?: `0x${string}` | undefined;
329
+ nonce?: `0x${string}` | undefined;
330
+ value?: `0x${string}` | undefined;
331
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
332
+ accessList?: import("viem").AccessList | undefined;
333
+ blockHash?: `0x${string}` | null | undefined;
334
+ blockNumber?: `0x${string}` | null | undefined;
335
+ hash?: `0x${string}` | undefined;
336
+ input?: `0x${string}` | undefined;
337
+ transactionIndex?: `0x${string}` | null | undefined;
338
+ blobVersionedHashes?: undefined;
339
+ chainId?: `0x${string}` | undefined;
340
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
341
+ blockHash: `0x${string}` | null;
342
+ blockNumber: `0x${string}` | null;
343
+ from: `0x${string}`;
344
+ gas: `0x${string}`;
345
+ hash: `0x${string}`;
346
+ input: `0x${string}`;
347
+ nonce: `0x${string}`;
348
+ r: `0x${string}`;
349
+ s: `0x${string}`;
350
+ to: `0x${string}` | null;
351
+ transactionIndex: `0x${string}` | null;
352
+ typeHex: `0x${string}` | null;
353
+ v: `0x${string}`;
354
+ value: `0x${string}`;
355
+ yParity: `0x${string}`;
356
+ gasPrice?: undefined;
357
+ maxFeePerBlobGas?: undefined;
358
+ maxFeePerGas: `0x${string}`;
359
+ maxPriorityFeePerGas: `0x${string}`;
360
+ accessList: import("viem").AccessList;
361
+ blobVersionedHashes?: undefined;
362
+ chainId: `0x${string}`;
363
+ type: "0x2";
364
+ }, "yParity">, "typeHex"> & {
365
+ isSystemTx?: undefined;
366
+ mint?: undefined;
367
+ sourceHash?: undefined;
368
+ }) | ({
369
+ r?: `0x${string}` | undefined;
370
+ s?: `0x${string}` | undefined;
371
+ v?: `0x${string}` | undefined;
372
+ yParity?: `0x${string}` | undefined;
373
+ gasPrice?: `0x${string}` | undefined;
374
+ maxFeePerBlobGas?: `0x${string}` | undefined;
375
+ maxFeePerGas?: `0x${string}` | undefined;
376
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
377
+ to?: `0x${string}` | null | undefined;
378
+ from?: `0x${string}` | undefined;
379
+ gas?: `0x${string}` | undefined;
380
+ nonce?: `0x${string}` | undefined;
381
+ value?: `0x${string}` | undefined;
382
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
383
+ accessList?: import("viem").AccessList | undefined;
384
+ blockHash?: `0x${string}` | null | undefined;
385
+ blockNumber?: `0x${string}` | null | undefined;
386
+ hash?: `0x${string}` | undefined;
387
+ input?: `0x${string}` | undefined;
388
+ transactionIndex?: `0x${string}` | null | undefined;
389
+ blobVersionedHashes?: undefined;
390
+ chainId?: `0x${string}` | undefined;
391
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
392
+ isSystemTx?: boolean | undefined;
393
+ mint?: `0x${string}` | undefined;
394
+ sourceHash: `0x${string}`;
395
+ type: "0x7e";
396
+ }) | ({
397
+ r?: `0x${string}` | undefined;
398
+ s?: `0x${string}` | undefined;
399
+ v?: `0x${string}` | undefined;
400
+ yParity?: `0x${string}` | undefined;
401
+ gasPrice?: `0x${string}` | undefined;
402
+ maxFeePerBlobGas?: `0x${string}` | undefined;
403
+ maxFeePerGas?: `0x${string}` | undefined;
404
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
405
+ to?: `0x${string}` | null | undefined;
406
+ from?: `0x${string}` | undefined;
407
+ gas?: `0x${string}` | undefined;
408
+ nonce?: `0x${string}` | undefined;
409
+ value?: `0x${string}` | undefined;
410
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
411
+ accessList?: import("viem").AccessList | undefined;
412
+ blockHash?: `0x${string}` | null | undefined;
413
+ blockNumber?: `0x${string}` | null | undefined;
414
+ hash?: `0x${string}` | undefined;
415
+ input?: `0x${string}` | undefined;
416
+ transactionIndex?: `0x${string}` | null | undefined;
417
+ blobVersionedHashes?: undefined;
418
+ chainId?: `0x${string}` | undefined;
419
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
420
+ r: `0x${string}`;
421
+ s: `0x${string}`;
422
+ v: `0x${string}`;
423
+ to: `0x${string}` | null;
424
+ from: `0x${string}`;
425
+ gas: `0x${string}`;
426
+ nonce: `0x${string}`;
427
+ value: `0x${string}`;
428
+ blockHash: `0x${string}` | null;
429
+ blockNumber: `0x${string}` | null;
430
+ hash: `0x${string}`;
431
+ input: `0x${string}`;
432
+ transactionIndex: `0x${string}` | null;
433
+ typeHex: `0x${string}` | null;
434
+ gasPrice: `0x${string}`;
435
+ maxFeePerBlobGas?: undefined;
436
+ maxFeePerGas?: undefined;
437
+ maxPriorityFeePerGas?: undefined;
438
+ accessList?: undefined;
439
+ blobVersionedHashes?: undefined;
440
+ chainId?: `0x${string}` | undefined;
441
+ yParity?: undefined;
442
+ type: "0x0";
443
+ }, "yParity">, "typeHex"> & {
444
+ isSystemTx?: undefined;
445
+ mint?: undefined;
446
+ sourceHash?: undefined;
447
+ }) | ({
448
+ r?: `0x${string}` | undefined;
449
+ s?: `0x${string}` | undefined;
450
+ v?: `0x${string}` | undefined;
451
+ yParity?: `0x${string}` | undefined;
452
+ gasPrice?: `0x${string}` | undefined;
453
+ maxFeePerBlobGas?: `0x${string}` | undefined;
454
+ maxFeePerGas?: `0x${string}` | undefined;
455
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
456
+ to?: `0x${string}` | null | undefined;
457
+ from?: `0x${string}` | undefined;
458
+ gas?: `0x${string}` | undefined;
459
+ nonce?: `0x${string}` | undefined;
460
+ value?: `0x${string}` | undefined;
461
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
462
+ accessList?: import("viem").AccessList | undefined;
463
+ blockHash?: `0x${string}` | null | undefined;
464
+ blockNumber?: `0x${string}` | null | undefined;
465
+ hash?: `0x${string}` | undefined;
466
+ input?: `0x${string}` | undefined;
467
+ transactionIndex?: `0x${string}` | null | undefined;
468
+ blobVersionedHashes?: undefined;
469
+ chainId?: `0x${string}` | undefined;
470
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
471
+ blockHash: `0x${string}` | null;
472
+ blockNumber: `0x${string}` | null;
473
+ from: `0x${string}`;
474
+ gas: `0x${string}`;
475
+ hash: `0x${string}`;
476
+ input: `0x${string}`;
477
+ nonce: `0x${string}`;
478
+ r: `0x${string}`;
479
+ s: `0x${string}`;
480
+ to: `0x${string}` | null;
481
+ transactionIndex: `0x${string}` | null;
482
+ typeHex: `0x${string}` | null;
483
+ v: `0x${string}`;
484
+ value: `0x${string}`;
485
+ yParity: `0x${string}`;
486
+ gasPrice: `0x${string}`;
487
+ maxFeePerBlobGas?: undefined;
488
+ maxFeePerGas?: undefined;
489
+ maxPriorityFeePerGas?: undefined;
490
+ accessList: import("viem").AccessList;
491
+ blobVersionedHashes?: undefined;
492
+ chainId: `0x${string}`;
493
+ type: "0x1";
494
+ }, "yParity">, "typeHex"> & {
495
+ isSystemTx?: undefined;
496
+ mint?: undefined;
497
+ sourceHash?: undefined;
498
+ }) | ({
499
+ r?: `0x${string}` | undefined;
500
+ s?: `0x${string}` | undefined;
501
+ v?: `0x${string}` | undefined;
502
+ yParity?: `0x${string}` | undefined;
503
+ gasPrice?: `0x${string}` | undefined;
504
+ maxFeePerBlobGas?: `0x${string}` | undefined;
505
+ maxFeePerGas?: `0x${string}` | undefined;
506
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
507
+ to?: `0x${string}` | null | undefined;
508
+ from?: `0x${string}` | undefined;
509
+ gas?: `0x${string}` | undefined;
510
+ nonce?: `0x${string}` | undefined;
511
+ value?: `0x${string}` | undefined;
512
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
513
+ accessList?: import("viem").AccessList | undefined;
514
+ blockHash?: `0x${string}` | null | undefined;
515
+ blockNumber?: `0x${string}` | null | undefined;
516
+ hash?: `0x${string}` | undefined;
517
+ input?: `0x${string}` | undefined;
518
+ transactionIndex?: `0x${string}` | null | undefined;
519
+ blobVersionedHashes?: undefined;
520
+ chainId?: `0x${string}` | undefined;
521
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
522
+ blockHash: `0x${string}` | null;
523
+ blockNumber: `0x${string}` | null;
524
+ from: `0x${string}`;
525
+ gas: `0x${string}`;
526
+ hash: `0x${string}`;
527
+ input: `0x${string}`;
528
+ nonce: `0x${string}`;
529
+ r: `0x${string}`;
530
+ s: `0x${string}`;
531
+ to: `0x${string}` | null;
532
+ transactionIndex: `0x${string}` | null;
533
+ typeHex: `0x${string}` | null;
534
+ v: `0x${string}`;
535
+ value: `0x${string}`;
536
+ yParity: `0x${string}`;
537
+ gasPrice?: undefined;
538
+ maxFeePerBlobGas?: undefined;
539
+ maxFeePerGas: `0x${string}`;
540
+ maxPriorityFeePerGas: `0x${string}`;
541
+ accessList: import("viem").AccessList;
542
+ blobVersionedHashes?: undefined;
543
+ chainId: `0x${string}`;
544
+ type: "0x2";
545
+ }, "yParity">, "typeHex"> & {
546
+ isSystemTx?: undefined;
547
+ mint?: undefined;
548
+ sourceHash?: undefined;
549
+ }) | ({
550
+ r?: `0x${string}` | undefined;
551
+ s?: `0x${string}` | undefined;
552
+ v?: `0x${string}` | undefined;
553
+ yParity?: `0x${string}` | undefined;
554
+ gasPrice?: `0x${string}` | undefined;
555
+ maxFeePerBlobGas?: `0x${string}` | undefined;
556
+ maxFeePerGas?: `0x${string}` | undefined;
557
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
558
+ to?: `0x${string}` | null | undefined;
559
+ from?: `0x${string}` | undefined;
560
+ gas?: `0x${string}` | undefined;
561
+ nonce?: `0x${string}` | undefined;
562
+ value?: `0x${string}` | undefined;
563
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
564
+ accessList?: import("viem").AccessList | undefined;
565
+ blockHash?: `0x${string}` | null | undefined;
566
+ blockNumber?: `0x${string}` | null | undefined;
567
+ hash?: `0x${string}` | undefined;
568
+ input?: `0x${string}` | undefined;
569
+ transactionIndex?: `0x${string}` | null | undefined;
570
+ blobVersionedHashes?: undefined;
571
+ chainId?: `0x${string}` | undefined;
572
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
573
+ isSystemTx?: boolean | undefined;
574
+ mint?: `0x${string}` | undefined;
575
+ sourceHash: `0x${string}`;
576
+ type: "0x7e";
577
+ }) | ({
578
+ r?: `0x${string}` | undefined;
579
+ s?: `0x${string}` | undefined;
580
+ v?: `0x${string}` | undefined;
581
+ yParity?: `0x${string}` | undefined;
582
+ gasPrice?: `0x${string}` | undefined;
583
+ maxFeePerBlobGas?: `0x${string}` | undefined;
584
+ maxFeePerGas?: `0x${string}` | undefined;
585
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
586
+ to?: `0x${string}` | null | undefined;
587
+ from?: `0x${string}` | undefined;
588
+ gas?: `0x${string}` | undefined;
589
+ nonce?: `0x${string}` | undefined;
590
+ value?: `0x${string}` | undefined;
591
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
592
+ accessList?: import("viem").AccessList | undefined;
593
+ blockHash?: `0x${string}` | null | undefined;
594
+ blockNumber?: `0x${string}` | null | undefined;
595
+ hash?: `0x${string}` | undefined;
596
+ input?: `0x${string}` | undefined;
597
+ transactionIndex?: `0x${string}` | null | undefined;
598
+ blobVersionedHashes?: `0x${string}`[] | undefined;
599
+ chainId?: `0x${string}` | undefined;
600
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
601
+ r: `0x${string}`;
602
+ s: `0x${string}`;
603
+ v: `0x${string}`;
604
+ to: `0x${string}` | null;
605
+ from: `0x${string}`;
606
+ gas: `0x${string}`;
607
+ nonce: `0x${string}`;
608
+ value: `0x${string}`;
609
+ blockHash: `0x${string}` | null;
610
+ blockNumber: `0x${string}` | null;
611
+ hash: `0x${string}`;
612
+ input: `0x${string}`;
613
+ transactionIndex: `0x${string}` | null;
614
+ typeHex: `0x${string}` | null;
615
+ gasPrice: `0x${string}`;
616
+ maxFeePerBlobGas?: undefined;
617
+ maxFeePerGas?: undefined;
618
+ maxPriorityFeePerGas?: undefined;
619
+ accessList?: undefined;
620
+ blobVersionedHashes?: undefined;
621
+ chainId?: `0x${string}` | undefined;
622
+ yParity?: undefined;
623
+ type: "0x0";
624
+ }, "yParity">, "typeHex"> & {
625
+ isSystemTx?: undefined;
626
+ mint?: undefined;
627
+ sourceHash?: undefined;
628
+ }) | ({
629
+ r?: `0x${string}` | undefined;
630
+ s?: `0x${string}` | undefined;
631
+ v?: `0x${string}` | undefined;
632
+ yParity?: `0x${string}` | undefined;
633
+ gasPrice?: `0x${string}` | undefined;
634
+ maxFeePerBlobGas?: `0x${string}` | undefined;
635
+ maxFeePerGas?: `0x${string}` | undefined;
636
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
637
+ to?: `0x${string}` | null | undefined;
638
+ from?: `0x${string}` | undefined;
639
+ gas?: `0x${string}` | undefined;
640
+ nonce?: `0x${string}` | undefined;
641
+ value?: `0x${string}` | undefined;
642
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
643
+ accessList?: import("viem").AccessList | undefined;
644
+ blockHash?: `0x${string}` | null | undefined;
645
+ blockNumber?: `0x${string}` | null | undefined;
646
+ hash?: `0x${string}` | undefined;
647
+ input?: `0x${string}` | undefined;
648
+ transactionIndex?: `0x${string}` | null | undefined;
649
+ blobVersionedHashes?: `0x${string}`[] | undefined;
650
+ chainId?: `0x${string}` | undefined;
651
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
652
+ blockHash: `0x${string}` | null;
653
+ blockNumber: `0x${string}` | null;
654
+ from: `0x${string}`;
655
+ gas: `0x${string}`;
656
+ hash: `0x${string}`;
657
+ input: `0x${string}`;
658
+ nonce: `0x${string}`;
659
+ r: `0x${string}`;
660
+ s: `0x${string}`;
661
+ to: `0x${string}` | null;
662
+ transactionIndex: `0x${string}` | null;
663
+ typeHex: `0x${string}` | null;
664
+ v: `0x${string}`;
665
+ value: `0x${string}`;
666
+ yParity: `0x${string}`;
667
+ gasPrice: `0x${string}`;
668
+ maxFeePerBlobGas?: undefined;
669
+ maxFeePerGas?: undefined;
670
+ maxPriorityFeePerGas?: undefined;
671
+ accessList: import("viem").AccessList;
672
+ blobVersionedHashes?: undefined;
673
+ chainId: `0x${string}`;
674
+ type: "0x1";
675
+ }, "yParity">, "typeHex"> & {
676
+ isSystemTx?: undefined;
677
+ mint?: undefined;
678
+ sourceHash?: undefined;
679
+ }) | ({
680
+ r?: `0x${string}` | undefined;
681
+ s?: `0x${string}` | undefined;
682
+ v?: `0x${string}` | undefined;
683
+ yParity?: `0x${string}` | undefined;
684
+ gasPrice?: `0x${string}` | undefined;
685
+ maxFeePerBlobGas?: `0x${string}` | undefined;
686
+ maxFeePerGas?: `0x${string}` | undefined;
687
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
688
+ to?: `0x${string}` | null | undefined;
689
+ from?: `0x${string}` | undefined;
690
+ gas?: `0x${string}` | undefined;
691
+ nonce?: `0x${string}` | undefined;
692
+ value?: `0x${string}` | undefined;
693
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
694
+ accessList?: import("viem").AccessList | undefined;
695
+ blockHash?: `0x${string}` | null | undefined;
696
+ blockNumber?: `0x${string}` | null | undefined;
697
+ hash?: `0x${string}` | undefined;
698
+ input?: `0x${string}` | undefined;
699
+ transactionIndex?: `0x${string}` | null | undefined;
700
+ blobVersionedHashes?: `0x${string}`[] | undefined;
701
+ chainId?: `0x${string}` | undefined;
702
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
703
+ blockHash: `0x${string}` | null;
704
+ blockNumber: `0x${string}` | null;
705
+ from: `0x${string}`;
706
+ gas: `0x${string}`;
707
+ hash: `0x${string}`;
708
+ input: `0x${string}`;
709
+ nonce: `0x${string}`;
710
+ r: `0x${string}`;
711
+ s: `0x${string}`;
712
+ to: `0x${string}` | null;
713
+ transactionIndex: `0x${string}` | null;
714
+ typeHex: `0x${string}` | null;
715
+ v: `0x${string}`;
716
+ value: `0x${string}`;
717
+ yParity: `0x${string}`;
718
+ gasPrice?: undefined;
719
+ maxFeePerBlobGas?: undefined;
720
+ maxFeePerGas: `0x${string}`;
721
+ maxPriorityFeePerGas: `0x${string}`;
722
+ accessList: import("viem").AccessList;
723
+ blobVersionedHashes?: undefined;
724
+ chainId: `0x${string}`;
725
+ type: "0x2";
726
+ }, "yParity">, "typeHex"> & {
727
+ isSystemTx?: undefined;
728
+ mint?: undefined;
729
+ sourceHash?: undefined;
730
+ }) | ({
731
+ r?: `0x${string}` | undefined;
732
+ s?: `0x${string}` | undefined;
733
+ v?: `0x${string}` | undefined;
734
+ yParity?: `0x${string}` | undefined;
735
+ gasPrice?: `0x${string}` | undefined;
736
+ maxFeePerBlobGas?: `0x${string}` | undefined;
737
+ maxFeePerGas?: `0x${string}` | undefined;
738
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
739
+ to?: `0x${string}` | null | undefined;
740
+ from?: `0x${string}` | undefined;
741
+ gas?: `0x${string}` | undefined;
742
+ nonce?: `0x${string}` | undefined;
743
+ value?: `0x${string}` | undefined;
744
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
745
+ accessList?: import("viem").AccessList | undefined;
746
+ blockHash?: `0x${string}` | null | undefined;
747
+ blockNumber?: `0x${string}` | null | undefined;
748
+ hash?: `0x${string}` | undefined;
749
+ input?: `0x${string}` | undefined;
750
+ transactionIndex?: `0x${string}` | null | undefined;
751
+ blobVersionedHashes?: `0x${string}`[] | undefined;
752
+ chainId?: `0x${string}` | undefined;
753
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
754
+ blockHash: `0x${string}` | null;
755
+ blockNumber: `0x${string}` | null;
756
+ from: `0x${string}`;
757
+ gas: `0x${string}`;
758
+ hash: `0x${string}`;
759
+ input: `0x${string}`;
760
+ nonce: `0x${string}`;
761
+ r: `0x${string}`;
762
+ s: `0x${string}`;
763
+ to: `0x${string}` | null;
764
+ transactionIndex: `0x${string}` | null;
765
+ typeHex: `0x${string}` | null;
766
+ v: `0x${string}`;
767
+ value: `0x${string}`;
768
+ yParity: `0x${string}`;
769
+ gasPrice?: undefined;
770
+ maxFeePerBlobGas: `0x${string}`;
771
+ maxFeePerGas: `0x${string}`;
772
+ maxPriorityFeePerGas: `0x${string}`;
773
+ accessList: import("viem").AccessList;
774
+ blobVersionedHashes: `0x${string}`[];
775
+ chainId: `0x${string}`;
776
+ type: "0x3";
777
+ }, "yParity">, "typeHex"> & {
778
+ isSystemTx?: undefined;
779
+ mint?: undefined;
780
+ sourceHash?: undefined;
781
+ }) | ({
782
+ r?: `0x${string}` | undefined;
783
+ s?: `0x${string}` | undefined;
784
+ v?: `0x${string}` | undefined;
785
+ yParity?: `0x${string}` | undefined;
786
+ gasPrice?: `0x${string}` | undefined;
787
+ maxFeePerBlobGas?: `0x${string}` | undefined;
788
+ maxFeePerGas?: `0x${string}` | undefined;
789
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
790
+ to?: `0x${string}` | null | undefined;
791
+ from?: `0x${string}` | undefined;
792
+ gas?: `0x${string}` | undefined;
793
+ nonce?: `0x${string}` | undefined;
794
+ value?: `0x${string}` | undefined;
795
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
796
+ accessList?: import("viem").AccessList | undefined;
797
+ blockHash?: `0x${string}` | null | undefined;
798
+ blockNumber?: `0x${string}` | null | undefined;
799
+ hash?: `0x${string}` | undefined;
800
+ input?: `0x${string}` | undefined;
801
+ transactionIndex?: `0x${string}` | null | undefined;
802
+ blobVersionedHashes?: `0x${string}`[] | undefined;
803
+ chainId?: `0x${string}` | undefined;
804
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
805
+ isSystemTx?: boolean | undefined;
806
+ mint?: `0x${string}` | undefined;
807
+ sourceHash: `0x${string}`;
808
+ type: "0x7e";
809
+ })) => {
810
+ r: `0x${string}`;
811
+ s: `0x${string}`;
812
+ v: bigint;
813
+ to: `0x${string}` | null;
814
+ from: `0x${string}`;
815
+ gas: bigint;
816
+ nonce: number;
817
+ value: bigint;
818
+ blockHash: `0x${string}` | null;
819
+ blockNumber: bigint | null;
820
+ hash: `0x${string}`;
821
+ input: `0x${string}`;
822
+ transactionIndex: number | null;
823
+ typeHex: `0x${string}` | null;
824
+ gasPrice: bigint;
825
+ maxFeePerBlobGas?: undefined;
826
+ maxFeePerGas?: undefined;
827
+ maxPriorityFeePerGas?: undefined;
828
+ accessList?: undefined;
829
+ blobVersionedHashes?: undefined;
830
+ chainId?: number | undefined;
831
+ yParity?: undefined;
832
+ type: "legacy";
833
+ isSystemTx?: undefined;
834
+ mint?: undefined;
835
+ sourceHash?: undefined;
836
+ } | {
837
+ r: `0x${string}`;
838
+ s: `0x${string}`;
839
+ v: bigint;
840
+ to: `0x${string}` | null;
841
+ from: `0x${string}`;
842
+ gas: bigint;
843
+ nonce: number;
844
+ value: bigint;
845
+ blockHash: `0x${string}` | null;
846
+ blockNumber: bigint | null;
847
+ hash: `0x${string}`;
848
+ input: `0x${string}`;
849
+ transactionIndex: number | null;
850
+ typeHex: `0x${string}` | null;
851
+ gasPrice: undefined;
852
+ maxFeePerBlobGas?: undefined;
853
+ maxFeePerGas: bigint;
854
+ maxPriorityFeePerGas: bigint;
855
+ accessList?: undefined;
856
+ blobVersionedHashes?: undefined;
857
+ chainId?: number | undefined;
858
+ yParity: number;
859
+ type: "deposit";
860
+ isSystemTx?: boolean | undefined;
861
+ mint?: bigint | undefined;
862
+ sourceHash: `0x${string}`;
863
+ } | {
864
+ blockHash: `0x${string}` | null;
865
+ blockNumber: bigint | null;
866
+ from: `0x${string}`;
867
+ gas: bigint;
868
+ hash: `0x${string}`;
869
+ input: `0x${string}`;
870
+ nonce: number;
871
+ r: `0x${string}`;
872
+ s: `0x${string}`;
873
+ to: `0x${string}` | null;
874
+ transactionIndex: number | null;
875
+ typeHex: `0x${string}` | null;
876
+ v: bigint;
877
+ value: bigint;
878
+ yParity: number;
879
+ gasPrice: bigint;
880
+ maxFeePerBlobGas?: undefined;
881
+ maxFeePerGas?: undefined;
882
+ maxPriorityFeePerGas?: undefined;
883
+ accessList: import("viem").AccessList;
884
+ blobVersionedHashes?: undefined;
885
+ chainId: number;
886
+ type: "eip2930";
887
+ isSystemTx?: undefined;
888
+ mint?: undefined;
889
+ sourceHash?: undefined;
890
+ } | {
891
+ blockHash: `0x${string}` | null;
892
+ blockNumber: bigint | null;
893
+ from: `0x${string}`;
894
+ gas: bigint;
895
+ hash: `0x${string}`;
896
+ input: `0x${string}`;
897
+ nonce: number;
898
+ r: `0x${string}`;
899
+ s: `0x${string}`;
900
+ to: `0x${string}` | null;
901
+ transactionIndex: number | null;
902
+ typeHex: `0x${string}` | null;
903
+ v: bigint;
904
+ value: bigint;
905
+ yParity: number;
906
+ gasPrice: undefined;
907
+ maxFeePerBlobGas?: undefined;
908
+ maxFeePerGas: bigint;
909
+ maxPriorityFeePerGas: bigint;
910
+ accessList: import("viem").AccessList;
911
+ blobVersionedHashes?: undefined;
912
+ chainId: number;
913
+ type: "eip1559";
914
+ isSystemTx?: undefined;
915
+ mint?: undefined;
916
+ sourceHash?: undefined;
917
+ } | {
918
+ blockHash: `0x${string}` | null;
919
+ blockNumber: bigint | null;
920
+ from: `0x${string}`;
921
+ gas: bigint;
922
+ hash: `0x${string}`;
923
+ input: `0x${string}`;
924
+ nonce: number;
925
+ r: `0x${string}`;
926
+ s: `0x${string}`;
927
+ to: `0x${string}` | null;
928
+ transactionIndex: number | null;
929
+ typeHex: `0x${string}` | null;
930
+ v: bigint;
931
+ value: bigint;
932
+ yParity: number;
933
+ gasPrice: undefined;
934
+ maxFeePerBlobGas?: undefined;
935
+ maxFeePerGas: bigint;
936
+ maxPriorityFeePerGas: bigint;
937
+ accessList: import("viem").AccessList;
938
+ blobVersionedHashes?: undefined;
939
+ chainId: number;
940
+ type: "deposit";
941
+ isSystemTx?: boolean | undefined;
942
+ mint?: bigint | undefined;
943
+ sourceHash: `0x${string}`;
944
+ } | {
945
+ blockHash: `0x${string}` | null;
946
+ blockNumber: bigint | null;
947
+ from: `0x${string}`;
948
+ gas: bigint;
949
+ hash: `0x${string}`;
950
+ input: `0x${string}`;
951
+ nonce: number;
952
+ r: `0x${string}`;
953
+ s: `0x${string}`;
954
+ to: `0x${string}` | null;
955
+ transactionIndex: number | null;
956
+ typeHex: `0x${string}` | null;
957
+ v: bigint;
958
+ value: bigint;
959
+ yParity: number;
960
+ gasPrice: bigint;
961
+ maxFeePerBlobGas?: undefined;
962
+ maxFeePerGas: undefined;
963
+ maxPriorityFeePerGas: undefined;
964
+ accessList: import("viem").AccessList;
965
+ blobVersionedHashes?: undefined;
966
+ chainId: number;
967
+ type: "eip2930";
968
+ isSystemTx?: undefined;
969
+ mint?: undefined;
970
+ sourceHash?: undefined;
971
+ } | {
972
+ blockHash: `0x${string}` | null;
973
+ blockNumber: bigint | null;
974
+ from: `0x${string}`;
975
+ gas: bigint;
976
+ hash: `0x${string}`;
977
+ input: `0x${string}`;
978
+ nonce: number;
979
+ r: `0x${string}`;
980
+ s: `0x${string}`;
981
+ to: `0x${string}` | null;
982
+ transactionIndex: number | null;
983
+ typeHex: `0x${string}` | null;
984
+ v: bigint;
985
+ value: bigint;
986
+ yParity: number;
987
+ gasPrice?: undefined;
988
+ maxFeePerBlobGas?: undefined;
989
+ maxFeePerGas: bigint;
990
+ maxPriorityFeePerGas: bigint;
991
+ accessList: import("viem").AccessList;
992
+ blobVersionedHashes?: undefined;
993
+ chainId: number;
994
+ type: "eip1559";
995
+ isSystemTx?: undefined;
996
+ mint?: undefined;
997
+ sourceHash?: undefined;
998
+ } | {
999
+ blockHash: `0x${string}` | null;
1000
+ blockNumber: bigint | null;
1001
+ from: `0x${string}`;
1002
+ gas: bigint;
1003
+ hash: `0x${string}`;
1004
+ input: `0x${string}`;
1005
+ nonce: number;
1006
+ r: `0x${string}`;
1007
+ s: `0x${string}`;
1008
+ to: `0x${string}` | null;
1009
+ transactionIndex: number | null;
1010
+ typeHex: `0x${string}` | null;
1011
+ v: bigint;
1012
+ value: bigint;
1013
+ yParity: number;
1014
+ gasPrice?: undefined;
1015
+ maxFeePerBlobGas?: undefined;
1016
+ maxFeePerGas: bigint;
1017
+ maxPriorityFeePerGas: bigint;
1018
+ accessList: import("viem").AccessList;
1019
+ blobVersionedHashes?: undefined;
1020
+ chainId: number;
1021
+ type: "deposit";
1022
+ isSystemTx?: boolean | undefined;
1023
+ mint?: bigint | undefined;
1024
+ sourceHash: `0x${string}`;
1025
+ } | {
1026
+ blockHash: `0x${string}` | null;
1027
+ blockNumber: bigint | null;
1028
+ from: `0x${string}`;
1029
+ gas: bigint;
1030
+ hash: `0x${string}`;
1031
+ input: `0x${string}`;
1032
+ nonce: number;
1033
+ r: `0x${string}`;
1034
+ s: `0x${string}`;
1035
+ to: `0x${string}` | null;
1036
+ transactionIndex: number | null;
1037
+ typeHex: `0x${string}` | null;
1038
+ v: bigint;
1039
+ value: bigint;
1040
+ yParity: number;
1041
+ gasPrice?: undefined;
1042
+ maxFeePerBlobGas: bigint;
1043
+ maxFeePerGas: bigint;
1044
+ maxPriorityFeePerGas: bigint;
1045
+ accessList: import("viem").AccessList;
1046
+ blobVersionedHashes: `0x${string}`[];
1047
+ chainId: number;
1048
+ type: "eip4844";
1049
+ isSystemTx?: undefined;
1050
+ mint?: undefined;
1051
+ sourceHash?: undefined;
1052
+ } | {
1053
+ blockHash: `0x${string}` | null;
1054
+ blockNumber: bigint | null;
1055
+ from: `0x${string}`;
1056
+ gas: bigint;
1057
+ hash: `0x${string}`;
1058
+ input: `0x${string}`;
1059
+ nonce: number;
1060
+ r: `0x${string}`;
1061
+ s: `0x${string}`;
1062
+ to: `0x${string}` | null;
1063
+ transactionIndex: number | null;
1064
+ typeHex: `0x${string}` | null;
1065
+ v: bigint;
1066
+ value: bigint;
1067
+ yParity: number;
1068
+ gasPrice?: undefined;
1069
+ maxFeePerBlobGas: undefined;
1070
+ maxFeePerGas: bigint;
1071
+ maxPriorityFeePerGas: bigint;
1072
+ accessList: import("viem").AccessList;
1073
+ blobVersionedHashes: `0x${string}`[];
1074
+ chainId: number;
1075
+ type: "deposit";
1076
+ isSystemTx?: boolean | undefined;
1077
+ mint?: bigint | undefined;
1078
+ sourceHash: `0x${string}`;
1079
+ };
1080
+ type: "transaction";
1081
+ };
1082
+ readonly transactionReceipt: {
1083
+ exclude: [] | undefined;
1084
+ format: (args: import("wagmi/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransactionReceipt>, import("wagmi/chains").OpStackRpcTransactionReceiptOverrides>) => {
1085
+ blobGasPrice?: bigint | undefined;
1086
+ blobGasUsed?: bigint | undefined;
1087
+ blockHash: `0x${string}`;
1088
+ blockNumber: bigint;
1089
+ contractAddress: `0x${string}` | null | undefined;
1090
+ cumulativeGasUsed: bigint;
1091
+ effectiveGasPrice: bigint;
1092
+ from: `0x${string}`;
1093
+ gasUsed: bigint;
1094
+ logs: import("viem").Log<bigint, number, false, undefined, undefined, undefined, undefined>[];
1095
+ logsBloom: `0x${string}`;
1096
+ root?: `0x${string}` | undefined;
1097
+ status: "success" | "reverted";
1098
+ to: `0x${string}` | null;
1099
+ transactionHash: `0x${string}`;
1100
+ transactionIndex: number;
1101
+ type: import("viem").TransactionType;
1102
+ l1GasPrice: bigint | null;
1103
+ l1GasUsed: bigint | null;
1104
+ l1Fee: bigint | null;
1105
+ l1FeeScalar: number | null;
1106
+ };
1107
+ type: "transactionReceipt";
1108
+ };
1109
+ };
1110
+ serializers: {
1111
+ readonly transaction: typeof import("wagmi/chains").serializeTransactionOpStack;
1112
+ };
1113
+ fees?: import("viem").ChainFees<undefined> | undefined;
1114
+ };
1115
+ readonly 42161: {
1116
+ blockExplorers: {
1117
+ readonly default: {
1118
+ readonly name: "Arbiscan";
1119
+ readonly url: "https://arbiscan.io";
1120
+ readonly apiUrl: "https://api.arbiscan.io/api";
1121
+ };
1122
+ };
1123
+ contracts: {
1124
+ readonly multicall3: {
1125
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1126
+ readonly blockCreated: 7654707;
1127
+ };
1128
+ };
1129
+ id: 42161;
1130
+ name: "Arbitrum One";
1131
+ nativeCurrency: {
1132
+ readonly name: "Ether";
1133
+ readonly symbol: "ETH";
1134
+ readonly decimals: 18;
1135
+ };
1136
+ rpcUrls: {
1137
+ readonly default: {
1138
+ readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
1139
+ };
1140
+ };
1141
+ sourceId?: number | undefined;
1142
+ testnet?: boolean | undefined;
1143
+ custom?: Record<string, unknown> | undefined;
1144
+ formatters?: undefined;
1145
+ serializers?: import("viem").ChainSerializers<undefined> | undefined;
1146
+ fees?: import("viem").ChainFees<undefined> | undefined;
1147
+ };
1148
+ readonly 8453: {
1149
+ blockExplorers: {
1150
+ readonly default: {
1151
+ readonly name: "Basescan";
1152
+ readonly url: "https://basescan.org";
1153
+ readonly apiUrl: "https://api.basescan.org/api";
1154
+ };
1155
+ };
1156
+ contracts: {
1157
+ readonly l2OutputOracle: {
1158
+ readonly 1: {
1159
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
1160
+ };
1161
+ };
1162
+ readonly multicall3: {
1163
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
1164
+ readonly blockCreated: 5022;
1165
+ };
1166
+ readonly portal: {
1167
+ readonly 1: {
1168
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
1169
+ readonly blockCreated: 17482143;
1170
+ };
1171
+ };
1172
+ readonly l1StandardBridge: {
1173
+ readonly 1: {
1174
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
1175
+ readonly blockCreated: 17482143;
1176
+ };
1177
+ };
1178
+ readonly gasPriceOracle: {
1179
+ readonly address: "0x420000000000000000000000000000000000000F";
1180
+ };
1181
+ readonly l1Block: {
1182
+ readonly address: "0x4200000000000000000000000000000000000015";
1183
+ };
1184
+ readonly l2CrossDomainMessenger: {
1185
+ readonly address: "0x4200000000000000000000000000000000000007";
1186
+ };
1187
+ readonly l2Erc721Bridge: {
1188
+ readonly address: "0x4200000000000000000000000000000000000014";
1189
+ };
1190
+ readonly l2StandardBridge: {
1191
+ readonly address: "0x4200000000000000000000000000000000000010";
1192
+ };
1193
+ readonly l2ToL1MessagePasser: {
1194
+ readonly address: "0x4200000000000000000000000000000000000016";
1195
+ };
1196
+ };
1197
+ id: 8453;
1198
+ name: "Base";
1199
+ nativeCurrency: {
1200
+ readonly name: "Ether";
1201
+ readonly symbol: "ETH";
1202
+ readonly decimals: 18;
1203
+ };
1204
+ rpcUrls: {
1205
+ readonly default: {
1206
+ readonly http: readonly ["https://mainnet.base.org"];
1207
+ };
1208
+ };
1209
+ sourceId: 1;
1210
+ testnet?: boolean | undefined;
1211
+ custom?: Record<string, unknown> | undefined;
1212
+ formatters: {
1213
+ readonly block: {
1214
+ exclude: [] | undefined;
1215
+ format: (args: import("wagmi/chains").Assign<import("viem").ExactPartial<import("viem").RpcBlock<import("viem").BlockTag, boolean, import("viem").RpcTransaction<boolean>>>, import("wagmi/chains").OpStackRpcBlockOverrides & {
1216
+ transactions: `0x${string}`[] | import("wagmi/chains").OpStackRpcTransaction<boolean>[];
1217
+ }>) => {
1218
+ baseFeePerGas: bigint | null;
1219
+ blobGasUsed: bigint;
1220
+ difficulty: bigint;
1221
+ excessBlobGas: bigint;
1222
+ extraData: `0x${string}`;
1223
+ gasLimit: bigint;
1224
+ gasUsed: bigint;
1225
+ hash: `0x${string}` | null;
1226
+ logsBloom: `0x${string}` | null;
1227
+ miner: `0x${string}`;
1228
+ mixHash: `0x${string}`;
1229
+ nonce: `0x${string}` | null;
1230
+ number: bigint | null;
1231
+ parentHash: `0x${string}`;
1232
+ receiptsRoot: `0x${string}`;
1233
+ sealFields: `0x${string}`[];
1234
+ sha3Uncles: `0x${string}`;
1235
+ size: bigint;
1236
+ stateRoot: `0x${string}`;
1237
+ timestamp: bigint;
1238
+ totalDifficulty: bigint | null;
1239
+ transactions: `0x${string}`[] | import("wagmi/chains").OpStackTransaction<boolean>[];
1240
+ transactionsRoot: `0x${string}`;
1241
+ uncles: `0x${string}`[];
1242
+ withdrawals?: import("viem").Withdrawal[] | undefined;
1243
+ withdrawalsRoot?: `0x${string}` | undefined;
1244
+ };
1245
+ type: "block";
1246
+ };
1247
+ readonly transaction: {
1248
+ exclude: [] | undefined;
1249
+ format: (args: ({
1250
+ r?: `0x${string}` | undefined;
1251
+ s?: `0x${string}` | undefined;
1252
+ v?: `0x${string}` | undefined;
1253
+ yParity?: `0x${string}` | undefined;
1254
+ gasPrice?: `0x${string}` | undefined;
1255
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1256
+ maxFeePerGas?: `0x${string}` | undefined;
1257
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1258
+ to?: `0x${string}` | null | undefined;
1259
+ from?: `0x${string}` | undefined;
1260
+ gas?: `0x${string}` | undefined;
1261
+ nonce?: `0x${string}` | undefined;
1262
+ value?: `0x${string}` | undefined;
1263
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1264
+ accessList?: undefined;
1265
+ blockHash?: `0x${string}` | null | undefined;
1266
+ blockNumber?: `0x${string}` | null | undefined;
1267
+ hash?: `0x${string}` | undefined;
1268
+ input?: `0x${string}` | undefined;
1269
+ transactionIndex?: `0x${string}` | null | undefined;
1270
+ blobVersionedHashes?: undefined;
1271
+ chainId?: `0x${string}` | undefined;
1272
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1273
+ r: `0x${string}`;
1274
+ s: `0x${string}`;
1275
+ v: `0x${string}`;
1276
+ to: `0x${string}` | null;
1277
+ from: `0x${string}`;
1278
+ gas: `0x${string}`;
1279
+ nonce: `0x${string}`;
1280
+ value: `0x${string}`;
1281
+ blockHash: `0x${string}` | null;
1282
+ blockNumber: `0x${string}` | null;
1283
+ hash: `0x${string}`;
1284
+ input: `0x${string}`;
1285
+ transactionIndex: `0x${string}` | null;
1286
+ typeHex: `0x${string}` | null;
1287
+ gasPrice: `0x${string}`;
1288
+ maxFeePerBlobGas?: undefined;
1289
+ maxFeePerGas?: undefined;
1290
+ maxPriorityFeePerGas?: undefined;
1291
+ accessList?: undefined;
1292
+ blobVersionedHashes?: undefined;
1293
+ chainId?: `0x${string}` | undefined;
1294
+ yParity?: undefined;
1295
+ type: "0x0";
1296
+ }, "yParity">, "typeHex"> & {
1297
+ isSystemTx?: undefined;
1298
+ mint?: undefined;
1299
+ sourceHash?: undefined;
1300
+ }) | ({
1301
+ r?: `0x${string}` | undefined;
1302
+ s?: `0x${string}` | undefined;
1303
+ v?: `0x${string}` | undefined;
1304
+ yParity?: `0x${string}` | undefined;
1305
+ gasPrice?: `0x${string}` | undefined;
1306
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1307
+ maxFeePerGas?: `0x${string}` | undefined;
1308
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1309
+ to?: `0x${string}` | null | undefined;
1310
+ from?: `0x${string}` | undefined;
1311
+ gas?: `0x${string}` | undefined;
1312
+ nonce?: `0x${string}` | undefined;
1313
+ value?: `0x${string}` | undefined;
1314
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1315
+ accessList?: undefined;
1316
+ blockHash?: `0x${string}` | null | undefined;
1317
+ blockNumber?: `0x${string}` | null | undefined;
1318
+ hash?: `0x${string}` | undefined;
1319
+ input?: `0x${string}` | undefined;
1320
+ transactionIndex?: `0x${string}` | null | undefined;
1321
+ blobVersionedHashes?: undefined;
1322
+ chainId?: `0x${string}` | undefined;
1323
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
1324
+ isSystemTx?: boolean | undefined;
1325
+ mint?: `0x${string}` | undefined;
1326
+ sourceHash: `0x${string}`;
1327
+ type: "0x7e";
1328
+ }) | ({
1329
+ r?: `0x${string}` | undefined;
1330
+ s?: `0x${string}` | undefined;
1331
+ v?: `0x${string}` | undefined;
1332
+ yParity?: `0x${string}` | undefined;
1333
+ gasPrice?: `0x${string}` | undefined;
1334
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1335
+ maxFeePerGas?: `0x${string}` | undefined;
1336
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1337
+ to?: `0x${string}` | null | undefined;
1338
+ from?: `0x${string}` | undefined;
1339
+ gas?: `0x${string}` | undefined;
1340
+ nonce?: `0x${string}` | undefined;
1341
+ value?: `0x${string}` | undefined;
1342
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1343
+ accessList?: import("viem").AccessList | undefined;
1344
+ blockHash?: `0x${string}` | null | undefined;
1345
+ blockNumber?: `0x${string}` | null | undefined;
1346
+ hash?: `0x${string}` | undefined;
1347
+ input?: `0x${string}` | undefined;
1348
+ transactionIndex?: `0x${string}` | null | undefined;
1349
+ blobVersionedHashes?: undefined;
1350
+ chainId?: `0x${string}` | undefined;
1351
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1352
+ r: `0x${string}`;
1353
+ s: `0x${string}`;
1354
+ v: `0x${string}`;
1355
+ to: `0x${string}` | null;
1356
+ from: `0x${string}`;
1357
+ gas: `0x${string}`;
1358
+ nonce: `0x${string}`;
1359
+ value: `0x${string}`;
1360
+ blockHash: `0x${string}` | null;
1361
+ blockNumber: `0x${string}` | null;
1362
+ hash: `0x${string}`;
1363
+ input: `0x${string}`;
1364
+ transactionIndex: `0x${string}` | null;
1365
+ typeHex: `0x${string}` | null;
1366
+ gasPrice: `0x${string}`;
1367
+ maxFeePerBlobGas?: undefined;
1368
+ maxFeePerGas?: undefined;
1369
+ maxPriorityFeePerGas?: undefined;
1370
+ accessList?: undefined;
1371
+ blobVersionedHashes?: undefined;
1372
+ chainId?: `0x${string}` | undefined;
1373
+ yParity?: undefined;
1374
+ type: "0x0";
1375
+ }, "yParity">, "typeHex"> & {
1376
+ isSystemTx?: undefined;
1377
+ mint?: undefined;
1378
+ sourceHash?: undefined;
1379
+ }) | ({
1380
+ r?: `0x${string}` | undefined;
1381
+ s?: `0x${string}` | undefined;
1382
+ v?: `0x${string}` | undefined;
1383
+ yParity?: `0x${string}` | undefined;
1384
+ gasPrice?: `0x${string}` | undefined;
1385
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1386
+ maxFeePerGas?: `0x${string}` | undefined;
1387
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1388
+ to?: `0x${string}` | null | undefined;
1389
+ from?: `0x${string}` | undefined;
1390
+ gas?: `0x${string}` | undefined;
1391
+ nonce?: `0x${string}` | undefined;
1392
+ value?: `0x${string}` | undefined;
1393
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1394
+ accessList?: import("viem").AccessList | undefined;
1395
+ blockHash?: `0x${string}` | null | undefined;
1396
+ blockNumber?: `0x${string}` | null | undefined;
1397
+ hash?: `0x${string}` | undefined;
1398
+ input?: `0x${string}` | undefined;
1399
+ transactionIndex?: `0x${string}` | null | undefined;
1400
+ blobVersionedHashes?: undefined;
1401
+ chainId?: `0x${string}` | undefined;
1402
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1403
+ blockHash: `0x${string}` | null;
1404
+ blockNumber: `0x${string}` | null;
1405
+ from: `0x${string}`;
1406
+ gas: `0x${string}`;
1407
+ hash: `0x${string}`;
1408
+ input: `0x${string}`;
1409
+ nonce: `0x${string}`;
1410
+ r: `0x${string}`;
1411
+ s: `0x${string}`;
1412
+ to: `0x${string}` | null;
1413
+ transactionIndex: `0x${string}` | null;
1414
+ typeHex: `0x${string}` | null;
1415
+ v: `0x${string}`;
1416
+ value: `0x${string}`;
1417
+ yParity: `0x${string}`;
1418
+ gasPrice: `0x${string}`;
1419
+ maxFeePerBlobGas?: undefined;
1420
+ maxFeePerGas?: undefined;
1421
+ maxPriorityFeePerGas?: undefined;
1422
+ accessList: import("viem").AccessList;
1423
+ blobVersionedHashes?: undefined;
1424
+ chainId: `0x${string}`;
1425
+ type: "0x1";
1426
+ }, "yParity">, "typeHex"> & {
1427
+ isSystemTx?: undefined;
1428
+ mint?: undefined;
1429
+ sourceHash?: undefined;
1430
+ }) | ({
1431
+ r?: `0x${string}` | undefined;
1432
+ s?: `0x${string}` | undefined;
1433
+ v?: `0x${string}` | undefined;
1434
+ yParity?: `0x${string}` | undefined;
1435
+ gasPrice?: `0x${string}` | undefined;
1436
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1437
+ maxFeePerGas?: `0x${string}` | undefined;
1438
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1439
+ to?: `0x${string}` | null | undefined;
1440
+ from?: `0x${string}` | undefined;
1441
+ gas?: `0x${string}` | undefined;
1442
+ nonce?: `0x${string}` | undefined;
1443
+ value?: `0x${string}` | undefined;
1444
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1445
+ accessList?: import("viem").AccessList | undefined;
1446
+ blockHash?: `0x${string}` | null | undefined;
1447
+ blockNumber?: `0x${string}` | null | undefined;
1448
+ hash?: `0x${string}` | undefined;
1449
+ input?: `0x${string}` | undefined;
1450
+ transactionIndex?: `0x${string}` | null | undefined;
1451
+ blobVersionedHashes?: undefined;
1452
+ chainId?: `0x${string}` | undefined;
1453
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1454
+ blockHash: `0x${string}` | null;
1455
+ blockNumber: `0x${string}` | null;
1456
+ from: `0x${string}`;
1457
+ gas: `0x${string}`;
1458
+ hash: `0x${string}`;
1459
+ input: `0x${string}`;
1460
+ nonce: `0x${string}`;
1461
+ r: `0x${string}`;
1462
+ s: `0x${string}`;
1463
+ to: `0x${string}` | null;
1464
+ transactionIndex: `0x${string}` | null;
1465
+ typeHex: `0x${string}` | null;
1466
+ v: `0x${string}`;
1467
+ value: `0x${string}`;
1468
+ yParity: `0x${string}`;
1469
+ gasPrice?: undefined;
1470
+ maxFeePerBlobGas?: undefined;
1471
+ maxFeePerGas: `0x${string}`;
1472
+ maxPriorityFeePerGas: `0x${string}`;
1473
+ accessList: import("viem").AccessList;
1474
+ blobVersionedHashes?: undefined;
1475
+ chainId: `0x${string}`;
1476
+ type: "0x2";
1477
+ }, "yParity">, "typeHex"> & {
1478
+ isSystemTx?: undefined;
1479
+ mint?: undefined;
1480
+ sourceHash?: undefined;
1481
+ }) | ({
1482
+ r?: `0x${string}` | undefined;
1483
+ s?: `0x${string}` | undefined;
1484
+ v?: `0x${string}` | undefined;
1485
+ yParity?: `0x${string}` | undefined;
1486
+ gasPrice?: `0x${string}` | undefined;
1487
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1488
+ maxFeePerGas?: `0x${string}` | undefined;
1489
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1490
+ to?: `0x${string}` | null | undefined;
1491
+ from?: `0x${string}` | undefined;
1492
+ gas?: `0x${string}` | undefined;
1493
+ nonce?: `0x${string}` | undefined;
1494
+ value?: `0x${string}` | undefined;
1495
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1496
+ accessList?: import("viem").AccessList | undefined;
1497
+ blockHash?: `0x${string}` | null | undefined;
1498
+ blockNumber?: `0x${string}` | null | undefined;
1499
+ hash?: `0x${string}` | undefined;
1500
+ input?: `0x${string}` | undefined;
1501
+ transactionIndex?: `0x${string}` | null | undefined;
1502
+ blobVersionedHashes?: undefined;
1503
+ chainId?: `0x${string}` | undefined;
1504
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
1505
+ isSystemTx?: boolean | undefined;
1506
+ mint?: `0x${string}` | undefined;
1507
+ sourceHash: `0x${string}`;
1508
+ type: "0x7e";
1509
+ }) | ({
1510
+ r?: `0x${string}` | undefined;
1511
+ s?: `0x${string}` | undefined;
1512
+ v?: `0x${string}` | undefined;
1513
+ yParity?: `0x${string}` | undefined;
1514
+ gasPrice?: `0x${string}` | undefined;
1515
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1516
+ maxFeePerGas?: `0x${string}` | undefined;
1517
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1518
+ to?: `0x${string}` | null | undefined;
1519
+ from?: `0x${string}` | undefined;
1520
+ gas?: `0x${string}` | undefined;
1521
+ nonce?: `0x${string}` | undefined;
1522
+ value?: `0x${string}` | undefined;
1523
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1524
+ accessList?: import("viem").AccessList | undefined;
1525
+ blockHash?: `0x${string}` | null | undefined;
1526
+ blockNumber?: `0x${string}` | null | undefined;
1527
+ hash?: `0x${string}` | undefined;
1528
+ input?: `0x${string}` | undefined;
1529
+ transactionIndex?: `0x${string}` | null | undefined;
1530
+ blobVersionedHashes?: undefined;
1531
+ chainId?: `0x${string}` | undefined;
1532
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1533
+ r: `0x${string}`;
1534
+ s: `0x${string}`;
1535
+ v: `0x${string}`;
1536
+ to: `0x${string}` | null;
1537
+ from: `0x${string}`;
1538
+ gas: `0x${string}`;
1539
+ nonce: `0x${string}`;
1540
+ value: `0x${string}`;
1541
+ blockHash: `0x${string}` | null;
1542
+ blockNumber: `0x${string}` | null;
1543
+ hash: `0x${string}`;
1544
+ input: `0x${string}`;
1545
+ transactionIndex: `0x${string}` | null;
1546
+ typeHex: `0x${string}` | null;
1547
+ gasPrice: `0x${string}`;
1548
+ maxFeePerBlobGas?: undefined;
1549
+ maxFeePerGas?: undefined;
1550
+ maxPriorityFeePerGas?: undefined;
1551
+ accessList?: undefined;
1552
+ blobVersionedHashes?: undefined;
1553
+ chainId?: `0x${string}` | undefined;
1554
+ yParity?: undefined;
1555
+ type: "0x0";
1556
+ }, "yParity">, "typeHex"> & {
1557
+ isSystemTx?: undefined;
1558
+ mint?: undefined;
1559
+ sourceHash?: undefined;
1560
+ }) | ({
1561
+ r?: `0x${string}` | undefined;
1562
+ s?: `0x${string}` | undefined;
1563
+ v?: `0x${string}` | undefined;
1564
+ yParity?: `0x${string}` | undefined;
1565
+ gasPrice?: `0x${string}` | undefined;
1566
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1567
+ maxFeePerGas?: `0x${string}` | undefined;
1568
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1569
+ to?: `0x${string}` | null | undefined;
1570
+ from?: `0x${string}` | undefined;
1571
+ gas?: `0x${string}` | undefined;
1572
+ nonce?: `0x${string}` | undefined;
1573
+ value?: `0x${string}` | undefined;
1574
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1575
+ accessList?: import("viem").AccessList | undefined;
1576
+ blockHash?: `0x${string}` | null | undefined;
1577
+ blockNumber?: `0x${string}` | null | undefined;
1578
+ hash?: `0x${string}` | undefined;
1579
+ input?: `0x${string}` | undefined;
1580
+ transactionIndex?: `0x${string}` | null | undefined;
1581
+ blobVersionedHashes?: undefined;
1582
+ chainId?: `0x${string}` | undefined;
1583
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1584
+ blockHash: `0x${string}` | null;
1585
+ blockNumber: `0x${string}` | null;
1586
+ from: `0x${string}`;
1587
+ gas: `0x${string}`;
1588
+ hash: `0x${string}`;
1589
+ input: `0x${string}`;
1590
+ nonce: `0x${string}`;
1591
+ r: `0x${string}`;
1592
+ s: `0x${string}`;
1593
+ to: `0x${string}` | null;
1594
+ transactionIndex: `0x${string}` | null;
1595
+ typeHex: `0x${string}` | null;
1596
+ v: `0x${string}`;
1597
+ value: `0x${string}`;
1598
+ yParity: `0x${string}`;
1599
+ gasPrice: `0x${string}`;
1600
+ maxFeePerBlobGas?: undefined;
1601
+ maxFeePerGas?: undefined;
1602
+ maxPriorityFeePerGas?: undefined;
1603
+ accessList: import("viem").AccessList;
1604
+ blobVersionedHashes?: undefined;
1605
+ chainId: `0x${string}`;
1606
+ type: "0x1";
1607
+ }, "yParity">, "typeHex"> & {
1608
+ isSystemTx?: undefined;
1609
+ mint?: undefined;
1610
+ sourceHash?: undefined;
1611
+ }) | ({
1612
+ r?: `0x${string}` | undefined;
1613
+ s?: `0x${string}` | undefined;
1614
+ v?: `0x${string}` | undefined;
1615
+ yParity?: `0x${string}` | undefined;
1616
+ gasPrice?: `0x${string}` | undefined;
1617
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1618
+ maxFeePerGas?: `0x${string}` | undefined;
1619
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1620
+ to?: `0x${string}` | null | undefined;
1621
+ from?: `0x${string}` | undefined;
1622
+ gas?: `0x${string}` | undefined;
1623
+ nonce?: `0x${string}` | undefined;
1624
+ value?: `0x${string}` | undefined;
1625
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1626
+ accessList?: import("viem").AccessList | undefined;
1627
+ blockHash?: `0x${string}` | null | undefined;
1628
+ blockNumber?: `0x${string}` | null | undefined;
1629
+ hash?: `0x${string}` | undefined;
1630
+ input?: `0x${string}` | undefined;
1631
+ transactionIndex?: `0x${string}` | null | undefined;
1632
+ blobVersionedHashes?: undefined;
1633
+ chainId?: `0x${string}` | undefined;
1634
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1635
+ blockHash: `0x${string}` | null;
1636
+ blockNumber: `0x${string}` | null;
1637
+ from: `0x${string}`;
1638
+ gas: `0x${string}`;
1639
+ hash: `0x${string}`;
1640
+ input: `0x${string}`;
1641
+ nonce: `0x${string}`;
1642
+ r: `0x${string}`;
1643
+ s: `0x${string}`;
1644
+ to: `0x${string}` | null;
1645
+ transactionIndex: `0x${string}` | null;
1646
+ typeHex: `0x${string}` | null;
1647
+ v: `0x${string}`;
1648
+ value: `0x${string}`;
1649
+ yParity: `0x${string}`;
1650
+ gasPrice?: undefined;
1651
+ maxFeePerBlobGas?: undefined;
1652
+ maxFeePerGas: `0x${string}`;
1653
+ maxPriorityFeePerGas: `0x${string}`;
1654
+ accessList: import("viem").AccessList;
1655
+ blobVersionedHashes?: undefined;
1656
+ chainId: `0x${string}`;
1657
+ type: "0x2";
1658
+ }, "yParity">, "typeHex"> & {
1659
+ isSystemTx?: undefined;
1660
+ mint?: undefined;
1661
+ sourceHash?: undefined;
1662
+ }) | ({
1663
+ r?: `0x${string}` | undefined;
1664
+ s?: `0x${string}` | undefined;
1665
+ v?: `0x${string}` | undefined;
1666
+ yParity?: `0x${string}` | undefined;
1667
+ gasPrice?: `0x${string}` | undefined;
1668
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1669
+ maxFeePerGas?: `0x${string}` | undefined;
1670
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1671
+ to?: `0x${string}` | null | undefined;
1672
+ from?: `0x${string}` | undefined;
1673
+ gas?: `0x${string}` | undefined;
1674
+ nonce?: `0x${string}` | undefined;
1675
+ value?: `0x${string}` | undefined;
1676
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1677
+ accessList?: import("viem").AccessList | undefined;
1678
+ blockHash?: `0x${string}` | null | undefined;
1679
+ blockNumber?: `0x${string}` | null | undefined;
1680
+ hash?: `0x${string}` | undefined;
1681
+ input?: `0x${string}` | undefined;
1682
+ transactionIndex?: `0x${string}` | null | undefined;
1683
+ blobVersionedHashes?: undefined;
1684
+ chainId?: `0x${string}` | undefined;
1685
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
1686
+ isSystemTx?: boolean | undefined;
1687
+ mint?: `0x${string}` | undefined;
1688
+ sourceHash: `0x${string}`;
1689
+ type: "0x7e";
1690
+ }) | ({
1691
+ r?: `0x${string}` | undefined;
1692
+ s?: `0x${string}` | undefined;
1693
+ v?: `0x${string}` | undefined;
1694
+ yParity?: `0x${string}` | undefined;
1695
+ gasPrice?: `0x${string}` | undefined;
1696
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1697
+ maxFeePerGas?: `0x${string}` | undefined;
1698
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1699
+ to?: `0x${string}` | null | undefined;
1700
+ from?: `0x${string}` | undefined;
1701
+ gas?: `0x${string}` | undefined;
1702
+ nonce?: `0x${string}` | undefined;
1703
+ value?: `0x${string}` | undefined;
1704
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1705
+ accessList?: import("viem").AccessList | undefined;
1706
+ blockHash?: `0x${string}` | null | undefined;
1707
+ blockNumber?: `0x${string}` | null | undefined;
1708
+ hash?: `0x${string}` | undefined;
1709
+ input?: `0x${string}` | undefined;
1710
+ transactionIndex?: `0x${string}` | null | undefined;
1711
+ blobVersionedHashes?: `0x${string}`[] | undefined;
1712
+ chainId?: `0x${string}` | undefined;
1713
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1714
+ r: `0x${string}`;
1715
+ s: `0x${string}`;
1716
+ v: `0x${string}`;
1717
+ to: `0x${string}` | null;
1718
+ from: `0x${string}`;
1719
+ gas: `0x${string}`;
1720
+ nonce: `0x${string}`;
1721
+ value: `0x${string}`;
1722
+ blockHash: `0x${string}` | null;
1723
+ blockNumber: `0x${string}` | null;
1724
+ hash: `0x${string}`;
1725
+ input: `0x${string}`;
1726
+ transactionIndex: `0x${string}` | null;
1727
+ typeHex: `0x${string}` | null;
1728
+ gasPrice: `0x${string}`;
1729
+ maxFeePerBlobGas?: undefined;
1730
+ maxFeePerGas?: undefined;
1731
+ maxPriorityFeePerGas?: undefined;
1732
+ accessList?: undefined;
1733
+ blobVersionedHashes?: undefined;
1734
+ chainId?: `0x${string}` | undefined;
1735
+ yParity?: undefined;
1736
+ type: "0x0";
1737
+ }, "yParity">, "typeHex"> & {
1738
+ isSystemTx?: undefined;
1739
+ mint?: undefined;
1740
+ sourceHash?: undefined;
1741
+ }) | ({
1742
+ r?: `0x${string}` | undefined;
1743
+ s?: `0x${string}` | undefined;
1744
+ v?: `0x${string}` | undefined;
1745
+ yParity?: `0x${string}` | undefined;
1746
+ gasPrice?: `0x${string}` | undefined;
1747
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1748
+ maxFeePerGas?: `0x${string}` | undefined;
1749
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1750
+ to?: `0x${string}` | null | undefined;
1751
+ from?: `0x${string}` | undefined;
1752
+ gas?: `0x${string}` | undefined;
1753
+ nonce?: `0x${string}` | undefined;
1754
+ value?: `0x${string}` | undefined;
1755
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1756
+ accessList?: import("viem").AccessList | undefined;
1757
+ blockHash?: `0x${string}` | null | undefined;
1758
+ blockNumber?: `0x${string}` | null | undefined;
1759
+ hash?: `0x${string}` | undefined;
1760
+ input?: `0x${string}` | undefined;
1761
+ transactionIndex?: `0x${string}` | null | undefined;
1762
+ blobVersionedHashes?: `0x${string}`[] | undefined;
1763
+ chainId?: `0x${string}` | undefined;
1764
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1765
+ blockHash: `0x${string}` | null;
1766
+ blockNumber: `0x${string}` | null;
1767
+ from: `0x${string}`;
1768
+ gas: `0x${string}`;
1769
+ hash: `0x${string}`;
1770
+ input: `0x${string}`;
1771
+ nonce: `0x${string}`;
1772
+ r: `0x${string}`;
1773
+ s: `0x${string}`;
1774
+ to: `0x${string}` | null;
1775
+ transactionIndex: `0x${string}` | null;
1776
+ typeHex: `0x${string}` | null;
1777
+ v: `0x${string}`;
1778
+ value: `0x${string}`;
1779
+ yParity: `0x${string}`;
1780
+ gasPrice: `0x${string}`;
1781
+ maxFeePerBlobGas?: undefined;
1782
+ maxFeePerGas?: undefined;
1783
+ maxPriorityFeePerGas?: undefined;
1784
+ accessList: import("viem").AccessList;
1785
+ blobVersionedHashes?: undefined;
1786
+ chainId: `0x${string}`;
1787
+ type: "0x1";
1788
+ }, "yParity">, "typeHex"> & {
1789
+ isSystemTx?: undefined;
1790
+ mint?: undefined;
1791
+ sourceHash?: undefined;
1792
+ }) | ({
1793
+ r?: `0x${string}` | undefined;
1794
+ s?: `0x${string}` | undefined;
1795
+ v?: `0x${string}` | undefined;
1796
+ yParity?: `0x${string}` | undefined;
1797
+ gasPrice?: `0x${string}` | undefined;
1798
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1799
+ maxFeePerGas?: `0x${string}` | undefined;
1800
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1801
+ to?: `0x${string}` | null | undefined;
1802
+ from?: `0x${string}` | undefined;
1803
+ gas?: `0x${string}` | undefined;
1804
+ nonce?: `0x${string}` | undefined;
1805
+ value?: `0x${string}` | undefined;
1806
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1807
+ accessList?: import("viem").AccessList | undefined;
1808
+ blockHash?: `0x${string}` | null | undefined;
1809
+ blockNumber?: `0x${string}` | null | undefined;
1810
+ hash?: `0x${string}` | undefined;
1811
+ input?: `0x${string}` | undefined;
1812
+ transactionIndex?: `0x${string}` | null | undefined;
1813
+ blobVersionedHashes?: `0x${string}`[] | undefined;
1814
+ chainId?: `0x${string}` | undefined;
1815
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1816
+ blockHash: `0x${string}` | null;
1817
+ blockNumber: `0x${string}` | null;
1818
+ from: `0x${string}`;
1819
+ gas: `0x${string}`;
1820
+ hash: `0x${string}`;
1821
+ input: `0x${string}`;
1822
+ nonce: `0x${string}`;
1823
+ r: `0x${string}`;
1824
+ s: `0x${string}`;
1825
+ to: `0x${string}` | null;
1826
+ transactionIndex: `0x${string}` | null;
1827
+ typeHex: `0x${string}` | null;
1828
+ v: `0x${string}`;
1829
+ value: `0x${string}`;
1830
+ yParity: `0x${string}`;
1831
+ gasPrice?: undefined;
1832
+ maxFeePerBlobGas?: undefined;
1833
+ maxFeePerGas: `0x${string}`;
1834
+ maxPriorityFeePerGas: `0x${string}`;
1835
+ accessList: import("viem").AccessList;
1836
+ blobVersionedHashes?: undefined;
1837
+ chainId: `0x${string}`;
1838
+ type: "0x2";
1839
+ }, "yParity">, "typeHex"> & {
1840
+ isSystemTx?: undefined;
1841
+ mint?: undefined;
1842
+ sourceHash?: undefined;
1843
+ }) | ({
1844
+ r?: `0x${string}` | undefined;
1845
+ s?: `0x${string}` | undefined;
1846
+ v?: `0x${string}` | undefined;
1847
+ yParity?: `0x${string}` | undefined;
1848
+ gasPrice?: `0x${string}` | undefined;
1849
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1850
+ maxFeePerGas?: `0x${string}` | undefined;
1851
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1852
+ to?: `0x${string}` | null | undefined;
1853
+ from?: `0x${string}` | undefined;
1854
+ gas?: `0x${string}` | undefined;
1855
+ nonce?: `0x${string}` | undefined;
1856
+ value?: `0x${string}` | undefined;
1857
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1858
+ accessList?: import("viem").AccessList | undefined;
1859
+ blockHash?: `0x${string}` | null | undefined;
1860
+ blockNumber?: `0x${string}` | null | undefined;
1861
+ hash?: `0x${string}` | undefined;
1862
+ input?: `0x${string}` | undefined;
1863
+ transactionIndex?: `0x${string}` | null | undefined;
1864
+ blobVersionedHashes?: `0x${string}`[] | undefined;
1865
+ chainId?: `0x${string}` | undefined;
1866
+ } & import("wagmi/chains").Omit<import("wagmi/chains").PartialBy<{
1867
+ blockHash: `0x${string}` | null;
1868
+ blockNumber: `0x${string}` | null;
1869
+ from: `0x${string}`;
1870
+ gas: `0x${string}`;
1871
+ hash: `0x${string}`;
1872
+ input: `0x${string}`;
1873
+ nonce: `0x${string}`;
1874
+ r: `0x${string}`;
1875
+ s: `0x${string}`;
1876
+ to: `0x${string}` | null;
1877
+ transactionIndex: `0x${string}` | null;
1878
+ typeHex: `0x${string}` | null;
1879
+ v: `0x${string}`;
1880
+ value: `0x${string}`;
1881
+ yParity: `0x${string}`;
1882
+ gasPrice?: undefined;
1883
+ maxFeePerBlobGas: `0x${string}`;
1884
+ maxFeePerGas: `0x${string}`;
1885
+ maxPriorityFeePerGas: `0x${string}`;
1886
+ accessList: import("viem").AccessList;
1887
+ blobVersionedHashes: `0x${string}`[];
1888
+ chainId: `0x${string}`;
1889
+ type: "0x3";
1890
+ }, "yParity">, "typeHex"> & {
1891
+ isSystemTx?: undefined;
1892
+ mint?: undefined;
1893
+ sourceHash?: undefined;
1894
+ }) | ({
1895
+ r?: `0x${string}` | undefined;
1896
+ s?: `0x${string}` | undefined;
1897
+ v?: `0x${string}` | undefined;
1898
+ yParity?: `0x${string}` | undefined;
1899
+ gasPrice?: `0x${string}` | undefined;
1900
+ maxFeePerBlobGas?: `0x${string}` | undefined;
1901
+ maxFeePerGas?: `0x${string}` | undefined;
1902
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
1903
+ to?: `0x${string}` | null | undefined;
1904
+ from?: `0x${string}` | undefined;
1905
+ gas?: `0x${string}` | undefined;
1906
+ nonce?: `0x${string}` | undefined;
1907
+ value?: `0x${string}` | undefined;
1908
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7e" | undefined;
1909
+ accessList?: import("viem").AccessList | undefined;
1910
+ blockHash?: `0x${string}` | null | undefined;
1911
+ blockNumber?: `0x${string}` | null | undefined;
1912
+ hash?: `0x${string}` | undefined;
1913
+ input?: `0x${string}` | undefined;
1914
+ transactionIndex?: `0x${string}` | null | undefined;
1915
+ blobVersionedHashes?: `0x${string}`[] | undefined;
1916
+ chainId?: `0x${string}` | undefined;
1917
+ } & Omit<import("viem").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("viem").FeeValuesEIP1559<`0x${string}`> & {
1918
+ isSystemTx?: boolean | undefined;
1919
+ mint?: `0x${string}` | undefined;
1920
+ sourceHash: `0x${string}`;
1921
+ type: "0x7e";
1922
+ })) => {
1923
+ r: `0x${string}`;
1924
+ s: `0x${string}`;
1925
+ v: bigint;
1926
+ to: `0x${string}` | null;
1927
+ from: `0x${string}`;
1928
+ gas: bigint;
1929
+ nonce: number;
1930
+ value: bigint;
1931
+ blockHash: `0x${string}` | null;
1932
+ blockNumber: bigint | null;
1933
+ hash: `0x${string}`;
1934
+ input: `0x${string}`;
1935
+ transactionIndex: number | null;
1936
+ typeHex: `0x${string}` | null;
1937
+ gasPrice: bigint;
1938
+ maxFeePerBlobGas?: undefined;
1939
+ maxFeePerGas?: undefined;
1940
+ maxPriorityFeePerGas?: undefined;
1941
+ accessList?: undefined;
1942
+ blobVersionedHashes?: undefined;
1943
+ chainId?: number | undefined;
1944
+ yParity?: undefined;
1945
+ type: "legacy";
1946
+ isSystemTx?: undefined;
1947
+ mint?: undefined;
1948
+ sourceHash?: undefined;
1949
+ } | {
1950
+ r: `0x${string}`;
1951
+ s: `0x${string}`;
1952
+ v: bigint;
1953
+ to: `0x${string}` | null;
1954
+ from: `0x${string}`;
1955
+ gas: bigint;
1956
+ nonce: number;
1957
+ value: bigint;
1958
+ blockHash: `0x${string}` | null;
1959
+ blockNumber: bigint | null;
1960
+ hash: `0x${string}`;
1961
+ input: `0x${string}`;
1962
+ transactionIndex: number | null;
1963
+ typeHex: `0x${string}` | null;
1964
+ gasPrice: undefined;
1965
+ maxFeePerBlobGas?: undefined;
1966
+ maxFeePerGas: bigint;
1967
+ maxPriorityFeePerGas: bigint;
1968
+ accessList?: undefined;
1969
+ blobVersionedHashes?: undefined;
1970
+ chainId?: number | undefined;
1971
+ yParity: number;
1972
+ type: "deposit";
1973
+ isSystemTx?: boolean | undefined;
1974
+ mint?: bigint | undefined;
1975
+ sourceHash: `0x${string}`;
1976
+ } | {
1977
+ blockHash: `0x${string}` | null;
1978
+ blockNumber: bigint | null;
1979
+ from: `0x${string}`;
1980
+ gas: bigint;
1981
+ hash: `0x${string}`;
1982
+ input: `0x${string}`;
1983
+ nonce: number;
1984
+ r: `0x${string}`;
1985
+ s: `0x${string}`;
1986
+ to: `0x${string}` | null;
1987
+ transactionIndex: number | null;
1988
+ typeHex: `0x${string}` | null;
1989
+ v: bigint;
1990
+ value: bigint;
1991
+ yParity: number;
1992
+ gasPrice: bigint;
1993
+ maxFeePerBlobGas?: undefined;
1994
+ maxFeePerGas?: undefined;
1995
+ maxPriorityFeePerGas?: undefined;
1996
+ accessList: import("viem").AccessList;
1997
+ blobVersionedHashes?: undefined;
1998
+ chainId: number;
1999
+ type: "eip2930";
2000
+ isSystemTx?: undefined;
2001
+ mint?: undefined;
2002
+ sourceHash?: undefined;
2003
+ } | {
2004
+ blockHash: `0x${string}` | null;
2005
+ blockNumber: bigint | null;
2006
+ from: `0x${string}`;
2007
+ gas: bigint;
2008
+ hash: `0x${string}`;
2009
+ input: `0x${string}`;
2010
+ nonce: number;
2011
+ r: `0x${string}`;
2012
+ s: `0x${string}`;
2013
+ to: `0x${string}` | null;
2014
+ transactionIndex: number | null;
2015
+ typeHex: `0x${string}` | null;
2016
+ v: bigint;
2017
+ value: bigint;
2018
+ yParity: number;
2019
+ gasPrice: undefined;
2020
+ maxFeePerBlobGas?: undefined;
2021
+ maxFeePerGas: bigint;
2022
+ maxPriorityFeePerGas: bigint;
2023
+ accessList: import("viem").AccessList;
2024
+ blobVersionedHashes?: undefined;
2025
+ chainId: number;
2026
+ type: "eip1559";
2027
+ isSystemTx?: undefined;
2028
+ mint?: undefined;
2029
+ sourceHash?: undefined;
2030
+ } | {
2031
+ blockHash: `0x${string}` | null;
2032
+ blockNumber: bigint | null;
2033
+ from: `0x${string}`;
2034
+ gas: bigint;
2035
+ hash: `0x${string}`;
2036
+ input: `0x${string}`;
2037
+ nonce: number;
2038
+ r: `0x${string}`;
2039
+ s: `0x${string}`;
2040
+ to: `0x${string}` | null;
2041
+ transactionIndex: number | null;
2042
+ typeHex: `0x${string}` | null;
2043
+ v: bigint;
2044
+ value: bigint;
2045
+ yParity: number;
2046
+ gasPrice: undefined;
2047
+ maxFeePerBlobGas?: undefined;
2048
+ maxFeePerGas: bigint;
2049
+ maxPriorityFeePerGas: bigint;
2050
+ accessList: import("viem").AccessList;
2051
+ blobVersionedHashes?: undefined;
2052
+ chainId: number;
2053
+ type: "deposit";
2054
+ isSystemTx?: boolean | undefined;
2055
+ mint?: bigint | undefined;
2056
+ sourceHash: `0x${string}`;
2057
+ } | {
2058
+ blockHash: `0x${string}` | null;
2059
+ blockNumber: bigint | null;
2060
+ from: `0x${string}`;
2061
+ gas: bigint;
2062
+ hash: `0x${string}`;
2063
+ input: `0x${string}`;
2064
+ nonce: number;
2065
+ r: `0x${string}`;
2066
+ s: `0x${string}`;
2067
+ to: `0x${string}` | null;
2068
+ transactionIndex: number | null;
2069
+ typeHex: `0x${string}` | null;
2070
+ v: bigint;
2071
+ value: bigint;
2072
+ yParity: number;
2073
+ gasPrice: bigint;
2074
+ maxFeePerBlobGas?: undefined;
2075
+ maxFeePerGas: undefined;
2076
+ maxPriorityFeePerGas: undefined;
2077
+ accessList: import("viem").AccessList;
2078
+ blobVersionedHashes?: undefined;
2079
+ chainId: number;
2080
+ type: "eip2930";
2081
+ isSystemTx?: undefined;
2082
+ mint?: undefined;
2083
+ sourceHash?: undefined;
2084
+ } | {
2085
+ blockHash: `0x${string}` | null;
2086
+ blockNumber: bigint | null;
2087
+ from: `0x${string}`;
2088
+ gas: bigint;
2089
+ hash: `0x${string}`;
2090
+ input: `0x${string}`;
2091
+ nonce: number;
2092
+ r: `0x${string}`;
2093
+ s: `0x${string}`;
2094
+ to: `0x${string}` | null;
2095
+ transactionIndex: number | null;
2096
+ typeHex: `0x${string}` | null;
2097
+ v: bigint;
2098
+ value: bigint;
2099
+ yParity: number;
2100
+ gasPrice?: undefined;
2101
+ maxFeePerBlobGas?: undefined;
2102
+ maxFeePerGas: bigint;
2103
+ maxPriorityFeePerGas: bigint;
2104
+ accessList: import("viem").AccessList;
2105
+ blobVersionedHashes?: undefined;
2106
+ chainId: number;
2107
+ type: "eip1559";
2108
+ isSystemTx?: undefined;
2109
+ mint?: undefined;
2110
+ sourceHash?: undefined;
2111
+ } | {
2112
+ blockHash: `0x${string}` | null;
2113
+ blockNumber: bigint | null;
2114
+ from: `0x${string}`;
2115
+ gas: bigint;
2116
+ hash: `0x${string}`;
2117
+ input: `0x${string}`;
2118
+ nonce: number;
2119
+ r: `0x${string}`;
2120
+ s: `0x${string}`;
2121
+ to: `0x${string}` | null;
2122
+ transactionIndex: number | null;
2123
+ typeHex: `0x${string}` | null;
2124
+ v: bigint;
2125
+ value: bigint;
2126
+ yParity: number;
2127
+ gasPrice?: undefined;
2128
+ maxFeePerBlobGas?: undefined;
2129
+ maxFeePerGas: bigint;
2130
+ maxPriorityFeePerGas: bigint;
2131
+ accessList: import("viem").AccessList;
2132
+ blobVersionedHashes?: undefined;
2133
+ chainId: number;
2134
+ type: "deposit";
2135
+ isSystemTx?: boolean | undefined;
2136
+ mint?: bigint | undefined;
2137
+ sourceHash: `0x${string}`;
2138
+ } | {
2139
+ blockHash: `0x${string}` | null;
2140
+ blockNumber: bigint | null;
2141
+ from: `0x${string}`;
2142
+ gas: bigint;
2143
+ hash: `0x${string}`;
2144
+ input: `0x${string}`;
2145
+ nonce: number;
2146
+ r: `0x${string}`;
2147
+ s: `0x${string}`;
2148
+ to: `0x${string}` | null;
2149
+ transactionIndex: number | null;
2150
+ typeHex: `0x${string}` | null;
2151
+ v: bigint;
2152
+ value: bigint;
2153
+ yParity: number;
2154
+ gasPrice?: undefined;
2155
+ maxFeePerBlobGas: bigint;
2156
+ maxFeePerGas: bigint;
2157
+ maxPriorityFeePerGas: bigint;
2158
+ accessList: import("viem").AccessList;
2159
+ blobVersionedHashes: `0x${string}`[];
2160
+ chainId: number;
2161
+ type: "eip4844";
2162
+ isSystemTx?: undefined;
2163
+ mint?: undefined;
2164
+ sourceHash?: undefined;
2165
+ } | {
2166
+ blockHash: `0x${string}` | null;
2167
+ blockNumber: bigint | null;
2168
+ from: `0x${string}`;
2169
+ gas: bigint;
2170
+ hash: `0x${string}`;
2171
+ input: `0x${string}`;
2172
+ nonce: number;
2173
+ r: `0x${string}`;
2174
+ s: `0x${string}`;
2175
+ to: `0x${string}` | null;
2176
+ transactionIndex: number | null;
2177
+ typeHex: `0x${string}` | null;
2178
+ v: bigint;
2179
+ value: bigint;
2180
+ yParity: number;
2181
+ gasPrice?: undefined;
2182
+ maxFeePerBlobGas: undefined;
2183
+ maxFeePerGas: bigint;
2184
+ maxPriorityFeePerGas: bigint;
2185
+ accessList: import("viem").AccessList;
2186
+ blobVersionedHashes: `0x${string}`[];
2187
+ chainId: number;
2188
+ type: "deposit";
2189
+ isSystemTx?: boolean | undefined;
2190
+ mint?: bigint | undefined;
2191
+ sourceHash: `0x${string}`;
2192
+ };
2193
+ type: "transaction";
2194
+ };
2195
+ readonly transactionReceipt: {
2196
+ exclude: [] | undefined;
2197
+ format: (args: import("wagmi/chains").Assign<import("viem").ExactPartial<import("viem").RpcTransactionReceipt>, import("wagmi/chains").OpStackRpcTransactionReceiptOverrides>) => {
2198
+ blobGasPrice?: bigint | undefined;
2199
+ blobGasUsed?: bigint | undefined;
2200
+ blockHash: `0x${string}`;
2201
+ blockNumber: bigint;
2202
+ contractAddress: `0x${string}` | null | undefined;
2203
+ cumulativeGasUsed: bigint;
2204
+ effectiveGasPrice: bigint;
2205
+ from: `0x${string}`;
2206
+ gasUsed: bigint;
2207
+ logs: import("viem").Log<bigint, number, false, undefined, undefined, undefined, undefined>[];
2208
+ logsBloom: `0x${string}`;
2209
+ root?: `0x${string}` | undefined;
2210
+ status: "success" | "reverted";
2211
+ to: `0x${string}` | null;
2212
+ transactionHash: `0x${string}`;
2213
+ transactionIndex: number;
2214
+ type: import("viem").TransactionType;
2215
+ l1GasPrice: bigint | null;
2216
+ l1GasUsed: bigint | null;
2217
+ l1Fee: bigint | null;
2218
+ l1FeeScalar: number | null;
2219
+ };
2220
+ type: "transactionReceipt";
2221
+ };
2222
+ };
2223
+ serializers: {
2224
+ readonly transaction: typeof import("wagmi/chains").serializeTransactionOpStack;
2225
+ };
2226
+ fees?: import("viem").ChainFees<undefined> | undefined;
2227
+ };
2228
+ };
2229
+ export declare const CHAIN_NATIVE_TOKENS: ChainNativeTokenMap;
2230
+ export declare const MAX_GAS_LIMIT_MAP: Record<ChainId, number>;
2231
+ export declare const ALCHEMY_RPC_URL_MAP: Record<number, string>;
2232
+ export { polygon, optimism, arbitrum, base };