@circle-fin/usdckit 0.21.1 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (707) hide show
  1. package/dist/cjs/actions/generateTransferLink.d.ts +3 -3
  2. package/dist/cjs/actions/generateTransferLink.js +3 -0
  3. package/dist/cjs/actions/generateTransferLink.test.js +17 -0
  4. package/dist/cjs/actions/getSwapExactInQuote.d.ts +3 -3
  5. package/dist/cjs/actions/getTokenBalance.d.ts +30 -0
  6. package/dist/cjs/actions/getTokenBalance.js +51 -0
  7. package/dist/cjs/actions/getTokenBalance.test.js +165 -0
  8. package/dist/cjs/actions/index.d.ts +9 -1
  9. package/dist/cjs/actions/index.js +12 -9
  10. package/dist/cjs/actions/index.test.js +2 -0
  11. package/dist/cjs/actions/swapExactIn.d.ts +3 -3
  12. package/dist/cjs/actions/sweep.d.ts +3 -2
  13. package/dist/cjs/actions/sweep.js +5 -5
  14. package/dist/cjs/actions/sweep.test.js +13 -10
  15. package/dist/cjs/actions/transfer.d.ts +2 -2
  16. package/dist/cjs/actions/transfer.js +58 -30
  17. package/dist/cjs/actions/transfer.test.js +334 -135
  18. package/dist/cjs/chains.d.ts +2 -0
  19. package/dist/cjs/chains.js +12 -0
  20. package/dist/cjs/client.d.ts +35 -0
  21. package/dist/cjs/client.js +12 -0
  22. package/dist/cjs/extractChain.d.ts +109 -109
  23. package/dist/cjs/index.d.ts +4 -1
  24. package/dist/cjs/index.js +56 -10
  25. package/dist/cjs/index.test.js +1 -0
  26. package/dist/cjs/metadata.js +1 -1
  27. package/dist/cjs/onResponse.d.ts +1 -1
  28. package/dist/cjs/onResponse.js +3 -0
  29. package/dist/cjs/providers/circle-wallets/actions/createAccount.d.ts +2 -1
  30. package/dist/cjs/providers/circle-wallets/actions/createContractExecutionTransaction.d.ts +9 -1
  31. package/dist/cjs/providers/circle-wallets/actions/createContractExecutionTransaction.js +8 -0
  32. package/dist/cjs/providers/circle-wallets/actions/createTransaction.d.ts +4 -1
  33. package/dist/cjs/providers/circle-wallets/actions/createTransaction.js +3 -0
  34. package/dist/cjs/providers/circle-wallets/actions/createWalletSet.d.ts +1 -1
  35. package/dist/cjs/providers/circle-wallets/actions/createWallets.d.ts +1 -1
  36. package/dist/cjs/providers/circle-wallets/actions/deriveWallet.d.ts +1 -1
  37. package/dist/cjs/providers/circle-wallets/actions/drip.d.ts +2 -1
  38. package/dist/cjs/providers/circle-wallets/actions/estimateContractExecutionFee.d.ts +1 -1
  39. package/dist/cjs/providers/circle-wallets/actions/estimateTransferFee.d.ts +2 -1
  40. package/dist/cjs/providers/circle-wallets/actions/estimateTransferFee.js +2 -3
  41. package/dist/cjs/providers/circle-wallets/actions/estimateTransferFee.test.js +1 -20
  42. package/dist/cjs/providers/circle-wallets/actions/getAccounts.d.ts +2 -1
  43. package/dist/cjs/providers/circle-wallets/actions/getNotificationSignature.d.ts +1 -1
  44. package/dist/cjs/providers/circle-wallets/actions/getTokenBalances.d.ts +4 -15
  45. package/dist/cjs/providers/circle-wallets/actions/getTransactionById.d.ts +1 -1
  46. package/dist/cjs/providers/circle-wallets/actions/getWallet.d.ts +1 -1
  47. package/dist/cjs/providers/circle-wallets/actions/getWalletTokenBalance.d.ts +1 -1
  48. package/dist/cjs/providers/circle-wallets/actions/getWalletsWithBalances.d.ts +1 -1
  49. package/dist/cjs/providers/circle-wallets/actions/importContract.d.ts +1 -1
  50. package/dist/cjs/providers/circle-wallets/actions/index.d.ts +0 -8
  51. package/dist/cjs/providers/circle-wallets/actions/index.js +0 -8
  52. package/dist/cjs/providers/circle-wallets/actions/index.test.js +0 -4
  53. package/dist/cjs/providers/circle-wallets/actions/listTransactions.d.ts +1 -1
  54. package/dist/cjs/providers/circle-wallets/actions/listWallets.d.ts +1 -1
  55. package/dist/cjs/providers/circle-wallets/actions/requestTestnetTokens.d.ts +1 -1
  56. package/dist/cjs/providers/circle-wallets/actions/signTransaction.d.ts +1 -1
  57. package/dist/cjs/providers/circle-wallets/actions/verifyNotification.d.ts +1 -1
  58. package/dist/cjs/providers/circle-wallets/actions/writeContract.d.ts +2 -1
  59. package/dist/cjs/providers/circle-wallets/actions/writeContract.js +2 -5
  60. package/dist/cjs/providers/circle-wallets/actions/writeContract.test.js +9 -18
  61. package/dist/cjs/providers/circle-wallets/index.d.ts +4481 -0
  62. package/dist/cjs/providers/circle-wallets/index.js +40 -3
  63. package/dist/cjs/providers/circle-wallets/index.test.js +52 -3
  64. package/dist/cjs/providers/circle-wallets/transports/http.d.ts +19 -1
  65. package/dist/cjs/providers/circle-wallets/transports/http.js +2 -2
  66. package/dist/cjs/providers/circle-wallets/transports/http.test.js +24 -4
  67. package/dist/cjs/providers/circle-wallets/transports/index.d.ts +102 -22
  68. package/dist/cjs/providers/circle-wallets/transports/index.js +255 -1
  69. package/dist/cjs/providers/circle-wallets/transports/index.test.js +1623 -183
  70. package/dist/cjs/providers/circle-wallets/utils/index.d.ts +1 -0
  71. package/dist/cjs/providers/circle-wallets/utils/index.js +27 -0
  72. package/dist/cjs/providers/circle-wallets/utils/toSolanaSigner.d.ts +4 -0
  73. package/dist/cjs/providers/circle-wallets/utils/toSolanaSigner.js +33 -0
  74. package/dist/cjs/providers/circle-wallets/utils/toSolanaSigner.test.js +129 -0
  75. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/approve.d.ts +3 -3
  76. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/approve.js +5 -8
  77. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/bridge.d.ts +3 -3
  78. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/bridge.js +0 -3
  79. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/depositForBurn.d.ts +3 -3
  80. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/depositForBurn.js +5 -9
  81. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/index.js +6 -7
  82. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/listMessages.d.ts +3 -3
  83. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/receiveMessage.d.ts +3 -3
  84. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/receiveMessage.js +5 -9
  85. package/dist/cjs/providers/cross-chain-transfer-protocol/actions/waitForAttestationMessage.d.ts +3 -2
  86. package/dist/cjs/providers/cross-chain-transfer-protocol/transports/http.d.ts +0 -1
  87. package/dist/cjs/providers/cross-chain-transfer-protocol/transports/index.d.ts +1 -1
  88. package/dist/cjs/providers/cross-chain-transfer-protocol/transports/index.test.js +2 -2
  89. package/dist/cjs/providers/solana/actions/getAccountInfo.d.ts +23 -0
  90. package/dist/cjs/providers/{circle-wallets/actions/signTypedData.js → solana/actions/getAccountInfo.js} +7 -5
  91. package/dist/cjs/providers/solana/actions/getAccountInfo.test.js +39 -0
  92. package/dist/cjs/providers/solana/actions/getBalance.d.ts +15 -0
  93. package/dist/cjs/providers/solana/actions/getBalance.js +23 -0
  94. package/dist/cjs/providers/solana/actions/getBalance.test.js +35 -0
  95. package/dist/cjs/providers/solana/actions/getBlock.d.ts +60 -0
  96. package/dist/{esm/providers/circle-wallets/actions/signTypedData.js → cjs/providers/solana/actions/getBlock.js} +9 -4
  97. package/dist/cjs/providers/solana/actions/getBlock.test.d.ts +1 -0
  98. package/dist/cjs/providers/solana/actions/getBlock.test.js +34 -0
  99. package/dist/cjs/providers/solana/actions/getBlockCommitment.d.ts +13 -0
  100. package/dist/cjs/providers/solana/actions/getBlockCommitment.js +23 -0
  101. package/dist/cjs/providers/solana/actions/getBlockCommitment.test.d.ts +1 -0
  102. package/dist/cjs/providers/solana/actions/getBlockCommitment.test.js +36 -0
  103. package/dist/cjs/providers/solana/actions/getBlockHeight.d.ts +10 -0
  104. package/dist/cjs/providers/solana/actions/getBlockHeight.js +23 -0
  105. package/dist/cjs/providers/solana/actions/getBlockHeight.test.d.ts +1 -0
  106. package/dist/cjs/providers/solana/actions/getBlockHeight.test.js +33 -0
  107. package/dist/cjs/providers/solana/actions/getBlockProduction.d.ts +23 -0
  108. package/dist/cjs/providers/solana/actions/getBlockProduction.js +23 -0
  109. package/dist/cjs/providers/solana/actions/getBlockProduction.test.d.ts +1 -0
  110. package/dist/cjs/providers/solana/actions/getBlockProduction.test.js +40 -0
  111. package/dist/cjs/providers/solana/actions/getBlockTime.d.ts +10 -0
  112. package/dist/cjs/providers/solana/actions/getBlockTime.js +23 -0
  113. package/dist/cjs/providers/solana/actions/getBlockTime.test.d.ts +1 -0
  114. package/dist/cjs/providers/solana/actions/getBlockTime.test.js +33 -0
  115. package/dist/cjs/providers/solana/actions/getBlocks.d.ts +10 -0
  116. package/dist/cjs/providers/solana/actions/getBlocks.js +23 -0
  117. package/dist/cjs/providers/solana/actions/getBlocks.test.d.ts +1 -0
  118. package/dist/cjs/providers/solana/actions/getBlocks.test.js +35 -0
  119. package/dist/cjs/providers/solana/actions/getBlocksWithLimit.d.ts +10 -0
  120. package/dist/cjs/providers/solana/actions/getBlocksWithLimit.js +23 -0
  121. package/dist/cjs/providers/solana/actions/getBlocksWithLimit.test.d.ts +1 -0
  122. package/dist/cjs/providers/solana/actions/getBlocksWithLimit.test.js +34 -0
  123. package/dist/cjs/providers/solana/actions/getClusterName.d.ts +8 -0
  124. package/dist/cjs/providers/solana/actions/getClusterName.js +25 -0
  125. package/dist/cjs/providers/solana/actions/getClusterName.test.d.ts +1 -0
  126. package/dist/cjs/providers/solana/actions/getClusterName.test.js +32 -0
  127. package/dist/cjs/providers/solana/actions/getClusterNodes.d.ts +25 -0
  128. package/dist/cjs/providers/solana/actions/getClusterNodes.js +23 -0
  129. package/dist/cjs/providers/solana/actions/getClusterNodes.test.d.ts +1 -0
  130. package/dist/cjs/providers/solana/actions/getClusterNodes.test.js +32 -0
  131. package/dist/cjs/providers/solana/actions/getEpochInfo.d.ts +17 -0
  132. package/dist/cjs/providers/solana/actions/getEpochInfo.js +23 -0
  133. package/dist/cjs/providers/solana/actions/getEpochInfo.test.d.ts +1 -0
  134. package/dist/cjs/providers/solana/actions/getEpochInfo.test.js +39 -0
  135. package/dist/cjs/providers/solana/actions/getEpochSchedule.d.ts +16 -0
  136. package/dist/cjs/providers/solana/actions/getEpochSchedule.js +23 -0
  137. package/dist/cjs/providers/solana/actions/getEpochSchedule.test.d.ts +1 -0
  138. package/dist/cjs/providers/solana/actions/getEpochSchedule.test.js +32 -0
  139. package/dist/cjs/providers/solana/actions/getFeeForMessage.d.ts +15 -0
  140. package/dist/cjs/providers/solana/actions/getFeeForMessage.js +23 -0
  141. package/dist/cjs/providers/solana/actions/getFeeForMessage.test.d.ts +1 -0
  142. package/dist/cjs/providers/solana/actions/getFeeForMessage.test.js +33 -0
  143. package/dist/cjs/providers/solana/actions/getFirstAvailableBlock.d.ts +10 -0
  144. package/dist/cjs/providers/solana/actions/getFirstAvailableBlock.js +23 -0
  145. package/dist/cjs/providers/solana/actions/getFirstAvailableBlock.test.d.ts +1 -0
  146. package/dist/cjs/providers/solana/actions/getFirstAvailableBlock.test.js +32 -0
  147. package/dist/cjs/providers/solana/actions/getGenesisHash.d.ts +10 -0
  148. package/dist/cjs/providers/solana/actions/getGenesisHash.js +23 -0
  149. package/dist/cjs/providers/solana/actions/getGenesisHash.test.d.ts +1 -0
  150. package/dist/cjs/providers/solana/actions/getGenesisHash.test.js +32 -0
  151. package/dist/cjs/providers/solana/actions/getHealth.d.ts +10 -0
  152. package/dist/cjs/providers/solana/actions/getHealth.js +23 -0
  153. package/dist/cjs/providers/solana/actions/getHealth.test.d.ts +1 -0
  154. package/dist/cjs/providers/solana/actions/getHealth.test.js +32 -0
  155. package/dist/cjs/providers/solana/actions/getHighestSnapshotSlot.d.ts +13 -0
  156. package/dist/cjs/providers/solana/actions/getHighestSnapshotSlot.js +23 -0
  157. package/dist/cjs/providers/solana/actions/getHighestSnapshotSlot.test.d.ts +1 -0
  158. package/dist/cjs/providers/solana/actions/getHighestSnapshotSlot.test.js +32 -0
  159. package/dist/cjs/providers/solana/actions/getIdentity.d.ts +12 -0
  160. package/dist/cjs/providers/solana/actions/getIdentity.js +23 -0
  161. package/dist/cjs/providers/solana/actions/getIdentity.test.d.ts +1 -0
  162. package/dist/cjs/providers/solana/actions/getIdentity.test.js +32 -0
  163. package/dist/cjs/providers/solana/actions/getInflationGovernor.d.ts +16 -0
  164. package/dist/cjs/providers/solana/actions/getInflationGovernor.js +23 -0
  165. package/dist/cjs/providers/solana/actions/getInflationGovernor.test.d.ts +1 -0
  166. package/dist/cjs/providers/solana/actions/getInflationGovernor.test.js +33 -0
  167. package/dist/cjs/providers/solana/actions/getInflationRate.d.ts +15 -0
  168. package/dist/cjs/providers/solana/actions/getInflationRate.js +23 -0
  169. package/dist/cjs/providers/solana/actions/getInflationRate.test.d.ts +1 -0
  170. package/dist/cjs/providers/solana/actions/getInflationRate.test.js +39 -0
  171. package/dist/cjs/providers/solana/actions/getInflationReward.d.ts +16 -0
  172. package/dist/cjs/providers/solana/actions/getInflationReward.js +23 -0
  173. package/dist/cjs/providers/solana/actions/getInflationReward.test.d.ts +1 -0
  174. package/dist/cjs/providers/solana/actions/getInflationReward.test.js +35 -0
  175. package/dist/cjs/providers/solana/actions/getLargestAccounts.d.ts +18 -0
  176. package/dist/cjs/providers/solana/actions/getLargestAccounts.js +23 -0
  177. package/dist/cjs/providers/solana/actions/getLargestAccounts.test.d.ts +1 -0
  178. package/dist/cjs/providers/solana/actions/getLargestAccounts.test.js +33 -0
  179. package/dist/cjs/providers/solana/actions/getLatestBlockhash.d.ts +18 -0
  180. package/dist/cjs/providers/solana/actions/getLatestBlockhash.js +23 -0
  181. package/dist/cjs/providers/solana/actions/getLatestBlockhash.test.d.ts +1 -0
  182. package/dist/cjs/providers/solana/actions/getLatestBlockhash.test.js +33 -0
  183. package/dist/cjs/providers/solana/actions/getLeaderSchedule.d.ts +12 -0
  184. package/dist/cjs/providers/solana/actions/getLeaderSchedule.js +23 -0
  185. package/dist/cjs/providers/solana/actions/getLeaderSchedule.test.d.ts +1 -0
  186. package/dist/cjs/providers/solana/actions/getLeaderSchedule.test.js +34 -0
  187. package/dist/cjs/providers/solana/actions/getMaxRetransmitSlot.d.ts +10 -0
  188. package/dist/cjs/providers/solana/actions/getMaxRetransmitSlot.js +23 -0
  189. package/dist/cjs/providers/solana/actions/getMaxRetransmitSlot.test.d.ts +1 -0
  190. package/dist/cjs/providers/solana/actions/getMaxRetransmitSlot.test.js +32 -0
  191. package/dist/cjs/providers/solana/actions/getMaxShredInsertSlot.d.ts +10 -0
  192. package/dist/cjs/providers/solana/actions/getMaxShredInsertSlot.js +23 -0
  193. package/dist/cjs/providers/solana/actions/getMaxShredInsertSlot.test.d.ts +1 -0
  194. package/dist/cjs/providers/solana/actions/getMaxShredInsertSlot.test.js +32 -0
  195. package/dist/cjs/providers/solana/actions/getMinimumBalanceForRentExemption.d.ts +10 -0
  196. package/dist/cjs/providers/solana/actions/getMinimumBalanceForRentExemption.js +23 -0
  197. package/dist/cjs/providers/solana/actions/getMinimumBalanceForRentExemption.test.d.ts +1 -0
  198. package/dist/cjs/providers/solana/actions/getMinimumBalanceForRentExemption.test.js +34 -0
  199. package/dist/cjs/providers/solana/actions/getMultipleAccounts.d.ts +23 -0
  200. package/dist/cjs/providers/solana/actions/getMultipleAccounts.js +23 -0
  201. package/dist/cjs/providers/solana/actions/getMultipleAccounts.test.d.ts +1 -0
  202. package/dist/cjs/providers/solana/actions/getMultipleAccounts.test.js +43 -0
  203. package/dist/cjs/providers/solana/actions/getProgramAccounts.d.ts +21 -0
  204. package/dist/cjs/providers/solana/actions/getProgramAccounts.js +23 -0
  205. package/dist/cjs/providers/solana/actions/getProgramAccounts.test.d.ts +1 -0
  206. package/dist/cjs/providers/solana/actions/getProgramAccounts.test.js +39 -0
  207. package/dist/cjs/providers/solana/actions/getRecentPerformanceSamples.d.ts +16 -0
  208. package/dist/cjs/providers/solana/actions/getRecentPerformanceSamples.js +23 -0
  209. package/dist/cjs/providers/solana/actions/getRecentPerformanceSamples.test.d.ts +1 -0
  210. package/dist/cjs/providers/solana/actions/getRecentPerformanceSamples.test.js +33 -0
  211. package/dist/cjs/providers/solana/actions/getRecentPrioritizationFees.d.ts +13 -0
  212. package/dist/cjs/providers/solana/actions/getRecentPrioritizationFees.js +23 -0
  213. package/dist/cjs/providers/solana/actions/getRecentPrioritizationFees.test.d.ts +1 -0
  214. package/dist/cjs/providers/solana/actions/getRecentPrioritizationFees.test.js +34 -0
  215. package/dist/cjs/providers/solana/actions/getSignatureStatuses.d.ts +25 -0
  216. package/dist/cjs/providers/solana/actions/getSignatureStatuses.js +23 -0
  217. package/dist/cjs/providers/solana/actions/getSignatureStatuses.test.d.ts +1 -0
  218. package/dist/cjs/providers/solana/actions/getSignatureStatuses.test.js +35 -0
  219. package/dist/cjs/providers/solana/actions/getSignaturesForAddress.d.ts +17 -0
  220. package/dist/cjs/providers/solana/actions/getSignaturesForAddress.js +23 -0
  221. package/dist/cjs/providers/solana/actions/getSignaturesForAddress.test.d.ts +1 -0
  222. package/dist/cjs/providers/solana/actions/getSignaturesForAddress.test.js +46 -0
  223. package/dist/cjs/providers/solana/actions/getSlot.d.ts +10 -0
  224. package/dist/cjs/providers/solana/actions/getSlot.js +23 -0
  225. package/dist/cjs/providers/solana/actions/getSlot.test.d.ts +1 -0
  226. package/dist/cjs/providers/solana/actions/getSlot.test.js +33 -0
  227. package/dist/cjs/providers/solana/actions/getSlotLeader.d.ts +10 -0
  228. package/dist/cjs/providers/solana/actions/getSlotLeader.js +23 -0
  229. package/dist/cjs/providers/solana/actions/getSlotLeader.test.d.ts +1 -0
  230. package/dist/cjs/providers/solana/actions/getSlotLeader.test.js +33 -0
  231. package/dist/cjs/providers/solana/actions/getSlotLeaders.d.ts +10 -0
  232. package/dist/cjs/providers/solana/actions/getSlotLeaders.js +23 -0
  233. package/dist/cjs/providers/solana/actions/getSlotLeaders.test.d.ts +1 -0
  234. package/dist/cjs/providers/solana/actions/getSlotLeaders.test.js +34 -0
  235. package/dist/cjs/providers/solana/actions/getSupply.d.ts +21 -0
  236. package/dist/cjs/providers/solana/actions/getSupply.js +23 -0
  237. package/dist/cjs/providers/solana/actions/getSupply.test.d.ts +1 -0
  238. package/dist/cjs/providers/solana/actions/getSupply.test.js +33 -0
  239. package/dist/cjs/providers/solana/actions/getTokenAccountBalance.d.ts +20 -0
  240. package/dist/cjs/providers/solana/actions/getTokenAccountBalance.js +23 -0
  241. package/dist/cjs/providers/solana/actions/getTokenAccountBalance.test.d.ts +1 -0
  242. package/dist/cjs/providers/solana/actions/getTokenAccountBalance.test.js +34 -0
  243. package/dist/cjs/providers/solana/actions/getTokenAccountsByDelegate.d.ts +26 -0
  244. package/dist/cjs/providers/solana/actions/getTokenAccountsByDelegate.js +23 -0
  245. package/dist/cjs/providers/solana/actions/getTokenAccountsByDelegate.test.d.ts +1 -0
  246. package/dist/cjs/providers/solana/actions/getTokenAccountsByDelegate.test.js +35 -0
  247. package/dist/cjs/providers/solana/actions/getTokenAccountsByOwner.d.ts +26 -0
  248. package/dist/cjs/providers/solana/actions/getTokenAccountsByOwner.js +23 -0
  249. package/dist/cjs/providers/solana/actions/getTokenAccountsByOwner.test.d.ts +1 -0
  250. package/dist/cjs/providers/solana/actions/getTokenAccountsByOwner.test.js +39 -0
  251. package/dist/cjs/providers/solana/actions/getTokenLargestAccounts.d.ts +22 -0
  252. package/dist/cjs/providers/solana/actions/getTokenLargestAccounts.js +23 -0
  253. package/dist/cjs/providers/solana/actions/getTokenLargestAccounts.test.d.ts +1 -0
  254. package/dist/cjs/providers/solana/actions/getTokenLargestAccounts.test.js +34 -0
  255. package/dist/cjs/providers/solana/actions/getTokenSupply.d.ts +20 -0
  256. package/dist/cjs/providers/solana/actions/getTokenSupply.js +23 -0
  257. package/dist/cjs/providers/solana/actions/getTokenSupply.test.d.ts +1 -0
  258. package/dist/cjs/providers/solana/actions/getTokenSupply.test.js +34 -0
  259. package/dist/cjs/providers/solana/actions/getTransaction.d.ts +80 -0
  260. package/dist/cjs/providers/solana/actions/getTransaction.js +23 -0
  261. package/dist/cjs/providers/solana/actions/getTransaction.test.d.ts +1 -0
  262. package/dist/cjs/providers/solana/actions/getTransaction.test.js +34 -0
  263. package/dist/cjs/providers/solana/actions/getTransactionCount.d.ts +10 -0
  264. package/dist/cjs/providers/solana/actions/getTransactionCount.js +23 -0
  265. package/dist/cjs/providers/solana/actions/getTransactionCount.test.d.ts +1 -0
  266. package/dist/cjs/providers/solana/actions/getTransactionCount.test.js +33 -0
  267. package/dist/cjs/providers/solana/actions/getVersion.d.ts +13 -0
  268. package/dist/cjs/providers/solana/actions/getVersion.js +23 -0
  269. package/dist/cjs/providers/solana/actions/getVersion.test.d.ts +1 -0
  270. package/dist/cjs/providers/solana/actions/getVersion.test.js +35 -0
  271. package/dist/cjs/providers/solana/actions/getVoteAccounts.d.ts +31 -0
  272. package/dist/cjs/providers/solana/actions/getVoteAccounts.js +23 -0
  273. package/dist/cjs/providers/solana/actions/getVoteAccounts.test.d.ts +1 -0
  274. package/dist/cjs/providers/solana/actions/getVoteAccounts.test.js +33 -0
  275. package/dist/cjs/providers/solana/actions/index.d.ts +216 -0
  276. package/dist/cjs/providers/solana/actions/index.js +190 -0
  277. package/dist/cjs/providers/solana/actions/index.test.d.ts +1 -0
  278. package/dist/cjs/providers/solana/actions/index.test.js +78 -0
  279. package/dist/cjs/providers/solana/actions/isBlockhashValid.d.ts +15 -0
  280. package/dist/cjs/providers/solana/actions/isBlockhashValid.js +23 -0
  281. package/dist/cjs/providers/solana/actions/isBlockhashValid.test.d.ts +1 -0
  282. package/dist/cjs/providers/solana/actions/isBlockhashValid.test.js +34 -0
  283. package/dist/cjs/providers/solana/actions/minimumLedgerSlot.d.ts +10 -0
  284. package/dist/cjs/providers/solana/actions/minimumLedgerSlot.js +23 -0
  285. package/dist/cjs/providers/solana/actions/minimumLedgerSlot.test.d.ts +1 -0
  286. package/dist/cjs/providers/solana/actions/minimumLedgerSlot.test.js +32 -0
  287. package/dist/cjs/providers/solana/actions/sendTransaction.d.ts +13 -0
  288. package/dist/cjs/providers/solana/actions/sendTransaction.js +30 -0
  289. package/dist/cjs/providers/solana/actions/sendTransaction.test.d.ts +1 -0
  290. package/dist/cjs/providers/solana/actions/sendTransaction.test.js +82 -0
  291. package/dist/cjs/providers/solana/actions/simulateTransaction.d.ts +28 -0
  292. package/dist/cjs/providers/solana/actions/simulateTransaction.js +30 -0
  293. package/dist/cjs/providers/solana/actions/simulateTransaction.test.d.ts +1 -0
  294. package/dist/cjs/providers/solana/actions/simulateTransaction.test.js +82 -0
  295. package/dist/cjs/providers/solana/actions/switchCluster.d.ts +10 -0
  296. package/dist/cjs/providers/solana/actions/switchCluster.js +26 -0
  297. package/dist/cjs/providers/solana/actions/switchCluster.test.d.ts +1 -0
  298. package/dist/cjs/providers/solana/actions/switchCluster.test.js +33 -0
  299. package/dist/cjs/providers/solana/constants.d.ts +6 -0
  300. package/dist/cjs/providers/solana/constants.js +23 -0
  301. package/dist/cjs/providers/solana/index.d.ts +101 -0
  302. package/dist/cjs/providers/solana/index.js +39 -0
  303. package/dist/cjs/providers/solana/index.test.d.ts +1 -0
  304. package/dist/cjs/providers/solana/index.test.js +201 -0
  305. package/dist/cjs/providers/solana/transports/http.d.ts +8 -0
  306. package/dist/cjs/providers/solana/transports/http.js +20 -0
  307. package/dist/cjs/providers/solana/transports/http.test.d.ts +1 -0
  308. package/dist/cjs/providers/solana/transports/http.test.js +88 -0
  309. package/dist/cjs/providers/solana/transports/index.d.ts +734 -0
  310. package/dist/cjs/providers/solana/transports/index.js +205 -0
  311. package/dist/cjs/providers/solana/transports/index.test.d.ts +1 -0
  312. package/dist/cjs/providers/solana/transports/index.test.js +307 -0
  313. package/dist/cjs/providers/solana/utils/codecs.d.ts +4 -0
  314. package/dist/cjs/providers/solana/utils/codecs.js +20 -0
  315. package/dist/cjs/providers/solana/utils/index.d.ts +2 -0
  316. package/dist/cjs/providers/solana/utils/index.js +30 -0
  317. package/dist/cjs/providers/solana/utils/index.test.d.ts +1 -0
  318. package/dist/cjs/providers/solana/utils/index.test.js +53 -0
  319. package/dist/cjs/providers/solana/utils/toBase64EncodedWireTransaction.d.ts +26 -0
  320. package/dist/cjs/providers/solana/utils/toBase64EncodedWireTransaction.js +42 -0
  321. package/dist/cjs/providers/solana/utils/toBase64EncodedWireTransaction.test.d.ts +1 -0
  322. package/dist/cjs/providers/solana/utils/toBase64EncodedWireTransaction.test.js +108 -0
  323. package/dist/cjs/providers/uniswap/actions/exactInputSingle.d.ts +3 -3
  324. package/dist/cjs/providers/uniswap/actions/exactInputSingle.js +4 -4
  325. package/dist/cjs/providers/uniswap/actions/getPool.d.ts +3 -2
  326. package/dist/cjs/providers/uniswap/actions/quoteExactInputSingle.d.ts +3 -2
  327. package/dist/cjs/types.d.ts +8 -16
  328. package/dist/cjs/types.js +0 -10
  329. package/dist/cjs/utils/createConfig.d.ts +36 -0
  330. package/dist/cjs/utils/createConfig.js +51 -0
  331. package/dist/cjs/utils/createConfig.test.d.ts +1 -0
  332. package/dist/cjs/utils/createConfig.test.js +66 -0
  333. package/dist/cjs/utils/createCustomWalletClient.d.ts +46 -0
  334. package/dist/cjs/utils/createCustomWalletClient.js +114 -0
  335. package/dist/cjs/utils/createCustomWalletClient.test.d.ts +1 -0
  336. package/dist/cjs/utils/createCustomWalletClient.test.js +100 -0
  337. package/dist/cjs/utils/getChainContractByAddress.d.ts +2 -1
  338. package/dist/cjs/utils/getClient.d.ts +458 -0
  339. package/dist/cjs/utils/getClient.js +25 -0
  340. package/dist/cjs/utils/getClient.test.d.ts +1 -0
  341. package/dist/cjs/utils/getClient.test.js +46 -0
  342. package/dist/cjs/utils/index.d.ts +1 -0
  343. package/dist/cjs/utils/index.js +1 -0
  344. package/dist/cjs/utils/index.test.js +2 -0
  345. package/dist/esm/actions/generateTransferLink.d.ts +3 -3
  346. package/dist/esm/actions/generateTransferLink.js +3 -0
  347. package/dist/esm/actions/generateTransferLink.test.js +17 -0
  348. package/dist/esm/actions/getSwapExactInQuote.d.ts +3 -3
  349. package/dist/esm/actions/getTokenBalance.d.ts +30 -0
  350. package/dist/esm/actions/getTokenBalance.js +48 -0
  351. package/dist/esm/actions/getTokenBalance.test.d.ts +1 -0
  352. package/dist/esm/actions/getTokenBalance.test.js +163 -0
  353. package/dist/esm/actions/index.d.ts +9 -1
  354. package/dist/esm/actions/index.js +12 -9
  355. package/dist/esm/actions/index.test.js +2 -0
  356. package/dist/esm/actions/swapExactIn.d.ts +3 -3
  357. package/dist/esm/actions/sweep.d.ts +3 -2
  358. package/dist/esm/actions/sweep.js +5 -5
  359. package/dist/esm/actions/sweep.test.js +13 -10
  360. package/dist/esm/actions/transfer.d.ts +2 -2
  361. package/dist/esm/actions/transfer.js +60 -32
  362. package/dist/esm/actions/transfer.test.js +334 -135
  363. package/dist/esm/chains.d.ts +2 -0
  364. package/dist/esm/chains.js +11 -0
  365. package/dist/esm/client.d.ts +35 -0
  366. package/dist/esm/client.js +11 -0
  367. package/dist/esm/extractChain.d.ts +109 -109
  368. package/dist/esm/index.d.ts +4 -1
  369. package/dist/esm/index.js +31 -7
  370. package/dist/esm/index.test.js +1 -0
  371. package/dist/esm/metadata.js +1 -1
  372. package/dist/esm/onResponse.d.ts +1 -1
  373. package/dist/esm/onResponse.js +3 -0
  374. package/dist/esm/providers/circle-wallets/actions/createAccount.d.ts +2 -1
  375. package/dist/esm/providers/circle-wallets/actions/createContractExecutionTransaction.d.ts +9 -1
  376. package/dist/esm/providers/circle-wallets/actions/createContractExecutionTransaction.js +8 -0
  377. package/dist/esm/providers/circle-wallets/actions/createTransaction.d.ts +4 -1
  378. package/dist/esm/providers/circle-wallets/actions/createTransaction.js +3 -0
  379. package/dist/esm/providers/circle-wallets/actions/createWalletSet.d.ts +1 -1
  380. package/dist/esm/providers/circle-wallets/actions/createWallets.d.ts +1 -1
  381. package/dist/esm/providers/circle-wallets/actions/deriveWallet.d.ts +1 -1
  382. package/dist/esm/providers/circle-wallets/actions/drip.d.ts +2 -1
  383. package/dist/esm/providers/circle-wallets/actions/estimateContractExecutionFee.d.ts +1 -1
  384. package/dist/esm/providers/circle-wallets/actions/estimateTransferFee.d.ts +2 -1
  385. package/dist/esm/providers/circle-wallets/actions/estimateTransferFee.js +2 -3
  386. package/dist/esm/providers/circle-wallets/actions/estimateTransferFee.test.js +1 -20
  387. package/dist/esm/providers/circle-wallets/actions/getAccounts.d.ts +2 -1
  388. package/dist/esm/providers/circle-wallets/actions/getNotificationSignature.d.ts +1 -1
  389. package/dist/esm/providers/circle-wallets/actions/getTokenBalances.d.ts +4 -15
  390. package/dist/esm/providers/circle-wallets/actions/getTransactionById.d.ts +1 -1
  391. package/dist/esm/providers/circle-wallets/actions/getWallet.d.ts +1 -1
  392. package/dist/esm/providers/circle-wallets/actions/getWalletTokenBalance.d.ts +1 -1
  393. package/dist/esm/providers/circle-wallets/actions/getWalletsWithBalances.d.ts +1 -1
  394. package/dist/esm/providers/circle-wallets/actions/importContract.d.ts +1 -1
  395. package/dist/esm/providers/circle-wallets/actions/index.d.ts +0 -8
  396. package/dist/esm/providers/circle-wallets/actions/index.js +0 -8
  397. package/dist/esm/providers/circle-wallets/actions/index.test.js +0 -4
  398. package/dist/esm/providers/circle-wallets/actions/listTransactions.d.ts +1 -1
  399. package/dist/esm/providers/circle-wallets/actions/listWallets.d.ts +1 -1
  400. package/dist/esm/providers/circle-wallets/actions/requestTestnetTokens.d.ts +1 -1
  401. package/dist/esm/providers/circle-wallets/actions/signTransaction.d.ts +1 -1
  402. package/dist/esm/providers/circle-wallets/actions/verifyNotification.d.ts +1 -1
  403. package/dist/esm/providers/circle-wallets/actions/writeContract.d.ts +2 -1
  404. package/dist/esm/providers/circle-wallets/actions/writeContract.js +2 -5
  405. package/dist/esm/providers/circle-wallets/actions/writeContract.test.js +9 -18
  406. package/dist/esm/providers/circle-wallets/index.d.ts +4481 -0
  407. package/dist/esm/providers/circle-wallets/index.js +35 -0
  408. package/dist/esm/providers/circle-wallets/index.test.js +51 -2
  409. package/dist/esm/providers/circle-wallets/transports/http.d.ts +19 -1
  410. package/dist/esm/providers/circle-wallets/transports/http.js +3 -3
  411. package/dist/esm/providers/circle-wallets/transports/http.test.js +24 -4
  412. package/dist/esm/providers/circle-wallets/transports/index.d.ts +102 -22
  413. package/dist/esm/providers/circle-wallets/transports/index.js +257 -3
  414. package/dist/esm/providers/circle-wallets/transports/index.test.js +1617 -177
  415. package/dist/esm/providers/circle-wallets/utils/index.d.ts +1 -0
  416. package/dist/esm/providers/circle-wallets/utils/index.js +11 -0
  417. package/dist/esm/providers/circle-wallets/utils/toSolanaSigner.d.ts +4 -0
  418. package/dist/esm/providers/circle-wallets/utils/toSolanaSigner.js +30 -0
  419. package/dist/esm/providers/circle-wallets/utils/toSolanaSigner.test.d.ts +1 -0
  420. package/dist/esm/providers/circle-wallets/utils/toSolanaSigner.test.js +127 -0
  421. package/dist/esm/providers/cross-chain-transfer-protocol/actions/approve.d.ts +3 -3
  422. package/dist/esm/providers/cross-chain-transfer-protocol/actions/approve.js +7 -10
  423. package/dist/esm/providers/cross-chain-transfer-protocol/actions/bridge.d.ts +3 -3
  424. package/dist/esm/providers/cross-chain-transfer-protocol/actions/bridge.js +0 -3
  425. package/dist/esm/providers/cross-chain-transfer-protocol/actions/depositForBurn.d.ts +3 -3
  426. package/dist/esm/providers/cross-chain-transfer-protocol/actions/depositForBurn.js +6 -10
  427. package/dist/esm/providers/cross-chain-transfer-protocol/actions/index.js +6 -7
  428. package/dist/esm/providers/cross-chain-transfer-protocol/actions/listMessages.d.ts +3 -3
  429. package/dist/esm/providers/cross-chain-transfer-protocol/actions/receiveMessage.d.ts +3 -3
  430. package/dist/esm/providers/cross-chain-transfer-protocol/actions/receiveMessage.js +6 -10
  431. package/dist/esm/providers/cross-chain-transfer-protocol/actions/waitForAttestationMessage.d.ts +3 -2
  432. package/dist/esm/providers/cross-chain-transfer-protocol/transports/http.d.ts +0 -1
  433. package/dist/esm/providers/cross-chain-transfer-protocol/transports/index.d.ts +1 -1
  434. package/dist/esm/providers/cross-chain-transfer-protocol/transports/index.test.js +2 -2
  435. package/dist/esm/providers/solana/actions/getAccountInfo.d.ts +23 -0
  436. package/dist/esm/providers/solana/actions/getAccountInfo.js +20 -0
  437. package/dist/esm/providers/solana/actions/getAccountInfo.test.d.ts +1 -0
  438. package/dist/esm/providers/solana/actions/getAccountInfo.test.js +37 -0
  439. package/dist/esm/providers/solana/actions/getBalance.d.ts +15 -0
  440. package/dist/esm/providers/solana/actions/getBalance.js +20 -0
  441. package/dist/esm/providers/solana/actions/getBalance.test.d.ts +1 -0
  442. package/dist/esm/providers/solana/actions/getBalance.test.js +33 -0
  443. package/dist/esm/providers/solana/actions/getBlock.d.ts +60 -0
  444. package/dist/esm/providers/solana/actions/getBlock.js +20 -0
  445. package/dist/esm/providers/solana/actions/getBlock.test.d.ts +1 -0
  446. package/dist/esm/providers/solana/actions/getBlock.test.js +32 -0
  447. package/dist/esm/providers/solana/actions/getBlockCommitment.d.ts +13 -0
  448. package/dist/esm/providers/solana/actions/getBlockCommitment.js +20 -0
  449. package/dist/esm/providers/solana/actions/getBlockCommitment.test.d.ts +1 -0
  450. package/dist/esm/providers/solana/actions/getBlockCommitment.test.js +34 -0
  451. package/dist/esm/providers/solana/actions/getBlockHeight.d.ts +10 -0
  452. package/dist/esm/providers/solana/actions/getBlockHeight.js +20 -0
  453. package/dist/esm/providers/solana/actions/getBlockHeight.test.d.ts +1 -0
  454. package/dist/esm/providers/solana/actions/getBlockHeight.test.js +31 -0
  455. package/dist/esm/providers/solana/actions/getBlockProduction.d.ts +23 -0
  456. package/dist/esm/providers/solana/actions/getBlockProduction.js +20 -0
  457. package/dist/esm/providers/solana/actions/getBlockProduction.test.d.ts +1 -0
  458. package/dist/esm/providers/solana/actions/getBlockProduction.test.js +38 -0
  459. package/dist/esm/providers/solana/actions/getBlockTime.d.ts +10 -0
  460. package/dist/esm/providers/solana/actions/getBlockTime.js +20 -0
  461. package/dist/esm/providers/solana/actions/getBlockTime.test.d.ts +1 -0
  462. package/dist/esm/providers/solana/actions/getBlockTime.test.js +31 -0
  463. package/dist/esm/providers/solana/actions/getBlocks.d.ts +10 -0
  464. package/dist/esm/providers/solana/actions/getBlocks.js +20 -0
  465. package/dist/esm/providers/solana/actions/getBlocks.test.d.ts +1 -0
  466. package/dist/esm/providers/solana/actions/getBlocks.test.js +33 -0
  467. package/dist/esm/providers/solana/actions/getBlocksWithLimit.d.ts +10 -0
  468. package/dist/esm/providers/solana/actions/getBlocksWithLimit.js +20 -0
  469. package/dist/esm/providers/solana/actions/getBlocksWithLimit.test.d.ts +1 -0
  470. package/dist/esm/providers/solana/actions/getBlocksWithLimit.test.js +32 -0
  471. package/dist/esm/providers/solana/actions/getClusterName.d.ts +8 -0
  472. package/dist/esm/providers/solana/actions/getClusterName.js +22 -0
  473. package/dist/esm/providers/solana/actions/getClusterName.test.d.ts +1 -0
  474. package/dist/esm/providers/solana/actions/getClusterName.test.js +30 -0
  475. package/dist/esm/providers/solana/actions/getClusterNodes.d.ts +25 -0
  476. package/dist/esm/providers/solana/actions/getClusterNodes.js +20 -0
  477. package/dist/esm/providers/solana/actions/getClusterNodes.test.d.ts +1 -0
  478. package/dist/esm/providers/solana/actions/getClusterNodes.test.js +30 -0
  479. package/dist/esm/providers/solana/actions/getEpochInfo.d.ts +17 -0
  480. package/dist/esm/providers/solana/actions/getEpochInfo.js +20 -0
  481. package/dist/esm/providers/solana/actions/getEpochInfo.test.d.ts +1 -0
  482. package/dist/esm/providers/solana/actions/getEpochInfo.test.js +37 -0
  483. package/dist/esm/providers/solana/actions/getEpochSchedule.d.ts +16 -0
  484. package/dist/esm/providers/solana/actions/getEpochSchedule.js +20 -0
  485. package/dist/esm/providers/solana/actions/getEpochSchedule.test.d.ts +1 -0
  486. package/dist/esm/providers/solana/actions/getEpochSchedule.test.js +30 -0
  487. package/dist/esm/providers/solana/actions/getFeeForMessage.d.ts +15 -0
  488. package/dist/esm/providers/solana/actions/getFeeForMessage.js +20 -0
  489. package/dist/esm/providers/solana/actions/getFeeForMessage.test.d.ts +1 -0
  490. package/dist/esm/providers/solana/actions/getFeeForMessage.test.js +31 -0
  491. package/dist/esm/providers/solana/actions/getFirstAvailableBlock.d.ts +10 -0
  492. package/dist/esm/providers/solana/actions/getFirstAvailableBlock.js +20 -0
  493. package/dist/esm/providers/solana/actions/getFirstAvailableBlock.test.d.ts +1 -0
  494. package/dist/esm/providers/solana/actions/getFirstAvailableBlock.test.js +30 -0
  495. package/dist/esm/providers/solana/actions/getGenesisHash.d.ts +10 -0
  496. package/dist/esm/providers/solana/actions/getGenesisHash.js +20 -0
  497. package/dist/esm/providers/solana/actions/getGenesisHash.test.d.ts +1 -0
  498. package/dist/esm/providers/solana/actions/getGenesisHash.test.js +30 -0
  499. package/dist/esm/providers/solana/actions/getHealth.d.ts +10 -0
  500. package/dist/esm/providers/solana/actions/getHealth.js +20 -0
  501. package/dist/esm/providers/solana/actions/getHealth.test.d.ts +1 -0
  502. package/dist/esm/providers/solana/actions/getHealth.test.js +30 -0
  503. package/dist/esm/providers/solana/actions/getHighestSnapshotSlot.d.ts +13 -0
  504. package/dist/esm/providers/solana/actions/getHighestSnapshotSlot.js +20 -0
  505. package/dist/esm/providers/solana/actions/getHighestSnapshotSlot.test.d.ts +1 -0
  506. package/dist/esm/providers/solana/actions/getHighestSnapshotSlot.test.js +30 -0
  507. package/dist/esm/providers/solana/actions/getIdentity.d.ts +12 -0
  508. package/dist/esm/providers/solana/actions/getIdentity.js +20 -0
  509. package/dist/esm/providers/solana/actions/getIdentity.test.d.ts +1 -0
  510. package/dist/esm/providers/solana/actions/getIdentity.test.js +30 -0
  511. package/dist/esm/providers/solana/actions/getInflationGovernor.d.ts +16 -0
  512. package/dist/esm/providers/solana/actions/getInflationGovernor.js +20 -0
  513. package/dist/esm/providers/solana/actions/getInflationGovernor.test.d.ts +1 -0
  514. package/dist/esm/providers/solana/actions/getInflationGovernor.test.js +31 -0
  515. package/dist/esm/providers/solana/actions/getInflationRate.d.ts +15 -0
  516. package/dist/esm/providers/solana/actions/getInflationRate.js +20 -0
  517. package/dist/esm/providers/solana/actions/getInflationRate.test.d.ts +1 -0
  518. package/dist/esm/providers/solana/actions/getInflationRate.test.js +37 -0
  519. package/dist/esm/providers/solana/actions/getInflationReward.d.ts +16 -0
  520. package/dist/esm/providers/solana/actions/getInflationReward.js +20 -0
  521. package/dist/esm/providers/solana/actions/getInflationReward.test.d.ts +1 -0
  522. package/dist/esm/providers/solana/actions/getInflationReward.test.js +33 -0
  523. package/dist/esm/providers/solana/actions/getLargestAccounts.d.ts +18 -0
  524. package/dist/esm/providers/solana/actions/getLargestAccounts.js +20 -0
  525. package/dist/esm/providers/solana/actions/getLargestAccounts.test.d.ts +1 -0
  526. package/dist/esm/providers/solana/actions/getLargestAccounts.test.js +31 -0
  527. package/dist/esm/providers/solana/actions/getLatestBlockhash.d.ts +18 -0
  528. package/dist/esm/providers/solana/actions/getLatestBlockhash.js +20 -0
  529. package/dist/esm/providers/solana/actions/getLatestBlockhash.test.d.ts +1 -0
  530. package/dist/esm/providers/solana/actions/getLatestBlockhash.test.js +31 -0
  531. package/dist/esm/providers/solana/actions/getLeaderSchedule.d.ts +12 -0
  532. package/dist/esm/providers/solana/actions/getLeaderSchedule.js +20 -0
  533. package/dist/esm/providers/solana/actions/getLeaderSchedule.test.d.ts +1 -0
  534. package/dist/esm/providers/solana/actions/getLeaderSchedule.test.js +32 -0
  535. package/dist/esm/providers/solana/actions/getMaxRetransmitSlot.d.ts +10 -0
  536. package/dist/esm/providers/solana/actions/getMaxRetransmitSlot.js +20 -0
  537. package/dist/esm/providers/solana/actions/getMaxRetransmitSlot.test.d.ts +1 -0
  538. package/dist/esm/providers/solana/actions/getMaxRetransmitSlot.test.js +30 -0
  539. package/dist/esm/providers/solana/actions/getMaxShredInsertSlot.d.ts +10 -0
  540. package/dist/esm/providers/solana/actions/getMaxShredInsertSlot.js +20 -0
  541. package/dist/esm/providers/solana/actions/getMaxShredInsertSlot.test.d.ts +1 -0
  542. package/dist/esm/providers/solana/actions/getMaxShredInsertSlot.test.js +30 -0
  543. package/dist/esm/providers/solana/actions/getMinimumBalanceForRentExemption.d.ts +10 -0
  544. package/dist/esm/providers/solana/actions/getMinimumBalanceForRentExemption.js +20 -0
  545. package/dist/esm/providers/solana/actions/getMinimumBalanceForRentExemption.test.d.ts +1 -0
  546. package/dist/esm/providers/solana/actions/getMinimumBalanceForRentExemption.test.js +32 -0
  547. package/dist/esm/providers/solana/actions/getMultipleAccounts.d.ts +23 -0
  548. package/dist/esm/providers/solana/actions/getMultipleAccounts.js +20 -0
  549. package/dist/esm/providers/solana/actions/getMultipleAccounts.test.d.ts +1 -0
  550. package/dist/esm/providers/solana/actions/getMultipleAccounts.test.js +41 -0
  551. package/dist/esm/providers/solana/actions/getProgramAccounts.d.ts +21 -0
  552. package/dist/esm/providers/solana/actions/getProgramAccounts.js +20 -0
  553. package/dist/esm/providers/solana/actions/getProgramAccounts.test.d.ts +1 -0
  554. package/dist/esm/providers/solana/actions/getProgramAccounts.test.js +37 -0
  555. package/dist/esm/providers/solana/actions/getRecentPerformanceSamples.d.ts +16 -0
  556. package/dist/esm/providers/solana/actions/getRecentPerformanceSamples.js +20 -0
  557. package/dist/esm/providers/solana/actions/getRecentPerformanceSamples.test.d.ts +1 -0
  558. package/dist/esm/providers/solana/actions/getRecentPerformanceSamples.test.js +31 -0
  559. package/dist/esm/providers/solana/actions/getRecentPrioritizationFees.d.ts +13 -0
  560. package/dist/esm/providers/solana/actions/getRecentPrioritizationFees.js +20 -0
  561. package/dist/esm/providers/solana/actions/getRecentPrioritizationFees.test.d.ts +1 -0
  562. package/dist/esm/providers/solana/actions/getRecentPrioritizationFees.test.js +32 -0
  563. package/dist/esm/providers/solana/actions/getSignatureStatuses.d.ts +25 -0
  564. package/dist/esm/providers/solana/actions/getSignatureStatuses.js +20 -0
  565. package/dist/esm/providers/solana/actions/getSignatureStatuses.test.d.ts +1 -0
  566. package/dist/esm/providers/solana/actions/getSignatureStatuses.test.js +33 -0
  567. package/dist/esm/providers/solana/actions/getSignaturesForAddress.d.ts +17 -0
  568. package/dist/esm/providers/solana/actions/getSignaturesForAddress.js +20 -0
  569. package/dist/esm/providers/solana/actions/getSignaturesForAddress.test.d.ts +1 -0
  570. package/dist/esm/providers/solana/actions/getSignaturesForAddress.test.js +44 -0
  571. package/dist/esm/providers/solana/actions/getSlot.d.ts +10 -0
  572. package/dist/esm/providers/solana/actions/getSlot.js +20 -0
  573. package/dist/esm/providers/solana/actions/getSlot.test.d.ts +1 -0
  574. package/dist/esm/providers/solana/actions/getSlot.test.js +31 -0
  575. package/dist/esm/providers/solana/actions/getSlotLeader.d.ts +10 -0
  576. package/dist/esm/providers/solana/actions/getSlotLeader.js +20 -0
  577. package/dist/esm/providers/solana/actions/getSlotLeader.test.d.ts +1 -0
  578. package/dist/esm/providers/solana/actions/getSlotLeader.test.js +31 -0
  579. package/dist/esm/providers/solana/actions/getSlotLeaders.d.ts +10 -0
  580. package/dist/esm/providers/solana/actions/getSlotLeaders.js +20 -0
  581. package/dist/esm/providers/solana/actions/getSlotLeaders.test.d.ts +1 -0
  582. package/dist/esm/providers/solana/actions/getSlotLeaders.test.js +32 -0
  583. package/dist/esm/providers/solana/actions/getSupply.d.ts +21 -0
  584. package/dist/esm/providers/solana/actions/getSupply.js +20 -0
  585. package/dist/esm/providers/solana/actions/getSupply.test.d.ts +1 -0
  586. package/dist/esm/providers/solana/actions/getSupply.test.js +31 -0
  587. package/dist/esm/providers/solana/actions/getTokenAccountBalance.d.ts +20 -0
  588. package/dist/esm/providers/solana/actions/getTokenAccountBalance.js +20 -0
  589. package/dist/esm/providers/solana/actions/getTokenAccountBalance.test.d.ts +1 -0
  590. package/dist/esm/providers/solana/actions/getTokenAccountBalance.test.js +32 -0
  591. package/dist/esm/providers/solana/actions/getTokenAccountsByDelegate.d.ts +26 -0
  592. package/dist/esm/providers/solana/actions/getTokenAccountsByDelegate.js +20 -0
  593. package/dist/esm/providers/solana/actions/getTokenAccountsByDelegate.test.d.ts +1 -0
  594. package/dist/esm/providers/solana/actions/getTokenAccountsByDelegate.test.js +33 -0
  595. package/dist/esm/providers/solana/actions/getTokenAccountsByOwner.d.ts +26 -0
  596. package/dist/esm/providers/solana/actions/getTokenAccountsByOwner.js +20 -0
  597. package/dist/esm/providers/solana/actions/getTokenAccountsByOwner.test.d.ts +1 -0
  598. package/dist/esm/providers/solana/actions/getTokenAccountsByOwner.test.js +37 -0
  599. package/dist/esm/providers/solana/actions/getTokenLargestAccounts.d.ts +22 -0
  600. package/dist/esm/providers/solana/actions/getTokenLargestAccounts.js +20 -0
  601. package/dist/esm/providers/solana/actions/getTokenLargestAccounts.test.d.ts +1 -0
  602. package/dist/esm/providers/solana/actions/getTokenLargestAccounts.test.js +32 -0
  603. package/dist/esm/providers/solana/actions/getTokenSupply.d.ts +20 -0
  604. package/dist/esm/providers/solana/actions/getTokenSupply.js +20 -0
  605. package/dist/esm/providers/solana/actions/getTokenSupply.test.d.ts +1 -0
  606. package/dist/esm/providers/solana/actions/getTokenSupply.test.js +32 -0
  607. package/dist/esm/providers/solana/actions/getTransaction.d.ts +80 -0
  608. package/dist/esm/providers/solana/actions/getTransaction.js +20 -0
  609. package/dist/esm/providers/solana/actions/getTransaction.test.d.ts +1 -0
  610. package/dist/esm/providers/solana/actions/getTransaction.test.js +32 -0
  611. package/dist/esm/providers/solana/actions/getTransactionCount.d.ts +10 -0
  612. package/dist/esm/providers/solana/actions/getTransactionCount.js +20 -0
  613. package/dist/esm/providers/solana/actions/getTransactionCount.test.d.ts +1 -0
  614. package/dist/esm/providers/solana/actions/getTransactionCount.test.js +31 -0
  615. package/dist/esm/providers/solana/actions/getVersion.d.ts +13 -0
  616. package/dist/esm/providers/solana/actions/getVersion.js +20 -0
  617. package/dist/esm/providers/solana/actions/getVersion.test.d.ts +1 -0
  618. package/dist/esm/providers/solana/actions/getVersion.test.js +33 -0
  619. package/dist/esm/providers/solana/actions/getVoteAccounts.d.ts +31 -0
  620. package/dist/esm/providers/solana/actions/getVoteAccounts.js +20 -0
  621. package/dist/esm/providers/solana/actions/getVoteAccounts.test.d.ts +1 -0
  622. package/dist/esm/providers/solana/actions/getVoteAccounts.test.js +31 -0
  623. package/dist/esm/providers/solana/actions/index.d.ts +216 -0
  624. package/dist/esm/providers/solana/actions/index.js +173 -0
  625. package/dist/esm/providers/solana/actions/index.test.d.ts +1 -0
  626. package/dist/esm/providers/solana/actions/index.test.js +76 -0
  627. package/dist/esm/providers/solana/actions/isBlockhashValid.d.ts +15 -0
  628. package/dist/esm/providers/solana/actions/isBlockhashValid.js +20 -0
  629. package/dist/esm/providers/solana/actions/isBlockhashValid.test.d.ts +1 -0
  630. package/dist/esm/providers/solana/actions/isBlockhashValid.test.js +32 -0
  631. package/dist/esm/providers/solana/actions/minimumLedgerSlot.d.ts +10 -0
  632. package/dist/esm/providers/solana/actions/minimumLedgerSlot.js +20 -0
  633. package/dist/esm/providers/solana/actions/minimumLedgerSlot.test.d.ts +1 -0
  634. package/dist/esm/providers/solana/actions/minimumLedgerSlot.test.js +30 -0
  635. package/dist/esm/providers/solana/actions/sendTransaction.d.ts +13 -0
  636. package/dist/esm/providers/solana/actions/sendTransaction.js +27 -0
  637. package/dist/esm/providers/solana/actions/sendTransaction.test.d.ts +1 -0
  638. package/dist/esm/providers/solana/actions/sendTransaction.test.js +80 -0
  639. package/dist/esm/providers/solana/actions/simulateTransaction.d.ts +28 -0
  640. package/dist/esm/providers/solana/actions/simulateTransaction.js +27 -0
  641. package/dist/esm/providers/solana/actions/simulateTransaction.test.d.ts +1 -0
  642. package/dist/esm/providers/solana/actions/simulateTransaction.test.js +80 -0
  643. package/dist/esm/providers/solana/actions/switchCluster.d.ts +10 -0
  644. package/dist/esm/providers/solana/actions/switchCluster.js +23 -0
  645. package/dist/esm/providers/solana/actions/switchCluster.test.d.ts +1 -0
  646. package/dist/esm/providers/solana/actions/switchCluster.test.js +31 -0
  647. package/dist/esm/providers/solana/constants.d.ts +6 -0
  648. package/dist/esm/providers/solana/constants.js +17 -0
  649. package/dist/esm/providers/solana/index.d.ts +101 -0
  650. package/dist/esm/providers/solana/index.js +21 -0
  651. package/dist/esm/providers/solana/index.test.d.ts +1 -0
  652. package/dist/esm/providers/solana/index.test.js +166 -0
  653. package/dist/esm/providers/solana/transports/http.d.ts +8 -0
  654. package/dist/esm/providers/solana/transports/http.js +17 -0
  655. package/dist/esm/providers/solana/transports/http.test.d.ts +1 -0
  656. package/dist/esm/providers/solana/transports/http.test.js +86 -0
  657. package/dist/esm/providers/solana/transports/index.d.ts +734 -0
  658. package/dist/esm/providers/solana/transports/index.js +200 -0
  659. package/dist/esm/providers/solana/transports/index.test.d.ts +1 -0
  660. package/dist/esm/providers/solana/transports/index.test.js +272 -0
  661. package/dist/esm/providers/solana/utils/codecs.d.ts +4 -0
  662. package/dist/esm/providers/solana/utils/codecs.js +17 -0
  663. package/dist/esm/providers/solana/utils/index.d.ts +2 -0
  664. package/dist/esm/providers/solana/utils/index.js +12 -0
  665. package/dist/esm/providers/solana/utils/index.test.d.ts +1 -0
  666. package/dist/esm/providers/solana/utils/index.test.js +18 -0
  667. package/dist/esm/providers/solana/utils/toBase64EncodedWireTransaction.d.ts +26 -0
  668. package/dist/esm/providers/solana/utils/toBase64EncodedWireTransaction.js +39 -0
  669. package/dist/esm/providers/solana/utils/toBase64EncodedWireTransaction.test.d.ts +1 -0
  670. package/dist/esm/providers/solana/utils/toBase64EncodedWireTransaction.test.js +106 -0
  671. package/dist/esm/providers/uniswap/actions/exactInputSingle.d.ts +3 -3
  672. package/dist/esm/providers/uniswap/actions/exactInputSingle.js +5 -5
  673. package/dist/esm/providers/uniswap/actions/getPool.d.ts +3 -2
  674. package/dist/esm/providers/uniswap/actions/quoteExactInputSingle.d.ts +3 -2
  675. package/dist/esm/types.d.ts +8 -16
  676. package/dist/esm/types.js +0 -10
  677. package/dist/esm/utils/createConfig.d.ts +36 -0
  678. package/dist/esm/utils/createConfig.js +48 -0
  679. package/dist/esm/utils/createConfig.test.d.ts +1 -0
  680. package/dist/esm/utils/createConfig.test.js +64 -0
  681. package/dist/esm/utils/createCustomWalletClient.d.ts +46 -0
  682. package/dist/esm/utils/createCustomWalletClient.js +78 -0
  683. package/dist/esm/utils/createCustomWalletClient.test.d.ts +1 -0
  684. package/dist/esm/utils/createCustomWalletClient.test.js +98 -0
  685. package/dist/esm/utils/getChainContractByAddress.d.ts +2 -1
  686. package/dist/esm/utils/getClient.d.ts +458 -0
  687. package/dist/esm/utils/getClient.js +22 -0
  688. package/dist/esm/utils/getClient.test.d.ts +1 -0
  689. package/dist/esm/utils/getClient.test.js +44 -0
  690. package/dist/esm/utils/index.d.ts +1 -0
  691. package/dist/esm/utils/index.js +1 -0
  692. package/dist/esm/utils/index.test.js +2 -0
  693. package/package.json +9 -1
  694. package/dist/cjs/providers/circle-wallets/actions/signTypedData.d.ts +0 -8
  695. package/dist/cjs/providers/circle-wallets/actions/signTypedData.test.js +0 -51
  696. package/dist/cjs/providers/circle-wallets/actions/waitForTransactionHash.d.ts +0 -19
  697. package/dist/cjs/providers/circle-wallets/actions/waitForTransactionHash.js +0 -45
  698. package/dist/cjs/providers/circle-wallets/actions/waitForTransactionHash.test.js +0 -92
  699. package/dist/esm/providers/circle-wallets/actions/signTypedData.d.ts +0 -8
  700. package/dist/esm/providers/circle-wallets/actions/signTypedData.test.js +0 -49
  701. package/dist/esm/providers/circle-wallets/actions/waitForTransactionHash.d.ts +0 -19
  702. package/dist/esm/providers/circle-wallets/actions/waitForTransactionHash.js +0 -42
  703. package/dist/esm/providers/circle-wallets/actions/waitForTransactionHash.test.js +0 -90
  704. /package/dist/cjs/{providers/circle-wallets/actions/signTypedData.test.d.ts → actions/getTokenBalance.test.d.ts} +0 -0
  705. /package/dist/cjs/providers/circle-wallets/{actions/waitForTransactionHash.test.d.ts → utils/toSolanaSigner.test.d.ts} +0 -0
  706. /package/dist/{esm/providers/circle-wallets/actions/signTypedData.test.d.ts → cjs/providers/solana/actions/getAccountInfo.test.d.ts} +0 -0
  707. /package/dist/{esm/providers/circle-wallets/actions/waitForTransactionHash.test.d.ts → cjs/providers/solana/actions/getBalance.test.d.ts} +0 -0
@@ -1,3 +1,4 @@
1
+ import type { Blockchain } from '@circle-fin/developer-controlled-wallets';
1
2
  export declare const NAME = "circle-wallets";
2
3
  export declare const DEFAULT_WALLET_SET_NAME = "default";
3
4
  export declare const SUPPORTED_CHAINS: readonly [{
@@ -7726,8 +7727,4474 @@ export declare const SUPPORTED_CHAINS_FAUCET: readonly [{
7726
7727
  readonly blockchainId: "UNI-SEPOLIA";
7727
7728
  readonly blockchainVm: "EVM";
7728
7729
  }];
7730
+ export declare const SUPPORTED_CONTRACT_QUERY_CHAINS: readonly [{
7731
+ blockExplorers: {
7732
+ readonly default: {
7733
+ readonly name: "Etherscan";
7734
+ readonly url: "https://etherscan.io";
7735
+ readonly apiUrl: "https://api.etherscan.io/api";
7736
+ };
7737
+ };
7738
+ blockTime: 12000;
7739
+ contracts: {
7740
+ readonly USDC: {
7741
+ readonly address: "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48";
7742
+ readonly abi: readonly [{
7743
+ readonly type: "event";
7744
+ readonly name: "Approval";
7745
+ readonly inputs: readonly [{
7746
+ readonly indexed: true;
7747
+ readonly name: "owner";
7748
+ readonly type: "address";
7749
+ }, {
7750
+ readonly indexed: true;
7751
+ readonly name: "spender";
7752
+ readonly type: "address";
7753
+ }, {
7754
+ readonly indexed: false;
7755
+ readonly name: "value";
7756
+ readonly type: "uint256";
7757
+ }];
7758
+ }, {
7759
+ readonly type: "event";
7760
+ readonly name: "Transfer";
7761
+ readonly inputs: readonly [{
7762
+ readonly indexed: true;
7763
+ readonly name: "from";
7764
+ readonly type: "address";
7765
+ }, {
7766
+ readonly indexed: true;
7767
+ readonly name: "to";
7768
+ readonly type: "address";
7769
+ }, {
7770
+ readonly indexed: false;
7771
+ readonly name: "value";
7772
+ readonly type: "uint256";
7773
+ }];
7774
+ }, {
7775
+ readonly type: "function";
7776
+ readonly name: "allowance";
7777
+ readonly stateMutability: "view";
7778
+ readonly inputs: readonly [{
7779
+ readonly name: "owner";
7780
+ readonly type: "address";
7781
+ }, {
7782
+ readonly name: "spender";
7783
+ readonly type: "address";
7784
+ }];
7785
+ readonly outputs: readonly [{
7786
+ readonly type: "uint256";
7787
+ }];
7788
+ }, {
7789
+ readonly type: "function";
7790
+ readonly name: "approve";
7791
+ readonly stateMutability: "nonpayable";
7792
+ readonly inputs: readonly [{
7793
+ readonly name: "spender";
7794
+ readonly type: "address";
7795
+ }, {
7796
+ readonly name: "amount";
7797
+ readonly type: "uint256";
7798
+ }];
7799
+ readonly outputs: readonly [{
7800
+ readonly type: "bool";
7801
+ }];
7802
+ }, {
7803
+ readonly type: "function";
7804
+ readonly name: "balanceOf";
7805
+ readonly stateMutability: "view";
7806
+ readonly inputs: readonly [{
7807
+ readonly name: "account";
7808
+ readonly type: "address";
7809
+ }];
7810
+ readonly outputs: readonly [{
7811
+ readonly type: "uint256";
7812
+ }];
7813
+ }, {
7814
+ readonly type: "function";
7815
+ readonly name: "decimals";
7816
+ readonly stateMutability: "view";
7817
+ readonly inputs: readonly [];
7818
+ readonly outputs: readonly [{
7819
+ readonly type: "uint8";
7820
+ }];
7821
+ }, {
7822
+ readonly type: "function";
7823
+ readonly name: "name";
7824
+ readonly stateMutability: "view";
7825
+ readonly inputs: readonly [];
7826
+ readonly outputs: readonly [{
7827
+ readonly type: "string";
7828
+ }];
7829
+ }, {
7830
+ readonly type: "function";
7831
+ readonly name: "symbol";
7832
+ readonly stateMutability: "view";
7833
+ readonly inputs: readonly [];
7834
+ readonly outputs: readonly [{
7835
+ readonly type: "string";
7836
+ }];
7837
+ }, {
7838
+ readonly type: "function";
7839
+ readonly name: "totalSupply";
7840
+ readonly stateMutability: "view";
7841
+ readonly inputs: readonly [];
7842
+ readonly outputs: readonly [{
7843
+ readonly type: "uint256";
7844
+ }];
7845
+ }, {
7846
+ readonly type: "function";
7847
+ readonly name: "transfer";
7848
+ readonly stateMutability: "nonpayable";
7849
+ readonly inputs: readonly [{
7850
+ readonly name: "recipient";
7851
+ readonly type: "address";
7852
+ }, {
7853
+ readonly name: "amount";
7854
+ readonly type: "uint256";
7855
+ }];
7856
+ readonly outputs: readonly [{
7857
+ readonly type: "bool";
7858
+ }];
7859
+ }, {
7860
+ readonly type: "function";
7861
+ readonly name: "transferFrom";
7862
+ readonly stateMutability: "nonpayable";
7863
+ readonly inputs: readonly [{
7864
+ readonly name: "sender";
7865
+ readonly type: "address";
7866
+ }, {
7867
+ readonly name: "recipient";
7868
+ readonly type: "address";
7869
+ }, {
7870
+ readonly name: "amount";
7871
+ readonly type: "uint256";
7872
+ }];
7873
+ readonly outputs: readonly [{
7874
+ readonly type: "bool";
7875
+ }];
7876
+ }];
7877
+ readonly read: {
7878
+ readonly decimals: () => 6;
7879
+ };
7880
+ };
7881
+ readonly EURC: {
7882
+ readonly address: "0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c";
7883
+ readonly abi: readonly [{
7884
+ readonly type: "event";
7885
+ readonly name: "Approval";
7886
+ readonly inputs: readonly [{
7887
+ readonly indexed: true;
7888
+ readonly name: "owner";
7889
+ readonly type: "address";
7890
+ }, {
7891
+ readonly indexed: true;
7892
+ readonly name: "spender";
7893
+ readonly type: "address";
7894
+ }, {
7895
+ readonly indexed: false;
7896
+ readonly name: "value";
7897
+ readonly type: "uint256";
7898
+ }];
7899
+ }, {
7900
+ readonly type: "event";
7901
+ readonly name: "Transfer";
7902
+ readonly inputs: readonly [{
7903
+ readonly indexed: true;
7904
+ readonly name: "from";
7905
+ readonly type: "address";
7906
+ }, {
7907
+ readonly indexed: true;
7908
+ readonly name: "to";
7909
+ readonly type: "address";
7910
+ }, {
7911
+ readonly indexed: false;
7912
+ readonly name: "value";
7913
+ readonly type: "uint256";
7914
+ }];
7915
+ }, {
7916
+ readonly type: "function";
7917
+ readonly name: "allowance";
7918
+ readonly stateMutability: "view";
7919
+ readonly inputs: readonly [{
7920
+ readonly name: "owner";
7921
+ readonly type: "address";
7922
+ }, {
7923
+ readonly name: "spender";
7924
+ readonly type: "address";
7925
+ }];
7926
+ readonly outputs: readonly [{
7927
+ readonly type: "uint256";
7928
+ }];
7929
+ }, {
7930
+ readonly type: "function";
7931
+ readonly name: "approve";
7932
+ readonly stateMutability: "nonpayable";
7933
+ readonly inputs: readonly [{
7934
+ readonly name: "spender";
7935
+ readonly type: "address";
7936
+ }, {
7937
+ readonly name: "amount";
7938
+ readonly type: "uint256";
7939
+ }];
7940
+ readonly outputs: readonly [{
7941
+ readonly type: "bool";
7942
+ }];
7943
+ }, {
7944
+ readonly type: "function";
7945
+ readonly name: "balanceOf";
7946
+ readonly stateMutability: "view";
7947
+ readonly inputs: readonly [{
7948
+ readonly name: "account";
7949
+ readonly type: "address";
7950
+ }];
7951
+ readonly outputs: readonly [{
7952
+ readonly type: "uint256";
7953
+ }];
7954
+ }, {
7955
+ readonly type: "function";
7956
+ readonly name: "decimals";
7957
+ readonly stateMutability: "view";
7958
+ readonly inputs: readonly [];
7959
+ readonly outputs: readonly [{
7960
+ readonly type: "uint8";
7961
+ }];
7962
+ }, {
7963
+ readonly type: "function";
7964
+ readonly name: "name";
7965
+ readonly stateMutability: "view";
7966
+ readonly inputs: readonly [];
7967
+ readonly outputs: readonly [{
7968
+ readonly type: "string";
7969
+ }];
7970
+ }, {
7971
+ readonly type: "function";
7972
+ readonly name: "symbol";
7973
+ readonly stateMutability: "view";
7974
+ readonly inputs: readonly [];
7975
+ readonly outputs: readonly [{
7976
+ readonly type: "string";
7977
+ }];
7978
+ }, {
7979
+ readonly type: "function";
7980
+ readonly name: "totalSupply";
7981
+ readonly stateMutability: "view";
7982
+ readonly inputs: readonly [];
7983
+ readonly outputs: readonly [{
7984
+ readonly type: "uint256";
7985
+ }];
7986
+ }, {
7987
+ readonly type: "function";
7988
+ readonly name: "transfer";
7989
+ readonly stateMutability: "nonpayable";
7990
+ readonly inputs: readonly [{
7991
+ readonly name: "recipient";
7992
+ readonly type: "address";
7993
+ }, {
7994
+ readonly name: "amount";
7995
+ readonly type: "uint256";
7996
+ }];
7997
+ readonly outputs: readonly [{
7998
+ readonly type: "bool";
7999
+ }];
8000
+ }, {
8001
+ readonly type: "function";
8002
+ readonly name: "transferFrom";
8003
+ readonly stateMutability: "nonpayable";
8004
+ readonly inputs: readonly [{
8005
+ readonly name: "sender";
8006
+ readonly type: "address";
8007
+ }, {
8008
+ readonly name: "recipient";
8009
+ readonly type: "address";
8010
+ }, {
8011
+ readonly name: "amount";
8012
+ readonly type: "uint256";
8013
+ }];
8014
+ readonly outputs: readonly [{
8015
+ readonly type: "bool";
8016
+ }];
8017
+ }];
8018
+ readonly read: {
8019
+ readonly decimals: () => 6;
8020
+ };
8021
+ };
8022
+ readonly USDT: {
8023
+ readonly address: "0xdac17f958d2ee523a2206206994597c13d831ec7";
8024
+ readonly abi: readonly [{
8025
+ readonly type: "event";
8026
+ readonly name: "Approval";
8027
+ readonly inputs: readonly [{
8028
+ readonly indexed: true;
8029
+ readonly name: "owner";
8030
+ readonly type: "address";
8031
+ }, {
8032
+ readonly indexed: true;
8033
+ readonly name: "spender";
8034
+ readonly type: "address";
8035
+ }, {
8036
+ readonly indexed: false;
8037
+ readonly name: "value";
8038
+ readonly type: "uint256";
8039
+ }];
8040
+ }, {
8041
+ readonly type: "event";
8042
+ readonly name: "Transfer";
8043
+ readonly inputs: readonly [{
8044
+ readonly indexed: true;
8045
+ readonly name: "from";
8046
+ readonly type: "address";
8047
+ }, {
8048
+ readonly indexed: true;
8049
+ readonly name: "to";
8050
+ readonly type: "address";
8051
+ }, {
8052
+ readonly indexed: false;
8053
+ readonly name: "value";
8054
+ readonly type: "uint256";
8055
+ }];
8056
+ }, {
8057
+ readonly type: "function";
8058
+ readonly name: "allowance";
8059
+ readonly stateMutability: "view";
8060
+ readonly inputs: readonly [{
8061
+ readonly name: "owner";
8062
+ readonly type: "address";
8063
+ }, {
8064
+ readonly name: "spender";
8065
+ readonly type: "address";
8066
+ }];
8067
+ readonly outputs: readonly [{
8068
+ readonly type: "uint256";
8069
+ }];
8070
+ }, {
8071
+ readonly type: "function";
8072
+ readonly name: "approve";
8073
+ readonly stateMutability: "nonpayable";
8074
+ readonly inputs: readonly [{
8075
+ readonly name: "spender";
8076
+ readonly type: "address";
8077
+ }, {
8078
+ readonly name: "amount";
8079
+ readonly type: "uint256";
8080
+ }];
8081
+ readonly outputs: readonly [{
8082
+ readonly type: "bool";
8083
+ }];
8084
+ }, {
8085
+ readonly type: "function";
8086
+ readonly name: "balanceOf";
8087
+ readonly stateMutability: "view";
8088
+ readonly inputs: readonly [{
8089
+ readonly name: "account";
8090
+ readonly type: "address";
8091
+ }];
8092
+ readonly outputs: readonly [{
8093
+ readonly type: "uint256";
8094
+ }];
8095
+ }, {
8096
+ readonly type: "function";
8097
+ readonly name: "decimals";
8098
+ readonly stateMutability: "view";
8099
+ readonly inputs: readonly [];
8100
+ readonly outputs: readonly [{
8101
+ readonly type: "uint8";
8102
+ }];
8103
+ }, {
8104
+ readonly type: "function";
8105
+ readonly name: "name";
8106
+ readonly stateMutability: "view";
8107
+ readonly inputs: readonly [];
8108
+ readonly outputs: readonly [{
8109
+ readonly type: "string";
8110
+ }];
8111
+ }, {
8112
+ readonly type: "function";
8113
+ readonly name: "symbol";
8114
+ readonly stateMutability: "view";
8115
+ readonly inputs: readonly [];
8116
+ readonly outputs: readonly [{
8117
+ readonly type: "string";
8118
+ }];
8119
+ }, {
8120
+ readonly type: "function";
8121
+ readonly name: "totalSupply";
8122
+ readonly stateMutability: "view";
8123
+ readonly inputs: readonly [];
8124
+ readonly outputs: readonly [{
8125
+ readonly type: "uint256";
8126
+ }];
8127
+ }, {
8128
+ readonly type: "function";
8129
+ readonly name: "transfer";
8130
+ readonly stateMutability: "nonpayable";
8131
+ readonly inputs: readonly [{
8132
+ readonly name: "recipient";
8133
+ readonly type: "address";
8134
+ }, {
8135
+ readonly name: "amount";
8136
+ readonly type: "uint256";
8137
+ }];
8138
+ readonly outputs: readonly [{
8139
+ readonly type: "bool";
8140
+ }];
8141
+ }, {
8142
+ readonly type: "function";
8143
+ readonly name: "transferFrom";
8144
+ readonly stateMutability: "nonpayable";
8145
+ readonly inputs: readonly [{
8146
+ readonly name: "sender";
8147
+ readonly type: "address";
8148
+ }, {
8149
+ readonly name: "recipient";
8150
+ readonly type: "address";
8151
+ }, {
8152
+ readonly name: "amount";
8153
+ readonly type: "uint256";
8154
+ }];
8155
+ readonly outputs: readonly [{
8156
+ readonly type: "bool";
8157
+ }];
8158
+ }];
8159
+ readonly read: {
8160
+ readonly decimals: () => 6;
8161
+ };
8162
+ };
8163
+ readonly ensUniversalResolver: {
8164
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
8165
+ readonly blockCreated: 23085558;
8166
+ };
8167
+ readonly multicall3: {
8168
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
8169
+ readonly blockCreated: 14353601;
8170
+ };
8171
+ };
8172
+ ensTlds?: readonly string[] | undefined;
8173
+ id: 1;
8174
+ name: "Ethereum";
8175
+ nativeCurrency: {
8176
+ readonly name: "Ether";
8177
+ readonly symbol: "ETH";
8178
+ readonly decimals: 18;
8179
+ };
8180
+ experimental_preconfirmationTime?: number | undefined | undefined;
8181
+ rpcUrls: {
8182
+ readonly default: {
8183
+ readonly http: readonly ["https://eth.merkle.io"];
8184
+ };
8185
+ };
8186
+ sourceId?: number | undefined | undefined;
8187
+ testnet?: boolean | undefined | undefined;
8188
+ custom?: Record<string, unknown> | undefined;
8189
+ fees?: import("viem").ChainFees<undefined> | undefined;
8190
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
8191
+ readonly blockchainId: "ETH";
8192
+ readonly blockchainVm: "EVM";
8193
+ readonly formatters?: undefined | undefined;
8194
+ }, {
8195
+ blockExplorers: {
8196
+ readonly default: {
8197
+ readonly name: "Etherscan";
8198
+ readonly url: "https://sepolia.etherscan.io";
8199
+ readonly apiUrl: "https://api-sepolia.etherscan.io/api";
8200
+ };
8201
+ };
8202
+ blockTime?: number | undefined | undefined;
8203
+ contracts: {
8204
+ readonly USDC: {
8205
+ readonly address: "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238";
8206
+ readonly abi: readonly [{
8207
+ readonly type: "event";
8208
+ readonly name: "Approval";
8209
+ readonly inputs: readonly [{
8210
+ readonly indexed: true;
8211
+ readonly name: "owner";
8212
+ readonly type: "address";
8213
+ }, {
8214
+ readonly indexed: true;
8215
+ readonly name: "spender";
8216
+ readonly type: "address";
8217
+ }, {
8218
+ readonly indexed: false;
8219
+ readonly name: "value";
8220
+ readonly type: "uint256";
8221
+ }];
8222
+ }, {
8223
+ readonly type: "event";
8224
+ readonly name: "Transfer";
8225
+ readonly inputs: readonly [{
8226
+ readonly indexed: true;
8227
+ readonly name: "from";
8228
+ readonly type: "address";
8229
+ }, {
8230
+ readonly indexed: true;
8231
+ readonly name: "to";
8232
+ readonly type: "address";
8233
+ }, {
8234
+ readonly indexed: false;
8235
+ readonly name: "value";
8236
+ readonly type: "uint256";
8237
+ }];
8238
+ }, {
8239
+ readonly type: "function";
8240
+ readonly name: "allowance";
8241
+ readonly stateMutability: "view";
8242
+ readonly inputs: readonly [{
8243
+ readonly name: "owner";
8244
+ readonly type: "address";
8245
+ }, {
8246
+ readonly name: "spender";
8247
+ readonly type: "address";
8248
+ }];
8249
+ readonly outputs: readonly [{
8250
+ readonly type: "uint256";
8251
+ }];
8252
+ }, {
8253
+ readonly type: "function";
8254
+ readonly name: "approve";
8255
+ readonly stateMutability: "nonpayable";
8256
+ readonly inputs: readonly [{
8257
+ readonly name: "spender";
8258
+ readonly type: "address";
8259
+ }, {
8260
+ readonly name: "amount";
8261
+ readonly type: "uint256";
8262
+ }];
8263
+ readonly outputs: readonly [{
8264
+ readonly type: "bool";
8265
+ }];
8266
+ }, {
8267
+ readonly type: "function";
8268
+ readonly name: "balanceOf";
8269
+ readonly stateMutability: "view";
8270
+ readonly inputs: readonly [{
8271
+ readonly name: "account";
8272
+ readonly type: "address";
8273
+ }];
8274
+ readonly outputs: readonly [{
8275
+ readonly type: "uint256";
8276
+ }];
8277
+ }, {
8278
+ readonly type: "function";
8279
+ readonly name: "decimals";
8280
+ readonly stateMutability: "view";
8281
+ readonly inputs: readonly [];
8282
+ readonly outputs: readonly [{
8283
+ readonly type: "uint8";
8284
+ }];
8285
+ }, {
8286
+ readonly type: "function";
8287
+ readonly name: "name";
8288
+ readonly stateMutability: "view";
8289
+ readonly inputs: readonly [];
8290
+ readonly outputs: readonly [{
8291
+ readonly type: "string";
8292
+ }];
8293
+ }, {
8294
+ readonly type: "function";
8295
+ readonly name: "symbol";
8296
+ readonly stateMutability: "view";
8297
+ readonly inputs: readonly [];
8298
+ readonly outputs: readonly [{
8299
+ readonly type: "string";
8300
+ }];
8301
+ }, {
8302
+ readonly type: "function";
8303
+ readonly name: "totalSupply";
8304
+ readonly stateMutability: "view";
8305
+ readonly inputs: readonly [];
8306
+ readonly outputs: readonly [{
8307
+ readonly type: "uint256";
8308
+ }];
8309
+ }, {
8310
+ readonly type: "function";
8311
+ readonly name: "transfer";
8312
+ readonly stateMutability: "nonpayable";
8313
+ readonly inputs: readonly [{
8314
+ readonly name: "recipient";
8315
+ readonly type: "address";
8316
+ }, {
8317
+ readonly name: "amount";
8318
+ readonly type: "uint256";
8319
+ }];
8320
+ readonly outputs: readonly [{
8321
+ readonly type: "bool";
8322
+ }];
8323
+ }, {
8324
+ readonly type: "function";
8325
+ readonly name: "transferFrom";
8326
+ readonly stateMutability: "nonpayable";
8327
+ readonly inputs: readonly [{
8328
+ readonly name: "sender";
8329
+ readonly type: "address";
8330
+ }, {
8331
+ readonly name: "recipient";
8332
+ readonly type: "address";
8333
+ }, {
8334
+ readonly name: "amount";
8335
+ readonly type: "uint256";
8336
+ }];
8337
+ readonly outputs: readonly [{
8338
+ readonly type: "bool";
8339
+ }];
8340
+ }];
8341
+ readonly read: {
8342
+ readonly decimals: () => 6;
8343
+ };
8344
+ };
8345
+ readonly EURC: {
8346
+ readonly address: "0x08210F9170F89Ab7658F0B5E3fF39b0E03C594D4";
8347
+ readonly abi: readonly [{
8348
+ readonly type: "event";
8349
+ readonly name: "Approval";
8350
+ readonly inputs: readonly [{
8351
+ readonly indexed: true;
8352
+ readonly name: "owner";
8353
+ readonly type: "address";
8354
+ }, {
8355
+ readonly indexed: true;
8356
+ readonly name: "spender";
8357
+ readonly type: "address";
8358
+ }, {
8359
+ readonly indexed: false;
8360
+ readonly name: "value";
8361
+ readonly type: "uint256";
8362
+ }];
8363
+ }, {
8364
+ readonly type: "event";
8365
+ readonly name: "Transfer";
8366
+ readonly inputs: readonly [{
8367
+ readonly indexed: true;
8368
+ readonly name: "from";
8369
+ readonly type: "address";
8370
+ }, {
8371
+ readonly indexed: true;
8372
+ readonly name: "to";
8373
+ readonly type: "address";
8374
+ }, {
8375
+ readonly indexed: false;
8376
+ readonly name: "value";
8377
+ readonly type: "uint256";
8378
+ }];
8379
+ }, {
8380
+ readonly type: "function";
8381
+ readonly name: "allowance";
8382
+ readonly stateMutability: "view";
8383
+ readonly inputs: readonly [{
8384
+ readonly name: "owner";
8385
+ readonly type: "address";
8386
+ }, {
8387
+ readonly name: "spender";
8388
+ readonly type: "address";
8389
+ }];
8390
+ readonly outputs: readonly [{
8391
+ readonly type: "uint256";
8392
+ }];
8393
+ }, {
8394
+ readonly type: "function";
8395
+ readonly name: "approve";
8396
+ readonly stateMutability: "nonpayable";
8397
+ readonly inputs: readonly [{
8398
+ readonly name: "spender";
8399
+ readonly type: "address";
8400
+ }, {
8401
+ readonly name: "amount";
8402
+ readonly type: "uint256";
8403
+ }];
8404
+ readonly outputs: readonly [{
8405
+ readonly type: "bool";
8406
+ }];
8407
+ }, {
8408
+ readonly type: "function";
8409
+ readonly name: "balanceOf";
8410
+ readonly stateMutability: "view";
8411
+ readonly inputs: readonly [{
8412
+ readonly name: "account";
8413
+ readonly type: "address";
8414
+ }];
8415
+ readonly outputs: readonly [{
8416
+ readonly type: "uint256";
8417
+ }];
8418
+ }, {
8419
+ readonly type: "function";
8420
+ readonly name: "decimals";
8421
+ readonly stateMutability: "view";
8422
+ readonly inputs: readonly [];
8423
+ readonly outputs: readonly [{
8424
+ readonly type: "uint8";
8425
+ }];
8426
+ }, {
8427
+ readonly type: "function";
8428
+ readonly name: "name";
8429
+ readonly stateMutability: "view";
8430
+ readonly inputs: readonly [];
8431
+ readonly outputs: readonly [{
8432
+ readonly type: "string";
8433
+ }];
8434
+ }, {
8435
+ readonly type: "function";
8436
+ readonly name: "symbol";
8437
+ readonly stateMutability: "view";
8438
+ readonly inputs: readonly [];
8439
+ readonly outputs: readonly [{
8440
+ readonly type: "string";
8441
+ }];
8442
+ }, {
8443
+ readonly type: "function";
8444
+ readonly name: "totalSupply";
8445
+ readonly stateMutability: "view";
8446
+ readonly inputs: readonly [];
8447
+ readonly outputs: readonly [{
8448
+ readonly type: "uint256";
8449
+ }];
8450
+ }, {
8451
+ readonly type: "function";
8452
+ readonly name: "transfer";
8453
+ readonly stateMutability: "nonpayable";
8454
+ readonly inputs: readonly [{
8455
+ readonly name: "recipient";
8456
+ readonly type: "address";
8457
+ }, {
8458
+ readonly name: "amount";
8459
+ readonly type: "uint256";
8460
+ }];
8461
+ readonly outputs: readonly [{
8462
+ readonly type: "bool";
8463
+ }];
8464
+ }, {
8465
+ readonly type: "function";
8466
+ readonly name: "transferFrom";
8467
+ readonly stateMutability: "nonpayable";
8468
+ readonly inputs: readonly [{
8469
+ readonly name: "sender";
8470
+ readonly type: "address";
8471
+ }, {
8472
+ readonly name: "recipient";
8473
+ readonly type: "address";
8474
+ }, {
8475
+ readonly name: "amount";
8476
+ readonly type: "uint256";
8477
+ }];
8478
+ readonly outputs: readonly [{
8479
+ readonly type: "bool";
8480
+ }];
8481
+ }];
8482
+ readonly read: {
8483
+ readonly decimals: () => 6;
8484
+ };
8485
+ };
8486
+ readonly multicall3: {
8487
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
8488
+ readonly blockCreated: 751532;
8489
+ };
8490
+ readonly ensUniversalResolver: {
8491
+ readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
8492
+ readonly blockCreated: 8928790;
8493
+ };
8494
+ };
8495
+ ensTlds?: readonly string[] | undefined;
8496
+ id: 11155111;
8497
+ name: "Sepolia";
8498
+ nativeCurrency: {
8499
+ readonly name: "Sepolia Ether";
8500
+ readonly symbol: "ETH";
8501
+ readonly decimals: 18;
8502
+ };
8503
+ experimental_preconfirmationTime?: number | undefined | undefined;
8504
+ rpcUrls: {
8505
+ readonly default: {
8506
+ readonly http: readonly ["https://sepolia.drpc.org"];
8507
+ };
8508
+ };
8509
+ sourceId?: number | undefined | undefined;
8510
+ testnet: true;
8511
+ custom?: Record<string, unknown> | undefined;
8512
+ fees?: import("viem").ChainFees<undefined> | undefined;
8513
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
8514
+ readonly blockchainId: "ETH-SEPOLIA";
8515
+ readonly blockchainVm: "EVM";
8516
+ readonly formatters?: undefined | undefined;
8517
+ }, {
8518
+ blockExplorers: {
8519
+ readonly default: {
8520
+ readonly name: "PolygonScan";
8521
+ readonly url: "https://polygonscan.com";
8522
+ readonly apiUrl: "https://api.polygonscan.com/api";
8523
+ };
8524
+ };
8525
+ blockTime?: number | undefined | undefined;
8526
+ contracts: {
8527
+ readonly USDC: {
8528
+ readonly address: "0x3c499c542cef5e3811e1192ce70d8cc03d5c3359";
8529
+ readonly abi: readonly [{
8530
+ readonly type: "event";
8531
+ readonly name: "Approval";
8532
+ readonly inputs: readonly [{
8533
+ readonly indexed: true;
8534
+ readonly name: "owner";
8535
+ readonly type: "address";
8536
+ }, {
8537
+ readonly indexed: true;
8538
+ readonly name: "spender";
8539
+ readonly type: "address";
8540
+ }, {
8541
+ readonly indexed: false;
8542
+ readonly name: "value";
8543
+ readonly type: "uint256";
8544
+ }];
8545
+ }, {
8546
+ readonly type: "event";
8547
+ readonly name: "Transfer";
8548
+ readonly inputs: readonly [{
8549
+ readonly indexed: true;
8550
+ readonly name: "from";
8551
+ readonly type: "address";
8552
+ }, {
8553
+ readonly indexed: true;
8554
+ readonly name: "to";
8555
+ readonly type: "address";
8556
+ }, {
8557
+ readonly indexed: false;
8558
+ readonly name: "value";
8559
+ readonly type: "uint256";
8560
+ }];
8561
+ }, {
8562
+ readonly type: "function";
8563
+ readonly name: "allowance";
8564
+ readonly stateMutability: "view";
8565
+ readonly inputs: readonly [{
8566
+ readonly name: "owner";
8567
+ readonly type: "address";
8568
+ }, {
8569
+ readonly name: "spender";
8570
+ readonly type: "address";
8571
+ }];
8572
+ readonly outputs: readonly [{
8573
+ readonly type: "uint256";
8574
+ }];
8575
+ }, {
8576
+ readonly type: "function";
8577
+ readonly name: "approve";
8578
+ readonly stateMutability: "nonpayable";
8579
+ readonly inputs: readonly [{
8580
+ readonly name: "spender";
8581
+ readonly type: "address";
8582
+ }, {
8583
+ readonly name: "amount";
8584
+ readonly type: "uint256";
8585
+ }];
8586
+ readonly outputs: readonly [{
8587
+ readonly type: "bool";
8588
+ }];
8589
+ }, {
8590
+ readonly type: "function";
8591
+ readonly name: "balanceOf";
8592
+ readonly stateMutability: "view";
8593
+ readonly inputs: readonly [{
8594
+ readonly name: "account";
8595
+ readonly type: "address";
8596
+ }];
8597
+ readonly outputs: readonly [{
8598
+ readonly type: "uint256";
8599
+ }];
8600
+ }, {
8601
+ readonly type: "function";
8602
+ readonly name: "decimals";
8603
+ readonly stateMutability: "view";
8604
+ readonly inputs: readonly [];
8605
+ readonly outputs: readonly [{
8606
+ readonly type: "uint8";
8607
+ }];
8608
+ }, {
8609
+ readonly type: "function";
8610
+ readonly name: "name";
8611
+ readonly stateMutability: "view";
8612
+ readonly inputs: readonly [];
8613
+ readonly outputs: readonly [{
8614
+ readonly type: "string";
8615
+ }];
8616
+ }, {
8617
+ readonly type: "function";
8618
+ readonly name: "symbol";
8619
+ readonly stateMutability: "view";
8620
+ readonly inputs: readonly [];
8621
+ readonly outputs: readonly [{
8622
+ readonly type: "string";
8623
+ }];
8624
+ }, {
8625
+ readonly type: "function";
8626
+ readonly name: "totalSupply";
8627
+ readonly stateMutability: "view";
8628
+ readonly inputs: readonly [];
8629
+ readonly outputs: readonly [{
8630
+ readonly type: "uint256";
8631
+ }];
8632
+ }, {
8633
+ readonly type: "function";
8634
+ readonly name: "transfer";
8635
+ readonly stateMutability: "nonpayable";
8636
+ readonly inputs: readonly [{
8637
+ readonly name: "recipient";
8638
+ readonly type: "address";
8639
+ }, {
8640
+ readonly name: "amount";
8641
+ readonly type: "uint256";
8642
+ }];
8643
+ readonly outputs: readonly [{
8644
+ readonly type: "bool";
8645
+ }];
8646
+ }, {
8647
+ readonly type: "function";
8648
+ readonly name: "transferFrom";
8649
+ readonly stateMutability: "nonpayable";
8650
+ readonly inputs: readonly [{
8651
+ readonly name: "sender";
8652
+ readonly type: "address";
8653
+ }, {
8654
+ readonly name: "recipient";
8655
+ readonly type: "address";
8656
+ }, {
8657
+ readonly name: "amount";
8658
+ readonly type: "uint256";
8659
+ }];
8660
+ readonly outputs: readonly [{
8661
+ readonly type: "bool";
8662
+ }];
8663
+ }];
8664
+ readonly read: {
8665
+ readonly decimals: () => 6;
8666
+ };
8667
+ };
8668
+ readonly multicall3: {
8669
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
8670
+ readonly blockCreated: 25770160;
8671
+ };
8672
+ };
8673
+ ensTlds?: readonly string[] | undefined;
8674
+ id: 137;
8675
+ name: "Polygon";
8676
+ nativeCurrency: {
8677
+ readonly name: "POL";
8678
+ readonly symbol: "POL";
8679
+ readonly decimals: 18;
8680
+ };
8681
+ experimental_preconfirmationTime?: number | undefined | undefined;
8682
+ rpcUrls: {
8683
+ readonly default: {
8684
+ readonly http: readonly ["https://polygon-rpc.com"];
8685
+ };
8686
+ };
8687
+ sourceId?: number | undefined | undefined;
8688
+ testnet?: boolean | undefined | undefined;
8689
+ custom?: Record<string, unknown> | undefined;
8690
+ fees?: import("viem").ChainFees<undefined> | undefined;
8691
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
8692
+ readonly blockchainId: "MATIC";
8693
+ readonly blockchainVm: "EVM";
8694
+ readonly formatters?: undefined | undefined;
8695
+ }, {
8696
+ blockExplorers: {
8697
+ readonly default: {
8698
+ readonly name: "PolygonScan";
8699
+ readonly url: "https://amoy.polygonscan.com";
8700
+ readonly apiUrl: "https://api-amoy.polygonscan.com/api";
8701
+ };
8702
+ };
8703
+ blockTime?: number | undefined | undefined;
8704
+ contracts: {
8705
+ readonly USDC: {
8706
+ readonly address: "0x41e94eb019c0762f9bfcf9fb1e58725bfb0e7582";
8707
+ readonly abi: readonly [{
8708
+ readonly type: "event";
8709
+ readonly name: "Approval";
8710
+ readonly inputs: readonly [{
8711
+ readonly indexed: true;
8712
+ readonly name: "owner";
8713
+ readonly type: "address";
8714
+ }, {
8715
+ readonly indexed: true;
8716
+ readonly name: "spender";
8717
+ readonly type: "address";
8718
+ }, {
8719
+ readonly indexed: false;
8720
+ readonly name: "value";
8721
+ readonly type: "uint256";
8722
+ }];
8723
+ }, {
8724
+ readonly type: "event";
8725
+ readonly name: "Transfer";
8726
+ readonly inputs: readonly [{
8727
+ readonly indexed: true;
8728
+ readonly name: "from";
8729
+ readonly type: "address";
8730
+ }, {
8731
+ readonly indexed: true;
8732
+ readonly name: "to";
8733
+ readonly type: "address";
8734
+ }, {
8735
+ readonly indexed: false;
8736
+ readonly name: "value";
8737
+ readonly type: "uint256";
8738
+ }];
8739
+ }, {
8740
+ readonly type: "function";
8741
+ readonly name: "allowance";
8742
+ readonly stateMutability: "view";
8743
+ readonly inputs: readonly [{
8744
+ readonly name: "owner";
8745
+ readonly type: "address";
8746
+ }, {
8747
+ readonly name: "spender";
8748
+ readonly type: "address";
8749
+ }];
8750
+ readonly outputs: readonly [{
8751
+ readonly type: "uint256";
8752
+ }];
8753
+ }, {
8754
+ readonly type: "function";
8755
+ readonly name: "approve";
8756
+ readonly stateMutability: "nonpayable";
8757
+ readonly inputs: readonly [{
8758
+ readonly name: "spender";
8759
+ readonly type: "address";
8760
+ }, {
8761
+ readonly name: "amount";
8762
+ readonly type: "uint256";
8763
+ }];
8764
+ readonly outputs: readonly [{
8765
+ readonly type: "bool";
8766
+ }];
8767
+ }, {
8768
+ readonly type: "function";
8769
+ readonly name: "balanceOf";
8770
+ readonly stateMutability: "view";
8771
+ readonly inputs: readonly [{
8772
+ readonly name: "account";
8773
+ readonly type: "address";
8774
+ }];
8775
+ readonly outputs: readonly [{
8776
+ readonly type: "uint256";
8777
+ }];
8778
+ }, {
8779
+ readonly type: "function";
8780
+ readonly name: "decimals";
8781
+ readonly stateMutability: "view";
8782
+ readonly inputs: readonly [];
8783
+ readonly outputs: readonly [{
8784
+ readonly type: "uint8";
8785
+ }];
8786
+ }, {
8787
+ readonly type: "function";
8788
+ readonly name: "name";
8789
+ readonly stateMutability: "view";
8790
+ readonly inputs: readonly [];
8791
+ readonly outputs: readonly [{
8792
+ readonly type: "string";
8793
+ }];
8794
+ }, {
8795
+ readonly type: "function";
8796
+ readonly name: "symbol";
8797
+ readonly stateMutability: "view";
8798
+ readonly inputs: readonly [];
8799
+ readonly outputs: readonly [{
8800
+ readonly type: "string";
8801
+ }];
8802
+ }, {
8803
+ readonly type: "function";
8804
+ readonly name: "totalSupply";
8805
+ readonly stateMutability: "view";
8806
+ readonly inputs: readonly [];
8807
+ readonly outputs: readonly [{
8808
+ readonly type: "uint256";
8809
+ }];
8810
+ }, {
8811
+ readonly type: "function";
8812
+ readonly name: "transfer";
8813
+ readonly stateMutability: "nonpayable";
8814
+ readonly inputs: readonly [{
8815
+ readonly name: "recipient";
8816
+ readonly type: "address";
8817
+ }, {
8818
+ readonly name: "amount";
8819
+ readonly type: "uint256";
8820
+ }];
8821
+ readonly outputs: readonly [{
8822
+ readonly type: "bool";
8823
+ }];
8824
+ }, {
8825
+ readonly type: "function";
8826
+ readonly name: "transferFrom";
8827
+ readonly stateMutability: "nonpayable";
8828
+ readonly inputs: readonly [{
8829
+ readonly name: "sender";
8830
+ readonly type: "address";
8831
+ }, {
8832
+ readonly name: "recipient";
8833
+ readonly type: "address";
8834
+ }, {
8835
+ readonly name: "amount";
8836
+ readonly type: "uint256";
8837
+ }];
8838
+ readonly outputs: readonly [{
8839
+ readonly type: "bool";
8840
+ }];
8841
+ }];
8842
+ readonly read: {
8843
+ readonly decimals: () => 6;
8844
+ };
8845
+ };
8846
+ readonly multicall3: {
8847
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
8848
+ readonly blockCreated: 3127388;
8849
+ };
8850
+ };
8851
+ ensTlds?: readonly string[] | undefined;
8852
+ id: 80002;
8853
+ name: "Polygon Amoy";
8854
+ nativeCurrency: {
8855
+ readonly name: "POL";
8856
+ readonly symbol: "POL";
8857
+ readonly decimals: 18;
8858
+ };
8859
+ experimental_preconfirmationTime?: number | undefined | undefined;
8860
+ rpcUrls: {
8861
+ readonly default: {
8862
+ readonly http: readonly ["https://rpc-amoy.polygon.technology"];
8863
+ };
8864
+ };
8865
+ sourceId?: number | undefined | undefined;
8866
+ testnet: true;
8867
+ custom?: Record<string, unknown> | undefined;
8868
+ fees?: import("viem").ChainFees<undefined> | undefined;
8869
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
8870
+ readonly blockchainId: "MATIC-AMOY";
8871
+ readonly blockchainVm: "EVM";
8872
+ readonly formatters?: undefined | undefined;
8873
+ }, {
8874
+ blockExplorers: {
8875
+ readonly default: {
8876
+ readonly name: "Arbiscan";
8877
+ readonly url: "https://arbiscan.io";
8878
+ readonly apiUrl: "https://api.arbiscan.io/api";
8879
+ };
8880
+ };
8881
+ blockTime: 250;
8882
+ contracts: {
8883
+ readonly USDC: {
8884
+ readonly address: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831";
8885
+ readonly abi: readonly [{
8886
+ readonly type: "event";
8887
+ readonly name: "Approval";
8888
+ readonly inputs: readonly [{
8889
+ readonly indexed: true;
8890
+ readonly name: "owner";
8891
+ readonly type: "address";
8892
+ }, {
8893
+ readonly indexed: true;
8894
+ readonly name: "spender";
8895
+ readonly type: "address";
8896
+ }, {
8897
+ readonly indexed: false;
8898
+ readonly name: "value";
8899
+ readonly type: "uint256";
8900
+ }];
8901
+ }, {
8902
+ readonly type: "event";
8903
+ readonly name: "Transfer";
8904
+ readonly inputs: readonly [{
8905
+ readonly indexed: true;
8906
+ readonly name: "from";
8907
+ readonly type: "address";
8908
+ }, {
8909
+ readonly indexed: true;
8910
+ readonly name: "to";
8911
+ readonly type: "address";
8912
+ }, {
8913
+ readonly indexed: false;
8914
+ readonly name: "value";
8915
+ readonly type: "uint256";
8916
+ }];
8917
+ }, {
8918
+ readonly type: "function";
8919
+ readonly name: "allowance";
8920
+ readonly stateMutability: "view";
8921
+ readonly inputs: readonly [{
8922
+ readonly name: "owner";
8923
+ readonly type: "address";
8924
+ }, {
8925
+ readonly name: "spender";
8926
+ readonly type: "address";
8927
+ }];
8928
+ readonly outputs: readonly [{
8929
+ readonly type: "uint256";
8930
+ }];
8931
+ }, {
8932
+ readonly type: "function";
8933
+ readonly name: "approve";
8934
+ readonly stateMutability: "nonpayable";
8935
+ readonly inputs: readonly [{
8936
+ readonly name: "spender";
8937
+ readonly type: "address";
8938
+ }, {
8939
+ readonly name: "amount";
8940
+ readonly type: "uint256";
8941
+ }];
8942
+ readonly outputs: readonly [{
8943
+ readonly type: "bool";
8944
+ }];
8945
+ }, {
8946
+ readonly type: "function";
8947
+ readonly name: "balanceOf";
8948
+ readonly stateMutability: "view";
8949
+ readonly inputs: readonly [{
8950
+ readonly name: "account";
8951
+ readonly type: "address";
8952
+ }];
8953
+ readonly outputs: readonly [{
8954
+ readonly type: "uint256";
8955
+ }];
8956
+ }, {
8957
+ readonly type: "function";
8958
+ readonly name: "decimals";
8959
+ readonly stateMutability: "view";
8960
+ readonly inputs: readonly [];
8961
+ readonly outputs: readonly [{
8962
+ readonly type: "uint8";
8963
+ }];
8964
+ }, {
8965
+ readonly type: "function";
8966
+ readonly name: "name";
8967
+ readonly stateMutability: "view";
8968
+ readonly inputs: readonly [];
8969
+ readonly outputs: readonly [{
8970
+ readonly type: "string";
8971
+ }];
8972
+ }, {
8973
+ readonly type: "function";
8974
+ readonly name: "symbol";
8975
+ readonly stateMutability: "view";
8976
+ readonly inputs: readonly [];
8977
+ readonly outputs: readonly [{
8978
+ readonly type: "string";
8979
+ }];
8980
+ }, {
8981
+ readonly type: "function";
8982
+ readonly name: "totalSupply";
8983
+ readonly stateMutability: "view";
8984
+ readonly inputs: readonly [];
8985
+ readonly outputs: readonly [{
8986
+ readonly type: "uint256";
8987
+ }];
8988
+ }, {
8989
+ readonly type: "function";
8990
+ readonly name: "transfer";
8991
+ readonly stateMutability: "nonpayable";
8992
+ readonly inputs: readonly [{
8993
+ readonly name: "recipient";
8994
+ readonly type: "address";
8995
+ }, {
8996
+ readonly name: "amount";
8997
+ readonly type: "uint256";
8998
+ }];
8999
+ readonly outputs: readonly [{
9000
+ readonly type: "bool";
9001
+ }];
9002
+ }, {
9003
+ readonly type: "function";
9004
+ readonly name: "transferFrom";
9005
+ readonly stateMutability: "nonpayable";
9006
+ readonly inputs: readonly [{
9007
+ readonly name: "sender";
9008
+ readonly type: "address";
9009
+ }, {
9010
+ readonly name: "recipient";
9011
+ readonly type: "address";
9012
+ }, {
9013
+ readonly name: "amount";
9014
+ readonly type: "uint256";
9015
+ }];
9016
+ readonly outputs: readonly [{
9017
+ readonly type: "bool";
9018
+ }];
9019
+ }];
9020
+ readonly read: {
9021
+ readonly decimals: () => 6;
9022
+ };
9023
+ };
9024
+ readonly multicall3: {
9025
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
9026
+ readonly blockCreated: 7654707;
9027
+ };
9028
+ };
9029
+ ensTlds?: readonly string[] | undefined;
9030
+ id: 42161;
9031
+ name: "Arbitrum One";
9032
+ nativeCurrency: {
9033
+ readonly name: "Ether";
9034
+ readonly symbol: "ETH";
9035
+ readonly decimals: 18;
9036
+ };
9037
+ experimental_preconfirmationTime?: number | undefined | undefined;
9038
+ rpcUrls: {
9039
+ readonly default: {
9040
+ readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
9041
+ };
9042
+ };
9043
+ sourceId?: number | undefined | undefined;
9044
+ testnet?: boolean | undefined | undefined;
9045
+ custom?: Record<string, unknown> | undefined;
9046
+ fees?: import("viem").ChainFees<undefined> | undefined;
9047
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
9048
+ readonly blockchainId: "ARB";
9049
+ readonly blockchainVm: "EVM";
9050
+ readonly formatters?: undefined | undefined;
9051
+ }, {
9052
+ blockExplorers: {
9053
+ readonly default: {
9054
+ readonly name: "Arbiscan";
9055
+ readonly url: "https://sepolia.arbiscan.io";
9056
+ readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
9057
+ };
9058
+ };
9059
+ blockTime: 250;
9060
+ contracts: {
9061
+ readonly USDC: {
9062
+ readonly address: "0x75faf114eafb1BDbe2F0316DF893fd58CE46AA4d";
9063
+ readonly abi: readonly [{
9064
+ readonly type: "event";
9065
+ readonly name: "Approval";
9066
+ readonly inputs: readonly [{
9067
+ readonly indexed: true;
9068
+ readonly name: "owner";
9069
+ readonly type: "address";
9070
+ }, {
9071
+ readonly indexed: true;
9072
+ readonly name: "spender";
9073
+ readonly type: "address";
9074
+ }, {
9075
+ readonly indexed: false;
9076
+ readonly name: "value";
9077
+ readonly type: "uint256";
9078
+ }];
9079
+ }, {
9080
+ readonly type: "event";
9081
+ readonly name: "Transfer";
9082
+ readonly inputs: readonly [{
9083
+ readonly indexed: true;
9084
+ readonly name: "from";
9085
+ readonly type: "address";
9086
+ }, {
9087
+ readonly indexed: true;
9088
+ readonly name: "to";
9089
+ readonly type: "address";
9090
+ }, {
9091
+ readonly indexed: false;
9092
+ readonly name: "value";
9093
+ readonly type: "uint256";
9094
+ }];
9095
+ }, {
9096
+ readonly type: "function";
9097
+ readonly name: "allowance";
9098
+ readonly stateMutability: "view";
9099
+ readonly inputs: readonly [{
9100
+ readonly name: "owner";
9101
+ readonly type: "address";
9102
+ }, {
9103
+ readonly name: "spender";
9104
+ readonly type: "address";
9105
+ }];
9106
+ readonly outputs: readonly [{
9107
+ readonly type: "uint256";
9108
+ }];
9109
+ }, {
9110
+ readonly type: "function";
9111
+ readonly name: "approve";
9112
+ readonly stateMutability: "nonpayable";
9113
+ readonly inputs: readonly [{
9114
+ readonly name: "spender";
9115
+ readonly type: "address";
9116
+ }, {
9117
+ readonly name: "amount";
9118
+ readonly type: "uint256";
9119
+ }];
9120
+ readonly outputs: readonly [{
9121
+ readonly type: "bool";
9122
+ }];
9123
+ }, {
9124
+ readonly type: "function";
9125
+ readonly name: "balanceOf";
9126
+ readonly stateMutability: "view";
9127
+ readonly inputs: readonly [{
9128
+ readonly name: "account";
9129
+ readonly type: "address";
9130
+ }];
9131
+ readonly outputs: readonly [{
9132
+ readonly type: "uint256";
9133
+ }];
9134
+ }, {
9135
+ readonly type: "function";
9136
+ readonly name: "decimals";
9137
+ readonly stateMutability: "view";
9138
+ readonly inputs: readonly [];
9139
+ readonly outputs: readonly [{
9140
+ readonly type: "uint8";
9141
+ }];
9142
+ }, {
9143
+ readonly type: "function";
9144
+ readonly name: "name";
9145
+ readonly stateMutability: "view";
9146
+ readonly inputs: readonly [];
9147
+ readonly outputs: readonly [{
9148
+ readonly type: "string";
9149
+ }];
9150
+ }, {
9151
+ readonly type: "function";
9152
+ readonly name: "symbol";
9153
+ readonly stateMutability: "view";
9154
+ readonly inputs: readonly [];
9155
+ readonly outputs: readonly [{
9156
+ readonly type: "string";
9157
+ }];
9158
+ }, {
9159
+ readonly type: "function";
9160
+ readonly name: "totalSupply";
9161
+ readonly stateMutability: "view";
9162
+ readonly inputs: readonly [];
9163
+ readonly outputs: readonly [{
9164
+ readonly type: "uint256";
9165
+ }];
9166
+ }, {
9167
+ readonly type: "function";
9168
+ readonly name: "transfer";
9169
+ readonly stateMutability: "nonpayable";
9170
+ readonly inputs: readonly [{
9171
+ readonly name: "recipient";
9172
+ readonly type: "address";
9173
+ }, {
9174
+ readonly name: "amount";
9175
+ readonly type: "uint256";
9176
+ }];
9177
+ readonly outputs: readonly [{
9178
+ readonly type: "bool";
9179
+ }];
9180
+ }, {
9181
+ readonly type: "function";
9182
+ readonly name: "transferFrom";
9183
+ readonly stateMutability: "nonpayable";
9184
+ readonly inputs: readonly [{
9185
+ readonly name: "sender";
9186
+ readonly type: "address";
9187
+ }, {
9188
+ readonly name: "recipient";
9189
+ readonly type: "address";
9190
+ }, {
9191
+ readonly name: "amount";
9192
+ readonly type: "uint256";
9193
+ }];
9194
+ readonly outputs: readonly [{
9195
+ readonly type: "bool";
9196
+ }];
9197
+ }];
9198
+ readonly read: {
9199
+ readonly decimals: () => 6;
9200
+ };
9201
+ };
9202
+ readonly multicall3: {
9203
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
9204
+ readonly blockCreated: 81930;
9205
+ };
9206
+ };
9207
+ ensTlds?: readonly string[] | undefined;
9208
+ id: 421614;
9209
+ name: "Arbitrum Sepolia";
9210
+ nativeCurrency: {
9211
+ readonly name: "Arbitrum Sepolia Ether";
9212
+ readonly symbol: "ETH";
9213
+ readonly decimals: 18;
9214
+ };
9215
+ experimental_preconfirmationTime?: number | undefined | undefined;
9216
+ rpcUrls: {
9217
+ readonly default: {
9218
+ readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
9219
+ };
9220
+ };
9221
+ sourceId?: number | undefined | undefined;
9222
+ testnet: true;
9223
+ custom?: Record<string, unknown> | undefined;
9224
+ fees?: import("viem").ChainFees<undefined> | undefined;
9225
+ serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable<bigint, number>> | undefined;
9226
+ readonly blockchainId: "ARB-SEPOLIA";
9227
+ readonly blockchainVm: "EVM";
9228
+ readonly formatters?: undefined | undefined;
9229
+ }, {
9230
+ blockExplorers: {
9231
+ readonly default: {
9232
+ readonly name: "Uniscan";
9233
+ readonly url: "https://uniscan.xyz";
9234
+ readonly apiUrl: "https://api.uniscan.xyz/api";
9235
+ };
9236
+ };
9237
+ blockTime: 2000;
9238
+ contracts: {
9239
+ readonly USDC: {
9240
+ readonly address: "0x078D782b760474a361dDA0AF3839290b0EF57AD6";
9241
+ readonly abi: readonly [{
9242
+ readonly type: "event";
9243
+ readonly name: "Approval";
9244
+ readonly inputs: readonly [{
9245
+ readonly indexed: true;
9246
+ readonly name: "owner";
9247
+ readonly type: "address";
9248
+ }, {
9249
+ readonly indexed: true;
9250
+ readonly name: "spender";
9251
+ readonly type: "address";
9252
+ }, {
9253
+ readonly indexed: false;
9254
+ readonly name: "value";
9255
+ readonly type: "uint256";
9256
+ }];
9257
+ }, {
9258
+ readonly type: "event";
9259
+ readonly name: "Transfer";
9260
+ readonly inputs: readonly [{
9261
+ readonly indexed: true;
9262
+ readonly name: "from";
9263
+ readonly type: "address";
9264
+ }, {
9265
+ readonly indexed: true;
9266
+ readonly name: "to";
9267
+ readonly type: "address";
9268
+ }, {
9269
+ readonly indexed: false;
9270
+ readonly name: "value";
9271
+ readonly type: "uint256";
9272
+ }];
9273
+ }, {
9274
+ readonly type: "function";
9275
+ readonly name: "allowance";
9276
+ readonly stateMutability: "view";
9277
+ readonly inputs: readonly [{
9278
+ readonly name: "owner";
9279
+ readonly type: "address";
9280
+ }, {
9281
+ readonly name: "spender";
9282
+ readonly type: "address";
9283
+ }];
9284
+ readonly outputs: readonly [{
9285
+ readonly type: "uint256";
9286
+ }];
9287
+ }, {
9288
+ readonly type: "function";
9289
+ readonly name: "approve";
9290
+ readonly stateMutability: "nonpayable";
9291
+ readonly inputs: readonly [{
9292
+ readonly name: "spender";
9293
+ readonly type: "address";
9294
+ }, {
9295
+ readonly name: "amount";
9296
+ readonly type: "uint256";
9297
+ }];
9298
+ readonly outputs: readonly [{
9299
+ readonly type: "bool";
9300
+ }];
9301
+ }, {
9302
+ readonly type: "function";
9303
+ readonly name: "balanceOf";
9304
+ readonly stateMutability: "view";
9305
+ readonly inputs: readonly [{
9306
+ readonly name: "account";
9307
+ readonly type: "address";
9308
+ }];
9309
+ readonly outputs: readonly [{
9310
+ readonly type: "uint256";
9311
+ }];
9312
+ }, {
9313
+ readonly type: "function";
9314
+ readonly name: "decimals";
9315
+ readonly stateMutability: "view";
9316
+ readonly inputs: readonly [];
9317
+ readonly outputs: readonly [{
9318
+ readonly type: "uint8";
9319
+ }];
9320
+ }, {
9321
+ readonly type: "function";
9322
+ readonly name: "name";
9323
+ readonly stateMutability: "view";
9324
+ readonly inputs: readonly [];
9325
+ readonly outputs: readonly [{
9326
+ readonly type: "string";
9327
+ }];
9328
+ }, {
9329
+ readonly type: "function";
9330
+ readonly name: "symbol";
9331
+ readonly stateMutability: "view";
9332
+ readonly inputs: readonly [];
9333
+ readonly outputs: readonly [{
9334
+ readonly type: "string";
9335
+ }];
9336
+ }, {
9337
+ readonly type: "function";
9338
+ readonly name: "totalSupply";
9339
+ readonly stateMutability: "view";
9340
+ readonly inputs: readonly [];
9341
+ readonly outputs: readonly [{
9342
+ readonly type: "uint256";
9343
+ }];
9344
+ }, {
9345
+ readonly type: "function";
9346
+ readonly name: "transfer";
9347
+ readonly stateMutability: "nonpayable";
9348
+ readonly inputs: readonly [{
9349
+ readonly name: "recipient";
9350
+ readonly type: "address";
9351
+ }, {
9352
+ readonly name: "amount";
9353
+ readonly type: "uint256";
9354
+ }];
9355
+ readonly outputs: readonly [{
9356
+ readonly type: "bool";
9357
+ }];
9358
+ }, {
9359
+ readonly type: "function";
9360
+ readonly name: "transferFrom";
9361
+ readonly stateMutability: "nonpayable";
9362
+ readonly inputs: readonly [{
9363
+ readonly name: "sender";
9364
+ readonly type: "address";
9365
+ }, {
9366
+ readonly name: "recipient";
9367
+ readonly type: "address";
9368
+ }, {
9369
+ readonly name: "amount";
9370
+ readonly type: "uint256";
9371
+ }];
9372
+ readonly outputs: readonly [{
9373
+ readonly type: "bool";
9374
+ }];
9375
+ }];
9376
+ readonly read: {
9377
+ readonly decimals: () => 6;
9378
+ };
9379
+ };
9380
+ readonly multicall3: {
9381
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
9382
+ readonly blockCreated: 0;
9383
+ };
9384
+ readonly disputeGameFactory: {
9385
+ readonly 1: {
9386
+ readonly address: "0x2F12d621a16e2d3285929C9996f478508951dFe4";
9387
+ };
9388
+ };
9389
+ readonly portal: {
9390
+ readonly 1: {
9391
+ readonly address: "0x0bd48f6B86a26D3a217d0Fa6FfE2B491B956A7a2";
9392
+ };
9393
+ };
9394
+ readonly l1StandardBridge: {
9395
+ readonly 1: {
9396
+ readonly address: "0x81014F44b0a345033bB2b3B21C7a1A308B35fEeA";
9397
+ };
9398
+ };
9399
+ readonly gasPriceOracle: {
9400
+ readonly address: "0x420000000000000000000000000000000000000F";
9401
+ };
9402
+ readonly l1Block: {
9403
+ readonly address: "0x4200000000000000000000000000000000000015";
9404
+ };
9405
+ readonly l2CrossDomainMessenger: {
9406
+ readonly address: "0x4200000000000000000000000000000000000007";
9407
+ };
9408
+ readonly l2Erc721Bridge: {
9409
+ readonly address: "0x4200000000000000000000000000000000000014";
9410
+ };
9411
+ readonly l2StandardBridge: {
9412
+ readonly address: "0x4200000000000000000000000000000000000010";
9413
+ };
9414
+ readonly l2ToL1MessagePasser: {
9415
+ readonly address: "0x4200000000000000000000000000000000000016";
9416
+ };
9417
+ };
9418
+ ensTlds?: readonly string[] | undefined;
9419
+ id: 130;
9420
+ name: "Unichain";
9421
+ nativeCurrency: {
9422
+ readonly name: "Ether";
9423
+ readonly symbol: "ETH";
9424
+ readonly decimals: 18;
9425
+ };
9426
+ experimental_preconfirmationTime?: number | undefined | undefined;
9427
+ rpcUrls: {
9428
+ readonly default: {
9429
+ readonly http: readonly ["https://mainnet.unichain.org/"];
9430
+ };
9431
+ };
9432
+ sourceId: 1;
9433
+ testnet?: boolean | undefined | undefined;
9434
+ custom?: Record<string, unknown> | undefined;
9435
+ fees?: import("viem").ChainFees<undefined> | undefined;
9436
+ formatters: {
9437
+ readonly block: {
9438
+ exclude: [] | undefined;
9439
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
9440
+ baseFeePerGas: bigint | null;
9441
+ blobGasUsed: bigint;
9442
+ difficulty: bigint;
9443
+ excessBlobGas: bigint;
9444
+ extraData: import("viem").Hex;
9445
+ gasLimit: bigint;
9446
+ gasUsed: bigint;
9447
+ hash: `0x${string}` | null;
9448
+ logsBloom: `0x${string}` | null;
9449
+ miner: import("abitype").Address;
9450
+ mixHash: import("viem").Hash;
9451
+ nonce: `0x${string}` | null;
9452
+ number: bigint | null;
9453
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
9454
+ parentHash: import("viem").Hash;
9455
+ receiptsRoot: import("viem").Hex;
9456
+ sealFields: import("viem").Hex[];
9457
+ sha3Uncles: import("viem").Hash;
9458
+ size: bigint;
9459
+ stateRoot: import("viem").Hash;
9460
+ timestamp: bigint;
9461
+ totalDifficulty: bigint | null;
9462
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
9463
+ transactionsRoot: import("viem").Hash;
9464
+ uncles: import("viem").Hash[];
9465
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
9466
+ withdrawalsRoot?: `0x${string}` | undefined;
9467
+ } & {};
9468
+ type: "block";
9469
+ };
9470
+ readonly transaction: {
9471
+ exclude: [] | undefined;
9472
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
9473
+ blockHash: `0x${string}` | null;
9474
+ blockNumber: bigint | null;
9475
+ from: import("abitype").Address;
9476
+ gas: bigint;
9477
+ hash: import("viem").Hash;
9478
+ input: import("viem").Hex;
9479
+ nonce: number;
9480
+ r: import("viem").Hex;
9481
+ s: import("viem").Hex;
9482
+ to: import("abitype").Address | null;
9483
+ transactionIndex: number | null;
9484
+ typeHex: import("viem").Hex | null;
9485
+ v: bigint;
9486
+ value: bigint;
9487
+ yParity: number;
9488
+ gasPrice?: undefined | undefined;
9489
+ maxFeePerBlobGas?: undefined | undefined;
9490
+ maxFeePerGas: bigint;
9491
+ maxPriorityFeePerGas: bigint;
9492
+ isSystemTx?: boolean;
9493
+ mint?: bigint | undefined | undefined;
9494
+ sourceHash: import("viem").Hex;
9495
+ type: "deposit";
9496
+ } | {
9497
+ r: import("viem").Hex;
9498
+ s: import("viem").Hex;
9499
+ v: bigint;
9500
+ to: import("abitype").Address | null;
9501
+ from: import("abitype").Address;
9502
+ gas: bigint;
9503
+ nonce: number;
9504
+ value: bigint;
9505
+ blockHash: `0x${string}` | null;
9506
+ blockNumber: bigint | null;
9507
+ hash: import("viem").Hash;
9508
+ input: import("viem").Hex;
9509
+ transactionIndex: number | null;
9510
+ typeHex: import("viem").Hex | null;
9511
+ accessList?: undefined | undefined;
9512
+ authorizationList?: undefined | undefined;
9513
+ blobVersionedHashes?: undefined | undefined;
9514
+ chainId?: number | undefined;
9515
+ yParity?: undefined | undefined;
9516
+ type: "legacy";
9517
+ gasPrice: bigint;
9518
+ maxFeePerBlobGas?: undefined | undefined;
9519
+ maxFeePerGas?: undefined | undefined;
9520
+ maxPriorityFeePerGas?: undefined | undefined;
9521
+ isSystemTx?: undefined | undefined;
9522
+ mint?: undefined | undefined;
9523
+ sourceHash?: undefined | undefined;
9524
+ } | {
9525
+ blockHash: `0x${string}` | null;
9526
+ blockNumber: bigint | null;
9527
+ from: import("abitype").Address;
9528
+ gas: bigint;
9529
+ hash: import("viem").Hash;
9530
+ input: import("viem").Hex;
9531
+ nonce: number;
9532
+ r: import("viem").Hex;
9533
+ s: import("viem").Hex;
9534
+ to: import("abitype").Address | null;
9535
+ transactionIndex: number | null;
9536
+ typeHex: import("viem").Hex | null;
9537
+ v: bigint;
9538
+ value: bigint;
9539
+ yParity: number;
9540
+ accessList: import("viem").AccessList;
9541
+ authorizationList?: undefined | undefined;
9542
+ blobVersionedHashes?: undefined | undefined;
9543
+ chainId: number;
9544
+ type: "eip2930";
9545
+ gasPrice: bigint;
9546
+ maxFeePerBlobGas?: undefined | undefined;
9547
+ maxFeePerGas?: undefined | undefined;
9548
+ maxPriorityFeePerGas?: undefined | undefined;
9549
+ isSystemTx?: undefined | undefined;
9550
+ mint?: undefined | undefined;
9551
+ sourceHash?: undefined | undefined;
9552
+ } | {
9553
+ blockHash: `0x${string}` | null;
9554
+ blockNumber: bigint | null;
9555
+ from: import("abitype").Address;
9556
+ gas: bigint;
9557
+ hash: import("viem").Hash;
9558
+ input: import("viem").Hex;
9559
+ nonce: number;
9560
+ r: import("viem").Hex;
9561
+ s: import("viem").Hex;
9562
+ to: import("abitype").Address | null;
9563
+ transactionIndex: number | null;
9564
+ typeHex: import("viem").Hex | null;
9565
+ v: bigint;
9566
+ value: bigint;
9567
+ yParity: number;
9568
+ accessList: import("viem").AccessList;
9569
+ authorizationList?: undefined | undefined;
9570
+ blobVersionedHashes?: undefined | undefined;
9571
+ chainId: number;
9572
+ type: "eip1559";
9573
+ gasPrice?: undefined | undefined;
9574
+ maxFeePerBlobGas?: undefined | undefined;
9575
+ maxFeePerGas: bigint;
9576
+ maxPriorityFeePerGas: bigint;
9577
+ isSystemTx?: undefined | undefined;
9578
+ mint?: undefined | undefined;
9579
+ sourceHash?: undefined | undefined;
9580
+ } | {
9581
+ blockHash: `0x${string}` | null;
9582
+ blockNumber: bigint | null;
9583
+ from: import("abitype").Address;
9584
+ gas: bigint;
9585
+ hash: import("viem").Hash;
9586
+ input: import("viem").Hex;
9587
+ nonce: number;
9588
+ r: import("viem").Hex;
9589
+ s: import("viem").Hex;
9590
+ to: import("abitype").Address | null;
9591
+ transactionIndex: number | null;
9592
+ typeHex: import("viem").Hex | null;
9593
+ v: bigint;
9594
+ value: bigint;
9595
+ yParity: number;
9596
+ accessList: import("viem").AccessList;
9597
+ authorizationList?: undefined | undefined;
9598
+ blobVersionedHashes: readonly import("viem").Hex[];
9599
+ chainId: number;
9600
+ type: "eip4844";
9601
+ gasPrice?: undefined | undefined;
9602
+ maxFeePerBlobGas: bigint;
9603
+ maxFeePerGas: bigint;
9604
+ maxPriorityFeePerGas: bigint;
9605
+ isSystemTx?: undefined | undefined;
9606
+ mint?: undefined | undefined;
9607
+ sourceHash?: undefined | undefined;
9608
+ } | {
9609
+ blockHash: `0x${string}` | null;
9610
+ blockNumber: bigint | null;
9611
+ from: import("abitype").Address;
9612
+ gas: bigint;
9613
+ hash: import("viem").Hash;
9614
+ input: import("viem").Hex;
9615
+ nonce: number;
9616
+ r: import("viem").Hex;
9617
+ s: import("viem").Hex;
9618
+ to: import("abitype").Address | null;
9619
+ transactionIndex: number | null;
9620
+ typeHex: import("viem").Hex | null;
9621
+ v: bigint;
9622
+ value: bigint;
9623
+ yParity: number;
9624
+ accessList: import("viem").AccessList;
9625
+ authorizationList: import("viem").SignedAuthorizationList;
9626
+ blobVersionedHashes?: undefined | undefined;
9627
+ chainId: number;
9628
+ type: "eip7702";
9629
+ gasPrice?: undefined | undefined;
9630
+ maxFeePerBlobGas?: undefined | undefined;
9631
+ maxFeePerGas: bigint;
9632
+ maxPriorityFeePerGas: bigint;
9633
+ isSystemTx?: undefined | undefined;
9634
+ mint?: undefined | undefined;
9635
+ sourceHash?: undefined | undefined;
9636
+ }) & {};
9637
+ type: "transaction";
9638
+ };
9639
+ readonly transactionReceipt: {
9640
+ exclude: [] | undefined;
9641
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
9642
+ blobGasPrice?: bigint | undefined;
9643
+ blobGasUsed?: bigint | undefined;
9644
+ blockHash: import("viem").Hash;
9645
+ blockNumber: bigint;
9646
+ contractAddress: import("abitype").Address | null | undefined;
9647
+ cumulativeGasUsed: bigint;
9648
+ effectiveGasPrice: bigint;
9649
+ from: import("abitype").Address;
9650
+ gasUsed: bigint;
9651
+ logs: import("viem").Log<bigint, number, false>[];
9652
+ logsBloom: import("viem").Hex;
9653
+ root?: `0x${string}` | undefined;
9654
+ status: "success" | "reverted";
9655
+ to: import("abitype").Address | null;
9656
+ transactionHash: import("viem").Hash;
9657
+ transactionIndex: number;
9658
+ type: import("viem").TransactionType;
9659
+ l1GasPrice: bigint | null;
9660
+ l1GasUsed: bigint | null;
9661
+ l1Fee: bigint | null;
9662
+ l1FeeScalar: number | null;
9663
+ } & {};
9664
+ type: "transactionReceipt";
9665
+ };
9666
+ };
9667
+ serializers: {
9668
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
9669
+ };
9670
+ readonly blockchainId: "UNI";
9671
+ readonly blockchainVm: "EVM";
9672
+ }, {
9673
+ blockExplorers: {
9674
+ readonly default: {
9675
+ readonly name: "Uniscan";
9676
+ readonly url: "https://sepolia.uniscan.xyz";
9677
+ readonly apiUrl: "https://api-sepolia.uniscan.xyz/api";
9678
+ };
9679
+ };
9680
+ blockTime: 2000;
9681
+ contracts: {
9682
+ readonly USDC: {
9683
+ readonly address: "0x31d0220469e10c4E71834a79b1f276d740d3768F";
9684
+ readonly abi: readonly [{
9685
+ readonly type: "event";
9686
+ readonly name: "Approval";
9687
+ readonly inputs: readonly [{
9688
+ readonly indexed: true;
9689
+ readonly name: "owner";
9690
+ readonly type: "address";
9691
+ }, {
9692
+ readonly indexed: true;
9693
+ readonly name: "spender";
9694
+ readonly type: "address";
9695
+ }, {
9696
+ readonly indexed: false;
9697
+ readonly name: "value";
9698
+ readonly type: "uint256";
9699
+ }];
9700
+ }, {
9701
+ readonly type: "event";
9702
+ readonly name: "Transfer";
9703
+ readonly inputs: readonly [{
9704
+ readonly indexed: true;
9705
+ readonly name: "from";
9706
+ readonly type: "address";
9707
+ }, {
9708
+ readonly indexed: true;
9709
+ readonly name: "to";
9710
+ readonly type: "address";
9711
+ }, {
9712
+ readonly indexed: false;
9713
+ readonly name: "value";
9714
+ readonly type: "uint256";
9715
+ }];
9716
+ }, {
9717
+ readonly type: "function";
9718
+ readonly name: "allowance";
9719
+ readonly stateMutability: "view";
9720
+ readonly inputs: readonly [{
9721
+ readonly name: "owner";
9722
+ readonly type: "address";
9723
+ }, {
9724
+ readonly name: "spender";
9725
+ readonly type: "address";
9726
+ }];
9727
+ readonly outputs: readonly [{
9728
+ readonly type: "uint256";
9729
+ }];
9730
+ }, {
9731
+ readonly type: "function";
9732
+ readonly name: "approve";
9733
+ readonly stateMutability: "nonpayable";
9734
+ readonly inputs: readonly [{
9735
+ readonly name: "spender";
9736
+ readonly type: "address";
9737
+ }, {
9738
+ readonly name: "amount";
9739
+ readonly type: "uint256";
9740
+ }];
9741
+ readonly outputs: readonly [{
9742
+ readonly type: "bool";
9743
+ }];
9744
+ }, {
9745
+ readonly type: "function";
9746
+ readonly name: "balanceOf";
9747
+ readonly stateMutability: "view";
9748
+ readonly inputs: readonly [{
9749
+ readonly name: "account";
9750
+ readonly type: "address";
9751
+ }];
9752
+ readonly outputs: readonly [{
9753
+ readonly type: "uint256";
9754
+ }];
9755
+ }, {
9756
+ readonly type: "function";
9757
+ readonly name: "decimals";
9758
+ readonly stateMutability: "view";
9759
+ readonly inputs: readonly [];
9760
+ readonly outputs: readonly [{
9761
+ readonly type: "uint8";
9762
+ }];
9763
+ }, {
9764
+ readonly type: "function";
9765
+ readonly name: "name";
9766
+ readonly stateMutability: "view";
9767
+ readonly inputs: readonly [];
9768
+ readonly outputs: readonly [{
9769
+ readonly type: "string";
9770
+ }];
9771
+ }, {
9772
+ readonly type: "function";
9773
+ readonly name: "symbol";
9774
+ readonly stateMutability: "view";
9775
+ readonly inputs: readonly [];
9776
+ readonly outputs: readonly [{
9777
+ readonly type: "string";
9778
+ }];
9779
+ }, {
9780
+ readonly type: "function";
9781
+ readonly name: "totalSupply";
9782
+ readonly stateMutability: "view";
9783
+ readonly inputs: readonly [];
9784
+ readonly outputs: readonly [{
9785
+ readonly type: "uint256";
9786
+ }];
9787
+ }, {
9788
+ readonly type: "function";
9789
+ readonly name: "transfer";
9790
+ readonly stateMutability: "nonpayable";
9791
+ readonly inputs: readonly [{
9792
+ readonly name: "recipient";
9793
+ readonly type: "address";
9794
+ }, {
9795
+ readonly name: "amount";
9796
+ readonly type: "uint256";
9797
+ }];
9798
+ readonly outputs: readonly [{
9799
+ readonly type: "bool";
9800
+ }];
9801
+ }, {
9802
+ readonly type: "function";
9803
+ readonly name: "transferFrom";
9804
+ readonly stateMutability: "nonpayable";
9805
+ readonly inputs: readonly [{
9806
+ readonly name: "sender";
9807
+ readonly type: "address";
9808
+ }, {
9809
+ readonly name: "recipient";
9810
+ readonly type: "address";
9811
+ }, {
9812
+ readonly name: "amount";
9813
+ readonly type: "uint256";
9814
+ }];
9815
+ readonly outputs: readonly [{
9816
+ readonly type: "bool";
9817
+ }];
9818
+ }];
9819
+ readonly read: {
9820
+ readonly decimals: () => 6;
9821
+ };
9822
+ };
9823
+ readonly multicall3: {
9824
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
9825
+ readonly blockCreated: 0;
9826
+ };
9827
+ readonly portal: {
9828
+ readonly 11155111: {
9829
+ readonly address: "0x0d83dab629f0e0F9d36c0Cbc89B69a489f0751bD";
9830
+ };
9831
+ };
9832
+ readonly l1StandardBridge: {
9833
+ readonly 11155111: {
9834
+ readonly address: "0xea58fcA6849d79EAd1f26608855c2D6407d54Ce2";
9835
+ };
9836
+ };
9837
+ readonly disputeGameFactory: {
9838
+ readonly 11155111: {
9839
+ readonly address: "0xeff73e5aa3B9AEC32c659Aa3E00444d20a84394b";
9840
+ };
9841
+ };
9842
+ readonly gasPriceOracle: {
9843
+ readonly address: "0x420000000000000000000000000000000000000F";
9844
+ };
9845
+ readonly l1Block: {
9846
+ readonly address: "0x4200000000000000000000000000000000000015";
9847
+ };
9848
+ readonly l2CrossDomainMessenger: {
9849
+ readonly address: "0x4200000000000000000000000000000000000007";
9850
+ };
9851
+ readonly l2Erc721Bridge: {
9852
+ readonly address: "0x4200000000000000000000000000000000000014";
9853
+ };
9854
+ readonly l2StandardBridge: {
9855
+ readonly address: "0x4200000000000000000000000000000000000010";
9856
+ };
9857
+ readonly l2ToL1MessagePasser: {
9858
+ readonly address: "0x4200000000000000000000000000000000000016";
9859
+ };
9860
+ };
9861
+ ensTlds?: readonly string[] | undefined;
9862
+ id: 1301;
9863
+ name: "Unichain Sepolia";
9864
+ nativeCurrency: {
9865
+ readonly name: "Ether";
9866
+ readonly symbol: "ETH";
9867
+ readonly decimals: 18;
9868
+ };
9869
+ experimental_preconfirmationTime?: number | undefined | undefined;
9870
+ rpcUrls: {
9871
+ readonly default: {
9872
+ readonly http: readonly ["https://sepolia.unichain.org"];
9873
+ };
9874
+ };
9875
+ sourceId: 11155111;
9876
+ testnet: true;
9877
+ custom?: Record<string, unknown> | undefined;
9878
+ fees?: import("viem").ChainFees<undefined> | undefined;
9879
+ formatters: {
9880
+ readonly block: {
9881
+ exclude: [] | undefined;
9882
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
9883
+ baseFeePerGas: bigint | null;
9884
+ blobGasUsed: bigint;
9885
+ difficulty: bigint;
9886
+ excessBlobGas: bigint;
9887
+ extraData: import("viem").Hex;
9888
+ gasLimit: bigint;
9889
+ gasUsed: bigint;
9890
+ hash: `0x${string}` | null;
9891
+ logsBloom: `0x${string}` | null;
9892
+ miner: import("abitype").Address;
9893
+ mixHash: import("viem").Hash;
9894
+ nonce: `0x${string}` | null;
9895
+ number: bigint | null;
9896
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
9897
+ parentHash: import("viem").Hash;
9898
+ receiptsRoot: import("viem").Hex;
9899
+ sealFields: import("viem").Hex[];
9900
+ sha3Uncles: import("viem").Hash;
9901
+ size: bigint;
9902
+ stateRoot: import("viem").Hash;
9903
+ timestamp: bigint;
9904
+ totalDifficulty: bigint | null;
9905
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
9906
+ transactionsRoot: import("viem").Hash;
9907
+ uncles: import("viem").Hash[];
9908
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
9909
+ withdrawalsRoot?: `0x${string}` | undefined;
9910
+ } & {};
9911
+ type: "block";
9912
+ };
9913
+ readonly transaction: {
9914
+ exclude: [] | undefined;
9915
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
9916
+ blockHash: `0x${string}` | null;
9917
+ blockNumber: bigint | null;
9918
+ from: import("abitype").Address;
9919
+ gas: bigint;
9920
+ hash: import("viem").Hash;
9921
+ input: import("viem").Hex;
9922
+ nonce: number;
9923
+ r: import("viem").Hex;
9924
+ s: import("viem").Hex;
9925
+ to: import("abitype").Address | null;
9926
+ transactionIndex: number | null;
9927
+ typeHex: import("viem").Hex | null;
9928
+ v: bigint;
9929
+ value: bigint;
9930
+ yParity: number;
9931
+ gasPrice?: undefined | undefined;
9932
+ maxFeePerBlobGas?: undefined | undefined;
9933
+ maxFeePerGas: bigint;
9934
+ maxPriorityFeePerGas: bigint;
9935
+ isSystemTx?: boolean;
9936
+ mint?: bigint | undefined | undefined;
9937
+ sourceHash: import("viem").Hex;
9938
+ type: "deposit";
9939
+ } | {
9940
+ r: import("viem").Hex;
9941
+ s: import("viem").Hex;
9942
+ v: bigint;
9943
+ to: import("abitype").Address | null;
9944
+ from: import("abitype").Address;
9945
+ gas: bigint;
9946
+ nonce: number;
9947
+ value: bigint;
9948
+ blockHash: `0x${string}` | null;
9949
+ blockNumber: bigint | null;
9950
+ hash: import("viem").Hash;
9951
+ input: import("viem").Hex;
9952
+ transactionIndex: number | null;
9953
+ typeHex: import("viem").Hex | null;
9954
+ accessList?: undefined | undefined;
9955
+ authorizationList?: undefined | undefined;
9956
+ blobVersionedHashes?: undefined | undefined;
9957
+ chainId?: number | undefined;
9958
+ yParity?: undefined | undefined;
9959
+ type: "legacy";
9960
+ gasPrice: bigint;
9961
+ maxFeePerBlobGas?: undefined | undefined;
9962
+ maxFeePerGas?: undefined | undefined;
9963
+ maxPriorityFeePerGas?: undefined | undefined;
9964
+ isSystemTx?: undefined | undefined;
9965
+ mint?: undefined | undefined;
9966
+ sourceHash?: undefined | undefined;
9967
+ } | {
9968
+ blockHash: `0x${string}` | null;
9969
+ blockNumber: bigint | null;
9970
+ from: import("abitype").Address;
9971
+ gas: bigint;
9972
+ hash: import("viem").Hash;
9973
+ input: import("viem").Hex;
9974
+ nonce: number;
9975
+ r: import("viem").Hex;
9976
+ s: import("viem").Hex;
9977
+ to: import("abitype").Address | null;
9978
+ transactionIndex: number | null;
9979
+ typeHex: import("viem").Hex | null;
9980
+ v: bigint;
9981
+ value: bigint;
9982
+ yParity: number;
9983
+ accessList: import("viem").AccessList;
9984
+ authorizationList?: undefined | undefined;
9985
+ blobVersionedHashes?: undefined | undefined;
9986
+ chainId: number;
9987
+ type: "eip2930";
9988
+ gasPrice: bigint;
9989
+ maxFeePerBlobGas?: undefined | undefined;
9990
+ maxFeePerGas?: undefined | undefined;
9991
+ maxPriorityFeePerGas?: undefined | undefined;
9992
+ isSystemTx?: undefined | undefined;
9993
+ mint?: undefined | undefined;
9994
+ sourceHash?: undefined | undefined;
9995
+ } | {
9996
+ blockHash: `0x${string}` | null;
9997
+ blockNumber: bigint | null;
9998
+ from: import("abitype").Address;
9999
+ gas: bigint;
10000
+ hash: import("viem").Hash;
10001
+ input: import("viem").Hex;
10002
+ nonce: number;
10003
+ r: import("viem").Hex;
10004
+ s: import("viem").Hex;
10005
+ to: import("abitype").Address | null;
10006
+ transactionIndex: number | null;
10007
+ typeHex: import("viem").Hex | null;
10008
+ v: bigint;
10009
+ value: bigint;
10010
+ yParity: number;
10011
+ accessList: import("viem").AccessList;
10012
+ authorizationList?: undefined | undefined;
10013
+ blobVersionedHashes?: undefined | undefined;
10014
+ chainId: number;
10015
+ type: "eip1559";
10016
+ gasPrice?: undefined | undefined;
10017
+ maxFeePerBlobGas?: undefined | undefined;
10018
+ maxFeePerGas: bigint;
10019
+ maxPriorityFeePerGas: bigint;
10020
+ isSystemTx?: undefined | undefined;
10021
+ mint?: undefined | undefined;
10022
+ sourceHash?: undefined | undefined;
10023
+ } | {
10024
+ blockHash: `0x${string}` | null;
10025
+ blockNumber: bigint | null;
10026
+ from: import("abitype").Address;
10027
+ gas: bigint;
10028
+ hash: import("viem").Hash;
10029
+ input: import("viem").Hex;
10030
+ nonce: number;
10031
+ r: import("viem").Hex;
10032
+ s: import("viem").Hex;
10033
+ to: import("abitype").Address | null;
10034
+ transactionIndex: number | null;
10035
+ typeHex: import("viem").Hex | null;
10036
+ v: bigint;
10037
+ value: bigint;
10038
+ yParity: number;
10039
+ accessList: import("viem").AccessList;
10040
+ authorizationList?: undefined | undefined;
10041
+ blobVersionedHashes: readonly import("viem").Hex[];
10042
+ chainId: number;
10043
+ type: "eip4844";
10044
+ gasPrice?: undefined | undefined;
10045
+ maxFeePerBlobGas: bigint;
10046
+ maxFeePerGas: bigint;
10047
+ maxPriorityFeePerGas: bigint;
10048
+ isSystemTx?: undefined | undefined;
10049
+ mint?: undefined | undefined;
10050
+ sourceHash?: undefined | undefined;
10051
+ } | {
10052
+ blockHash: `0x${string}` | null;
10053
+ blockNumber: bigint | null;
10054
+ from: import("abitype").Address;
10055
+ gas: bigint;
10056
+ hash: import("viem").Hash;
10057
+ input: import("viem").Hex;
10058
+ nonce: number;
10059
+ r: import("viem").Hex;
10060
+ s: import("viem").Hex;
10061
+ to: import("abitype").Address | null;
10062
+ transactionIndex: number | null;
10063
+ typeHex: import("viem").Hex | null;
10064
+ v: bigint;
10065
+ value: bigint;
10066
+ yParity: number;
10067
+ accessList: import("viem").AccessList;
10068
+ authorizationList: import("viem").SignedAuthorizationList;
10069
+ blobVersionedHashes?: undefined | undefined;
10070
+ chainId: number;
10071
+ type: "eip7702";
10072
+ gasPrice?: undefined | undefined;
10073
+ maxFeePerBlobGas?: undefined | undefined;
10074
+ maxFeePerGas: bigint;
10075
+ maxPriorityFeePerGas: bigint;
10076
+ isSystemTx?: undefined | undefined;
10077
+ mint?: undefined | undefined;
10078
+ sourceHash?: undefined | undefined;
10079
+ }) & {};
10080
+ type: "transaction";
10081
+ };
10082
+ readonly transactionReceipt: {
10083
+ exclude: [] | undefined;
10084
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
10085
+ blobGasPrice?: bigint | undefined;
10086
+ blobGasUsed?: bigint | undefined;
10087
+ blockHash: import("viem").Hash;
10088
+ blockNumber: bigint;
10089
+ contractAddress: import("abitype").Address | null | undefined;
10090
+ cumulativeGasUsed: bigint;
10091
+ effectiveGasPrice: bigint;
10092
+ from: import("abitype").Address;
10093
+ gasUsed: bigint;
10094
+ logs: import("viem").Log<bigint, number, false>[];
10095
+ logsBloom: import("viem").Hex;
10096
+ root?: `0x${string}` | undefined;
10097
+ status: "success" | "reverted";
10098
+ to: import("abitype").Address | null;
10099
+ transactionHash: import("viem").Hash;
10100
+ transactionIndex: number;
10101
+ type: import("viem").TransactionType;
10102
+ l1GasPrice: bigint | null;
10103
+ l1GasUsed: bigint | null;
10104
+ l1Fee: bigint | null;
10105
+ l1FeeScalar: number | null;
10106
+ } & {};
10107
+ type: "transactionReceipt";
10108
+ };
10109
+ };
10110
+ serializers: {
10111
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
10112
+ };
10113
+ readonly blockchainId: "UNI-SEPOLIA";
10114
+ readonly blockchainVm: "EVM";
10115
+ }, {
10116
+ blockExplorers: {
10117
+ readonly default: {
10118
+ readonly name: "Basescan";
10119
+ readonly url: "https://basescan.org";
10120
+ readonly apiUrl: "https://api.basescan.org/api";
10121
+ };
10122
+ };
10123
+ blockTime: 2000;
10124
+ contracts: {
10125
+ readonly USDC: {
10126
+ readonly address: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913";
10127
+ readonly abi: readonly [{
10128
+ readonly type: "event";
10129
+ readonly name: "Approval";
10130
+ readonly inputs: readonly [{
10131
+ readonly indexed: true;
10132
+ readonly name: "owner";
10133
+ readonly type: "address";
10134
+ }, {
10135
+ readonly indexed: true;
10136
+ readonly name: "spender";
10137
+ readonly type: "address";
10138
+ }, {
10139
+ readonly indexed: false;
10140
+ readonly name: "value";
10141
+ readonly type: "uint256";
10142
+ }];
10143
+ }, {
10144
+ readonly type: "event";
10145
+ readonly name: "Transfer";
10146
+ readonly inputs: readonly [{
10147
+ readonly indexed: true;
10148
+ readonly name: "from";
10149
+ readonly type: "address";
10150
+ }, {
10151
+ readonly indexed: true;
10152
+ readonly name: "to";
10153
+ readonly type: "address";
10154
+ }, {
10155
+ readonly indexed: false;
10156
+ readonly name: "value";
10157
+ readonly type: "uint256";
10158
+ }];
10159
+ }, {
10160
+ readonly type: "function";
10161
+ readonly name: "allowance";
10162
+ readonly stateMutability: "view";
10163
+ readonly inputs: readonly [{
10164
+ readonly name: "owner";
10165
+ readonly type: "address";
10166
+ }, {
10167
+ readonly name: "spender";
10168
+ readonly type: "address";
10169
+ }];
10170
+ readonly outputs: readonly [{
10171
+ readonly type: "uint256";
10172
+ }];
10173
+ }, {
10174
+ readonly type: "function";
10175
+ readonly name: "approve";
10176
+ readonly stateMutability: "nonpayable";
10177
+ readonly inputs: readonly [{
10178
+ readonly name: "spender";
10179
+ readonly type: "address";
10180
+ }, {
10181
+ readonly name: "amount";
10182
+ readonly type: "uint256";
10183
+ }];
10184
+ readonly outputs: readonly [{
10185
+ readonly type: "bool";
10186
+ }];
10187
+ }, {
10188
+ readonly type: "function";
10189
+ readonly name: "balanceOf";
10190
+ readonly stateMutability: "view";
10191
+ readonly inputs: readonly [{
10192
+ readonly name: "account";
10193
+ readonly type: "address";
10194
+ }];
10195
+ readonly outputs: readonly [{
10196
+ readonly type: "uint256";
10197
+ }];
10198
+ }, {
10199
+ readonly type: "function";
10200
+ readonly name: "decimals";
10201
+ readonly stateMutability: "view";
10202
+ readonly inputs: readonly [];
10203
+ readonly outputs: readonly [{
10204
+ readonly type: "uint8";
10205
+ }];
10206
+ }, {
10207
+ readonly type: "function";
10208
+ readonly name: "name";
10209
+ readonly stateMutability: "view";
10210
+ readonly inputs: readonly [];
10211
+ readonly outputs: readonly [{
10212
+ readonly type: "string";
10213
+ }];
10214
+ }, {
10215
+ readonly type: "function";
10216
+ readonly name: "symbol";
10217
+ readonly stateMutability: "view";
10218
+ readonly inputs: readonly [];
10219
+ readonly outputs: readonly [{
10220
+ readonly type: "string";
10221
+ }];
10222
+ }, {
10223
+ readonly type: "function";
10224
+ readonly name: "totalSupply";
10225
+ readonly stateMutability: "view";
10226
+ readonly inputs: readonly [];
10227
+ readonly outputs: readonly [{
10228
+ readonly type: "uint256";
10229
+ }];
10230
+ }, {
10231
+ readonly type: "function";
10232
+ readonly name: "transfer";
10233
+ readonly stateMutability: "nonpayable";
10234
+ readonly inputs: readonly [{
10235
+ readonly name: "recipient";
10236
+ readonly type: "address";
10237
+ }, {
10238
+ readonly name: "amount";
10239
+ readonly type: "uint256";
10240
+ }];
10241
+ readonly outputs: readonly [{
10242
+ readonly type: "bool";
10243
+ }];
10244
+ }, {
10245
+ readonly type: "function";
10246
+ readonly name: "transferFrom";
10247
+ readonly stateMutability: "nonpayable";
10248
+ readonly inputs: readonly [{
10249
+ readonly name: "sender";
10250
+ readonly type: "address";
10251
+ }, {
10252
+ readonly name: "recipient";
10253
+ readonly type: "address";
10254
+ }, {
10255
+ readonly name: "amount";
10256
+ readonly type: "uint256";
10257
+ }];
10258
+ readonly outputs: readonly [{
10259
+ readonly type: "bool";
10260
+ }];
10261
+ }];
10262
+ readonly read: {
10263
+ readonly decimals: () => 6;
10264
+ };
10265
+ };
10266
+ readonly EURC: {
10267
+ readonly address: "0x60a3e35cc302bfa44cb288bc5a4f316fdb1adb42";
10268
+ readonly abi: readonly [{
10269
+ readonly type: "event";
10270
+ readonly name: "Approval";
10271
+ readonly inputs: readonly [{
10272
+ readonly indexed: true;
10273
+ readonly name: "owner";
10274
+ readonly type: "address";
10275
+ }, {
10276
+ readonly indexed: true;
10277
+ readonly name: "spender";
10278
+ readonly type: "address";
10279
+ }, {
10280
+ readonly indexed: false;
10281
+ readonly name: "value";
10282
+ readonly type: "uint256";
10283
+ }];
10284
+ }, {
10285
+ readonly type: "event";
10286
+ readonly name: "Transfer";
10287
+ readonly inputs: readonly [{
10288
+ readonly indexed: true;
10289
+ readonly name: "from";
10290
+ readonly type: "address";
10291
+ }, {
10292
+ readonly indexed: true;
10293
+ readonly name: "to";
10294
+ readonly type: "address";
10295
+ }, {
10296
+ readonly indexed: false;
10297
+ readonly name: "value";
10298
+ readonly type: "uint256";
10299
+ }];
10300
+ }, {
10301
+ readonly type: "function";
10302
+ readonly name: "allowance";
10303
+ readonly stateMutability: "view";
10304
+ readonly inputs: readonly [{
10305
+ readonly name: "owner";
10306
+ readonly type: "address";
10307
+ }, {
10308
+ readonly name: "spender";
10309
+ readonly type: "address";
10310
+ }];
10311
+ readonly outputs: readonly [{
10312
+ readonly type: "uint256";
10313
+ }];
10314
+ }, {
10315
+ readonly type: "function";
10316
+ readonly name: "approve";
10317
+ readonly stateMutability: "nonpayable";
10318
+ readonly inputs: readonly [{
10319
+ readonly name: "spender";
10320
+ readonly type: "address";
10321
+ }, {
10322
+ readonly name: "amount";
10323
+ readonly type: "uint256";
10324
+ }];
10325
+ readonly outputs: readonly [{
10326
+ readonly type: "bool";
10327
+ }];
10328
+ }, {
10329
+ readonly type: "function";
10330
+ readonly name: "balanceOf";
10331
+ readonly stateMutability: "view";
10332
+ readonly inputs: readonly [{
10333
+ readonly name: "account";
10334
+ readonly type: "address";
10335
+ }];
10336
+ readonly outputs: readonly [{
10337
+ readonly type: "uint256";
10338
+ }];
10339
+ }, {
10340
+ readonly type: "function";
10341
+ readonly name: "decimals";
10342
+ readonly stateMutability: "view";
10343
+ readonly inputs: readonly [];
10344
+ readonly outputs: readonly [{
10345
+ readonly type: "uint8";
10346
+ }];
10347
+ }, {
10348
+ readonly type: "function";
10349
+ readonly name: "name";
10350
+ readonly stateMutability: "view";
10351
+ readonly inputs: readonly [];
10352
+ readonly outputs: readonly [{
10353
+ readonly type: "string";
10354
+ }];
10355
+ }, {
10356
+ readonly type: "function";
10357
+ readonly name: "symbol";
10358
+ readonly stateMutability: "view";
10359
+ readonly inputs: readonly [];
10360
+ readonly outputs: readonly [{
10361
+ readonly type: "string";
10362
+ }];
10363
+ }, {
10364
+ readonly type: "function";
10365
+ readonly name: "totalSupply";
10366
+ readonly stateMutability: "view";
10367
+ readonly inputs: readonly [];
10368
+ readonly outputs: readonly [{
10369
+ readonly type: "uint256";
10370
+ }];
10371
+ }, {
10372
+ readonly type: "function";
10373
+ readonly name: "transfer";
10374
+ readonly stateMutability: "nonpayable";
10375
+ readonly inputs: readonly [{
10376
+ readonly name: "recipient";
10377
+ readonly type: "address";
10378
+ }, {
10379
+ readonly name: "amount";
10380
+ readonly type: "uint256";
10381
+ }];
10382
+ readonly outputs: readonly [{
10383
+ readonly type: "bool";
10384
+ }];
10385
+ }, {
10386
+ readonly type: "function";
10387
+ readonly name: "transferFrom";
10388
+ readonly stateMutability: "nonpayable";
10389
+ readonly inputs: readonly [{
10390
+ readonly name: "sender";
10391
+ readonly type: "address";
10392
+ }, {
10393
+ readonly name: "recipient";
10394
+ readonly type: "address";
10395
+ }, {
10396
+ readonly name: "amount";
10397
+ readonly type: "uint256";
10398
+ }];
10399
+ readonly outputs: readonly [{
10400
+ readonly type: "bool";
10401
+ }];
10402
+ }];
10403
+ readonly read: {
10404
+ readonly decimals: () => 6;
10405
+ };
10406
+ };
10407
+ readonly disputeGameFactory: {
10408
+ readonly 1: {
10409
+ readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
10410
+ };
10411
+ };
10412
+ readonly l2OutputOracle: {
10413
+ readonly 1: {
10414
+ readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
10415
+ };
10416
+ };
10417
+ readonly multicall3: {
10418
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
10419
+ readonly blockCreated: 5022;
10420
+ };
10421
+ readonly portal: {
10422
+ readonly 1: {
10423
+ readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
10424
+ readonly blockCreated: 17482143;
10425
+ };
10426
+ };
10427
+ readonly l1StandardBridge: {
10428
+ readonly 1: {
10429
+ readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
10430
+ readonly blockCreated: 17482143;
10431
+ };
10432
+ };
10433
+ readonly gasPriceOracle: {
10434
+ readonly address: "0x420000000000000000000000000000000000000F";
10435
+ };
10436
+ readonly l1Block: {
10437
+ readonly address: "0x4200000000000000000000000000000000000015";
10438
+ };
10439
+ readonly l2CrossDomainMessenger: {
10440
+ readonly address: "0x4200000000000000000000000000000000000007";
10441
+ };
10442
+ readonly l2Erc721Bridge: {
10443
+ readonly address: "0x4200000000000000000000000000000000000014";
10444
+ };
10445
+ readonly l2StandardBridge: {
10446
+ readonly address: "0x4200000000000000000000000000000000000010";
10447
+ };
10448
+ readonly l2ToL1MessagePasser: {
10449
+ readonly address: "0x4200000000000000000000000000000000000016";
10450
+ };
10451
+ };
10452
+ ensTlds?: readonly string[] | undefined;
10453
+ id: 8453;
10454
+ name: "Base";
10455
+ nativeCurrency: {
10456
+ readonly name: "Ether";
10457
+ readonly symbol: "ETH";
10458
+ readonly decimals: 18;
10459
+ };
10460
+ experimental_preconfirmationTime?: number | undefined | undefined;
10461
+ rpcUrls: {
10462
+ readonly default: {
10463
+ readonly http: readonly ["https://mainnet.base.org"];
10464
+ };
10465
+ };
10466
+ sourceId: 1;
10467
+ testnet?: boolean | undefined | undefined;
10468
+ custom?: Record<string, unknown> | undefined;
10469
+ fees?: import("viem").ChainFees<undefined> | undefined;
10470
+ formatters: {
10471
+ readonly block: {
10472
+ exclude: [] | undefined;
10473
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
10474
+ baseFeePerGas: bigint | null;
10475
+ blobGasUsed: bigint;
10476
+ difficulty: bigint;
10477
+ excessBlobGas: bigint;
10478
+ extraData: import("viem").Hex;
10479
+ gasLimit: bigint;
10480
+ gasUsed: bigint;
10481
+ hash: `0x${string}` | null;
10482
+ logsBloom: `0x${string}` | null;
10483
+ miner: import("abitype").Address;
10484
+ mixHash: import("viem").Hash;
10485
+ nonce: `0x${string}` | null;
10486
+ number: bigint | null;
10487
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
10488
+ parentHash: import("viem").Hash;
10489
+ receiptsRoot: import("viem").Hex;
10490
+ sealFields: import("viem").Hex[];
10491
+ sha3Uncles: import("viem").Hash;
10492
+ size: bigint;
10493
+ stateRoot: import("viem").Hash;
10494
+ timestamp: bigint;
10495
+ totalDifficulty: bigint | null;
10496
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
10497
+ transactionsRoot: import("viem").Hash;
10498
+ uncles: import("viem").Hash[];
10499
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
10500
+ withdrawalsRoot?: `0x${string}` | undefined;
10501
+ } & {};
10502
+ type: "block";
10503
+ };
10504
+ readonly transaction: {
10505
+ exclude: [] | undefined;
10506
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
10507
+ blockHash: `0x${string}` | null;
10508
+ blockNumber: bigint | null;
10509
+ from: import("abitype").Address;
10510
+ gas: bigint;
10511
+ hash: import("viem").Hash;
10512
+ input: import("viem").Hex;
10513
+ nonce: number;
10514
+ r: import("viem").Hex;
10515
+ s: import("viem").Hex;
10516
+ to: import("abitype").Address | null;
10517
+ transactionIndex: number | null;
10518
+ typeHex: import("viem").Hex | null;
10519
+ v: bigint;
10520
+ value: bigint;
10521
+ yParity: number;
10522
+ gasPrice?: undefined | undefined;
10523
+ maxFeePerBlobGas?: undefined | undefined;
10524
+ maxFeePerGas: bigint;
10525
+ maxPriorityFeePerGas: bigint;
10526
+ isSystemTx?: boolean;
10527
+ mint?: bigint | undefined | undefined;
10528
+ sourceHash: import("viem").Hex;
10529
+ type: "deposit";
10530
+ } | {
10531
+ r: import("viem").Hex;
10532
+ s: import("viem").Hex;
10533
+ v: bigint;
10534
+ to: import("abitype").Address | null;
10535
+ from: import("abitype").Address;
10536
+ gas: bigint;
10537
+ nonce: number;
10538
+ value: bigint;
10539
+ blockHash: `0x${string}` | null;
10540
+ blockNumber: bigint | null;
10541
+ hash: import("viem").Hash;
10542
+ input: import("viem").Hex;
10543
+ transactionIndex: number | null;
10544
+ typeHex: import("viem").Hex | null;
10545
+ accessList?: undefined | undefined;
10546
+ authorizationList?: undefined | undefined;
10547
+ blobVersionedHashes?: undefined | undefined;
10548
+ chainId?: number | undefined;
10549
+ yParity?: undefined | undefined;
10550
+ type: "legacy";
10551
+ gasPrice: bigint;
10552
+ maxFeePerBlobGas?: undefined | undefined;
10553
+ maxFeePerGas?: undefined | undefined;
10554
+ maxPriorityFeePerGas?: undefined | undefined;
10555
+ isSystemTx?: undefined | undefined;
10556
+ mint?: undefined | undefined;
10557
+ sourceHash?: undefined | undefined;
10558
+ } | {
10559
+ blockHash: `0x${string}` | null;
10560
+ blockNumber: bigint | null;
10561
+ from: import("abitype").Address;
10562
+ gas: bigint;
10563
+ hash: import("viem").Hash;
10564
+ input: import("viem").Hex;
10565
+ nonce: number;
10566
+ r: import("viem").Hex;
10567
+ s: import("viem").Hex;
10568
+ to: import("abitype").Address | null;
10569
+ transactionIndex: number | null;
10570
+ typeHex: import("viem").Hex | null;
10571
+ v: bigint;
10572
+ value: bigint;
10573
+ yParity: number;
10574
+ accessList: import("viem").AccessList;
10575
+ authorizationList?: undefined | undefined;
10576
+ blobVersionedHashes?: undefined | undefined;
10577
+ chainId: number;
10578
+ type: "eip2930";
10579
+ gasPrice: bigint;
10580
+ maxFeePerBlobGas?: undefined | undefined;
10581
+ maxFeePerGas?: undefined | undefined;
10582
+ maxPriorityFeePerGas?: undefined | undefined;
10583
+ isSystemTx?: undefined | undefined;
10584
+ mint?: undefined | undefined;
10585
+ sourceHash?: undefined | undefined;
10586
+ } | {
10587
+ blockHash: `0x${string}` | null;
10588
+ blockNumber: bigint | null;
10589
+ from: import("abitype").Address;
10590
+ gas: bigint;
10591
+ hash: import("viem").Hash;
10592
+ input: import("viem").Hex;
10593
+ nonce: number;
10594
+ r: import("viem").Hex;
10595
+ s: import("viem").Hex;
10596
+ to: import("abitype").Address | null;
10597
+ transactionIndex: number | null;
10598
+ typeHex: import("viem").Hex | null;
10599
+ v: bigint;
10600
+ value: bigint;
10601
+ yParity: number;
10602
+ accessList: import("viem").AccessList;
10603
+ authorizationList?: undefined | undefined;
10604
+ blobVersionedHashes?: undefined | undefined;
10605
+ chainId: number;
10606
+ type: "eip1559";
10607
+ gasPrice?: undefined | undefined;
10608
+ maxFeePerBlobGas?: undefined | undefined;
10609
+ maxFeePerGas: bigint;
10610
+ maxPriorityFeePerGas: bigint;
10611
+ isSystemTx?: undefined | undefined;
10612
+ mint?: undefined | undefined;
10613
+ sourceHash?: undefined | undefined;
10614
+ } | {
10615
+ blockHash: `0x${string}` | null;
10616
+ blockNumber: bigint | null;
10617
+ from: import("abitype").Address;
10618
+ gas: bigint;
10619
+ hash: import("viem").Hash;
10620
+ input: import("viem").Hex;
10621
+ nonce: number;
10622
+ r: import("viem").Hex;
10623
+ s: import("viem").Hex;
10624
+ to: import("abitype").Address | null;
10625
+ transactionIndex: number | null;
10626
+ typeHex: import("viem").Hex | null;
10627
+ v: bigint;
10628
+ value: bigint;
10629
+ yParity: number;
10630
+ accessList: import("viem").AccessList;
10631
+ authorizationList?: undefined | undefined;
10632
+ blobVersionedHashes: readonly import("viem").Hex[];
10633
+ chainId: number;
10634
+ type: "eip4844";
10635
+ gasPrice?: undefined | undefined;
10636
+ maxFeePerBlobGas: bigint;
10637
+ maxFeePerGas: bigint;
10638
+ maxPriorityFeePerGas: bigint;
10639
+ isSystemTx?: undefined | undefined;
10640
+ mint?: undefined | undefined;
10641
+ sourceHash?: undefined | undefined;
10642
+ } | {
10643
+ blockHash: `0x${string}` | null;
10644
+ blockNumber: bigint | null;
10645
+ from: import("abitype").Address;
10646
+ gas: bigint;
10647
+ hash: import("viem").Hash;
10648
+ input: import("viem").Hex;
10649
+ nonce: number;
10650
+ r: import("viem").Hex;
10651
+ s: import("viem").Hex;
10652
+ to: import("abitype").Address | null;
10653
+ transactionIndex: number | null;
10654
+ typeHex: import("viem").Hex | null;
10655
+ v: bigint;
10656
+ value: bigint;
10657
+ yParity: number;
10658
+ accessList: import("viem").AccessList;
10659
+ authorizationList: import("viem").SignedAuthorizationList;
10660
+ blobVersionedHashes?: undefined | undefined;
10661
+ chainId: number;
10662
+ type: "eip7702";
10663
+ gasPrice?: undefined | undefined;
10664
+ maxFeePerBlobGas?: undefined | undefined;
10665
+ maxFeePerGas: bigint;
10666
+ maxPriorityFeePerGas: bigint;
10667
+ isSystemTx?: undefined | undefined;
10668
+ mint?: undefined | undefined;
10669
+ sourceHash?: undefined | undefined;
10670
+ }) & {};
10671
+ type: "transaction";
10672
+ };
10673
+ readonly transactionReceipt: {
10674
+ exclude: [] | undefined;
10675
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
10676
+ blobGasPrice?: bigint | undefined;
10677
+ blobGasUsed?: bigint | undefined;
10678
+ blockHash: import("viem").Hash;
10679
+ blockNumber: bigint;
10680
+ contractAddress: import("abitype").Address | null | undefined;
10681
+ cumulativeGasUsed: bigint;
10682
+ effectiveGasPrice: bigint;
10683
+ from: import("abitype").Address;
10684
+ gasUsed: bigint;
10685
+ logs: import("viem").Log<bigint, number, false>[];
10686
+ logsBloom: import("viem").Hex;
10687
+ root?: `0x${string}` | undefined;
10688
+ status: "success" | "reverted";
10689
+ to: import("abitype").Address | null;
10690
+ transactionHash: import("viem").Hash;
10691
+ transactionIndex: number;
10692
+ type: import("viem").TransactionType;
10693
+ l1GasPrice: bigint | null;
10694
+ l1GasUsed: bigint | null;
10695
+ l1Fee: bigint | null;
10696
+ l1FeeScalar: number | null;
10697
+ } & {};
10698
+ type: "transactionReceipt";
10699
+ };
10700
+ };
10701
+ serializers: {
10702
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
10703
+ };
10704
+ readonly blockchainId: "BASE";
10705
+ readonly blockchainVm: "EVM";
10706
+ }, {
10707
+ blockExplorers: {
10708
+ readonly default: {
10709
+ readonly name: "Basescan";
10710
+ readonly url: "https://sepolia.basescan.org";
10711
+ readonly apiUrl: "https://api-sepolia.basescan.org/api";
10712
+ };
10713
+ };
10714
+ blockTime: 2000;
10715
+ contracts: {
10716
+ readonly USDC: {
10717
+ readonly address: "0x036CbD53842c5426634e7929541eC2318f3dCF7e";
10718
+ readonly abi: readonly [{
10719
+ readonly type: "event";
10720
+ readonly name: "Approval";
10721
+ readonly inputs: readonly [{
10722
+ readonly indexed: true;
10723
+ readonly name: "owner";
10724
+ readonly type: "address";
10725
+ }, {
10726
+ readonly indexed: true;
10727
+ readonly name: "spender";
10728
+ readonly type: "address";
10729
+ }, {
10730
+ readonly indexed: false;
10731
+ readonly name: "value";
10732
+ readonly type: "uint256";
10733
+ }];
10734
+ }, {
10735
+ readonly type: "event";
10736
+ readonly name: "Transfer";
10737
+ readonly inputs: readonly [{
10738
+ readonly indexed: true;
10739
+ readonly name: "from";
10740
+ readonly type: "address";
10741
+ }, {
10742
+ readonly indexed: true;
10743
+ readonly name: "to";
10744
+ readonly type: "address";
10745
+ }, {
10746
+ readonly indexed: false;
10747
+ readonly name: "value";
10748
+ readonly type: "uint256";
10749
+ }];
10750
+ }, {
10751
+ readonly type: "function";
10752
+ readonly name: "allowance";
10753
+ readonly stateMutability: "view";
10754
+ readonly inputs: readonly [{
10755
+ readonly name: "owner";
10756
+ readonly type: "address";
10757
+ }, {
10758
+ readonly name: "spender";
10759
+ readonly type: "address";
10760
+ }];
10761
+ readonly outputs: readonly [{
10762
+ readonly type: "uint256";
10763
+ }];
10764
+ }, {
10765
+ readonly type: "function";
10766
+ readonly name: "approve";
10767
+ readonly stateMutability: "nonpayable";
10768
+ readonly inputs: readonly [{
10769
+ readonly name: "spender";
10770
+ readonly type: "address";
10771
+ }, {
10772
+ readonly name: "amount";
10773
+ readonly type: "uint256";
10774
+ }];
10775
+ readonly outputs: readonly [{
10776
+ readonly type: "bool";
10777
+ }];
10778
+ }, {
10779
+ readonly type: "function";
10780
+ readonly name: "balanceOf";
10781
+ readonly stateMutability: "view";
10782
+ readonly inputs: readonly [{
10783
+ readonly name: "account";
10784
+ readonly type: "address";
10785
+ }];
10786
+ readonly outputs: readonly [{
10787
+ readonly type: "uint256";
10788
+ }];
10789
+ }, {
10790
+ readonly type: "function";
10791
+ readonly name: "decimals";
10792
+ readonly stateMutability: "view";
10793
+ readonly inputs: readonly [];
10794
+ readonly outputs: readonly [{
10795
+ readonly type: "uint8";
10796
+ }];
10797
+ }, {
10798
+ readonly type: "function";
10799
+ readonly name: "name";
10800
+ readonly stateMutability: "view";
10801
+ readonly inputs: readonly [];
10802
+ readonly outputs: readonly [{
10803
+ readonly type: "string";
10804
+ }];
10805
+ }, {
10806
+ readonly type: "function";
10807
+ readonly name: "symbol";
10808
+ readonly stateMutability: "view";
10809
+ readonly inputs: readonly [];
10810
+ readonly outputs: readonly [{
10811
+ readonly type: "string";
10812
+ }];
10813
+ }, {
10814
+ readonly type: "function";
10815
+ readonly name: "totalSupply";
10816
+ readonly stateMutability: "view";
10817
+ readonly inputs: readonly [];
10818
+ readonly outputs: readonly [{
10819
+ readonly type: "uint256";
10820
+ }];
10821
+ }, {
10822
+ readonly type: "function";
10823
+ readonly name: "transfer";
10824
+ readonly stateMutability: "nonpayable";
10825
+ readonly inputs: readonly [{
10826
+ readonly name: "recipient";
10827
+ readonly type: "address";
10828
+ }, {
10829
+ readonly name: "amount";
10830
+ readonly type: "uint256";
10831
+ }];
10832
+ readonly outputs: readonly [{
10833
+ readonly type: "bool";
10834
+ }];
10835
+ }, {
10836
+ readonly type: "function";
10837
+ readonly name: "transferFrom";
10838
+ readonly stateMutability: "nonpayable";
10839
+ readonly inputs: readonly [{
10840
+ readonly name: "sender";
10841
+ readonly type: "address";
10842
+ }, {
10843
+ readonly name: "recipient";
10844
+ readonly type: "address";
10845
+ }, {
10846
+ readonly name: "amount";
10847
+ readonly type: "uint256";
10848
+ }];
10849
+ readonly outputs: readonly [{
10850
+ readonly type: "bool";
10851
+ }];
10852
+ }];
10853
+ readonly read: {
10854
+ readonly decimals: () => 6;
10855
+ };
10856
+ };
10857
+ readonly EURC: {
10858
+ readonly address: "0x808456652fdb597867f38412077A9182bf77359F";
10859
+ readonly abi: readonly [{
10860
+ readonly type: "event";
10861
+ readonly name: "Approval";
10862
+ readonly inputs: readonly [{
10863
+ readonly indexed: true;
10864
+ readonly name: "owner";
10865
+ readonly type: "address";
10866
+ }, {
10867
+ readonly indexed: true;
10868
+ readonly name: "spender";
10869
+ readonly type: "address";
10870
+ }, {
10871
+ readonly indexed: false;
10872
+ readonly name: "value";
10873
+ readonly type: "uint256";
10874
+ }];
10875
+ }, {
10876
+ readonly type: "event";
10877
+ readonly name: "Transfer";
10878
+ readonly inputs: readonly [{
10879
+ readonly indexed: true;
10880
+ readonly name: "from";
10881
+ readonly type: "address";
10882
+ }, {
10883
+ readonly indexed: true;
10884
+ readonly name: "to";
10885
+ readonly type: "address";
10886
+ }, {
10887
+ readonly indexed: false;
10888
+ readonly name: "value";
10889
+ readonly type: "uint256";
10890
+ }];
10891
+ }, {
10892
+ readonly type: "function";
10893
+ readonly name: "allowance";
10894
+ readonly stateMutability: "view";
10895
+ readonly inputs: readonly [{
10896
+ readonly name: "owner";
10897
+ readonly type: "address";
10898
+ }, {
10899
+ readonly name: "spender";
10900
+ readonly type: "address";
10901
+ }];
10902
+ readonly outputs: readonly [{
10903
+ readonly type: "uint256";
10904
+ }];
10905
+ }, {
10906
+ readonly type: "function";
10907
+ readonly name: "approve";
10908
+ readonly stateMutability: "nonpayable";
10909
+ readonly inputs: readonly [{
10910
+ readonly name: "spender";
10911
+ readonly type: "address";
10912
+ }, {
10913
+ readonly name: "amount";
10914
+ readonly type: "uint256";
10915
+ }];
10916
+ readonly outputs: readonly [{
10917
+ readonly type: "bool";
10918
+ }];
10919
+ }, {
10920
+ readonly type: "function";
10921
+ readonly name: "balanceOf";
10922
+ readonly stateMutability: "view";
10923
+ readonly inputs: readonly [{
10924
+ readonly name: "account";
10925
+ readonly type: "address";
10926
+ }];
10927
+ readonly outputs: readonly [{
10928
+ readonly type: "uint256";
10929
+ }];
10930
+ }, {
10931
+ readonly type: "function";
10932
+ readonly name: "decimals";
10933
+ readonly stateMutability: "view";
10934
+ readonly inputs: readonly [];
10935
+ readonly outputs: readonly [{
10936
+ readonly type: "uint8";
10937
+ }];
10938
+ }, {
10939
+ readonly type: "function";
10940
+ readonly name: "name";
10941
+ readonly stateMutability: "view";
10942
+ readonly inputs: readonly [];
10943
+ readonly outputs: readonly [{
10944
+ readonly type: "string";
10945
+ }];
10946
+ }, {
10947
+ readonly type: "function";
10948
+ readonly name: "symbol";
10949
+ readonly stateMutability: "view";
10950
+ readonly inputs: readonly [];
10951
+ readonly outputs: readonly [{
10952
+ readonly type: "string";
10953
+ }];
10954
+ }, {
10955
+ readonly type: "function";
10956
+ readonly name: "totalSupply";
10957
+ readonly stateMutability: "view";
10958
+ readonly inputs: readonly [];
10959
+ readonly outputs: readonly [{
10960
+ readonly type: "uint256";
10961
+ }];
10962
+ }, {
10963
+ readonly type: "function";
10964
+ readonly name: "transfer";
10965
+ readonly stateMutability: "nonpayable";
10966
+ readonly inputs: readonly [{
10967
+ readonly name: "recipient";
10968
+ readonly type: "address";
10969
+ }, {
10970
+ readonly name: "amount";
10971
+ readonly type: "uint256";
10972
+ }];
10973
+ readonly outputs: readonly [{
10974
+ readonly type: "bool";
10975
+ }];
10976
+ }, {
10977
+ readonly type: "function";
10978
+ readonly name: "transferFrom";
10979
+ readonly stateMutability: "nonpayable";
10980
+ readonly inputs: readonly [{
10981
+ readonly name: "sender";
10982
+ readonly type: "address";
10983
+ }, {
10984
+ readonly name: "recipient";
10985
+ readonly type: "address";
10986
+ }, {
10987
+ readonly name: "amount";
10988
+ readonly type: "uint256";
10989
+ }];
10990
+ readonly outputs: readonly [{
10991
+ readonly type: "bool";
10992
+ }];
10993
+ }];
10994
+ readonly read: {
10995
+ readonly decimals: () => 6;
10996
+ };
10997
+ };
10998
+ readonly disputeGameFactory: {
10999
+ readonly 11155111: {
11000
+ readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
11001
+ };
11002
+ };
11003
+ readonly l2OutputOracle: {
11004
+ readonly 11155111: {
11005
+ readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
11006
+ };
11007
+ };
11008
+ readonly portal: {
11009
+ readonly 11155111: {
11010
+ readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
11011
+ readonly blockCreated: 4446677;
11012
+ };
11013
+ };
11014
+ readonly l1StandardBridge: {
11015
+ readonly 11155111: {
11016
+ readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
11017
+ readonly blockCreated: 4446677;
11018
+ };
11019
+ };
11020
+ readonly multicall3: {
11021
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
11022
+ readonly blockCreated: 1059647;
11023
+ };
11024
+ readonly gasPriceOracle: {
11025
+ readonly address: "0x420000000000000000000000000000000000000F";
11026
+ };
11027
+ readonly l1Block: {
11028
+ readonly address: "0x4200000000000000000000000000000000000015";
11029
+ };
11030
+ readonly l2CrossDomainMessenger: {
11031
+ readonly address: "0x4200000000000000000000000000000000000007";
11032
+ };
11033
+ readonly l2Erc721Bridge: {
11034
+ readonly address: "0x4200000000000000000000000000000000000014";
11035
+ };
11036
+ readonly l2StandardBridge: {
11037
+ readonly address: "0x4200000000000000000000000000000000000010";
11038
+ };
11039
+ readonly l2ToL1MessagePasser: {
11040
+ readonly address: "0x4200000000000000000000000000000000000016";
11041
+ };
11042
+ };
11043
+ ensTlds?: readonly string[] | undefined;
11044
+ id: 84532;
11045
+ name: "Base Sepolia";
11046
+ nativeCurrency: {
11047
+ readonly name: "Sepolia Ether";
11048
+ readonly symbol: "ETH";
11049
+ readonly decimals: 18;
11050
+ };
11051
+ experimental_preconfirmationTime?: number | undefined | undefined;
11052
+ rpcUrls: {
11053
+ readonly default: {
11054
+ readonly http: readonly ["https://sepolia.base.org"];
11055
+ };
11056
+ };
11057
+ sourceId: 11155111;
11058
+ testnet: true;
11059
+ custom?: Record<string, unknown> | undefined;
11060
+ fees?: import("viem").ChainFees<undefined> | undefined;
11061
+ formatters: {
11062
+ readonly block: {
11063
+ exclude: [] | undefined;
11064
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
11065
+ baseFeePerGas: bigint | null;
11066
+ blobGasUsed: bigint;
11067
+ difficulty: bigint;
11068
+ excessBlobGas: bigint;
11069
+ extraData: import("viem").Hex;
11070
+ gasLimit: bigint;
11071
+ gasUsed: bigint;
11072
+ hash: `0x${string}` | null;
11073
+ logsBloom: `0x${string}` | null;
11074
+ miner: import("abitype").Address;
11075
+ mixHash: import("viem").Hash;
11076
+ nonce: `0x${string}` | null;
11077
+ number: bigint | null;
11078
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
11079
+ parentHash: import("viem").Hash;
11080
+ receiptsRoot: import("viem").Hex;
11081
+ sealFields: import("viem").Hex[];
11082
+ sha3Uncles: import("viem").Hash;
11083
+ size: bigint;
11084
+ stateRoot: import("viem").Hash;
11085
+ timestamp: bigint;
11086
+ totalDifficulty: bigint | null;
11087
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
11088
+ transactionsRoot: import("viem").Hash;
11089
+ uncles: import("viem").Hash[];
11090
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
11091
+ withdrawalsRoot?: `0x${string}` | undefined;
11092
+ } & {};
11093
+ type: "block";
11094
+ };
11095
+ readonly transaction: {
11096
+ exclude: [] | undefined;
11097
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
11098
+ blockHash: `0x${string}` | null;
11099
+ blockNumber: bigint | null;
11100
+ from: import("abitype").Address;
11101
+ gas: bigint;
11102
+ hash: import("viem").Hash;
11103
+ input: import("viem").Hex;
11104
+ nonce: number;
11105
+ r: import("viem").Hex;
11106
+ s: import("viem").Hex;
11107
+ to: import("abitype").Address | null;
11108
+ transactionIndex: number | null;
11109
+ typeHex: import("viem").Hex | null;
11110
+ v: bigint;
11111
+ value: bigint;
11112
+ yParity: number;
11113
+ gasPrice?: undefined | undefined;
11114
+ maxFeePerBlobGas?: undefined | undefined;
11115
+ maxFeePerGas: bigint;
11116
+ maxPriorityFeePerGas: bigint;
11117
+ isSystemTx?: boolean;
11118
+ mint?: bigint | undefined | undefined;
11119
+ sourceHash: import("viem").Hex;
11120
+ type: "deposit";
11121
+ } | {
11122
+ r: import("viem").Hex;
11123
+ s: import("viem").Hex;
11124
+ v: bigint;
11125
+ to: import("abitype").Address | null;
11126
+ from: import("abitype").Address;
11127
+ gas: bigint;
11128
+ nonce: number;
11129
+ value: bigint;
11130
+ blockHash: `0x${string}` | null;
11131
+ blockNumber: bigint | null;
11132
+ hash: import("viem").Hash;
11133
+ input: import("viem").Hex;
11134
+ transactionIndex: number | null;
11135
+ typeHex: import("viem").Hex | null;
11136
+ accessList?: undefined | undefined;
11137
+ authorizationList?: undefined | undefined;
11138
+ blobVersionedHashes?: undefined | undefined;
11139
+ chainId?: number | undefined;
11140
+ yParity?: undefined | undefined;
11141
+ type: "legacy";
11142
+ gasPrice: bigint;
11143
+ maxFeePerBlobGas?: undefined | undefined;
11144
+ maxFeePerGas?: undefined | undefined;
11145
+ maxPriorityFeePerGas?: undefined | undefined;
11146
+ isSystemTx?: undefined | undefined;
11147
+ mint?: undefined | undefined;
11148
+ sourceHash?: undefined | undefined;
11149
+ } | {
11150
+ blockHash: `0x${string}` | null;
11151
+ blockNumber: bigint | null;
11152
+ from: import("abitype").Address;
11153
+ gas: bigint;
11154
+ hash: import("viem").Hash;
11155
+ input: import("viem").Hex;
11156
+ nonce: number;
11157
+ r: import("viem").Hex;
11158
+ s: import("viem").Hex;
11159
+ to: import("abitype").Address | null;
11160
+ transactionIndex: number | null;
11161
+ typeHex: import("viem").Hex | null;
11162
+ v: bigint;
11163
+ value: bigint;
11164
+ yParity: number;
11165
+ accessList: import("viem").AccessList;
11166
+ authorizationList?: undefined | undefined;
11167
+ blobVersionedHashes?: undefined | undefined;
11168
+ chainId: number;
11169
+ type: "eip2930";
11170
+ gasPrice: bigint;
11171
+ maxFeePerBlobGas?: undefined | undefined;
11172
+ maxFeePerGas?: undefined | undefined;
11173
+ maxPriorityFeePerGas?: undefined | undefined;
11174
+ isSystemTx?: undefined | undefined;
11175
+ mint?: undefined | undefined;
11176
+ sourceHash?: undefined | undefined;
11177
+ } | {
11178
+ blockHash: `0x${string}` | null;
11179
+ blockNumber: bigint | null;
11180
+ from: import("abitype").Address;
11181
+ gas: bigint;
11182
+ hash: import("viem").Hash;
11183
+ input: import("viem").Hex;
11184
+ nonce: number;
11185
+ r: import("viem").Hex;
11186
+ s: import("viem").Hex;
11187
+ to: import("abitype").Address | null;
11188
+ transactionIndex: number | null;
11189
+ typeHex: import("viem").Hex | null;
11190
+ v: bigint;
11191
+ value: bigint;
11192
+ yParity: number;
11193
+ accessList: import("viem").AccessList;
11194
+ authorizationList?: undefined | undefined;
11195
+ blobVersionedHashes?: undefined | undefined;
11196
+ chainId: number;
11197
+ type: "eip1559";
11198
+ gasPrice?: undefined | undefined;
11199
+ maxFeePerBlobGas?: undefined | undefined;
11200
+ maxFeePerGas: bigint;
11201
+ maxPriorityFeePerGas: bigint;
11202
+ isSystemTx?: undefined | undefined;
11203
+ mint?: undefined | undefined;
11204
+ sourceHash?: undefined | undefined;
11205
+ } | {
11206
+ blockHash: `0x${string}` | null;
11207
+ blockNumber: bigint | null;
11208
+ from: import("abitype").Address;
11209
+ gas: bigint;
11210
+ hash: import("viem").Hash;
11211
+ input: import("viem").Hex;
11212
+ nonce: number;
11213
+ r: import("viem").Hex;
11214
+ s: import("viem").Hex;
11215
+ to: import("abitype").Address | null;
11216
+ transactionIndex: number | null;
11217
+ typeHex: import("viem").Hex | null;
11218
+ v: bigint;
11219
+ value: bigint;
11220
+ yParity: number;
11221
+ accessList: import("viem").AccessList;
11222
+ authorizationList?: undefined | undefined;
11223
+ blobVersionedHashes: readonly import("viem").Hex[];
11224
+ chainId: number;
11225
+ type: "eip4844";
11226
+ gasPrice?: undefined | undefined;
11227
+ maxFeePerBlobGas: bigint;
11228
+ maxFeePerGas: bigint;
11229
+ maxPriorityFeePerGas: bigint;
11230
+ isSystemTx?: undefined | undefined;
11231
+ mint?: undefined | undefined;
11232
+ sourceHash?: undefined | undefined;
11233
+ } | {
11234
+ blockHash: `0x${string}` | null;
11235
+ blockNumber: bigint | null;
11236
+ from: import("abitype").Address;
11237
+ gas: bigint;
11238
+ hash: import("viem").Hash;
11239
+ input: import("viem").Hex;
11240
+ nonce: number;
11241
+ r: import("viem").Hex;
11242
+ s: import("viem").Hex;
11243
+ to: import("abitype").Address | null;
11244
+ transactionIndex: number | null;
11245
+ typeHex: import("viem").Hex | null;
11246
+ v: bigint;
11247
+ value: bigint;
11248
+ yParity: number;
11249
+ accessList: import("viem").AccessList;
11250
+ authorizationList: import("viem").SignedAuthorizationList;
11251
+ blobVersionedHashes?: undefined | undefined;
11252
+ chainId: number;
11253
+ type: "eip7702";
11254
+ gasPrice?: undefined | undefined;
11255
+ maxFeePerBlobGas?: undefined | undefined;
11256
+ maxFeePerGas: bigint;
11257
+ maxPriorityFeePerGas: bigint;
11258
+ isSystemTx?: undefined | undefined;
11259
+ mint?: undefined | undefined;
11260
+ sourceHash?: undefined | undefined;
11261
+ }) & {};
11262
+ type: "transaction";
11263
+ };
11264
+ readonly transactionReceipt: {
11265
+ exclude: [] | undefined;
11266
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
11267
+ blobGasPrice?: bigint | undefined;
11268
+ blobGasUsed?: bigint | undefined;
11269
+ blockHash: import("viem").Hash;
11270
+ blockNumber: bigint;
11271
+ contractAddress: import("abitype").Address | null | undefined;
11272
+ cumulativeGasUsed: bigint;
11273
+ effectiveGasPrice: bigint;
11274
+ from: import("abitype").Address;
11275
+ gasUsed: bigint;
11276
+ logs: import("viem").Log<bigint, number, false>[];
11277
+ logsBloom: import("viem").Hex;
11278
+ root?: `0x${string}` | undefined;
11279
+ status: "success" | "reverted";
11280
+ to: import("abitype").Address | null;
11281
+ transactionHash: import("viem").Hash;
11282
+ transactionIndex: number;
11283
+ type: import("viem").TransactionType;
11284
+ l1GasPrice: bigint | null;
11285
+ l1GasUsed: bigint | null;
11286
+ l1Fee: bigint | null;
11287
+ l1FeeScalar: number | null;
11288
+ } & {};
11289
+ type: "transactionReceipt";
11290
+ };
11291
+ };
11292
+ serializers: {
11293
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
11294
+ };
11295
+ readonly blockchainId: "BASE-SEPOLIA";
11296
+ readonly blockchainVm: "EVM";
11297
+ readonly network: "base-sepolia";
11298
+ }, {
11299
+ blockExplorers: {
11300
+ readonly default: {
11301
+ readonly name: "Optimism Explorer";
11302
+ readonly url: "https://optimistic.etherscan.io";
11303
+ readonly apiUrl: "https://api-optimistic.etherscan.io/api";
11304
+ };
11305
+ };
11306
+ blockTime: 2000;
11307
+ contracts: {
11308
+ readonly USDC: {
11309
+ readonly address: "0x0b2c639c533813f4aa9d7837caf62653d097ff85";
11310
+ readonly abi: readonly [{
11311
+ readonly type: "event";
11312
+ readonly name: "Approval";
11313
+ readonly inputs: readonly [{
11314
+ readonly indexed: true;
11315
+ readonly name: "owner";
11316
+ readonly type: "address";
11317
+ }, {
11318
+ readonly indexed: true;
11319
+ readonly name: "spender";
11320
+ readonly type: "address";
11321
+ }, {
11322
+ readonly indexed: false;
11323
+ readonly name: "value";
11324
+ readonly type: "uint256";
11325
+ }];
11326
+ }, {
11327
+ readonly type: "event";
11328
+ readonly name: "Transfer";
11329
+ readonly inputs: readonly [{
11330
+ readonly indexed: true;
11331
+ readonly name: "from";
11332
+ readonly type: "address";
11333
+ }, {
11334
+ readonly indexed: true;
11335
+ readonly name: "to";
11336
+ readonly type: "address";
11337
+ }, {
11338
+ readonly indexed: false;
11339
+ readonly name: "value";
11340
+ readonly type: "uint256";
11341
+ }];
11342
+ }, {
11343
+ readonly type: "function";
11344
+ readonly name: "allowance";
11345
+ readonly stateMutability: "view";
11346
+ readonly inputs: readonly [{
11347
+ readonly name: "owner";
11348
+ readonly type: "address";
11349
+ }, {
11350
+ readonly name: "spender";
11351
+ readonly type: "address";
11352
+ }];
11353
+ readonly outputs: readonly [{
11354
+ readonly type: "uint256";
11355
+ }];
11356
+ }, {
11357
+ readonly type: "function";
11358
+ readonly name: "approve";
11359
+ readonly stateMutability: "nonpayable";
11360
+ readonly inputs: readonly [{
11361
+ readonly name: "spender";
11362
+ readonly type: "address";
11363
+ }, {
11364
+ readonly name: "amount";
11365
+ readonly type: "uint256";
11366
+ }];
11367
+ readonly outputs: readonly [{
11368
+ readonly type: "bool";
11369
+ }];
11370
+ }, {
11371
+ readonly type: "function";
11372
+ readonly name: "balanceOf";
11373
+ readonly stateMutability: "view";
11374
+ readonly inputs: readonly [{
11375
+ readonly name: "account";
11376
+ readonly type: "address";
11377
+ }];
11378
+ readonly outputs: readonly [{
11379
+ readonly type: "uint256";
11380
+ }];
11381
+ }, {
11382
+ readonly type: "function";
11383
+ readonly name: "decimals";
11384
+ readonly stateMutability: "view";
11385
+ readonly inputs: readonly [];
11386
+ readonly outputs: readonly [{
11387
+ readonly type: "uint8";
11388
+ }];
11389
+ }, {
11390
+ readonly type: "function";
11391
+ readonly name: "name";
11392
+ readonly stateMutability: "view";
11393
+ readonly inputs: readonly [];
11394
+ readonly outputs: readonly [{
11395
+ readonly type: "string";
11396
+ }];
11397
+ }, {
11398
+ readonly type: "function";
11399
+ readonly name: "symbol";
11400
+ readonly stateMutability: "view";
11401
+ readonly inputs: readonly [];
11402
+ readonly outputs: readonly [{
11403
+ readonly type: "string";
11404
+ }];
11405
+ }, {
11406
+ readonly type: "function";
11407
+ readonly name: "totalSupply";
11408
+ readonly stateMutability: "view";
11409
+ readonly inputs: readonly [];
11410
+ readonly outputs: readonly [{
11411
+ readonly type: "uint256";
11412
+ }];
11413
+ }, {
11414
+ readonly type: "function";
11415
+ readonly name: "transfer";
11416
+ readonly stateMutability: "nonpayable";
11417
+ readonly inputs: readonly [{
11418
+ readonly name: "recipient";
11419
+ readonly type: "address";
11420
+ }, {
11421
+ readonly name: "amount";
11422
+ readonly type: "uint256";
11423
+ }];
11424
+ readonly outputs: readonly [{
11425
+ readonly type: "bool";
11426
+ }];
11427
+ }, {
11428
+ readonly type: "function";
11429
+ readonly name: "transferFrom";
11430
+ readonly stateMutability: "nonpayable";
11431
+ readonly inputs: readonly [{
11432
+ readonly name: "sender";
11433
+ readonly type: "address";
11434
+ }, {
11435
+ readonly name: "recipient";
11436
+ readonly type: "address";
11437
+ }, {
11438
+ readonly name: "amount";
11439
+ readonly type: "uint256";
11440
+ }];
11441
+ readonly outputs: readonly [{
11442
+ readonly type: "bool";
11443
+ }];
11444
+ }];
11445
+ readonly read: {
11446
+ readonly decimals: () => 6;
11447
+ };
11448
+ };
11449
+ readonly disputeGameFactory: {
11450
+ readonly 1: {
11451
+ readonly address: "0xe5965Ab5962eDc7477C8520243A95517CD252fA9";
11452
+ };
11453
+ };
11454
+ readonly l2OutputOracle: {
11455
+ readonly 1: {
11456
+ readonly address: "0xdfe97868233d1aa22e815a266982f2cf17685a27";
11457
+ };
11458
+ };
11459
+ readonly multicall3: {
11460
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
11461
+ readonly blockCreated: 4286263;
11462
+ };
11463
+ readonly portal: {
11464
+ readonly 1: {
11465
+ readonly address: "0xbEb5Fc579115071764c7423A4f12eDde41f106Ed";
11466
+ };
11467
+ };
11468
+ readonly l1StandardBridge: {
11469
+ readonly 1: {
11470
+ readonly address: "0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1";
11471
+ };
11472
+ };
11473
+ readonly gasPriceOracle: {
11474
+ readonly address: "0x420000000000000000000000000000000000000F";
11475
+ };
11476
+ readonly l1Block: {
11477
+ readonly address: "0x4200000000000000000000000000000000000015";
11478
+ };
11479
+ readonly l2CrossDomainMessenger: {
11480
+ readonly address: "0x4200000000000000000000000000000000000007";
11481
+ };
11482
+ readonly l2Erc721Bridge: {
11483
+ readonly address: "0x4200000000000000000000000000000000000014";
11484
+ };
11485
+ readonly l2StandardBridge: {
11486
+ readonly address: "0x4200000000000000000000000000000000000010";
11487
+ };
11488
+ readonly l2ToL1MessagePasser: {
11489
+ readonly address: "0x4200000000000000000000000000000000000016";
11490
+ };
11491
+ };
11492
+ ensTlds?: readonly string[] | undefined;
11493
+ id: 10;
11494
+ name: "OP Mainnet";
11495
+ nativeCurrency: {
11496
+ readonly name: "Ether";
11497
+ readonly symbol: "ETH";
11498
+ readonly decimals: 18;
11499
+ };
11500
+ experimental_preconfirmationTime?: number | undefined | undefined;
11501
+ rpcUrls: {
11502
+ readonly default: {
11503
+ readonly http: readonly ["https://mainnet.optimism.io"];
11504
+ };
11505
+ };
11506
+ sourceId: 1;
11507
+ testnet?: boolean | undefined | undefined;
11508
+ custom?: Record<string, unknown> | undefined;
11509
+ fees?: import("viem").ChainFees<undefined> | undefined;
11510
+ formatters: {
11511
+ readonly block: {
11512
+ exclude: [] | undefined;
11513
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
11514
+ baseFeePerGas: bigint | null;
11515
+ blobGasUsed: bigint;
11516
+ difficulty: bigint;
11517
+ excessBlobGas: bigint;
11518
+ extraData: import("viem").Hex;
11519
+ gasLimit: bigint;
11520
+ gasUsed: bigint;
11521
+ hash: `0x${string}` | null;
11522
+ logsBloom: `0x${string}` | null;
11523
+ miner: import("abitype").Address;
11524
+ mixHash: import("viem").Hash;
11525
+ nonce: `0x${string}` | null;
11526
+ number: bigint | null;
11527
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
11528
+ parentHash: import("viem").Hash;
11529
+ receiptsRoot: import("viem").Hex;
11530
+ sealFields: import("viem").Hex[];
11531
+ sha3Uncles: import("viem").Hash;
11532
+ size: bigint;
11533
+ stateRoot: import("viem").Hash;
11534
+ timestamp: bigint;
11535
+ totalDifficulty: bigint | null;
11536
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
11537
+ transactionsRoot: import("viem").Hash;
11538
+ uncles: import("viem").Hash[];
11539
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
11540
+ withdrawalsRoot?: `0x${string}` | undefined;
11541
+ } & {};
11542
+ type: "block";
11543
+ };
11544
+ readonly transaction: {
11545
+ exclude: [] | undefined;
11546
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
11547
+ blockHash: `0x${string}` | null;
11548
+ blockNumber: bigint | null;
11549
+ from: import("abitype").Address;
11550
+ gas: bigint;
11551
+ hash: import("viem").Hash;
11552
+ input: import("viem").Hex;
11553
+ nonce: number;
11554
+ r: import("viem").Hex;
11555
+ s: import("viem").Hex;
11556
+ to: import("abitype").Address | null;
11557
+ transactionIndex: number | null;
11558
+ typeHex: import("viem").Hex | null;
11559
+ v: bigint;
11560
+ value: bigint;
11561
+ yParity: number;
11562
+ gasPrice?: undefined | undefined;
11563
+ maxFeePerBlobGas?: undefined | undefined;
11564
+ maxFeePerGas: bigint;
11565
+ maxPriorityFeePerGas: bigint;
11566
+ isSystemTx?: boolean;
11567
+ mint?: bigint | undefined | undefined;
11568
+ sourceHash: import("viem").Hex;
11569
+ type: "deposit";
11570
+ } | {
11571
+ r: import("viem").Hex;
11572
+ s: import("viem").Hex;
11573
+ v: bigint;
11574
+ to: import("abitype").Address | null;
11575
+ from: import("abitype").Address;
11576
+ gas: bigint;
11577
+ nonce: number;
11578
+ value: bigint;
11579
+ blockHash: `0x${string}` | null;
11580
+ blockNumber: bigint | null;
11581
+ hash: import("viem").Hash;
11582
+ input: import("viem").Hex;
11583
+ transactionIndex: number | null;
11584
+ typeHex: import("viem").Hex | null;
11585
+ accessList?: undefined | undefined;
11586
+ authorizationList?: undefined | undefined;
11587
+ blobVersionedHashes?: undefined | undefined;
11588
+ chainId?: number | undefined;
11589
+ yParity?: undefined | undefined;
11590
+ type: "legacy";
11591
+ gasPrice: bigint;
11592
+ maxFeePerBlobGas?: undefined | undefined;
11593
+ maxFeePerGas?: undefined | undefined;
11594
+ maxPriorityFeePerGas?: undefined | undefined;
11595
+ isSystemTx?: undefined | undefined;
11596
+ mint?: undefined | undefined;
11597
+ sourceHash?: undefined | undefined;
11598
+ } | {
11599
+ blockHash: `0x${string}` | null;
11600
+ blockNumber: bigint | null;
11601
+ from: import("abitype").Address;
11602
+ gas: bigint;
11603
+ hash: import("viem").Hash;
11604
+ input: import("viem").Hex;
11605
+ nonce: number;
11606
+ r: import("viem").Hex;
11607
+ s: import("viem").Hex;
11608
+ to: import("abitype").Address | null;
11609
+ transactionIndex: number | null;
11610
+ typeHex: import("viem").Hex | null;
11611
+ v: bigint;
11612
+ value: bigint;
11613
+ yParity: number;
11614
+ accessList: import("viem").AccessList;
11615
+ authorizationList?: undefined | undefined;
11616
+ blobVersionedHashes?: undefined | undefined;
11617
+ chainId: number;
11618
+ type: "eip2930";
11619
+ gasPrice: bigint;
11620
+ maxFeePerBlobGas?: undefined | undefined;
11621
+ maxFeePerGas?: undefined | undefined;
11622
+ maxPriorityFeePerGas?: undefined | undefined;
11623
+ isSystemTx?: undefined | undefined;
11624
+ mint?: undefined | undefined;
11625
+ sourceHash?: undefined | undefined;
11626
+ } | {
11627
+ blockHash: `0x${string}` | null;
11628
+ blockNumber: bigint | null;
11629
+ from: import("abitype").Address;
11630
+ gas: bigint;
11631
+ hash: import("viem").Hash;
11632
+ input: import("viem").Hex;
11633
+ nonce: number;
11634
+ r: import("viem").Hex;
11635
+ s: import("viem").Hex;
11636
+ to: import("abitype").Address | null;
11637
+ transactionIndex: number | null;
11638
+ typeHex: import("viem").Hex | null;
11639
+ v: bigint;
11640
+ value: bigint;
11641
+ yParity: number;
11642
+ accessList: import("viem").AccessList;
11643
+ authorizationList?: undefined | undefined;
11644
+ blobVersionedHashes?: undefined | undefined;
11645
+ chainId: number;
11646
+ type: "eip1559";
11647
+ gasPrice?: undefined | undefined;
11648
+ maxFeePerBlobGas?: undefined | undefined;
11649
+ maxFeePerGas: bigint;
11650
+ maxPriorityFeePerGas: bigint;
11651
+ isSystemTx?: undefined | undefined;
11652
+ mint?: undefined | undefined;
11653
+ sourceHash?: undefined | undefined;
11654
+ } | {
11655
+ blockHash: `0x${string}` | null;
11656
+ blockNumber: bigint | null;
11657
+ from: import("abitype").Address;
11658
+ gas: bigint;
11659
+ hash: import("viem").Hash;
11660
+ input: import("viem").Hex;
11661
+ nonce: number;
11662
+ r: import("viem").Hex;
11663
+ s: import("viem").Hex;
11664
+ to: import("abitype").Address | null;
11665
+ transactionIndex: number | null;
11666
+ typeHex: import("viem").Hex | null;
11667
+ v: bigint;
11668
+ value: bigint;
11669
+ yParity: number;
11670
+ accessList: import("viem").AccessList;
11671
+ authorizationList?: undefined | undefined;
11672
+ blobVersionedHashes: readonly import("viem").Hex[];
11673
+ chainId: number;
11674
+ type: "eip4844";
11675
+ gasPrice?: undefined | undefined;
11676
+ maxFeePerBlobGas: bigint;
11677
+ maxFeePerGas: bigint;
11678
+ maxPriorityFeePerGas: bigint;
11679
+ isSystemTx?: undefined | undefined;
11680
+ mint?: undefined | undefined;
11681
+ sourceHash?: undefined | undefined;
11682
+ } | {
11683
+ blockHash: `0x${string}` | null;
11684
+ blockNumber: bigint | null;
11685
+ from: import("abitype").Address;
11686
+ gas: bigint;
11687
+ hash: import("viem").Hash;
11688
+ input: import("viem").Hex;
11689
+ nonce: number;
11690
+ r: import("viem").Hex;
11691
+ s: import("viem").Hex;
11692
+ to: import("abitype").Address | null;
11693
+ transactionIndex: number | null;
11694
+ typeHex: import("viem").Hex | null;
11695
+ v: bigint;
11696
+ value: bigint;
11697
+ yParity: number;
11698
+ accessList: import("viem").AccessList;
11699
+ authorizationList: import("viem").SignedAuthorizationList;
11700
+ blobVersionedHashes?: undefined | undefined;
11701
+ chainId: number;
11702
+ type: "eip7702";
11703
+ gasPrice?: undefined | undefined;
11704
+ maxFeePerBlobGas?: undefined | undefined;
11705
+ maxFeePerGas: bigint;
11706
+ maxPriorityFeePerGas: bigint;
11707
+ isSystemTx?: undefined | undefined;
11708
+ mint?: undefined | undefined;
11709
+ sourceHash?: undefined | undefined;
11710
+ }) & {};
11711
+ type: "transaction";
11712
+ };
11713
+ readonly transactionReceipt: {
11714
+ exclude: [] | undefined;
11715
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
11716
+ blobGasPrice?: bigint | undefined;
11717
+ blobGasUsed?: bigint | undefined;
11718
+ blockHash: import("viem").Hash;
11719
+ blockNumber: bigint;
11720
+ contractAddress: import("abitype").Address | null | undefined;
11721
+ cumulativeGasUsed: bigint;
11722
+ effectiveGasPrice: bigint;
11723
+ from: import("abitype").Address;
11724
+ gasUsed: bigint;
11725
+ logs: import("viem").Log<bigint, number, false>[];
11726
+ logsBloom: import("viem").Hex;
11727
+ root?: `0x${string}` | undefined;
11728
+ status: "success" | "reverted";
11729
+ to: import("abitype").Address | null;
11730
+ transactionHash: import("viem").Hash;
11731
+ transactionIndex: number;
11732
+ type: import("viem").TransactionType;
11733
+ l1GasPrice: bigint | null;
11734
+ l1GasUsed: bigint | null;
11735
+ l1Fee: bigint | null;
11736
+ l1FeeScalar: number | null;
11737
+ } & {};
11738
+ type: "transactionReceipt";
11739
+ };
11740
+ };
11741
+ serializers: {
11742
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
11743
+ };
11744
+ readonly blockchainId: "OP";
11745
+ readonly blockchainVm: "EVM";
11746
+ }, {
11747
+ blockExplorers: {
11748
+ readonly default: {
11749
+ readonly name: "Blockscout";
11750
+ readonly url: "https://optimism-sepolia.blockscout.com";
11751
+ readonly apiUrl: "https://optimism-sepolia.blockscout.com/api";
11752
+ };
11753
+ };
11754
+ blockTime: 2000;
11755
+ contracts: {
11756
+ readonly USDC: {
11757
+ readonly address: "0x5fd84259d66Cd46123540766Be93DFE6D43130D7";
11758
+ readonly abi: readonly [{
11759
+ readonly type: "event";
11760
+ readonly name: "Approval";
11761
+ readonly inputs: readonly [{
11762
+ readonly indexed: true;
11763
+ readonly name: "owner";
11764
+ readonly type: "address";
11765
+ }, {
11766
+ readonly indexed: true;
11767
+ readonly name: "spender";
11768
+ readonly type: "address";
11769
+ }, {
11770
+ readonly indexed: false;
11771
+ readonly name: "value";
11772
+ readonly type: "uint256";
11773
+ }];
11774
+ }, {
11775
+ readonly type: "event";
11776
+ readonly name: "Transfer";
11777
+ readonly inputs: readonly [{
11778
+ readonly indexed: true;
11779
+ readonly name: "from";
11780
+ readonly type: "address";
11781
+ }, {
11782
+ readonly indexed: true;
11783
+ readonly name: "to";
11784
+ readonly type: "address";
11785
+ }, {
11786
+ readonly indexed: false;
11787
+ readonly name: "value";
11788
+ readonly type: "uint256";
11789
+ }];
11790
+ }, {
11791
+ readonly type: "function";
11792
+ readonly name: "allowance";
11793
+ readonly stateMutability: "view";
11794
+ readonly inputs: readonly [{
11795
+ readonly name: "owner";
11796
+ readonly type: "address";
11797
+ }, {
11798
+ readonly name: "spender";
11799
+ readonly type: "address";
11800
+ }];
11801
+ readonly outputs: readonly [{
11802
+ readonly type: "uint256";
11803
+ }];
11804
+ }, {
11805
+ readonly type: "function";
11806
+ readonly name: "approve";
11807
+ readonly stateMutability: "nonpayable";
11808
+ readonly inputs: readonly [{
11809
+ readonly name: "spender";
11810
+ readonly type: "address";
11811
+ }, {
11812
+ readonly name: "amount";
11813
+ readonly type: "uint256";
11814
+ }];
11815
+ readonly outputs: readonly [{
11816
+ readonly type: "bool";
11817
+ }];
11818
+ }, {
11819
+ readonly type: "function";
11820
+ readonly name: "balanceOf";
11821
+ readonly stateMutability: "view";
11822
+ readonly inputs: readonly [{
11823
+ readonly name: "account";
11824
+ readonly type: "address";
11825
+ }];
11826
+ readonly outputs: readonly [{
11827
+ readonly type: "uint256";
11828
+ }];
11829
+ }, {
11830
+ readonly type: "function";
11831
+ readonly name: "decimals";
11832
+ readonly stateMutability: "view";
11833
+ readonly inputs: readonly [];
11834
+ readonly outputs: readonly [{
11835
+ readonly type: "uint8";
11836
+ }];
11837
+ }, {
11838
+ readonly type: "function";
11839
+ readonly name: "name";
11840
+ readonly stateMutability: "view";
11841
+ readonly inputs: readonly [];
11842
+ readonly outputs: readonly [{
11843
+ readonly type: "string";
11844
+ }];
11845
+ }, {
11846
+ readonly type: "function";
11847
+ readonly name: "symbol";
11848
+ readonly stateMutability: "view";
11849
+ readonly inputs: readonly [];
11850
+ readonly outputs: readonly [{
11851
+ readonly type: "string";
11852
+ }];
11853
+ }, {
11854
+ readonly type: "function";
11855
+ readonly name: "totalSupply";
11856
+ readonly stateMutability: "view";
11857
+ readonly inputs: readonly [];
11858
+ readonly outputs: readonly [{
11859
+ readonly type: "uint256";
11860
+ }];
11861
+ }, {
11862
+ readonly type: "function";
11863
+ readonly name: "transfer";
11864
+ readonly stateMutability: "nonpayable";
11865
+ readonly inputs: readonly [{
11866
+ readonly name: "recipient";
11867
+ readonly type: "address";
11868
+ }, {
11869
+ readonly name: "amount";
11870
+ readonly type: "uint256";
11871
+ }];
11872
+ readonly outputs: readonly [{
11873
+ readonly type: "bool";
11874
+ }];
11875
+ }, {
11876
+ readonly type: "function";
11877
+ readonly name: "transferFrom";
11878
+ readonly stateMutability: "nonpayable";
11879
+ readonly inputs: readonly [{
11880
+ readonly name: "sender";
11881
+ readonly type: "address";
11882
+ }, {
11883
+ readonly name: "recipient";
11884
+ readonly type: "address";
11885
+ }, {
11886
+ readonly name: "amount";
11887
+ readonly type: "uint256";
11888
+ }];
11889
+ readonly outputs: readonly [{
11890
+ readonly type: "bool";
11891
+ }];
11892
+ }];
11893
+ readonly read: {
11894
+ readonly decimals: () => 6;
11895
+ };
11896
+ };
11897
+ readonly disputeGameFactory: {
11898
+ readonly 11155111: {
11899
+ readonly address: "0x05F9613aDB30026FFd634f38e5C4dFd30a197Fa1";
11900
+ };
11901
+ };
11902
+ readonly l2OutputOracle: {
11903
+ readonly 11155111: {
11904
+ readonly address: "0x90E9c4f8a994a250F6aEfd61CAFb4F2e895D458F";
11905
+ };
11906
+ };
11907
+ readonly multicall3: {
11908
+ readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
11909
+ readonly blockCreated: 1620204;
11910
+ };
11911
+ readonly portal: {
11912
+ readonly 11155111: {
11913
+ readonly address: "0x16Fc5058F25648194471939df75CF27A2fdC48BC";
11914
+ };
11915
+ };
11916
+ readonly l1StandardBridge: {
11917
+ readonly 11155111: {
11918
+ readonly address: "0xFBb0621E0B23b5478B630BD55a5f21f67730B0F1";
11919
+ };
11920
+ };
11921
+ readonly gasPriceOracle: {
11922
+ readonly address: "0x420000000000000000000000000000000000000F";
11923
+ };
11924
+ readonly l1Block: {
11925
+ readonly address: "0x4200000000000000000000000000000000000015";
11926
+ };
11927
+ readonly l2CrossDomainMessenger: {
11928
+ readonly address: "0x4200000000000000000000000000000000000007";
11929
+ };
11930
+ readonly l2Erc721Bridge: {
11931
+ readonly address: "0x4200000000000000000000000000000000000014";
11932
+ };
11933
+ readonly l2StandardBridge: {
11934
+ readonly address: "0x4200000000000000000000000000000000000010";
11935
+ };
11936
+ readonly l2ToL1MessagePasser: {
11937
+ readonly address: "0x4200000000000000000000000000000000000016";
11938
+ };
11939
+ };
11940
+ ensTlds?: readonly string[] | undefined;
11941
+ id: 11155420;
11942
+ name: "OP Sepolia";
11943
+ nativeCurrency: {
11944
+ readonly name: "Sepolia Ether";
11945
+ readonly symbol: "ETH";
11946
+ readonly decimals: 18;
11947
+ };
11948
+ experimental_preconfirmationTime?: number | undefined | undefined;
11949
+ rpcUrls: {
11950
+ readonly default: {
11951
+ readonly http: readonly ["https://sepolia.optimism.io"];
11952
+ };
11953
+ };
11954
+ sourceId: 11155111;
11955
+ testnet: true;
11956
+ custom?: Record<string, unknown> | undefined;
11957
+ fees?: import("viem").ChainFees<undefined> | undefined;
11958
+ formatters: {
11959
+ readonly block: {
11960
+ exclude: [] | undefined;
11961
+ format: (args: import("viem/chains").OpStackRpcBlock) => {
11962
+ baseFeePerGas: bigint | null;
11963
+ blobGasUsed: bigint;
11964
+ difficulty: bigint;
11965
+ excessBlobGas: bigint;
11966
+ extraData: import("viem").Hex;
11967
+ gasLimit: bigint;
11968
+ gasUsed: bigint;
11969
+ hash: `0x${string}` | null;
11970
+ logsBloom: `0x${string}` | null;
11971
+ miner: import("abitype").Address;
11972
+ mixHash: import("viem").Hash;
11973
+ nonce: `0x${string}` | null;
11974
+ number: bigint | null;
11975
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
11976
+ parentHash: import("viem").Hash;
11977
+ receiptsRoot: import("viem").Hex;
11978
+ sealFields: import("viem").Hex[];
11979
+ sha3Uncles: import("viem").Hash;
11980
+ size: bigint;
11981
+ stateRoot: import("viem").Hash;
11982
+ timestamp: bigint;
11983
+ totalDifficulty: bigint | null;
11984
+ transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
11985
+ transactionsRoot: import("viem").Hash;
11986
+ uncles: import("viem").Hash[];
11987
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
11988
+ withdrawalsRoot?: `0x${string}` | undefined;
11989
+ } & {};
11990
+ type: "block";
11991
+ };
11992
+ readonly transaction: {
11993
+ exclude: [] | undefined;
11994
+ format: (args: import("viem/chains").OpStackRpcTransaction) => ({
11995
+ blockHash: `0x${string}` | null;
11996
+ blockNumber: bigint | null;
11997
+ from: import("abitype").Address;
11998
+ gas: bigint;
11999
+ hash: import("viem").Hash;
12000
+ input: import("viem").Hex;
12001
+ nonce: number;
12002
+ r: import("viem").Hex;
12003
+ s: import("viem").Hex;
12004
+ to: import("abitype").Address | null;
12005
+ transactionIndex: number | null;
12006
+ typeHex: import("viem").Hex | null;
12007
+ v: bigint;
12008
+ value: bigint;
12009
+ yParity: number;
12010
+ gasPrice?: undefined | undefined;
12011
+ maxFeePerBlobGas?: undefined | undefined;
12012
+ maxFeePerGas: bigint;
12013
+ maxPriorityFeePerGas: bigint;
12014
+ isSystemTx?: boolean;
12015
+ mint?: bigint | undefined | undefined;
12016
+ sourceHash: import("viem").Hex;
12017
+ type: "deposit";
12018
+ } | {
12019
+ r: import("viem").Hex;
12020
+ s: import("viem").Hex;
12021
+ v: bigint;
12022
+ to: import("abitype").Address | null;
12023
+ from: import("abitype").Address;
12024
+ gas: bigint;
12025
+ nonce: number;
12026
+ value: bigint;
12027
+ blockHash: `0x${string}` | null;
12028
+ blockNumber: bigint | null;
12029
+ hash: import("viem").Hash;
12030
+ input: import("viem").Hex;
12031
+ transactionIndex: number | null;
12032
+ typeHex: import("viem").Hex | null;
12033
+ accessList?: undefined | undefined;
12034
+ authorizationList?: undefined | undefined;
12035
+ blobVersionedHashes?: undefined | undefined;
12036
+ chainId?: number | undefined;
12037
+ yParity?: undefined | undefined;
12038
+ type: "legacy";
12039
+ gasPrice: bigint;
12040
+ maxFeePerBlobGas?: undefined | undefined;
12041
+ maxFeePerGas?: undefined | undefined;
12042
+ maxPriorityFeePerGas?: undefined | undefined;
12043
+ isSystemTx?: undefined | undefined;
12044
+ mint?: undefined | undefined;
12045
+ sourceHash?: undefined | undefined;
12046
+ } | {
12047
+ blockHash: `0x${string}` | null;
12048
+ blockNumber: bigint | null;
12049
+ from: import("abitype").Address;
12050
+ gas: bigint;
12051
+ hash: import("viem").Hash;
12052
+ input: import("viem").Hex;
12053
+ nonce: number;
12054
+ r: import("viem").Hex;
12055
+ s: import("viem").Hex;
12056
+ to: import("abitype").Address | null;
12057
+ transactionIndex: number | null;
12058
+ typeHex: import("viem").Hex | null;
12059
+ v: bigint;
12060
+ value: bigint;
12061
+ yParity: number;
12062
+ accessList: import("viem").AccessList;
12063
+ authorizationList?: undefined | undefined;
12064
+ blobVersionedHashes?: undefined | undefined;
12065
+ chainId: number;
12066
+ type: "eip2930";
12067
+ gasPrice: bigint;
12068
+ maxFeePerBlobGas?: undefined | undefined;
12069
+ maxFeePerGas?: undefined | undefined;
12070
+ maxPriorityFeePerGas?: undefined | undefined;
12071
+ isSystemTx?: undefined | undefined;
12072
+ mint?: undefined | undefined;
12073
+ sourceHash?: undefined | undefined;
12074
+ } | {
12075
+ blockHash: `0x${string}` | null;
12076
+ blockNumber: bigint | null;
12077
+ from: import("abitype").Address;
12078
+ gas: bigint;
12079
+ hash: import("viem").Hash;
12080
+ input: import("viem").Hex;
12081
+ nonce: number;
12082
+ r: import("viem").Hex;
12083
+ s: import("viem").Hex;
12084
+ to: import("abitype").Address | null;
12085
+ transactionIndex: number | null;
12086
+ typeHex: import("viem").Hex | null;
12087
+ v: bigint;
12088
+ value: bigint;
12089
+ yParity: number;
12090
+ accessList: import("viem").AccessList;
12091
+ authorizationList?: undefined | undefined;
12092
+ blobVersionedHashes?: undefined | undefined;
12093
+ chainId: number;
12094
+ type: "eip1559";
12095
+ gasPrice?: undefined | undefined;
12096
+ maxFeePerBlobGas?: undefined | undefined;
12097
+ maxFeePerGas: bigint;
12098
+ maxPriorityFeePerGas: bigint;
12099
+ isSystemTx?: undefined | undefined;
12100
+ mint?: undefined | undefined;
12101
+ sourceHash?: undefined | undefined;
12102
+ } | {
12103
+ blockHash: `0x${string}` | null;
12104
+ blockNumber: bigint | null;
12105
+ from: import("abitype").Address;
12106
+ gas: bigint;
12107
+ hash: import("viem").Hash;
12108
+ input: import("viem").Hex;
12109
+ nonce: number;
12110
+ r: import("viem").Hex;
12111
+ s: import("viem").Hex;
12112
+ to: import("abitype").Address | null;
12113
+ transactionIndex: number | null;
12114
+ typeHex: import("viem").Hex | null;
12115
+ v: bigint;
12116
+ value: bigint;
12117
+ yParity: number;
12118
+ accessList: import("viem").AccessList;
12119
+ authorizationList?: undefined | undefined;
12120
+ blobVersionedHashes: readonly import("viem").Hex[];
12121
+ chainId: number;
12122
+ type: "eip4844";
12123
+ gasPrice?: undefined | undefined;
12124
+ maxFeePerBlobGas: bigint;
12125
+ maxFeePerGas: bigint;
12126
+ maxPriorityFeePerGas: bigint;
12127
+ isSystemTx?: undefined | undefined;
12128
+ mint?: undefined | undefined;
12129
+ sourceHash?: undefined | undefined;
12130
+ } | {
12131
+ blockHash: `0x${string}` | null;
12132
+ blockNumber: bigint | null;
12133
+ from: import("abitype").Address;
12134
+ gas: bigint;
12135
+ hash: import("viem").Hash;
12136
+ input: import("viem").Hex;
12137
+ nonce: number;
12138
+ r: import("viem").Hex;
12139
+ s: import("viem").Hex;
12140
+ to: import("abitype").Address | null;
12141
+ transactionIndex: number | null;
12142
+ typeHex: import("viem").Hex | null;
12143
+ v: bigint;
12144
+ value: bigint;
12145
+ yParity: number;
12146
+ accessList: import("viem").AccessList;
12147
+ authorizationList: import("viem").SignedAuthorizationList;
12148
+ blobVersionedHashes?: undefined | undefined;
12149
+ chainId: number;
12150
+ type: "eip7702";
12151
+ gasPrice?: undefined | undefined;
12152
+ maxFeePerBlobGas?: undefined | undefined;
12153
+ maxFeePerGas: bigint;
12154
+ maxPriorityFeePerGas: bigint;
12155
+ isSystemTx?: undefined | undefined;
12156
+ mint?: undefined | undefined;
12157
+ sourceHash?: undefined | undefined;
12158
+ }) & {};
12159
+ type: "transaction";
12160
+ };
12161
+ readonly transactionReceipt: {
12162
+ exclude: [] | undefined;
12163
+ format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
12164
+ blobGasPrice?: bigint | undefined;
12165
+ blobGasUsed?: bigint | undefined;
12166
+ blockHash: import("viem").Hash;
12167
+ blockNumber: bigint;
12168
+ contractAddress: import("abitype").Address | null | undefined;
12169
+ cumulativeGasUsed: bigint;
12170
+ effectiveGasPrice: bigint;
12171
+ from: import("abitype").Address;
12172
+ gasUsed: bigint;
12173
+ logs: import("viem").Log<bigint, number, false>[];
12174
+ logsBloom: import("viem").Hex;
12175
+ root?: `0x${string}` | undefined;
12176
+ status: "success" | "reverted";
12177
+ to: import("abitype").Address | null;
12178
+ transactionHash: import("viem").Hash;
12179
+ transactionIndex: number;
12180
+ type: import("viem").TransactionType;
12181
+ l1GasPrice: bigint | null;
12182
+ l1GasUsed: bigint | null;
12183
+ l1Fee: bigint | null;
12184
+ l1FeeScalar: number | null;
12185
+ } & {};
12186
+ type: "transactionReceipt";
12187
+ };
12188
+ };
12189
+ serializers: {
12190
+ readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
12191
+ };
12192
+ readonly blockchainId: "OP-SEPOLIA";
12193
+ readonly blockchainVm: "EVM";
12194
+ }];
7729
12195
  export type Chain = (typeof SUPPORTED_CHAINS)[number];
7730
12196
  export type ChainFaucet = (typeof SUPPORTED_CHAINS_FAUCET)[number];
12197
+ export type ChainContractQuery = (typeof SUPPORTED_CONTRACT_QUERY_CHAINS)[number];
7731
12198
  export declare function extractChain<const chains extends Chain[], chain extends chains[number], chainId extends chain['id']>({ id, }: {
7732
12199
  id: chainId;
7733
12200
  }): Extract<chain, {
@@ -7738,6 +12205,20 @@ export declare function extractChainFaucet<const chains extends ChainFaucet[], c
7738
12205
  }): Extract<chain, {
7739
12206
  id: chainId;
7740
12207
  }>;
12208
+ export declare function extractChainQueryContract<const chains extends ChainContractQuery[], chain extends chains[number], chainId extends chain['id']>({ id }: {
12209
+ id: chainId;
12210
+ }): Extract<chain, {
12211
+ id: chainId;
12212
+ }>;
12213
+ /**
12214
+ * Returns the blockchain for Circle Signing API based on the chain.
12215
+ * @see https://developers.circle.com/api-reference/wallets/developer-controlled-wallets/sign-transaction
12216
+ *
12217
+ * @param chain - The chain to get the blockchain for signing.
12218
+ * @returns The blockchain for signing.
12219
+ */
12220
+ export declare function getBlockchainForSigning(chain: Chain): Blockchain | never;
7741
12221
  export * from './actions/index.js';
7742
12222
  export * from './transports/index.js';
12223
+ export * from './utils/index.js';
7743
12224
  export { FEE_LEVEL_WITH_PREPARE } from './actions/index.js';