@b3dotfun/sdk 0.0.1-alpha.1

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 (1270) hide show
  1. package/README.md +345 -0
  2. package/constants/chains/b3Chain.js +2 -0
  3. package/dist/cjs/anyspend/abis/abi-usdc-base.d.ts +1074 -0
  4. package/dist/cjs/anyspend/abis/abi-usdc-base.js +602 -0
  5. package/dist/cjs/anyspend/abis/erc20-staking.d.ts +540 -0
  6. package/dist/cjs/anyspend/abis/erc20-staking.js +301 -0
  7. package/dist/cjs/anyspend/constants/index.d.ts +28 -0
  8. package/dist/cjs/anyspend/constants/index.js +72 -0
  9. package/dist/cjs/anyspend/index.d.ts +13 -0
  10. package/dist/cjs/anyspend/index.js +35 -0
  11. package/dist/cjs/anyspend/react/components/AnySpend.d.ts +22 -0
  12. package/dist/cjs/anyspend/react/components/AnySpend.js +700 -0
  13. package/dist/cjs/anyspend/react/components/AnySpendBuySpin.d.ts +9 -0
  14. package/dist/cjs/anyspend/react/components/AnySpendBuySpin.js +333 -0
  15. package/dist/cjs/anyspend/react/components/AnySpendCustom.d.ts +22 -0
  16. package/dist/cjs/anyspend/react/components/AnySpendCustom.js +399 -0
  17. package/dist/cjs/anyspend/react/components/AnySpendNFT.d.ts +8 -0
  18. package/dist/cjs/anyspend/react/components/AnySpendNFT.js +31 -0
  19. package/dist/cjs/anyspend/react/components/AnySpendNFTButton.d.ts +7 -0
  20. package/dist/cjs/anyspend/react/components/AnySpendNFTButton.js +19 -0
  21. package/dist/cjs/anyspend/react/components/AnySpendStakeB3.d.ts +8 -0
  22. package/dist/cjs/anyspend/react/components/AnySpendStakeB3.js +269 -0
  23. package/dist/cjs/anyspend/react/components/AnySpendTournament.d.ts +27 -0
  24. package/dist/cjs/anyspend/react/components/AnySpendTournament.js +21 -0
  25. package/dist/cjs/anyspend/react/components/common/ChainTokenIcon.d.ts +5 -0
  26. package/dist/cjs/anyspend/react/components/common/ChainTokenIcon.js +7 -0
  27. package/dist/cjs/anyspend/react/components/common/HowItWorks.d.ts +10 -0
  28. package/dist/cjs/anyspend/react/components/common/HowItWorks.js +7 -0
  29. package/dist/cjs/anyspend/react/components/common/OrderDetails.d.ts +14 -0
  30. package/dist/cjs/anyspend/react/components/common/OrderDetails.js +391 -0
  31. package/dist/cjs/anyspend/react/components/common/OrderHistory.d.ts +7 -0
  32. package/dist/cjs/anyspend/react/components/common/OrderHistory.js +24 -0
  33. package/dist/cjs/anyspend/react/components/common/OrderHistoryItem.d.ts +8 -0
  34. package/dist/cjs/anyspend/react/components/common/OrderHistoryItem.js +38 -0
  35. package/dist/cjs/anyspend/react/components/common/OrderStatus.d.ts +4 -0
  36. package/dist/cjs/anyspend/react/components/common/OrderStatus.js +14 -0
  37. package/dist/cjs/anyspend/react/components/common/OrderToken.d.ts +11 -0
  38. package/dist/cjs/anyspend/react/components/common/OrderToken.js +59 -0
  39. package/dist/cjs/anyspend/react/components/common/OrderTokenAmount.d.ts +18 -0
  40. package/dist/cjs/anyspend/react/components/common/OrderTokenAmount.js +50 -0
  41. package/dist/cjs/anyspend/react/components/common/PanelOnramp.d.ts +4 -0
  42. package/dist/cjs/anyspend/react/components/common/PanelOnramp.js +46 -0
  43. package/dist/cjs/anyspend/react/components/common/PanelOnrampPayment.d.ts +29 -0
  44. package/dist/cjs/anyspend/react/components/common/PanelOnrampPayment.js +124 -0
  45. package/dist/cjs/anyspend/react/components/common/PaymentMethodIcons.d.ts +1 -0
  46. package/dist/cjs/anyspend/react/components/common/PaymentMethodIcons.js +15 -0
  47. package/dist/cjs/anyspend/react/components/common/PaymentOneClick.d.ts +7 -0
  48. package/dist/cjs/anyspend/react/components/common/PaymentOneClick.js +27 -0
  49. package/dist/cjs/anyspend/react/components/common/PaymentOptions.d.ts +1 -0
  50. package/dist/cjs/anyspend/react/components/common/PaymentOptions.js +7 -0
  51. package/dist/cjs/anyspend/react/components/common/PaymentStripeWeb2.d.ts +8 -0
  52. package/dist/cjs/anyspend/react/components/common/PaymentStripeWeb2.js +153 -0
  53. package/dist/cjs/anyspend/react/components/common/PaymentVendorUI.d.ts +8 -0
  54. package/dist/cjs/anyspend/react/components/common/PaymentVendorUI.js +23 -0
  55. package/dist/cjs/anyspend/react/components/common/TokenBalance.d.ts +6 -0
  56. package/dist/cjs/anyspend/react/components/common/TokenBalance.js +21 -0
  57. package/dist/cjs/anyspend/react/components/icons/EthIcon.d.ts +3 -0
  58. package/dist/cjs/anyspend/react/components/icons/EthIcon.js +7 -0
  59. package/dist/cjs/anyspend/react/components/icons/SolIcon.d.ts +3 -0
  60. package/dist/cjs/anyspend/react/components/icons/SolIcon.js +7 -0
  61. package/dist/cjs/anyspend/react/components/icons/USDCIcon.d.ts +3 -0
  62. package/dist/cjs/anyspend/react/components/icons/USDCIcon.js +7 -0
  63. package/dist/cjs/anyspend/react/components/modals/EnterRecipientModal.d.ts +6 -0
  64. package/dist/cjs/anyspend/react/components/modals/EnterRecipientModal.js +21 -0
  65. package/dist/cjs/anyspend/react/hooks/index.d.ts +13 -0
  66. package/dist/cjs/anyspend/react/hooks/index.js +29 -0
  67. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +39 -0
  68. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +83 -0
  69. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +34 -0
  70. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.js +68 -0
  71. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +706 -0
  72. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +37 -0
  73. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +634 -0
  74. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.js +20 -0
  75. package/dist/cjs/anyspend/react/hooks/useAnyspendQuote.d.ts +23 -0
  76. package/dist/cjs/anyspend/react/hooks/useAnyspendQuote.js +52 -0
  77. package/dist/cjs/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +16 -0
  78. package/dist/cjs/anyspend/react/hooks/useAnyspendSendPermitData.js +39 -0
  79. package/dist/cjs/anyspend/react/hooks/useAnyspendTokens.d.ts +23 -0
  80. package/dist/cjs/anyspend/react/hooks/useAnyspendTokens.js +18 -0
  81. package/dist/cjs/anyspend/react/hooks/useCoinbaseOnrampOptions.d.ts +48 -0
  82. package/dist/cjs/anyspend/react/hooks/useCoinbaseOnrampOptions.js +19 -0
  83. package/dist/cjs/anyspend/react/hooks/useGeoOnrampOptions.d.ts +40 -0
  84. package/dist/cjs/anyspend/react/hooks/useGeoOnrampOptions.js +53 -0
  85. package/dist/cjs/anyspend/react/hooks/useGetGeo.d.ts +16 -0
  86. package/dist/cjs/anyspend/react/hooks/useGetGeo.js +15 -0
  87. package/dist/cjs/anyspend/react/hooks/usePermitData.d.ts +92 -0
  88. package/dist/cjs/anyspend/react/hooks/usePermitData.js +158 -0
  89. package/dist/cjs/anyspend/react/hooks/useStripeClientSecret.d.ts +6 -0
  90. package/dist/cjs/anyspend/react/hooks/useStripeClientSecret.js +18 -0
  91. package/dist/cjs/anyspend/react/hooks/useStripeSupport.d.ts +10 -0
  92. package/dist/cjs/anyspend/react/hooks/useStripeSupport.js +20 -0
  93. package/dist/cjs/anyspend/react/providers/AnyspendProvider.d.ts +27 -0
  94. package/dist/cjs/anyspend/react/providers/AnyspendProvider.js +42 -0
  95. package/dist/cjs/anyspend/services/anyspend.d.ts +372 -0
  96. package/dist/cjs/anyspend/services/anyspend.js +126 -0
  97. package/dist/cjs/anyspend/types/chain.d.ts +26 -0
  98. package/dist/cjs/anyspend/types/chain.js +8 -0
  99. package/dist/cjs/anyspend/types/custom.d.ts +130 -0
  100. package/dist/cjs/anyspend/types/custom.js +19 -0
  101. package/dist/cjs/anyspend/types/globalWallet.d.ts +18 -0
  102. package/dist/cjs/anyspend/types/globalWallet.js +10 -0
  103. package/dist/cjs/anyspend/types/index.d.ts +13 -0
  104. package/dist/cjs/anyspend/types/index.js +29 -0
  105. package/dist/cjs/anyspend/types/nft.d.ts +267 -0
  106. package/dist/cjs/anyspend/types/nft.js +36 -0
  107. package/dist/cjs/anyspend/types/onramp.d.ts +25 -0
  108. package/dist/cjs/anyspend/types/onramp.js +17 -0
  109. package/dist/cjs/anyspend/types/order.d.ts +1771 -0
  110. package/dist/cjs/anyspend/types/order.js +85 -0
  111. package/dist/cjs/anyspend/types/permit.d.ts +21 -0
  112. package/dist/cjs/anyspend/types/permit.js +11 -0
  113. package/dist/cjs/anyspend/types/relay.d.ts +10 -0
  114. package/dist/cjs/anyspend/types/relay.js +12 -0
  115. package/dist/cjs/anyspend/types/req-res/createOrder.d.ts +4113 -0
  116. package/dist/cjs/anyspend/types/req-res/createOrder.js +60 -0
  117. package/dist/cjs/anyspend/types/req-res/getCoinbaseOnrampOptions.d.ts +120 -0
  118. package/dist/cjs/anyspend/types/req-res/getCoinbaseOnrampOptions.js +31 -0
  119. package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.d.ts +3129 -0
  120. package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.js +23 -0
  121. package/dist/cjs/anyspend/types/req-res/getOrderByCreator.d.ts +28 -0
  122. package/dist/cjs/anyspend/types/req-res/getOrderByCreator.js +11 -0
  123. package/dist/cjs/anyspend/types/req-res/getOrderHistory.d.ts +2278 -0
  124. package/dist/cjs/anyspend/types/req-res/getOrderHistory.js +11 -0
  125. package/dist/cjs/anyspend/types/req-res/getQuote.d.ts +253 -0
  126. package/dist/cjs/anyspend/types/req-res/getQuote.js +46 -0
  127. package/dist/cjs/anyspend/types/req-res/getTokenList.d.ts +63 -0
  128. package/dist/cjs/anyspend/types/req-res/getTokenList.js +18 -0
  129. package/dist/cjs/anyspend/types/req-res/index.d.ts +8 -0
  130. package/dist/cjs/anyspend/types/req-res/index.js +24 -0
  131. package/dist/cjs/anyspend/types/req-res/sendPermitData.d.ts +66 -0
  132. package/dist/cjs/anyspend/types/req-res/sendPermitData.js +11 -0
  133. package/dist/cjs/anyspend/types/req-res/stripe.d.ts +0 -0
  134. package/dist/cjs/anyspend/types/req-res/stripe.js +1 -0
  135. package/dist/cjs/anyspend/types/swap.d.ts +119 -0
  136. package/dist/cjs/anyspend/types/swap.js +13 -0
  137. package/dist/cjs/anyspend/types/token.d.ts +34 -0
  138. package/dist/cjs/anyspend/types/token.js +14 -0
  139. package/dist/cjs/anyspend/types/tournament.d.ts +174 -0
  140. package/dist/cjs/anyspend/types/tournament.js +24 -0
  141. package/dist/cjs/anyspend/types/transaction.d.ts +84 -0
  142. package/dist/cjs/anyspend/types/transaction.js +34 -0
  143. package/dist/cjs/anyspend/utils/address.d.ts +4 -0
  144. package/dist/cjs/anyspend/utils/address.js +29 -0
  145. package/dist/cjs/anyspend/utils/chain.d.ts +25 -0
  146. package/dist/cjs/anyspend/utils/chain.js +294 -0
  147. package/dist/cjs/anyspend/utils/format.d.ts +6 -0
  148. package/dist/cjs/anyspend/utils/format.js +59 -0
  149. package/dist/cjs/anyspend/utils/index.d.ts +8 -0
  150. package/dist/cjs/anyspend/utils/index.js +24 -0
  151. package/dist/cjs/anyspend/utils/json.d.ts +1 -0
  152. package/dist/cjs/anyspend/utils/json.js +6 -0
  153. package/dist/cjs/anyspend/utils/number.d.ts +13 -0
  154. package/dist/cjs/anyspend/utils/number.js +90 -0
  155. package/dist/cjs/anyspend/utils/orderPayload.d.ts +127 -0
  156. package/dist/cjs/anyspend/utils/orderPayload.js +56 -0
  157. package/dist/cjs/anyspend/utils/string.d.ts +1 -0
  158. package/dist/cjs/anyspend/utils/string.js +9 -0
  159. package/dist/cjs/anyspend/utils/token.d.ts +7 -0
  160. package/dist/cjs/anyspend/utils/token.js +73 -0
  161. package/dist/cjs/generated/chain-networks.json +483 -0
  162. package/dist/cjs/global-account/app.d.ts +4 -0
  163. package/dist/cjs/global-account/app.js +65 -0
  164. package/dist/cjs/global-account/app.native.d.ts +5 -0
  165. package/dist/cjs/global-account/app.native.js +90 -0
  166. package/dist/cjs/global-account/bsmnt.d.ts +4 -0
  167. package/dist/cjs/global-account/bsmnt.js +69 -0
  168. package/dist/cjs/global-account/bsmnt.native.d.ts +5 -0
  169. package/dist/cjs/global-account/bsmnt.native.js +93 -0
  170. package/dist/cjs/global-account/index.d.ts +9 -0
  171. package/dist/cjs/global-account/index.js +27 -0
  172. package/dist/cjs/global-account/index.native.d.ts +3 -0
  173. package/dist/cjs/global-account/index.native.js +18 -0
  174. package/dist/cjs/global-account/react/components/AccountAssets/AccountAssets.d.ts +7 -0
  175. package/dist/cjs/global-account/react/components/AccountAssets/AccountAssets.js +13 -0
  176. package/dist/cjs/global-account/react/components/B3DynamicModal.d.ts +1 -0
  177. package/dist/cjs/global-account/react/components/B3DynamicModal.js +92 -0
  178. package/dist/cjs/global-account/react/components/B3Provider.d.ts +53 -0
  179. package/dist/cjs/global-account/react/components/B3Provider.js +118 -0
  180. package/dist/cjs/global-account/react/components/B3Provider.native.d.ts +46 -0
  181. package/dist/cjs/global-account/react/components/B3Provider.native.js +76 -0
  182. package/dist/cjs/global-account/react/components/ManageAccount/ManageAccount.d.ts +11 -0
  183. package/dist/cjs/global-account/react/components/ManageAccount/ManageAccount.js +85 -0
  184. package/dist/cjs/global-account/react/components/MintButton/MintButton.d.ts +17 -0
  185. package/dist/cjs/global-account/react/components/MintButton/MintButton.js +51 -0
  186. package/dist/cjs/global-account/react/components/ProfileAvatar.d.ts +0 -0
  187. package/dist/cjs/global-account/react/components/ProfileAvatar.js +127 -0
  188. package/dist/cjs/global-account/react/components/RelayKitProviderWrapper.d.ts +4 -0
  189. package/dist/cjs/global-account/react/components/RelayKitProviderWrapper.js +29 -0
  190. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +6 -0
  191. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissions.js +83 -0
  192. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +11 -0
  193. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissionsButton.js +26 -0
  194. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +10 -0
  195. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3.js +45 -0
  196. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +6 -0
  197. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +203 -0
  198. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Privy.d.ts +11 -0
  199. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +51 -0
  200. package/dist/cjs/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +5 -0
  201. package/dist/cjs/global-account/react/components/SignInWithB3/components/AuthButton.js +9 -0
  202. package/dist/cjs/global-account/react/components/SignInWithB3/components/PermissionItem.d.ts +10 -0
  203. package/dist/cjs/global-account/react/components/SignInWithB3/components/PermissionItem.js +8 -0
  204. package/dist/cjs/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +6 -0
  205. package/dist/cjs/global-account/react/components/SignInWithB3/components/WalletRow.js +9 -0
  206. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStep.d.ts +24 -0
  207. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStep.js +89 -0
  208. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +14 -0
  209. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +76 -0
  210. package/dist/cjs/global-account/react/components/SignInWithB3/utils/signInUtils.d.ts +17 -0
  211. package/dist/cjs/global-account/react/components/SignInWithB3/utils/signInUtils.js +56 -0
  212. package/dist/cjs/global-account/react/components/StyleRoot.d.ts +4 -0
  213. package/dist/cjs/global-account/react/components/StyleRoot.js +10 -0
  214. package/dist/cjs/global-account/react/components/Transak/TransakModal.d.ts +1 -0
  215. package/dist/cjs/global-account/react/components/Transak/TransakModal.js +113 -0
  216. package/dist/cjs/global-account/react/components/custom/Button.d.ts +12 -0
  217. package/dist/cjs/global-account/react/components/custom/Button.js +36 -0
  218. package/dist/cjs/global-account/react/components/custom/ClientOnly.d.ts +7 -0
  219. package/dist/cjs/global-account/react/components/custom/ClientOnly.js +13 -0
  220. package/dist/cjs/global-account/react/components/custom/CopyToClipboard.d.ts +7 -0
  221. package/dist/cjs/global-account/react/components/custom/CopyToClipboard.js +21 -0
  222. package/dist/cjs/global-account/react/components/custom/StaggeredFadeLoader.d.ts +4 -0
  223. package/dist/cjs/global-account/react/components/custom/StaggeredFadeLoader.js +24 -0
  224. package/dist/cjs/global-account/react/components/custom/WalletConnectorIcon.d.ts +4 -0
  225. package/dist/cjs/global-account/react/components/custom/WalletConnectorIcon.js +27 -0
  226. package/dist/cjs/global-account/react/components/magicui/AnimatedLottie.d.ts +13 -0
  227. package/dist/cjs/global-account/react/components/magicui/AnimatedLottie.js +93 -0
  228. package/dist/cjs/global-account/react/components/ui/Loading.d.ts +7 -0
  229. package/dist/cjs/global-account/react/components/ui/Loading.js +18 -0
  230. package/dist/cjs/global-account/react/components/ui/ShinyButton.d.ts +14 -0
  231. package/dist/cjs/global-account/react/components/ui/ShinyButton.js +29 -0
  232. package/dist/cjs/global-account/react/components/ui/TabSystem.d.ts +30 -0
  233. package/dist/cjs/global-account/react/components/ui/TabSystem.js +86 -0
  234. package/dist/cjs/global-account/react/components/ui/Tabs.d.ts +9 -0
  235. package/dist/cjs/global-account/react/components/ui/Tabs.js +53 -0
  236. package/dist/cjs/global-account/react/components/ui/badge.d.ts +9 -0
  237. package/dist/cjs/global-account/react/components/ui/badge.js +24 -0
  238. package/dist/cjs/global-account/react/components/ui/button.d.ts +11 -0
  239. package/dist/cjs/global-account/react/components/ui/button.js +72 -0
  240. package/dist/cjs/global-account/react/components/ui/command.d.ts +82 -0
  241. package/dist/cjs/global-account/react/components/ui/command.js +74 -0
  242. package/dist/cjs/global-account/react/components/ui/dialog.d.ts +30 -0
  243. package/dist/cjs/global-account/react/components/ui/dialog.js +71 -0
  244. package/dist/cjs/global-account/react/components/ui/drawer.d.ts +22 -0
  245. package/dist/cjs/global-account/react/components/ui/drawer.js +71 -0
  246. package/dist/cjs/global-account/react/components/ui/glare-card-rounded.d.ts +4 -0
  247. package/dist/cjs/global-account/react/components/ui/glare-card-rounded.js +146 -0
  248. package/dist/cjs/global-account/react/components/ui/glare-card.d.ts +4 -0
  249. package/dist/cjs/global-account/react/components/ui/glare-card.js +108 -0
  250. package/dist/cjs/global-account/react/components/ui/input.d.ts +5 -0
  251. package/dist/cjs/global-account/react/components/ui/input.js +46 -0
  252. package/dist/cjs/global-account/react/components/ui/popover.d.ts +6 -0
  253. package/dist/cjs/global-account/react/components/ui/popover.js +52 -0
  254. package/dist/cjs/global-account/react/components/ui/scroll-area.d.ts +5 -0
  255. package/dist/cjs/global-account/react/components/ui/scroll-area.js +47 -0
  256. package/dist/cjs/global-account/react/components/ui/skeleton.d.ts +2 -0
  257. package/dist/cjs/global-account/react/components/ui/skeleton.js +8 -0
  258. package/dist/cjs/global-account/react/components/ui/text-loop.d.ts +11 -0
  259. package/dist/cjs/global-account/react/components/ui/text-loop.js +29 -0
  260. package/dist/cjs/global-account/react/components/ui/text-shimmer.d.ts +10 -0
  261. package/dist/cjs/global-account/react/components/ui/text-shimmer.js +22 -0
  262. package/dist/cjs/global-account/react/components/ui/tooltip.d.ts +7 -0
  263. package/dist/cjs/global-account/react/components/ui/tooltip.js +50 -0
  264. package/dist/cjs/global-account/react/components/ui/transition-panel.d.ts +14 -0
  265. package/dist/cjs/global-account/react/components/ui/transition-panel.js +10 -0
  266. package/dist/cjs/global-account/react/hooks/useAccountAssets.d.ts +3 -0
  267. package/dist/cjs/global-account/react/hooks/useAccountAssets.js +35 -0
  268. package/dist/cjs/global-account/react/hooks/useAccountWallet.d.ts +18 -0
  269. package/dist/cjs/global-account/react/hooks/useAccountWallet.js +70 -0
  270. package/dist/cjs/global-account/react/hooks/useAddTWSessionKey.d.ts +21 -0
  271. package/dist/cjs/global-account/react/hooks/useAddTWSessionKey.js +56 -0
  272. package/dist/cjs/global-account/react/hooks/useAuthentication.d.ts +10 -0
  273. package/dist/cjs/global-account/react/hooks/useAuthentication.js +123 -0
  274. package/dist/cjs/global-account/react/hooks/useB3BalanceFromAddresses.d.ts +15 -0
  275. package/dist/cjs/global-account/react/hooks/useB3BalanceFromAddresses.js +70 -0
  276. package/dist/cjs/global-account/react/hooks/useBestTransactionPath.d.ts +41 -0
  277. package/dist/cjs/global-account/react/hooks/useBestTransactionPath.js +150 -0
  278. package/dist/cjs/global-account/react/hooks/useBsmntProfile.d.ts +4 -0
  279. package/dist/cjs/global-account/react/hooks/useBsmntProfile.js +13 -0
  280. package/dist/cjs/global-account/react/hooks/useChainSwitchWithAction.d.ts +5 -0
  281. package/dist/cjs/global-account/react/hooks/useChainSwitchWithAction.js +73 -0
  282. package/dist/cjs/global-account/react/hooks/useClaim.d.ts +16 -0
  283. package/dist/cjs/global-account/react/hooks/useClaim.js +50 -0
  284. package/dist/cjs/global-account/react/hooks/useConnect.d.ts +9 -0
  285. package/dist/cjs/global-account/react/hooks/useConnect.js +52 -0
  286. package/dist/cjs/global-account/react/hooks/useExchangeRate.d.ts +12 -0
  287. package/dist/cjs/global-account/react/hooks/useExchangeRate.js +30 -0
  288. package/dist/cjs/global-account/react/hooks/useGetAllTWSigners.d.ts +30 -0
  289. package/dist/cjs/global-account/react/hooks/useGetAllTWSigners.js +77 -0
  290. package/dist/cjs/global-account/react/hooks/useGetGeo.d.ts +17 -0
  291. package/dist/cjs/global-account/react/hooks/useGetGeo.js +20 -0
  292. package/dist/cjs/global-account/react/hooks/useHandleConnectWithPrivy.d.ts +11 -0
  293. package/dist/cjs/global-account/react/hooks/useHandleConnectWithPrivy.js +69 -0
  294. package/dist/cjs/global-account/react/hooks/useHasMounted.d.ts +1 -0
  295. package/dist/cjs/global-account/react/hooks/useHasMounted.js +11 -0
  296. package/dist/cjs/global-account/react/hooks/useIsMobile.d.ts +2 -0
  297. package/dist/cjs/global-account/react/hooks/useIsMobile.js +8 -0
  298. package/dist/cjs/global-account/react/hooks/useIsomorphicLayoutEffect.d.ts +2 -0
  299. package/dist/cjs/global-account/react/hooks/useIsomorphicLayoutEffect.js +5 -0
  300. package/dist/cjs/global-account/react/hooks/useMediaQuery.d.ts +6 -0
  301. package/dist/cjs/global-account/react/hooks/useMediaQuery.js +47 -0
  302. package/dist/cjs/global-account/react/hooks/useNativeBalance.d.ts +22 -0
  303. package/dist/cjs/global-account/react/hooks/useNativeBalance.js +76 -0
  304. package/dist/cjs/global-account/react/hooks/useOnchainName.d.ts +19 -0
  305. package/dist/cjs/global-account/react/hooks/useOnchainName.js +193 -0
  306. package/dist/cjs/global-account/react/hooks/useOneBalance.d.ts +26 -0
  307. package/dist/cjs/global-account/react/hooks/useOneBalance.js +69 -0
  308. package/dist/cjs/global-account/react/hooks/useQueryB3.d.ts +25 -0
  309. package/dist/cjs/global-account/react/hooks/useQueryB3.js +40 -0
  310. package/dist/cjs/global-account/react/hooks/useQueryBSMNT.d.ts +25 -0
  311. package/dist/cjs/global-account/react/hooks/useQueryBSMNT.js +40 -0
  312. package/dist/cjs/global-account/react/hooks/useRemoveSessionKey.d.ts +16 -0
  313. package/dist/cjs/global-account/react/hooks/useRemoveSessionKey.js +49 -0
  314. package/dist/cjs/global-account/react/hooks/useRouter.d.ts +14 -0
  315. package/dist/cjs/global-account/react/hooks/useRouter.js +78 -0
  316. package/dist/cjs/global-account/react/hooks/useSearchParamsSSR.d.ts +2 -0
  317. package/dist/cjs/global-account/react/hooks/useSearchParamsSSR.js +31 -0
  318. package/dist/cjs/global-account/react/hooks/useSiwe.d.ts +4 -0
  319. package/dist/cjs/global-account/react/hooks/useSiwe.js +38 -0
  320. package/dist/cjs/global-account/react/hooks/useTokenBalance.d.ts +12 -0
  321. package/dist/cjs/global-account/react/hooks/useTokenBalance.js +64 -0
  322. package/dist/cjs/global-account/react/hooks/useTokenBalancesByChain.d.ts +22 -0
  323. package/dist/cjs/global-account/react/hooks/useTokenBalancesByChain.js +58 -0
  324. package/dist/cjs/global-account/react/hooks/useTokenData.d.ts +9 -0
  325. package/dist/cjs/global-account/react/hooks/useTokenData.js +47 -0
  326. package/dist/cjs/global-account/react/hooks/useTokenFromUrl.d.ts +17 -0
  327. package/dist/cjs/global-account/react/hooks/useTokenFromUrl.js +30 -0
  328. package/dist/cjs/global-account/react/hooks/useTokenPrice.d.ts +17 -0
  329. package/dist/cjs/global-account/react/hooks/useTokenPrice.js +48 -0
  330. package/dist/cjs/global-account/react/hooks/useTokenPriceWithFallback.d.ts +15 -0
  331. package/dist/cjs/global-account/react/hooks/useTokenPriceWithFallback.js +34 -0
  332. package/dist/cjs/global-account/react/hooks/useTokensFromAddress.d.ts +54 -0
  333. package/dist/cjs/global-account/react/hooks/useTokensFromAddress.js +51 -0
  334. package/dist/cjs/global-account/react/hooks/useURLParams.d.ts +8 -0
  335. package/dist/cjs/global-account/react/hooks/useURLParams.js +38 -0
  336. package/dist/cjs/global-account/react/stores/useAuthStore.d.ts +26 -0
  337. package/dist/cjs/global-account/react/stores/useAuthStore.js +39 -0
  338. package/dist/cjs/global-account/react/stores/useModalStore.d.ts +267 -0
  339. package/dist/cjs/global-account/react/stores/useModalStore.js +36 -0
  340. package/dist/cjs/global-account/server.d.ts +8 -0
  341. package/dist/cjs/global-account/server.js +26 -0
  342. package/dist/cjs/global-account/types/b3-api.d.ts +3 -0
  343. package/dist/cjs/global-account/types/b3-api.js +41 -0
  344. package/dist/cjs/global-account/types/b3-api.types.d.ts +51 -0
  345. package/dist/cjs/global-account/types/b3-api.types.js +4 -0
  346. package/dist/cjs/global-account/types/chain-networks.d.ts +44 -0
  347. package/dist/cjs/global-account/types/chain-networks.js +48 -0
  348. package/dist/cjs/global-account/types/feature-flags.d.ts +8 -0
  349. package/dist/cjs/global-account/types/feature-flags.js +10 -0
  350. package/dist/cjs/global-account/types/permissions.d.ts +21 -0
  351. package/dist/cjs/global-account/types/permissions.js +2 -0
  352. package/dist/cjs/global-account/types/reservoir.types.d.ts +89 -0
  353. package/dist/cjs/global-account/types/reservoir.types.js +2 -0
  354. package/dist/cjs/global-account/types/simplehash.types.d.ts +292 -0
  355. package/dist/cjs/global-account/types/simplehash.types.js +2 -0
  356. package/dist/cjs/global-account/types.d.ts +19 -0
  357. package/dist/cjs/global-account/types.js +2 -0
  358. package/dist/cjs/shared/constants/chains/b3Chain.d.ts +144 -0
  359. package/dist/cjs/shared/constants/chains/b3Chain.js +167 -0
  360. package/dist/cjs/shared/constants/chains/chainPlatformMap.d.ts +24 -0
  361. package/dist/cjs/shared/constants/chains/chainPlatformMap.js +47 -0
  362. package/dist/cjs/shared/constants/chains/supported.d.ts +53 -0
  363. package/dist/cjs/shared/constants/chains/supported.js +31 -0
  364. package/dist/cjs/shared/constants/index.d.ts +15 -0
  365. package/dist/cjs/shared/constants/index.js +21 -0
  366. package/dist/cjs/shared/thirdweb/generated/@tanstack/react-query.gen.d.ts +11494 -0
  367. package/dist/cjs/shared/thirdweb/generated/@tanstack/react-query.gen.js +1355 -0
  368. package/dist/cjs/shared/thirdweb/generated/client.gen.d.ts +12 -0
  369. package/dist/cjs/shared/thirdweb/generated/client.gen.js +6 -0
  370. package/dist/cjs/shared/thirdweb/generated/index.d.ts +2 -0
  371. package/dist/cjs/shared/thirdweb/generated/index.js +19 -0
  372. package/dist/cjs/shared/thirdweb/generated/sdk.gen.d.ts +1448 -0
  373. package/dist/cjs/shared/thirdweb/generated/sdk.gen.js +1037 -0
  374. package/dist/cjs/shared/thirdweb/generated/types.gen.d.ts +4159 -0
  375. package/dist/cjs/shared/thirdweb/generated/types.gen.js +3 -0
  376. package/dist/cjs/shared/thirdweb/initiateClient.d.ts +1 -0
  377. package/dist/cjs/shared/thirdweb/initiateClient.js +27 -0
  378. package/dist/cjs/shared/thirdweb/openapi-ts.config.d.ts +2 -0
  379. package/dist/cjs/shared/thirdweb/openapi-ts.config.js +8 -0
  380. package/dist/cjs/shared/utils/b3Ens.d.ts +5 -0
  381. package/dist/cjs/shared/utils/b3Ens.js +27 -0
  382. package/dist/cjs/shared/utils/centerTruncate.d.ts +1 -0
  383. package/dist/cjs/shared/utils/centerTruncate.js +14 -0
  384. package/dist/cjs/shared/utils/chain-transformers.d.ts +5 -0
  385. package/dist/cjs/shared/utils/chain-transformers.js +50 -0
  386. package/dist/cjs/shared/utils/chains.d.ts +6 -0
  387. package/dist/cjs/shared/utils/chains.js +38 -0
  388. package/dist/cjs/shared/utils/cn.d.ts +2 -0
  389. package/dist/cjs/shared/utils/cn.js +8 -0
  390. package/dist/cjs/shared/utils/colors.d.ts +2 -0
  391. package/dist/cjs/shared/utils/colors.js +33 -0
  392. package/dist/cjs/shared/utils/cookies.d.ts +3 -0
  393. package/dist/cjs/shared/utils/cookies.js +17 -0
  394. package/dist/cjs/shared/utils/debug.d.ts +4 -0
  395. package/dist/cjs/shared/utils/debug.js +20 -0
  396. package/dist/cjs/shared/utils/fetchBalances.d.ts +16 -0
  397. package/dist/cjs/shared/utils/fetchBalances.js +64 -0
  398. package/dist/cjs/shared/utils/fetchBsmntProfile.d.ts +1 -0
  399. package/dist/cjs/shared/utils/fetchBsmntProfile.js +26 -0
  400. package/dist/cjs/shared/utils/formatAddress.d.ts +2 -0
  401. package/dist/cjs/shared/utils/formatAddress.js +19 -0
  402. package/dist/cjs/shared/utils/formatNumber.d.ts +7 -0
  403. package/dist/cjs/shared/utils/formatNumber.js +49 -0
  404. package/dist/cjs/shared/utils/index.d.ts +2 -0
  405. package/dist/cjs/shared/utils/index.js +23 -0
  406. package/dist/cjs/shared/utils/insights.d.ts +7 -0
  407. package/dist/cjs/shared/utils/insights.js +388 -0
  408. package/dist/cjs/shared/utils/ipfs.d.ts +12 -0
  409. package/dist/cjs/shared/utils/ipfs.js +32 -0
  410. package/dist/cjs/shared/utils/number.d.ts +11 -0
  411. package/dist/cjs/shared/utils/number.js +110 -0
  412. package/dist/cjs/shared/utils/payment.utils.d.ts +5 -0
  413. package/dist/cjs/shared/utils/payment.utils.js +36 -0
  414. package/dist/cjs/shared/utils/simplehash.d.ts +12 -0
  415. package/dist/cjs/shared/utils/simplehash.js +308 -0
  416. package/dist/cjs/shared/utils/sprinter.d.ts +1 -0
  417. package/dist/cjs/shared/utils/sprinter.js +15 -0
  418. package/dist/cjs/shared/utils/thirdweb-insights.d.ts +105 -0
  419. package/dist/cjs/shared/utils/thirdweb-insights.js +200 -0
  420. package/dist/cjs/shared/utils/thirdweb.d.ts +1 -0
  421. package/dist/cjs/shared/utils/thirdweb.js +11 -0
  422. package/dist/cjs/styles/index.d.ts +20 -0
  423. package/dist/cjs/styles/index.js +22 -0
  424. package/dist/esm/anyspend/abis/abi-usdc-base.d.ts +1074 -0
  425. package/dist/esm/anyspend/abis/abi-usdc-base.js +599 -0
  426. package/dist/esm/anyspend/abis/erc20-staking.d.ts +540 -0
  427. package/dist/esm/anyspend/abis/erc20-staking.js +298 -0
  428. package/dist/esm/anyspend/constants/index.d.ts +28 -0
  429. package/dist/esm/anyspend/constants/index.js +69 -0
  430. package/dist/esm/anyspend/index.d.ts +13 -0
  431. package/dist/esm/anyspend/index.js +19 -0
  432. package/dist/esm/anyspend/react/components/AnySpend.d.ts +22 -0
  433. package/dist/esm/anyspend/react/components/AnySpend.js +693 -0
  434. package/dist/esm/anyspend/react/components/AnySpendBuySpin.d.ts +9 -0
  435. package/dist/esm/anyspend/react/components/AnySpendBuySpin.js +327 -0
  436. package/dist/esm/anyspend/react/components/AnySpendCustom.d.ts +22 -0
  437. package/dist/esm/anyspend/react/components/AnySpendCustom.js +393 -0
  438. package/dist/esm/anyspend/react/components/AnySpendNFT.d.ts +8 -0
  439. package/dist/esm/anyspend/react/components/AnySpendNFT.js +25 -0
  440. package/dist/esm/anyspend/react/components/AnySpendNFTButton.d.ts +7 -0
  441. package/dist/esm/anyspend/react/components/AnySpendNFTButton.js +16 -0
  442. package/dist/esm/anyspend/react/components/AnySpendStakeB3.d.ts +8 -0
  443. package/dist/esm/anyspend/react/components/AnySpendStakeB3.js +263 -0
  444. package/dist/esm/anyspend/react/components/AnySpendTournament.d.ts +27 -0
  445. package/dist/esm/anyspend/react/components/AnySpendTournament.js +15 -0
  446. package/dist/esm/anyspend/react/components/common/ChainTokenIcon.d.ts +5 -0
  447. package/dist/esm/anyspend/react/components/common/ChainTokenIcon.js +4 -0
  448. package/dist/esm/anyspend/react/components/common/HowItWorks.d.ts +10 -0
  449. package/dist/esm/anyspend/react/components/common/HowItWorks.js +4 -0
  450. package/dist/esm/anyspend/react/components/common/OrderDetails.d.ts +14 -0
  451. package/dist/esm/anyspend/react/components/common/OrderDetails.js +385 -0
  452. package/dist/esm/anyspend/react/components/common/OrderHistory.d.ts +7 -0
  453. package/dist/esm/anyspend/react/components/common/OrderHistory.js +18 -0
  454. package/dist/esm/anyspend/react/components/common/OrderHistoryItem.d.ts +8 -0
  455. package/dist/esm/anyspend/react/components/common/OrderHistoryItem.js +32 -0
  456. package/dist/esm/anyspend/react/components/common/OrderStatus.d.ts +4 -0
  457. package/dist/esm/anyspend/react/components/common/OrderStatus.js +11 -0
  458. package/dist/esm/anyspend/react/components/common/OrderToken.d.ts +11 -0
  459. package/dist/esm/anyspend/react/components/common/OrderToken.js +56 -0
  460. package/dist/esm/anyspend/react/components/common/OrderTokenAmount.d.ts +18 -0
  461. package/dist/esm/anyspend/react/components/common/OrderTokenAmount.js +47 -0
  462. package/dist/esm/anyspend/react/components/common/PanelOnramp.d.ts +4 -0
  463. package/dist/esm/anyspend/react/components/common/PanelOnramp.js +40 -0
  464. package/dist/esm/anyspend/react/components/common/PanelOnrampPayment.d.ts +29 -0
  465. package/dist/esm/anyspend/react/components/common/PanelOnrampPayment.js +118 -0
  466. package/dist/esm/anyspend/react/components/common/PaymentMethodIcons.d.ts +1 -0
  467. package/dist/esm/anyspend/react/components/common/PaymentMethodIcons.js +12 -0
  468. package/dist/esm/anyspend/react/components/common/PaymentOneClick.d.ts +7 -0
  469. package/dist/esm/anyspend/react/components/common/PaymentOneClick.js +21 -0
  470. package/dist/esm/anyspend/react/components/common/PaymentOptions.d.ts +1 -0
  471. package/dist/esm/anyspend/react/components/common/PaymentOptions.js +4 -0
  472. package/dist/esm/anyspend/react/components/common/PaymentStripeWeb2.d.ts +8 -0
  473. package/dist/esm/anyspend/react/components/common/PaymentStripeWeb2.js +147 -0
  474. package/dist/esm/anyspend/react/components/common/PaymentVendorUI.d.ts +8 -0
  475. package/dist/esm/anyspend/react/components/common/PaymentVendorUI.js +17 -0
  476. package/dist/esm/anyspend/react/components/common/TokenBalance.d.ts +6 -0
  477. package/dist/esm/anyspend/react/components/common/TokenBalance.js +18 -0
  478. package/dist/esm/anyspend/react/components/icons/EthIcon.d.ts +3 -0
  479. package/dist/esm/anyspend/react/components/icons/EthIcon.js +4 -0
  480. package/dist/esm/anyspend/react/components/icons/SolIcon.d.ts +3 -0
  481. package/dist/esm/anyspend/react/components/icons/SolIcon.js +4 -0
  482. package/dist/esm/anyspend/react/components/icons/USDCIcon.d.ts +3 -0
  483. package/dist/esm/anyspend/react/components/icons/USDCIcon.js +4 -0
  484. package/dist/esm/anyspend/react/components/modals/EnterRecipientModal.d.ts +6 -0
  485. package/dist/esm/anyspend/react/components/modals/EnterRecipientModal.js +15 -0
  486. package/dist/esm/anyspend/react/hooks/index.d.ts +13 -0
  487. package/dist/esm/anyspend/react/hooks/index.js +13 -0
  488. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +39 -0
  489. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +80 -0
  490. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +34 -0
  491. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.js +65 -0
  492. package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +706 -0
  493. package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +31 -0
  494. package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +634 -0
  495. package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.js +17 -0
  496. package/dist/esm/anyspend/react/hooks/useAnyspendQuote.d.ts +23 -0
  497. package/dist/esm/anyspend/react/hooks/useAnyspendQuote.js +49 -0
  498. package/dist/esm/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +16 -0
  499. package/dist/esm/anyspend/react/hooks/useAnyspendSendPermitData.js +36 -0
  500. package/dist/esm/anyspend/react/hooks/useAnyspendTokens.d.ts +23 -0
  501. package/dist/esm/anyspend/react/hooks/useAnyspendTokens.js +15 -0
  502. package/dist/esm/anyspend/react/hooks/useCoinbaseOnrampOptions.d.ts +48 -0
  503. package/dist/esm/anyspend/react/hooks/useCoinbaseOnrampOptions.js +16 -0
  504. package/dist/esm/anyspend/react/hooks/useGeoOnrampOptions.d.ts +40 -0
  505. package/dist/esm/anyspend/react/hooks/useGeoOnrampOptions.js +50 -0
  506. package/dist/esm/anyspend/react/hooks/useGetGeo.d.ts +16 -0
  507. package/dist/esm/anyspend/react/hooks/useGetGeo.js +12 -0
  508. package/dist/esm/anyspend/react/hooks/usePermitData.d.ts +92 -0
  509. package/dist/esm/anyspend/react/hooks/usePermitData.js +154 -0
  510. package/dist/esm/anyspend/react/hooks/useStripeClientSecret.d.ts +6 -0
  511. package/dist/esm/anyspend/react/hooks/useStripeClientSecret.js +15 -0
  512. package/dist/esm/anyspend/react/hooks/useStripeSupport.d.ts +10 -0
  513. package/dist/esm/anyspend/react/hooks/useStripeSupport.js +17 -0
  514. package/dist/esm/anyspend/react/providers/AnyspendProvider.d.ts +27 -0
  515. package/dist/esm/anyspend/react/providers/AnyspendProvider.js +38 -0
  516. package/dist/esm/anyspend/services/anyspend.d.ts +372 -0
  517. package/dist/esm/anyspend/services/anyspend.js +120 -0
  518. package/dist/esm/anyspend/types/chain.d.ts +26 -0
  519. package/dist/esm/anyspend/types/chain.js +5 -0
  520. package/dist/esm/anyspend/types/custom.d.ts +130 -0
  521. package/dist/esm/anyspend/types/custom.js +13 -0
  522. package/dist/esm/anyspend/types/globalWallet.d.ts +18 -0
  523. package/dist/esm/anyspend/types/globalWallet.js +7 -0
  524. package/dist/esm/anyspend/types/index.d.ts +13 -0
  525. package/dist/esm/anyspend/types/index.js +13 -0
  526. package/dist/esm/anyspend/types/nft.d.ts +267 -0
  527. package/dist/esm/anyspend/types/nft.js +33 -0
  528. package/dist/esm/anyspend/types/onramp.d.ts +25 -0
  529. package/dist/esm/anyspend/types/onramp.js +14 -0
  530. package/dist/esm/anyspend/types/order.d.ts +1771 -0
  531. package/dist/esm/anyspend/types/order.js +82 -0
  532. package/dist/esm/anyspend/types/permit.d.ts +21 -0
  533. package/dist/esm/anyspend/types/permit.js +8 -0
  534. package/dist/esm/anyspend/types/relay.d.ts +10 -0
  535. package/dist/esm/anyspend/types/relay.js +9 -0
  536. package/dist/esm/anyspend/types/req-res/createOrder.d.ts +4113 -0
  537. package/dist/esm/anyspend/types/req-res/createOrder.js +57 -0
  538. package/dist/esm/anyspend/types/req-res/getCoinbaseOnrampOptions.d.ts +120 -0
  539. package/dist/esm/anyspend/types/req-res/getCoinbaseOnrampOptions.js +28 -0
  540. package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.d.ts +3129 -0
  541. package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.js +20 -0
  542. package/dist/esm/anyspend/types/req-res/getOrderByCreator.d.ts +28 -0
  543. package/dist/esm/anyspend/types/req-res/getOrderByCreator.js +8 -0
  544. package/dist/esm/anyspend/types/req-res/getOrderHistory.d.ts +2278 -0
  545. package/dist/esm/anyspend/types/req-res/getOrderHistory.js +8 -0
  546. package/dist/esm/anyspend/types/req-res/getQuote.d.ts +253 -0
  547. package/dist/esm/anyspend/types/req-res/getQuote.js +43 -0
  548. package/dist/esm/anyspend/types/req-res/getTokenList.d.ts +63 -0
  549. package/dist/esm/anyspend/types/req-res/getTokenList.js +15 -0
  550. package/dist/esm/anyspend/types/req-res/index.d.ts +8 -0
  551. package/dist/esm/anyspend/types/req-res/index.js +8 -0
  552. package/dist/esm/anyspend/types/req-res/sendPermitData.d.ts +66 -0
  553. package/dist/esm/anyspend/types/req-res/sendPermitData.js +8 -0
  554. package/dist/esm/anyspend/types/req-res/stripe.d.ts +0 -0
  555. package/dist/esm/anyspend/types/req-res/stripe.js +1 -0
  556. package/dist/esm/anyspend/types/swap.d.ts +119 -0
  557. package/dist/esm/anyspend/types/swap.js +10 -0
  558. package/dist/esm/anyspend/types/token.d.ts +34 -0
  559. package/dist/esm/anyspend/types/token.js +11 -0
  560. package/dist/esm/anyspend/types/tournament.d.ts +174 -0
  561. package/dist/esm/anyspend/types/tournament.js +21 -0
  562. package/dist/esm/anyspend/types/transaction.d.ts +84 -0
  563. package/dist/esm/anyspend/types/transaction.js +31 -0
  564. package/dist/esm/anyspend/utils/address.d.ts +4 -0
  565. package/dist/esm/anyspend/utils/address.js +23 -0
  566. package/dist/esm/anyspend/utils/chain.d.ts +25 -0
  567. package/dist/esm/anyspend/utils/chain.js +271 -0
  568. package/dist/esm/anyspend/utils/format.d.ts +6 -0
  569. package/dist/esm/anyspend/utils/format.js +54 -0
  570. package/dist/esm/anyspend/utils/index.d.ts +8 -0
  571. package/dist/esm/anyspend/utils/index.js +8 -0
  572. package/dist/esm/anyspend/utils/json.d.ts +1 -0
  573. package/dist/esm/anyspend/utils/json.js +3 -0
  574. package/dist/esm/anyspend/utils/number.d.ts +13 -0
  575. package/dist/esm/anyspend/utils/number.js +79 -0
  576. package/dist/esm/anyspend/utils/orderPayload.d.ts +127 -0
  577. package/dist/esm/anyspend/utils/orderPayload.js +51 -0
  578. package/dist/esm/anyspend/utils/string.d.ts +1 -0
  579. package/dist/esm/anyspend/utils/string.js +5 -0
  580. package/dist/esm/anyspend/utils/token.d.ts +7 -0
  581. package/dist/esm/anyspend/utils/token.js +65 -0
  582. package/dist/esm/generated/chain-networks.json +483 -0
  583. package/dist/esm/global-account/app.d.ts +4 -0
  584. package/dist/esm/global-account/app.js +57 -0
  585. package/dist/esm/global-account/app.native.d.ts +5 -0
  586. package/dist/esm/global-account/app.native.js +83 -0
  587. package/dist/esm/global-account/bsmnt.d.ts +4 -0
  588. package/dist/esm/global-account/bsmnt.js +61 -0
  589. package/dist/esm/global-account/bsmnt.native.d.ts +5 -0
  590. package/dist/esm/global-account/bsmnt.native.js +86 -0
  591. package/dist/esm/global-account/index.d.ts +9 -0
  592. package/dist/esm/global-account/index.js +11 -0
  593. package/dist/esm/global-account/index.native.d.ts +3 -0
  594. package/dist/esm/global-account/index.native.js +11 -0
  595. package/dist/esm/global-account/react/components/AccountAssets/AccountAssets.d.ts +7 -0
  596. package/dist/esm/global-account/react/components/AccountAssets/AccountAssets.js +10 -0
  597. package/dist/esm/global-account/react/components/B3DynamicModal.d.ts +1 -0
  598. package/dist/esm/global-account/react/components/B3DynamicModal.js +86 -0
  599. package/dist/esm/global-account/react/components/B3Provider.d.ts +53 -0
  600. package/dist/esm/global-account/react/components/B3Provider.js +109 -0
  601. package/dist/esm/global-account/react/components/B3Provider.native.d.ts +46 -0
  602. package/dist/esm/global-account/react/components/B3Provider.native.js +70 -0
  603. package/dist/esm/global-account/react/components/ManageAccount/ManageAccount.d.ts +11 -0
  604. package/dist/esm/global-account/react/components/ManageAccount/ManageAccount.js +79 -0
  605. package/dist/esm/global-account/react/components/MintButton/MintButton.d.ts +17 -0
  606. package/dist/esm/global-account/react/components/MintButton/MintButton.js +48 -0
  607. package/dist/esm/global-account/react/components/ProfileAvatar.d.ts +0 -0
  608. package/dist/esm/global-account/react/components/ProfileAvatar.js +127 -0
  609. package/dist/esm/global-account/react/components/RelayKitProviderWrapper.d.ts +4 -0
  610. package/dist/esm/global-account/react/components/RelayKitProviderWrapper.js +26 -0
  611. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +6 -0
  612. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissions.js +77 -0
  613. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +11 -0
  614. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissionsButton.js +23 -0
  615. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +10 -0
  616. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3.js +39 -0
  617. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +6 -0
  618. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +200 -0
  619. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Privy.d.ts +11 -0
  620. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +45 -0
  621. package/dist/esm/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +5 -0
  622. package/dist/esm/global-account/react/components/SignInWithB3/components/AuthButton.js +6 -0
  623. package/dist/esm/global-account/react/components/SignInWithB3/components/PermissionItem.d.ts +10 -0
  624. package/dist/esm/global-account/react/components/SignInWithB3/components/PermissionItem.js +5 -0
  625. package/dist/esm/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +6 -0
  626. package/dist/esm/global-account/react/components/SignInWithB3/components/WalletRow.js +6 -0
  627. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStep.d.ts +24 -0
  628. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStep.js +82 -0
  629. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +14 -0
  630. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +70 -0
  631. package/dist/esm/global-account/react/components/SignInWithB3/utils/signInUtils.d.ts +17 -0
  632. package/dist/esm/global-account/react/components/SignInWithB3/utils/signInUtils.js +50 -0
  633. package/dist/esm/global-account/react/components/StyleRoot.d.ts +4 -0
  634. package/dist/esm/global-account/react/components/StyleRoot.js +7 -0
  635. package/dist/esm/global-account/react/components/Transak/TransakModal.d.ts +1 -0
  636. package/dist/esm/global-account/react/components/Transak/TransakModal.js +107 -0
  637. package/dist/esm/global-account/react/components/custom/Button.d.ts +12 -0
  638. package/dist/esm/global-account/react/components/custom/Button.js +32 -0
  639. package/dist/esm/global-account/react/components/custom/ClientOnly.d.ts +7 -0
  640. package/dist/esm/global-account/react/components/custom/ClientOnly.js +10 -0
  641. package/dist/esm/global-account/react/components/custom/CopyToClipboard.d.ts +7 -0
  642. package/dist/esm/global-account/react/components/custom/CopyToClipboard.js +18 -0
  643. package/dist/esm/global-account/react/components/custom/StaggeredFadeLoader.d.ts +4 -0
  644. package/dist/esm/global-account/react/components/custom/StaggeredFadeLoader.js +21 -0
  645. package/dist/esm/global-account/react/components/custom/WalletConnectorIcon.d.ts +4 -0
  646. package/dist/esm/global-account/react/components/custom/WalletConnectorIcon.js +24 -0
  647. package/dist/esm/global-account/react/components/magicui/AnimatedLottie.d.ts +13 -0
  648. package/dist/esm/global-account/react/components/magicui/AnimatedLottie.js +58 -0
  649. package/dist/esm/global-account/react/components/ui/Loading.d.ts +7 -0
  650. package/dist/esm/global-account/react/components/ui/Loading.js +15 -0
  651. package/dist/esm/global-account/react/components/ui/ShinyButton.d.ts +14 -0
  652. package/dist/esm/global-account/react/components/ui/ShinyButton.js +24 -0
  653. package/dist/esm/global-account/react/components/ui/TabSystem.d.ts +30 -0
  654. package/dist/esm/global-account/react/components/ui/TabSystem.js +46 -0
  655. package/dist/esm/global-account/react/components/ui/Tabs.d.ts +9 -0
  656. package/dist/esm/global-account/react/components/ui/Tabs.js +13 -0
  657. package/dist/esm/global-account/react/components/ui/badge.d.ts +9 -0
  658. package/dist/esm/global-account/react/components/ui/badge.js +20 -0
  659. package/dist/esm/global-account/react/components/ui/button.d.ts +11 -0
  660. package/dist/esm/global-account/react/components/ui/button.js +35 -0
  661. package/dist/esm/global-account/react/components/ui/command.d.ts +82 -0
  662. package/dist/esm/global-account/react/components/ui/command.js +30 -0
  663. package/dist/esm/global-account/react/components/ui/dialog.d.ts +30 -0
  664. package/dist/esm/global-account/react/components/ui/dialog.js +26 -0
  665. package/dist/esm/global-account/react/components/ui/drawer.d.ts +22 -0
  666. package/dist/esm/global-account/react/components/ui/drawer.js +26 -0
  667. package/dist/esm/global-account/react/components/ui/glare-card-rounded.d.ts +4 -0
  668. package/dist/esm/global-account/react/components/ui/glare-card-rounded.js +142 -0
  669. package/dist/esm/global-account/react/components/ui/glare-card.d.ts +4 -0
  670. package/dist/esm/global-account/react/components/ui/glare-card.js +104 -0
  671. package/dist/esm/global-account/react/components/ui/input.d.ts +5 -0
  672. package/dist/esm/global-account/react/components/ui/input.js +10 -0
  673. package/dist/esm/global-account/react/components/ui/popover.d.ts +6 -0
  674. package/dist/esm/global-account/react/components/ui/popover.js +11 -0
  675. package/dist/esm/global-account/react/components/ui/scroll-area.d.ts +5 -0
  676. package/dist/esm/global-account/react/components/ui/scroll-area.js +10 -0
  677. package/dist/esm/global-account/react/components/ui/skeleton.d.ts +2 -0
  678. package/dist/esm/global-account/react/components/ui/skeleton.js +6 -0
  679. package/dist/esm/global-account/react/components/ui/text-loop.d.ts +11 -0
  680. package/dist/esm/global-account/react/components/ui/text-loop.js +26 -0
  681. package/dist/esm/global-account/react/components/ui/text-shimmer.d.ts +10 -0
  682. package/dist/esm/global-account/react/components/ui/text-shimmer.js +19 -0
  683. package/dist/esm/global-account/react/components/ui/tooltip.d.ts +7 -0
  684. package/dist/esm/global-account/react/components/ui/tooltip.js +11 -0
  685. package/dist/esm/global-account/react/components/ui/transition-panel.d.ts +14 -0
  686. package/dist/esm/global-account/react/components/ui/transition-panel.js +7 -0
  687. package/dist/esm/global-account/react/hooks/useAccountAssets.d.ts +3 -0
  688. package/dist/esm/global-account/react/hooks/useAccountAssets.js +32 -0
  689. package/dist/esm/global-account/react/hooks/useAccountWallet.d.ts +18 -0
  690. package/dist/esm/global-account/react/hooks/useAccountWallet.js +67 -0
  691. package/dist/esm/global-account/react/hooks/useAddTWSessionKey.d.ts +21 -0
  692. package/dist/esm/global-account/react/hooks/useAddTWSessionKey.js +50 -0
  693. package/dist/esm/global-account/react/hooks/useAuthentication.d.ts +10 -0
  694. package/dist/esm/global-account/react/hooks/useAuthentication.js +117 -0
  695. package/dist/esm/global-account/react/hooks/useB3BalanceFromAddresses.d.ts +15 -0
  696. package/dist/esm/global-account/react/hooks/useB3BalanceFromAddresses.js +67 -0
  697. package/dist/esm/global-account/react/hooks/useBestTransactionPath.d.ts +41 -0
  698. package/dist/esm/global-account/react/hooks/useBestTransactionPath.js +147 -0
  699. package/dist/esm/global-account/react/hooks/useBsmntProfile.d.ts +4 -0
  700. package/dist/esm/global-account/react/hooks/useBsmntProfile.js +9 -0
  701. package/dist/esm/global-account/react/hooks/useChainSwitchWithAction.d.ts +5 -0
  702. package/dist/esm/global-account/react/hooks/useChainSwitchWithAction.js +70 -0
  703. package/dist/esm/global-account/react/hooks/useClaim.d.ts +16 -0
  704. package/dist/esm/global-account/react/hooks/useClaim.js +46 -0
  705. package/dist/esm/global-account/react/hooks/useConnect.d.ts +9 -0
  706. package/dist/esm/global-account/react/hooks/useConnect.js +49 -0
  707. package/dist/esm/global-account/react/hooks/useExchangeRate.d.ts +12 -0
  708. package/dist/esm/global-account/react/hooks/useExchangeRate.js +27 -0
  709. package/dist/esm/global-account/react/hooks/useGetAllTWSigners.d.ts +30 -0
  710. package/dist/esm/global-account/react/hooks/useGetAllTWSigners.js +71 -0
  711. package/dist/esm/global-account/react/hooks/useGetGeo.d.ts +17 -0
  712. package/dist/esm/global-account/react/hooks/useGetGeo.js +18 -0
  713. package/dist/esm/global-account/react/hooks/useHandleConnectWithPrivy.d.ts +11 -0
  714. package/dist/esm/global-account/react/hooks/useHandleConnectWithPrivy.js +66 -0
  715. package/dist/esm/global-account/react/hooks/useHasMounted.d.ts +1 -0
  716. package/dist/esm/global-account/react/hooks/useHasMounted.js +8 -0
  717. package/dist/esm/global-account/react/hooks/useIsMobile.d.ts +2 -0
  718. package/dist/esm/global-account/react/hooks/useIsMobile.js +6 -0
  719. package/dist/esm/global-account/react/hooks/useIsomorphicLayoutEffect.d.ts +2 -0
  720. package/dist/esm/global-account/react/hooks/useIsomorphicLayoutEffect.js +2 -0
  721. package/dist/esm/global-account/react/hooks/useMediaQuery.d.ts +6 -0
  722. package/dist/esm/global-account/react/hooks/useMediaQuery.js +44 -0
  723. package/dist/esm/global-account/react/hooks/useNativeBalance.d.ts +22 -0
  724. package/dist/esm/global-account/react/hooks/useNativeBalance.js +72 -0
  725. package/dist/esm/global-account/react/hooks/useOnchainName.d.ts +19 -0
  726. package/dist/esm/global-account/react/hooks/useOnchainName.js +187 -0
  727. package/dist/esm/global-account/react/hooks/useOneBalance.d.ts +26 -0
  728. package/dist/esm/global-account/react/hooks/useOneBalance.js +65 -0
  729. package/dist/esm/global-account/react/hooks/useQueryB3.d.ts +25 -0
  730. package/dist/esm/global-account/react/hooks/useQueryB3.js +34 -0
  731. package/dist/esm/global-account/react/hooks/useQueryBSMNT.d.ts +25 -0
  732. package/dist/esm/global-account/react/hooks/useQueryBSMNT.js +34 -0
  733. package/dist/esm/global-account/react/hooks/useRemoveSessionKey.d.ts +16 -0
  734. package/dist/esm/global-account/react/hooks/useRemoveSessionKey.js +43 -0
  735. package/dist/esm/global-account/react/hooks/useRouter.d.ts +14 -0
  736. package/dist/esm/global-account/react/hooks/useRouter.js +75 -0
  737. package/dist/esm/global-account/react/hooks/useSearchParamsSSR.d.ts +2 -0
  738. package/dist/esm/global-account/react/hooks/useSearchParamsSSR.js +27 -0
  739. package/dist/esm/global-account/react/hooks/useSiwe.d.ts +4 -0
  740. package/dist/esm/global-account/react/hooks/useSiwe.js +32 -0
  741. package/dist/esm/global-account/react/hooks/useTokenBalance.d.ts +12 -0
  742. package/dist/esm/global-account/react/hooks/useTokenBalance.js +61 -0
  743. package/dist/esm/global-account/react/hooks/useTokenBalancesByChain.d.ts +22 -0
  744. package/dist/esm/global-account/react/hooks/useTokenBalancesByChain.js +55 -0
  745. package/dist/esm/global-account/react/hooks/useTokenData.d.ts +9 -0
  746. package/dist/esm/global-account/react/hooks/useTokenData.js +44 -0
  747. package/dist/esm/global-account/react/hooks/useTokenFromUrl.d.ts +17 -0
  748. package/dist/esm/global-account/react/hooks/useTokenFromUrl.js +27 -0
  749. package/dist/esm/global-account/react/hooks/useTokenPrice.d.ts +17 -0
  750. package/dist/esm/global-account/react/hooks/useTokenPrice.js +45 -0
  751. package/dist/esm/global-account/react/hooks/useTokenPriceWithFallback.d.ts +15 -0
  752. package/dist/esm/global-account/react/hooks/useTokenPriceWithFallback.js +31 -0
  753. package/dist/esm/global-account/react/hooks/useTokensFromAddress.d.ts +54 -0
  754. package/dist/esm/global-account/react/hooks/useTokensFromAddress.js +45 -0
  755. package/dist/esm/global-account/react/hooks/useURLParams.d.ts +8 -0
  756. package/dist/esm/global-account/react/hooks/useURLParams.js +32 -0
  757. package/dist/esm/global-account/react/stores/useAuthStore.d.ts +26 -0
  758. package/dist/esm/global-account/react/stores/useAuthStore.js +36 -0
  759. package/dist/esm/global-account/react/stores/useModalStore.d.ts +267 -0
  760. package/dist/esm/global-account/react/stores/useModalStore.js +33 -0
  761. package/dist/esm/global-account/server.d.ts +8 -0
  762. package/dist/esm/global-account/server.js +22 -0
  763. package/dist/esm/global-account/types/b3-api.d.ts +3 -0
  764. package/dist/esm/global-account/types/b3-api.js +3 -0
  765. package/dist/esm/global-account/types/b3-api.types.d.ts +51 -0
  766. package/dist/esm/global-account/types/b3-api.types.js +3 -0
  767. package/dist/esm/global-account/types/chain-networks.d.ts +44 -0
  768. package/dist/esm/global-account/types/chain-networks.js +45 -0
  769. package/dist/esm/global-account/types/feature-flags.d.ts +8 -0
  770. package/dist/esm/global-account/types/feature-flags.js +7 -0
  771. package/dist/esm/global-account/types/permissions.d.ts +21 -0
  772. package/dist/esm/global-account/types/permissions.js +1 -0
  773. package/dist/esm/global-account/types/reservoir.types.d.ts +89 -0
  774. package/dist/esm/global-account/types/reservoir.types.js +1 -0
  775. package/dist/esm/global-account/types/simplehash.types.d.ts +292 -0
  776. package/dist/esm/global-account/types/simplehash.types.js +1 -0
  777. package/dist/esm/global-account/types.d.ts +19 -0
  778. package/dist/esm/global-account/types.js +1 -0
  779. package/dist/esm/shared/constants/chains/b3Chain.d.ts +144 -0
  780. package/dist/esm/shared/constants/chains/b3Chain.js +161 -0
  781. package/dist/esm/shared/constants/chains/chainPlatformMap.d.ts +24 -0
  782. package/dist/esm/shared/constants/chains/chainPlatformMap.js +43 -0
  783. package/dist/esm/shared/constants/chains/supported.d.ts +53 -0
  784. package/dist/esm/shared/constants/chains/supported.js +25 -0
  785. package/dist/esm/shared/constants/index.d.ts +15 -0
  786. package/dist/esm/shared/constants/index.js +18 -0
  787. package/dist/esm/shared/thirdweb/generated/@tanstack/react-query.gen.d.ts +11494 -0
  788. package/dist/esm/shared/thirdweb/generated/@tanstack/react-query.gen.js +1225 -0
  789. package/dist/esm/shared/thirdweb/generated/client.gen.d.ts +12 -0
  790. package/dist/esm/shared/thirdweb/generated/client.gen.js +3 -0
  791. package/dist/esm/shared/thirdweb/generated/index.d.ts +2 -0
  792. package/dist/esm/shared/thirdweb/generated/index.js +3 -0
  793. package/dist/esm/shared/thirdweb/generated/sdk.gen.d.ts +1448 -0
  794. package/dist/esm/shared/thirdweb/generated/sdk.gen.js +995 -0
  795. package/dist/esm/shared/thirdweb/generated/types.gen.d.ts +4159 -0
  796. package/dist/esm/shared/thirdweb/generated/types.gen.js +2 -0
  797. package/dist/esm/shared/thirdweb/initiateClient.d.ts +1 -0
  798. package/dist/esm/shared/thirdweb/initiateClient.js +25 -0
  799. package/dist/esm/shared/thirdweb/openapi-ts.config.d.ts +2 -0
  800. package/dist/esm/shared/thirdweb/openapi-ts.config.js +6 -0
  801. package/dist/esm/shared/utils/b3Ens.d.ts +5 -0
  802. package/dist/esm/shared/utils/b3Ens.js +23 -0
  803. package/dist/esm/shared/utils/centerTruncate.d.ts +1 -0
  804. package/dist/esm/shared/utils/centerTruncate.js +11 -0
  805. package/dist/esm/shared/utils/chain-transformers.d.ts +5 -0
  806. package/dist/esm/shared/utils/chain-transformers.js +46 -0
  807. package/dist/esm/shared/utils/chains.d.ts +6 -0
  808. package/dist/esm/shared/utils/chains.js +31 -0
  809. package/dist/esm/shared/utils/cn.d.ts +2 -0
  810. package/dist/esm/shared/utils/cn.js +5 -0
  811. package/dist/esm/shared/utils/colors.d.ts +2 -0
  812. package/dist/esm/shared/utils/colors.js +29 -0
  813. package/dist/esm/shared/utils/cookies.d.ts +3 -0
  814. package/dist/esm/shared/utils/cookies.js +12 -0
  815. package/dist/esm/shared/utils/debug.d.ts +4 -0
  816. package/dist/esm/shared/utils/debug.js +13 -0
  817. package/dist/esm/shared/utils/fetchBalances.d.ts +16 -0
  818. package/dist/esm/shared/utils/fetchBalances.js +60 -0
  819. package/dist/esm/shared/utils/fetchBsmntProfile.d.ts +1 -0
  820. package/dist/esm/shared/utils/fetchBsmntProfile.js +23 -0
  821. package/dist/esm/shared/utils/formatAddress.d.ts +2 -0
  822. package/dist/esm/shared/utils/formatAddress.js +14 -0
  823. package/dist/esm/shared/utils/formatNumber.d.ts +7 -0
  824. package/dist/esm/shared/utils/formatNumber.js +45 -0
  825. package/dist/esm/shared/utils/index.d.ts +2 -0
  826. package/dist/esm/shared/utils/index.js +6 -0
  827. package/dist/esm/shared/utils/insights.d.ts +7 -0
  828. package/dist/esm/shared/utils/insights.js +381 -0
  829. package/dist/esm/shared/utils/ipfs.d.ts +12 -0
  830. package/dist/esm/shared/utils/ipfs.js +29 -0
  831. package/dist/esm/shared/utils/number.d.ts +11 -0
  832. package/dist/esm/shared/utils/number.js +102 -0
  833. package/dist/esm/shared/utils/payment.utils.d.ts +5 -0
  834. package/dist/esm/shared/utils/payment.utils.js +30 -0
  835. package/dist/esm/shared/utils/simplehash.d.ts +12 -0
  836. package/dist/esm/shared/utils/simplehash.js +286 -0
  837. package/dist/esm/shared/utils/sprinter.d.ts +1 -0
  838. package/dist/esm/shared/utils/sprinter.js +11 -0
  839. package/dist/esm/shared/utils/thirdweb-insights.d.ts +105 -0
  840. package/dist/esm/shared/utils/thirdweb-insights.js +192 -0
  841. package/dist/esm/shared/utils/thirdweb.d.ts +1 -0
  842. package/dist/esm/shared/utils/thirdweb.js +8 -0
  843. package/dist/esm/styles/index.d.ts +20 -0
  844. package/dist/esm/styles/index.js +20 -0
  845. package/dist/styles/index.css +1 -0
  846. package/dist/types/anyspend/abis/abi-usdc-base.d.ts +1074 -0
  847. package/dist/types/anyspend/abis/erc20-staking.d.ts +540 -0
  848. package/dist/types/anyspend/constants/index.d.ts +28 -0
  849. package/dist/types/anyspend/index.d.ts +13 -0
  850. package/dist/types/anyspend/react/components/AnySpend.d.ts +22 -0
  851. package/dist/types/anyspend/react/components/AnySpendBuySpin.d.ts +9 -0
  852. package/dist/types/anyspend/react/components/AnySpendCustom.d.ts +22 -0
  853. package/dist/types/anyspend/react/components/AnySpendNFT.d.ts +8 -0
  854. package/dist/types/anyspend/react/components/AnySpendNFTButton.d.ts +7 -0
  855. package/dist/types/anyspend/react/components/AnySpendStakeB3.d.ts +8 -0
  856. package/dist/types/anyspend/react/components/AnySpendTournament.d.ts +27 -0
  857. package/dist/types/anyspend/react/components/common/ChainTokenIcon.d.ts +5 -0
  858. package/dist/types/anyspend/react/components/common/HowItWorks.d.ts +10 -0
  859. package/dist/types/anyspend/react/components/common/OrderDetails.d.ts +14 -0
  860. package/dist/types/anyspend/react/components/common/OrderHistory.d.ts +7 -0
  861. package/dist/types/anyspend/react/components/common/OrderHistoryItem.d.ts +8 -0
  862. package/dist/types/anyspend/react/components/common/OrderStatus.d.ts +4 -0
  863. package/dist/types/anyspend/react/components/common/OrderToken.d.ts +11 -0
  864. package/dist/types/anyspend/react/components/common/OrderTokenAmount.d.ts +18 -0
  865. package/dist/types/anyspend/react/components/common/PanelOnramp.d.ts +4 -0
  866. package/dist/types/anyspend/react/components/common/PanelOnrampPayment.d.ts +29 -0
  867. package/dist/types/anyspend/react/components/common/PaymentMethodIcons.d.ts +1 -0
  868. package/dist/types/anyspend/react/components/common/PaymentOneClick.d.ts +7 -0
  869. package/dist/types/anyspend/react/components/common/PaymentOptions.d.ts +1 -0
  870. package/dist/types/anyspend/react/components/common/PaymentStripeWeb2.d.ts +8 -0
  871. package/dist/types/anyspend/react/components/common/PaymentVendorUI.d.ts +8 -0
  872. package/dist/types/anyspend/react/components/common/TokenBalance.d.ts +6 -0
  873. package/dist/types/anyspend/react/components/icons/EthIcon.d.ts +3 -0
  874. package/dist/types/anyspend/react/components/icons/SolIcon.d.ts +3 -0
  875. package/dist/types/anyspend/react/components/icons/USDCIcon.d.ts +3 -0
  876. package/dist/types/anyspend/react/components/modals/EnterRecipientModal.d.ts +6 -0
  877. package/dist/types/anyspend/react/hooks/index.d.ts +13 -0
  878. package/dist/types/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +39 -0
  879. package/dist/types/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +34 -0
  880. package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +706 -0
  881. package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +634 -0
  882. package/dist/types/anyspend/react/hooks/useAnyspendQuote.d.ts +23 -0
  883. package/dist/types/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +16 -0
  884. package/dist/types/anyspend/react/hooks/useAnyspendTokens.d.ts +23 -0
  885. package/dist/types/anyspend/react/hooks/useCoinbaseOnrampOptions.d.ts +48 -0
  886. package/dist/types/anyspend/react/hooks/useGeoOnrampOptions.d.ts +40 -0
  887. package/dist/types/anyspend/react/hooks/useGetGeo.d.ts +16 -0
  888. package/dist/types/anyspend/react/hooks/usePermitData.d.ts +92 -0
  889. package/dist/types/anyspend/react/hooks/useStripeClientSecret.d.ts +6 -0
  890. package/dist/types/anyspend/react/hooks/useStripeSupport.d.ts +10 -0
  891. package/dist/types/anyspend/react/providers/AnyspendProvider.d.ts +27 -0
  892. package/dist/types/anyspend/services/anyspend.d.ts +372 -0
  893. package/dist/types/anyspend/types/chain.d.ts +26 -0
  894. package/dist/types/anyspend/types/custom.d.ts +130 -0
  895. package/dist/types/anyspend/types/globalWallet.d.ts +18 -0
  896. package/dist/types/anyspend/types/index.d.ts +13 -0
  897. package/dist/types/anyspend/types/nft.d.ts +267 -0
  898. package/dist/types/anyspend/types/onramp.d.ts +25 -0
  899. package/dist/types/anyspend/types/order.d.ts +1771 -0
  900. package/dist/types/anyspend/types/permit.d.ts +21 -0
  901. package/dist/types/anyspend/types/relay.d.ts +10 -0
  902. package/dist/types/anyspend/types/req-res/createOrder.d.ts +4113 -0
  903. package/dist/types/anyspend/types/req-res/getCoinbaseOnrampOptions.d.ts +120 -0
  904. package/dist/types/anyspend/types/req-res/getOrderAndTransactions.d.ts +3129 -0
  905. package/dist/types/anyspend/types/req-res/getOrderByCreator.d.ts +28 -0
  906. package/dist/types/anyspend/types/req-res/getOrderHistory.d.ts +2278 -0
  907. package/dist/types/anyspend/types/req-res/getQuote.d.ts +253 -0
  908. package/dist/types/anyspend/types/req-res/getTokenList.d.ts +63 -0
  909. package/dist/types/anyspend/types/req-res/index.d.ts +8 -0
  910. package/dist/types/anyspend/types/req-res/sendPermitData.d.ts +66 -0
  911. package/dist/types/anyspend/types/req-res/stripe.d.ts +0 -0
  912. package/dist/types/anyspend/types/swap.d.ts +119 -0
  913. package/dist/types/anyspend/types/token.d.ts +34 -0
  914. package/dist/types/anyspend/types/tournament.d.ts +174 -0
  915. package/dist/types/anyspend/types/transaction.d.ts +84 -0
  916. package/dist/types/anyspend/utils/address.d.ts +4 -0
  917. package/dist/types/anyspend/utils/chain.d.ts +25 -0
  918. package/dist/types/anyspend/utils/format.d.ts +6 -0
  919. package/dist/types/anyspend/utils/index.d.ts +8 -0
  920. package/dist/types/anyspend/utils/json.d.ts +1 -0
  921. package/dist/types/anyspend/utils/number.d.ts +13 -0
  922. package/dist/types/anyspend/utils/orderPayload.d.ts +127 -0
  923. package/dist/types/anyspend/utils/string.d.ts +1 -0
  924. package/dist/types/anyspend/utils/token.d.ts +7 -0
  925. package/dist/types/global-account/app.d.ts +4 -0
  926. package/dist/types/global-account/app.native.d.ts +5 -0
  927. package/dist/types/global-account/bsmnt.d.ts +4 -0
  928. package/dist/types/global-account/bsmnt.native.d.ts +5 -0
  929. package/dist/types/global-account/index.d.ts +9 -0
  930. package/dist/types/global-account/index.native.d.ts +3 -0
  931. package/dist/types/global-account/react/components/AccountAssets/AccountAssets.d.ts +7 -0
  932. package/dist/types/global-account/react/components/B3DynamicModal.d.ts +1 -0
  933. package/dist/types/global-account/react/components/B3Provider.d.ts +53 -0
  934. package/dist/types/global-account/react/components/B3Provider.native.d.ts +46 -0
  935. package/dist/types/global-account/react/components/ManageAccount/ManageAccount.d.ts +11 -0
  936. package/dist/types/global-account/react/components/MintButton/MintButton.d.ts +17 -0
  937. package/dist/types/global-account/react/components/ProfileAvatar.d.ts +0 -0
  938. package/dist/types/global-account/react/components/RelayKitProviderWrapper.d.ts +4 -0
  939. package/dist/types/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +6 -0
  940. package/dist/types/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +11 -0
  941. package/dist/types/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +10 -0
  942. package/dist/types/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +6 -0
  943. package/dist/types/global-account/react/components/SignInWithB3/SignInWithB3Privy.d.ts +11 -0
  944. package/dist/types/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +5 -0
  945. package/dist/types/global-account/react/components/SignInWithB3/components/PermissionItem.d.ts +10 -0
  946. package/dist/types/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +6 -0
  947. package/dist/types/global-account/react/components/SignInWithB3/steps/LoginStep.d.ts +24 -0
  948. package/dist/types/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +14 -0
  949. package/dist/types/global-account/react/components/SignInWithB3/utils/signInUtils.d.ts +17 -0
  950. package/dist/types/global-account/react/components/StyleRoot.d.ts +4 -0
  951. package/dist/types/global-account/react/components/Transak/TransakModal.d.ts +1 -0
  952. package/dist/types/global-account/react/components/custom/Button.d.ts +12 -0
  953. package/dist/types/global-account/react/components/custom/ClientOnly.d.ts +7 -0
  954. package/dist/types/global-account/react/components/custom/CopyToClipboard.d.ts +7 -0
  955. package/dist/types/global-account/react/components/custom/StaggeredFadeLoader.d.ts +4 -0
  956. package/dist/types/global-account/react/components/custom/WalletConnectorIcon.d.ts +4 -0
  957. package/dist/types/global-account/react/components/magicui/AnimatedLottie.d.ts +13 -0
  958. package/dist/types/global-account/react/components/ui/Loading.d.ts +7 -0
  959. package/dist/types/global-account/react/components/ui/ShinyButton.d.ts +14 -0
  960. package/dist/types/global-account/react/components/ui/TabSystem.d.ts +30 -0
  961. package/dist/types/global-account/react/components/ui/Tabs.d.ts +9 -0
  962. package/dist/types/global-account/react/components/ui/badge.d.ts +9 -0
  963. package/dist/types/global-account/react/components/ui/button.d.ts +11 -0
  964. package/dist/types/global-account/react/components/ui/command.d.ts +82 -0
  965. package/dist/types/global-account/react/components/ui/dialog.d.ts +30 -0
  966. package/dist/types/global-account/react/components/ui/drawer.d.ts +22 -0
  967. package/dist/types/global-account/react/components/ui/glare-card-rounded.d.ts +4 -0
  968. package/dist/types/global-account/react/components/ui/glare-card.d.ts +4 -0
  969. package/dist/types/global-account/react/components/ui/input.d.ts +5 -0
  970. package/dist/types/global-account/react/components/ui/popover.d.ts +6 -0
  971. package/dist/types/global-account/react/components/ui/scroll-area.d.ts +5 -0
  972. package/dist/types/global-account/react/components/ui/skeleton.d.ts +2 -0
  973. package/dist/types/global-account/react/components/ui/text-loop.d.ts +11 -0
  974. package/dist/types/global-account/react/components/ui/text-shimmer.d.ts +10 -0
  975. package/dist/types/global-account/react/components/ui/tooltip.d.ts +7 -0
  976. package/dist/types/global-account/react/components/ui/transition-panel.d.ts +14 -0
  977. package/dist/types/global-account/react/hooks/useAccountAssets.d.ts +3 -0
  978. package/dist/types/global-account/react/hooks/useAccountWallet.d.ts +18 -0
  979. package/dist/types/global-account/react/hooks/useAddTWSessionKey.d.ts +21 -0
  980. package/dist/types/global-account/react/hooks/useAuthentication.d.ts +10 -0
  981. package/dist/types/global-account/react/hooks/useB3BalanceFromAddresses.d.ts +15 -0
  982. package/dist/types/global-account/react/hooks/useBestTransactionPath.d.ts +41 -0
  983. package/dist/types/global-account/react/hooks/useBsmntProfile.d.ts +4 -0
  984. package/dist/types/global-account/react/hooks/useChainSwitchWithAction.d.ts +5 -0
  985. package/dist/types/global-account/react/hooks/useClaim.d.ts +16 -0
  986. package/dist/types/global-account/react/hooks/useConnect.d.ts +9 -0
  987. package/dist/types/global-account/react/hooks/useExchangeRate.d.ts +12 -0
  988. package/dist/types/global-account/react/hooks/useGetAllTWSigners.d.ts +30 -0
  989. package/dist/types/global-account/react/hooks/useGetGeo.d.ts +17 -0
  990. package/dist/types/global-account/react/hooks/useHandleConnectWithPrivy.d.ts +11 -0
  991. package/dist/types/global-account/react/hooks/useHasMounted.d.ts +1 -0
  992. package/dist/types/global-account/react/hooks/useIsMobile.d.ts +2 -0
  993. package/dist/types/global-account/react/hooks/useIsomorphicLayoutEffect.d.ts +2 -0
  994. package/dist/types/global-account/react/hooks/useMediaQuery.d.ts +6 -0
  995. package/dist/types/global-account/react/hooks/useNativeBalance.d.ts +22 -0
  996. package/dist/types/global-account/react/hooks/useOnchainName.d.ts +19 -0
  997. package/dist/types/global-account/react/hooks/useOneBalance.d.ts +26 -0
  998. package/dist/types/global-account/react/hooks/useQueryB3.d.ts +25 -0
  999. package/dist/types/global-account/react/hooks/useQueryBSMNT.d.ts +25 -0
  1000. package/dist/types/global-account/react/hooks/useRemoveSessionKey.d.ts +16 -0
  1001. package/dist/types/global-account/react/hooks/useRouter.d.ts +14 -0
  1002. package/dist/types/global-account/react/hooks/useSearchParamsSSR.d.ts +2 -0
  1003. package/dist/types/global-account/react/hooks/useSiwe.d.ts +4 -0
  1004. package/dist/types/global-account/react/hooks/useTokenBalance.d.ts +12 -0
  1005. package/dist/types/global-account/react/hooks/useTokenBalancesByChain.d.ts +22 -0
  1006. package/dist/types/global-account/react/hooks/useTokenData.d.ts +9 -0
  1007. package/dist/types/global-account/react/hooks/useTokenFromUrl.d.ts +17 -0
  1008. package/dist/types/global-account/react/hooks/useTokenPrice.d.ts +17 -0
  1009. package/dist/types/global-account/react/hooks/useTokenPriceWithFallback.d.ts +15 -0
  1010. package/dist/types/global-account/react/hooks/useTokensFromAddress.d.ts +54 -0
  1011. package/dist/types/global-account/react/hooks/useURLParams.d.ts +8 -0
  1012. package/dist/types/global-account/react/stores/useAuthStore.d.ts +26 -0
  1013. package/dist/types/global-account/react/stores/useModalStore.d.ts +267 -0
  1014. package/dist/types/global-account/server.d.ts +8 -0
  1015. package/dist/types/global-account/types/b3-api.d.ts +3 -0
  1016. package/dist/types/global-account/types/b3-api.types.d.ts +51 -0
  1017. package/dist/types/global-account/types/chain-networks.d.ts +44 -0
  1018. package/dist/types/global-account/types/feature-flags.d.ts +8 -0
  1019. package/dist/types/global-account/types/permissions.d.ts +21 -0
  1020. package/dist/types/global-account/types/reservoir.types.d.ts +89 -0
  1021. package/dist/types/global-account/types/simplehash.types.d.ts +292 -0
  1022. package/dist/types/global-account/types.d.ts +19 -0
  1023. package/dist/types/shared/constants/chains/b3Chain.d.ts +144 -0
  1024. package/dist/types/shared/constants/chains/chainPlatformMap.d.ts +24 -0
  1025. package/dist/types/shared/constants/chains/supported.d.ts +53 -0
  1026. package/dist/types/shared/constants/index.d.ts +15 -0
  1027. package/dist/types/shared/thirdweb/generated/@tanstack/react-query.gen.d.ts +11494 -0
  1028. package/dist/types/shared/thirdweb/generated/client.gen.d.ts +12 -0
  1029. package/dist/types/shared/thirdweb/generated/index.d.ts +2 -0
  1030. package/dist/types/shared/thirdweb/generated/sdk.gen.d.ts +1448 -0
  1031. package/dist/types/shared/thirdweb/generated/types.gen.d.ts +4159 -0
  1032. package/dist/types/shared/thirdweb/initiateClient.d.ts +1 -0
  1033. package/dist/types/shared/thirdweb/openapi-ts.config.d.ts +2 -0
  1034. package/dist/types/shared/utils/b3Ens.d.ts +5 -0
  1035. package/dist/types/shared/utils/centerTruncate.d.ts +1 -0
  1036. package/dist/types/shared/utils/chain-transformers.d.ts +5 -0
  1037. package/dist/types/shared/utils/chains.d.ts +6 -0
  1038. package/dist/types/shared/utils/cn.d.ts +2 -0
  1039. package/dist/types/shared/utils/colors.d.ts +2 -0
  1040. package/dist/types/shared/utils/cookies.d.ts +3 -0
  1041. package/dist/types/shared/utils/debug.d.ts +4 -0
  1042. package/dist/types/shared/utils/fetchBalances.d.ts +16 -0
  1043. package/dist/types/shared/utils/fetchBsmntProfile.d.ts +1 -0
  1044. package/dist/types/shared/utils/formatAddress.d.ts +2 -0
  1045. package/dist/types/shared/utils/formatNumber.d.ts +7 -0
  1046. package/dist/types/shared/utils/index.d.ts +2 -0
  1047. package/dist/types/shared/utils/insights.d.ts +7 -0
  1048. package/dist/types/shared/utils/ipfs.d.ts +12 -0
  1049. package/dist/types/shared/utils/number.d.ts +11 -0
  1050. package/dist/types/shared/utils/payment.utils.d.ts +5 -0
  1051. package/dist/types/shared/utils/simplehash.d.ts +12 -0
  1052. package/dist/types/shared/utils/sprinter.d.ts +1 -0
  1053. package/dist/types/shared/utils/thirdweb-insights.d.ts +105 -0
  1054. package/dist/types/shared/utils/thirdweb.d.ts +1 -0
  1055. package/dist/types/styles/index.d.ts +20 -0
  1056. package/package.json +340 -0
  1057. package/src/anyspend/abis/abi-usdc-base.ts +600 -0
  1058. package/src/anyspend/abis/erc20-staking.ts +299 -0
  1059. package/src/anyspend/constants/index.ts +88 -0
  1060. package/src/anyspend/index.ts +24 -0
  1061. package/src/anyspend/react/components/AnySpend.tsx +1144 -0
  1062. package/src/anyspend/react/components/AnySpendBuySpin.tsx +623 -0
  1063. package/src/anyspend/react/components/AnySpendCustom.tsx +812 -0
  1064. package/src/anyspend/react/components/AnySpendNFT.tsx +134 -0
  1065. package/src/anyspend/react/components/AnySpendNFTButton.tsx +33 -0
  1066. package/src/anyspend/react/components/AnySpendStakeB3.tsx +491 -0
  1067. package/src/anyspend/react/components/AnySpendTournament.tsx +109 -0
  1068. package/src/anyspend/react/components/common/ChainTokenIcon.tsx +18 -0
  1069. package/src/anyspend/react/components/common/HowItWorks.tsx +37 -0
  1070. package/src/anyspend/react/components/common/OrderDetails.tsx +1195 -0
  1071. package/src/anyspend/react/components/common/OrderHistory.tsx +64 -0
  1072. package/src/anyspend/react/components/common/OrderHistoryItem.tsx +189 -0
  1073. package/src/anyspend/react/components/common/OrderStatus.tsx +39 -0
  1074. package/src/anyspend/react/components/common/OrderToken.tsx +132 -0
  1075. package/src/anyspend/react/components/common/OrderTokenAmount.tsx +168 -0
  1076. package/src/anyspend/react/components/common/PanelOnramp.tsx +108 -0
  1077. package/src/anyspend/react/components/common/PanelOnrampPayment.tsx +354 -0
  1078. package/src/anyspend/react/components/common/PaymentMethodIcons.tsx +22 -0
  1079. package/src/anyspend/react/components/common/PaymentOneClick.tsx +42 -0
  1080. package/src/anyspend/react/components/common/PaymentOptions.tsx +36 -0
  1081. package/src/anyspend/react/components/common/PaymentStripeWeb2.tsx +368 -0
  1082. package/src/anyspend/react/components/common/PaymentVendorUI.tsx +26 -0
  1083. package/src/anyspend/react/components/common/TokenBalance.tsx +63 -0
  1084. package/src/anyspend/react/components/icons/EthIcon.tsx +31 -0
  1085. package/src/anyspend/react/components/icons/SolIcon.tsx +39 -0
  1086. package/src/anyspend/react/components/icons/USDCIcon.tsx +19 -0
  1087. package/src/anyspend/react/components/modals/EnterRecipientModal.tsx +50 -0
  1088. package/src/anyspend/react/hooks/index.ts +13 -0
  1089. package/src/anyspend/react/hooks/useAnyspendCreateOnrampOrder.ts +131 -0
  1090. package/src/anyspend/react/hooks/useAnyspendCreateOrder.ts +102 -0
  1091. package/src/anyspend/react/hooks/useAnyspendOrderAndTransactions.ts +36 -0
  1092. package/src/anyspend/react/hooks/useAnyspendOrderHistory.ts +29 -0
  1093. package/src/anyspend/react/hooks/useAnyspendQuote.ts +58 -0
  1094. package/src/anyspend/react/hooks/useAnyspendSendPermitData.ts +38 -0
  1095. package/src/anyspend/react/hooks/useAnyspendTokens.ts +24 -0
  1096. package/src/anyspend/react/hooks/useCoinbaseOnrampOptions.ts +21 -0
  1097. package/src/anyspend/react/hooks/useGeoOnrampOptions.ts +58 -0
  1098. package/src/anyspend/react/hooks/useGetGeo.ts +31 -0
  1099. package/src/anyspend/react/hooks/usePermitData.ts +183 -0
  1100. package/src/anyspend/react/hooks/useStripeClientSecret.ts +20 -0
  1101. package/src/anyspend/react/hooks/useStripeSupport.ts +22 -0
  1102. package/src/anyspend/react/providers/AnyspendProvider.tsx +45 -0
  1103. package/src/anyspend/services/anyspend.ts +191 -0
  1104. package/src/anyspend/types/chain.ts +30 -0
  1105. package/src/anyspend/types/custom.ts +17 -0
  1106. package/src/anyspend/types/globalWallet.ts +9 -0
  1107. package/src/anyspend/types/index.ts +14 -0
  1108. package/src/anyspend/types/nft.ts +50 -0
  1109. package/src/anyspend/types/onramp.ts +15 -0
  1110. package/src/anyspend/types/order.ts +94 -0
  1111. package/src/anyspend/types/permit.ts +10 -0
  1112. package/src/anyspend/types/relay.ts +13 -0
  1113. package/src/anyspend/types/req-res/createOrder.ts +66 -0
  1114. package/src/anyspend/types/req-res/getCoinbaseOnrampOptions.ts +34 -0
  1115. package/src/anyspend/types/req-res/getOrderAndTransactions.ts +23 -0
  1116. package/src/anyspend/types/req-res/getOrderByCreator.ts +9 -0
  1117. package/src/anyspend/types/req-res/getOrderHistory.ts +9 -0
  1118. package/src/anyspend/types/req-res/getQuote.ts +60 -0
  1119. package/src/anyspend/types/req-res/getTokenList.ts +18 -0
  1120. package/src/anyspend/types/req-res/index.ts +8 -0
  1121. package/src/anyspend/types/req-res/sendPermitData.ts +10 -0
  1122. package/src/anyspend/types/req-res/stripe.ts +0 -0
  1123. package/src/anyspend/types/swap.ts +12 -0
  1124. package/src/anyspend/types/token.ts +13 -0
  1125. package/src/anyspend/types/tournament.ts +26 -0
  1126. package/src/anyspend/types/transaction.ts +39 -0
  1127. package/src/anyspend/utils/address.ts +25 -0
  1128. package/src/anyspend/utils/chain.ts +342 -0
  1129. package/src/anyspend/utils/format.ts +64 -0
  1130. package/src/anyspend/utils/index.ts +8 -0
  1131. package/src/anyspend/utils/json.ts +3 -0
  1132. package/src/anyspend/utils/number.ts +93 -0
  1133. package/src/anyspend/utils/orderPayload.ts +63 -0
  1134. package/src/anyspend/utils/string.ts +4 -0
  1135. package/src/anyspend/utils/token.ts +72 -0
  1136. package/src/generated/chain-networks.json +483 -0
  1137. package/src/global-account/app.native.ts +105 -0
  1138. package/src/global-account/app.ts +68 -0
  1139. package/src/global-account/bsmnt.native.ts +108 -0
  1140. package/src/global-account/bsmnt.ts +73 -0
  1141. package/src/global-account/index.native.ts +17 -0
  1142. package/src/global-account/index.ts +17 -0
  1143. package/src/global-account/react/components/AccountAssets/AccountAssets.tsx +48 -0
  1144. package/src/global-account/react/components/B3DynamicModal.tsx +118 -0
  1145. package/src/global-account/react/components/B3Provider.native.tsx +141 -0
  1146. package/src/global-account/react/components/B3Provider.tsx +201 -0
  1147. package/src/global-account/react/components/ManageAccount/ManageAccount.tsx +242 -0
  1148. package/src/global-account/react/components/MintButton/MintButton.tsx +83 -0
  1149. package/src/global-account/react/components/ProfileAvatar.tsx +138 -0
  1150. package/src/global-account/react/components/RelayKitProviderWrapper.tsx +34 -0
  1151. package/src/global-account/react/components/RequestPermissions/RequestPermissions.tsx +167 -0
  1152. package/src/global-account/react/components/RequestPermissions/RequestPermissionsButton.tsx +51 -0
  1153. package/src/global-account/react/components/SignInWithB3/SignInWithB3.tsx +93 -0
  1154. package/src/global-account/react/components/SignInWithB3/SignInWithB3Flow.tsx +255 -0
  1155. package/src/global-account/react/components/SignInWithB3/SignInWithB3Privy.tsx +60 -0
  1156. package/src/global-account/react/components/SignInWithB3/components/AuthButton.tsx +23 -0
  1157. package/src/global-account/react/components/SignInWithB3/components/PermissionItem.tsx +22 -0
  1158. package/src/global-account/react/components/SignInWithB3/components/WalletRow.tsx +32 -0
  1159. package/src/global-account/react/components/SignInWithB3/steps/LoginStep.tsx +135 -0
  1160. package/src/global-account/react/components/SignInWithB3/steps/LoginStepCustom.tsx +148 -0
  1161. package/src/global-account/react/components/SignInWithB3/utils/signInUtils.ts +70 -0
  1162. package/src/global-account/react/components/StyleRoot.tsx +12 -0
  1163. package/src/global-account/react/components/Transak/TransakModal.tsx +134 -0
  1164. package/src/global-account/react/components/custom/Button.tsx +54 -0
  1165. package/src/global-account/react/components/custom/ClientOnly.tsx +20 -0
  1166. package/src/global-account/react/components/custom/CopyToClipboard.tsx +47 -0
  1167. package/src/global-account/react/components/custom/StaggeredFadeLoader.tsx +43 -0
  1168. package/src/global-account/react/components/custom/WalletConnectorIcon.tsx +32 -0
  1169. package/src/global-account/react/components/magicui/AnimatedLottie.tsx +106 -0
  1170. package/src/global-account/react/components/ui/Loading.tsx +27 -0
  1171. package/src/global-account/react/components/ui/ShinyButton.tsx +82 -0
  1172. package/src/global-account/react/components/ui/TabSystem.tsx +157 -0
  1173. package/src/global-account/react/components/ui/Tabs.tsx +56 -0
  1174. package/src/global-account/react/components/ui/badge.tsx +30 -0
  1175. package/src/global-account/react/components/ui/button.tsx +57 -0
  1176. package/src/global-account/react/components/ui/command.tsx +140 -0
  1177. package/src/global-account/react/components/ui/dialog.tsx +131 -0
  1178. package/src/global-account/react/components/ui/drawer.tsx +97 -0
  1179. package/src/global-account/react/components/ui/glare-card-rounded.tsx +182 -0
  1180. package/src/global-account/react/components/ui/glare-card.tsx +138 -0
  1181. package/src/global-account/react/components/ui/input.tsx +25 -0
  1182. package/src/global-account/react/components/ui/popover.tsx +34 -0
  1183. package/src/global-account/react/components/ui/scroll-area.tsx +40 -0
  1184. package/src/global-account/react/components/ui/skeleton.tsx +7 -0
  1185. package/src/global-account/react/components/ui/text-loop.tsx +61 -0
  1186. package/src/global-account/react/components/ui/text-shimmer.tsx +47 -0
  1187. package/src/global-account/react/components/ui/tooltip.tsx +34 -0
  1188. package/src/global-account/react/components/ui/transition-panel.tsx +38 -0
  1189. package/src/global-account/react/hooks/useAccountAssets.ts +34 -0
  1190. package/src/global-account/react/hooks/useAccountWallet.tsx +110 -0
  1191. package/src/global-account/react/hooks/useAddTWSessionKey.tsx +85 -0
  1192. package/src/global-account/react/hooks/useAuthentication.ts +127 -0
  1193. package/src/global-account/react/hooks/useB3BalanceFromAddresses.ts +91 -0
  1194. package/src/global-account/react/hooks/useBestTransactionPath.tsx +202 -0
  1195. package/src/global-account/react/hooks/useBsmntProfile.ts +14 -0
  1196. package/src/global-account/react/hooks/useChainSwitchWithAction.ts +79 -0
  1197. package/src/global-account/react/hooks/useClaim.tsx +66 -0
  1198. package/src/global-account/react/hooks/useConnect.tsx +60 -0
  1199. package/src/global-account/react/hooks/useExchangeRate.tsx +43 -0
  1200. package/src/global-account/react/hooks/useGetAllTWSigners.tsx +139 -0
  1201. package/src/global-account/react/hooks/useGetGeo.tsx +40 -0
  1202. package/src/global-account/react/hooks/useHandleConnectWithPrivy.tsx +78 -0
  1203. package/src/global-account/react/hooks/useHasMounted.ts +11 -0
  1204. package/src/global-account/react/hooks/useIsMobile.tsx +9 -0
  1205. package/src/global-account/react/hooks/useIsomorphicLayoutEffect.tsx +3 -0
  1206. package/src/global-account/react/hooks/useMediaQuery.tsx +60 -0
  1207. package/src/global-account/react/hooks/useNativeBalance.tsx +90 -0
  1208. package/src/global-account/react/hooks/useOnchainName.tsx +198 -0
  1209. package/src/global-account/react/hooks/useOneBalance.tsx +95 -0
  1210. package/src/global-account/react/hooks/useQueryB3.ts +72 -0
  1211. package/src/global-account/react/hooks/useQueryBSMNT.ts +72 -0
  1212. package/src/global-account/react/hooks/useRemoveSessionKey.tsx +69 -0
  1213. package/src/global-account/react/hooks/useRouter.tsx +103 -0
  1214. package/src/global-account/react/hooks/useSearchParamsSSR.tsx +34 -0
  1215. package/src/global-account/react/hooks/useSiwe.tsx +39 -0
  1216. package/src/global-account/react/hooks/useTokenBalance.tsx +85 -0
  1217. package/src/global-account/react/hooks/useTokenBalancesByChain.tsx +93 -0
  1218. package/src/global-account/react/hooks/useTokenData.ts +56 -0
  1219. package/src/global-account/react/hooks/useTokenFromUrl.tsx +46 -0
  1220. package/src/global-account/react/hooks/useTokenPrice.tsx +85 -0
  1221. package/src/global-account/react/hooks/useTokenPriceWithFallback.tsx +58 -0
  1222. package/src/global-account/react/hooks/useTokensFromAddress.ts +118 -0
  1223. package/src/global-account/react/hooks/useURLParams.ts +43 -0
  1224. package/src/global-account/react/stores/useAuthStore.ts +64 -0
  1225. package/src/global-account/react/stores/useModalStore.ts +325 -0
  1226. package/src/global-account/server.ts +23 -0
  1227. package/src/global-account/types/b3-api.ts +4 -0
  1228. package/src/global-account/types/b3-api.types.ts +83 -0
  1229. package/src/global-account/types/chain-networks.ts +54 -0
  1230. package/src/global-account/types/feature-flags.ts +13 -0
  1231. package/src/global-account/types/permissions.ts +24 -0
  1232. package/src/global-account/types/react-timeago.d.ts +18 -0
  1233. package/src/global-account/types/reservoir.types.ts +94 -0
  1234. package/src/global-account/types/simplehash.types.ts +301 -0
  1235. package/src/global-account/types.ts +24 -0
  1236. package/src/shared/constants/chains/b3Chain.ts +177 -0
  1237. package/src/shared/constants/chains/chainPlatformMap.ts +47 -0
  1238. package/src/shared/constants/chains/supported.ts +33 -0
  1239. package/src/shared/constants/index.ts +26 -0
  1240. package/src/shared/thirdweb/generated/@tanstack/react-query.gen.ts +1363 -0
  1241. package/src/shared/thirdweb/generated/client.gen.ts +16 -0
  1242. package/src/shared/thirdweb/generated/index.ts +3 -0
  1243. package/src/shared/thirdweb/generated/sdk.gen.ts +1051 -0
  1244. package/src/shared/thirdweb/generated/types.gen.ts +4349 -0
  1245. package/src/shared/thirdweb/initiateClient.ts +30 -0
  1246. package/src/shared/thirdweb/insight-service.json +12664 -0
  1247. package/src/shared/thirdweb/openapi-ts.config.ts +7 -0
  1248. package/src/shared/utils/b3Ens.ts +28 -0
  1249. package/src/shared/utils/centerTruncate.ts +12 -0
  1250. package/src/shared/utils/chain-transformers.ts +51 -0
  1251. package/src/shared/utils/chains.ts +38 -0
  1252. package/src/shared/utils/cn.ts +6 -0
  1253. package/src/shared/utils/colors.ts +33 -0
  1254. package/src/shared/utils/cookies.ts +13 -0
  1255. package/src/shared/utils/debug.ts +17 -0
  1256. package/src/shared/utils/fetchBalances.ts +89 -0
  1257. package/src/shared/utils/fetchBsmntProfile.ts +29 -0
  1258. package/src/shared/utils/formatAddress.ts +16 -0
  1259. package/src/shared/utils/formatNumber.ts +43 -0
  1260. package/src/shared/utils/index.ts +7 -0
  1261. package/src/shared/utils/insights.ts +409 -0
  1262. package/src/shared/utils/ipfs.ts +33 -0
  1263. package/src/shared/utils/number.ts +142 -0
  1264. package/src/shared/utils/payment.utils.ts +34 -0
  1265. package/src/shared/utils/simplehash.ts +372 -0
  1266. package/src/shared/utils/sprinter.ts +14 -0
  1267. package/src/shared/utils/thirdweb-insights.ts +338 -0
  1268. package/src/shared/utils/thirdweb.ts +11 -0
  1269. package/src/styles/index.css +279 -0
  1270. package/src/styles/index.ts +24 -0
@@ -0,0 +1,4159 @@
1
+ export type GetV1WebhooksData = {
2
+ body?: never;
3
+ path?: never;
4
+ query?: {
5
+ /**
6
+ * The webhook ID to request the data for
7
+ */
8
+ webhook_id?: string;
9
+ };
10
+ url: '/v1/webhooks';
11
+ };
12
+ export type GetV1WebhooksErrors = {
13
+ /**
14
+ * Bad request
15
+ */
16
+ 400: {
17
+ error: string;
18
+ };
19
+ /**
20
+ * Internal server error
21
+ */
22
+ 500: {
23
+ error: string;
24
+ };
25
+ };
26
+ export type GetV1WebhooksError = GetV1WebhooksErrors[keyof GetV1WebhooksErrors];
27
+ export type GetV1WebhooksResponses = {
28
+ /**
29
+ * Successful response
30
+ */
31
+ 200: {
32
+ data: Array<{
33
+ id: string;
34
+ team_id: string;
35
+ project_id: string;
36
+ name: string | null;
37
+ webhook_url: string;
38
+ webhook_secret: string;
39
+ filters: string | number | boolean | unknown | {
40
+ [key: string]: unknown;
41
+ } | Array<unknown>;
42
+ suspended_at: string | null;
43
+ suspended_reason: string | null;
44
+ disabled: boolean;
45
+ created_at: string;
46
+ updated_at: string | null;
47
+ }>;
48
+ };
49
+ };
50
+ export type GetV1WebhooksResponse = GetV1WebhooksResponses[keyof GetV1WebhooksResponses];
51
+ export type PostV1WebhooksData = {
52
+ body?: {
53
+ webhook_url: string;
54
+ filters: {
55
+ 'v1.events'?: {
56
+ chain_ids?: Array<string>;
57
+ addresses?: Array<string>;
58
+ signatures?: Array<{
59
+ sig_hash: string;
60
+ abi?: string;
61
+ params?: {
62
+ [key: string]: unknown;
63
+ };
64
+ }>;
65
+ };
66
+ 'v1.transactions'?: {
67
+ chain_ids?: Array<string>;
68
+ from_addresses?: Array<string>;
69
+ to_addresses?: Array<string>;
70
+ signatures?: Array<{
71
+ sig_hash: string;
72
+ abi?: string;
73
+ params?: Array<string>;
74
+ }>;
75
+ };
76
+ };
77
+ name?: string;
78
+ };
79
+ path?: never;
80
+ query?: never;
81
+ url: '/v1/webhooks';
82
+ };
83
+ export type PostV1WebhooksErrors = {
84
+ /**
85
+ * Bad request
86
+ */
87
+ 400: {
88
+ error: string;
89
+ };
90
+ /**
91
+ * Forbidden
92
+ */
93
+ 403: {
94
+ error: string;
95
+ };
96
+ /**
97
+ * Internal server error
98
+ */
99
+ 500: {
100
+ error: string;
101
+ };
102
+ };
103
+ export type PostV1WebhooksError = PostV1WebhooksErrors[keyof PostV1WebhooksErrors];
104
+ export type PostV1WebhooksResponses = {
105
+ /**
106
+ * Successful response
107
+ */
108
+ 200: {
109
+ data: {
110
+ id: string;
111
+ team_id: string;
112
+ project_id: string;
113
+ name: string | null;
114
+ webhook_url: string;
115
+ webhook_secret: string;
116
+ filters: string | number | boolean | unknown | {
117
+ [key: string]: unknown;
118
+ } | Array<unknown>;
119
+ suspended_at: string | null;
120
+ suspended_reason: string | null;
121
+ disabled: boolean;
122
+ created_at: string;
123
+ updated_at: string | null;
124
+ };
125
+ };
126
+ };
127
+ export type PostV1WebhooksResponse = PostV1WebhooksResponses[keyof PostV1WebhooksResponses];
128
+ export type DeleteV1WebhooksByWebhookIdData = {
129
+ body?: never;
130
+ path: {
131
+ webhook_id: string;
132
+ };
133
+ query?: never;
134
+ url: '/v1/webhooks/{webhook_id}';
135
+ };
136
+ export type DeleteV1WebhooksByWebhookIdErrors = {
137
+ /**
138
+ * Bad request
139
+ */
140
+ 400: {
141
+ error: string;
142
+ };
143
+ /**
144
+ * Webhook not found
145
+ */
146
+ 404: {
147
+ error: string;
148
+ };
149
+ /**
150
+ * Internal server error
151
+ */
152
+ 500: {
153
+ error: string;
154
+ };
155
+ };
156
+ export type DeleteV1WebhooksByWebhookIdError = DeleteV1WebhooksByWebhookIdErrors[keyof DeleteV1WebhooksByWebhookIdErrors];
157
+ export type DeleteV1WebhooksByWebhookIdResponses = {
158
+ /**
159
+ * Successful response
160
+ */
161
+ 200: {
162
+ data: {
163
+ id: string;
164
+ team_id: string;
165
+ project_id: string;
166
+ name: string | null;
167
+ webhook_url: string;
168
+ webhook_secret: string;
169
+ filters: string | number | boolean | unknown | {
170
+ [key: string]: unknown;
171
+ } | Array<unknown>;
172
+ suspended_at: string | null;
173
+ suspended_reason: string | null;
174
+ disabled: boolean;
175
+ created_at: string;
176
+ updated_at: string | null;
177
+ };
178
+ };
179
+ };
180
+ export type DeleteV1WebhooksByWebhookIdResponse = DeleteV1WebhooksByWebhookIdResponses[keyof DeleteV1WebhooksByWebhookIdResponses];
181
+ export type PatchV1WebhooksByWebhookIdData = {
182
+ body?: {
183
+ webhook_url?: string;
184
+ filters?: {
185
+ 'v1.events'?: {
186
+ chain_ids?: Array<string>;
187
+ addresses?: Array<string>;
188
+ signatures?: Array<{
189
+ sig_hash: string;
190
+ abi?: string;
191
+ params?: {
192
+ [key: string]: unknown;
193
+ };
194
+ }>;
195
+ };
196
+ 'v1.transactions'?: {
197
+ chain_ids?: Array<string>;
198
+ from_addresses?: Array<string>;
199
+ to_addresses?: Array<string>;
200
+ signatures?: Array<{
201
+ sig_hash: string;
202
+ abi?: string;
203
+ params?: Array<string>;
204
+ }>;
205
+ };
206
+ };
207
+ name?: string;
208
+ disabled?: boolean;
209
+ };
210
+ path: {
211
+ webhook_id: string;
212
+ };
213
+ query?: never;
214
+ url: '/v1/webhooks/{webhook_id}';
215
+ };
216
+ export type PatchV1WebhooksByWebhookIdErrors = {
217
+ /**
218
+ * Bad request
219
+ */
220
+ 400: {
221
+ error: string;
222
+ };
223
+ /**
224
+ * Webhook not found
225
+ */
226
+ 404: {
227
+ error: string;
228
+ };
229
+ /**
230
+ * Internal server error
231
+ */
232
+ 500: {
233
+ error: string;
234
+ };
235
+ };
236
+ export type PatchV1WebhooksByWebhookIdError = PatchV1WebhooksByWebhookIdErrors[keyof PatchV1WebhooksByWebhookIdErrors];
237
+ export type PatchV1WebhooksByWebhookIdResponses = {
238
+ /**
239
+ * Successful response
240
+ */
241
+ 200: {
242
+ data: {
243
+ id: string;
244
+ team_id: string;
245
+ project_id: string;
246
+ name: string | null;
247
+ webhook_url: string;
248
+ webhook_secret: string;
249
+ filters: string | number | boolean | unknown | {
250
+ [key: string]: unknown;
251
+ } | Array<unknown>;
252
+ suspended_at: string | null;
253
+ suspended_reason: string | null;
254
+ disabled: boolean;
255
+ created_at: string;
256
+ updated_at: string | null;
257
+ };
258
+ };
259
+ };
260
+ export type PatchV1WebhooksByWebhookIdResponse = PatchV1WebhooksByWebhookIdResponses[keyof PatchV1WebhooksByWebhookIdResponses];
261
+ export type PostV1WebhooksTestData = {
262
+ body?: {
263
+ webhook_url: string;
264
+ type?: 'event' | 'transaction';
265
+ };
266
+ path?: never;
267
+ query?: never;
268
+ url: '/v1/webhooks/test';
269
+ };
270
+ export type PostV1WebhooksTestErrors = {
271
+ /**
272
+ * Bad request
273
+ */
274
+ 400: {
275
+ error: string;
276
+ };
277
+ /**
278
+ * Rate limit exceeded
279
+ */
280
+ 429: {
281
+ error: string;
282
+ };
283
+ /**
284
+ * Internal server error
285
+ */
286
+ 500: {
287
+ error: string;
288
+ };
289
+ };
290
+ export type PostV1WebhooksTestError = PostV1WebhooksTestErrors[keyof PostV1WebhooksTestErrors];
291
+ export type PostV1WebhooksTestResponses = {
292
+ /**
293
+ * Test event sent successfully
294
+ */
295
+ 200: {
296
+ success: boolean;
297
+ };
298
+ };
299
+ export type PostV1WebhooksTestResponse = PostV1WebhooksTestResponses[keyof PostV1WebhooksTestResponses];
300
+ export type GetV1EventsData = {
301
+ body?: never;
302
+ path?: never;
303
+ query?: {
304
+ /**
305
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
306
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
307
+ * Optional, because a single chain can as well be specified as a subdomain
308
+ */
309
+ chain?: Array<number> | (number | null) | unknown;
310
+ /**
311
+ * Filter by block number
312
+ */
313
+ filter_block_number?: number | null;
314
+ /**
315
+ * Filter by block number greater than or equal to
316
+ */
317
+ filter_block_number_gte?: number | null;
318
+ /**
319
+ * Filter by block number greater than
320
+ */
321
+ filter_block_number_gt?: number | null;
322
+ /**
323
+ * Filter by block number less than or equal to
324
+ */
325
+ filter_block_number_lte?: number | null;
326
+ /**
327
+ * Filter by block number less than
328
+ */
329
+ filter_block_number_lt?: number | null;
330
+ /**
331
+ * Filter by block hash
332
+ */
333
+ filter_block_hash?: string;
334
+ /**
335
+ * Filter by block timestamp
336
+ */
337
+ filter_block_timestamp?: number | null;
338
+ /**
339
+ * Filter by block timestamp greater than or equal to
340
+ */
341
+ filter_block_timestamp_gte?: number | null;
342
+ /**
343
+ * Filter by block timestamp greater than
344
+ */
345
+ filter_block_timestamp_gt?: number | null;
346
+ /**
347
+ * Filter by block timestamp less than or equal to
348
+ */
349
+ filter_block_timestamp_lte?: number | null;
350
+ /**
351
+ * Filter by block timestamp less than
352
+ */
353
+ filter_block_timestamp_lt?: number | null;
354
+ /**
355
+ * Field to sort results by
356
+ */
357
+ sort_by?: 'block_number' | string;
358
+ /**
359
+ * Sort order (asc or desc)
360
+ */
361
+ sort_order?: 'asc' | 'desc';
362
+ group_by?: Array<string | null> | (string | null) | unknown;
363
+ aggregate?: Array<string | null> | (string | null) | unknown;
364
+ /**
365
+ * Filter by transaction index
366
+ */
367
+ filter_transaction_index?: number | null;
368
+ /**
369
+ * Filter by transaction index greater than or equal to
370
+ */
371
+ filter_transaction_index_gte?: number | null;
372
+ /**
373
+ * Filter by transaction index greater than
374
+ */
375
+ filter_transaction_index_gt?: number | null;
376
+ /**
377
+ * Filter by transaction index less than or equal to
378
+ */
379
+ filter_transaction_index_lte?: number | null;
380
+ /**
381
+ * Filter by transaction index less than
382
+ */
383
+ filter_transaction_index_lt?: number | null;
384
+ /**
385
+ * Enable ABI decoding of the transactions/events data
386
+ */
387
+ decode?: boolean | null;
388
+ /**
389
+ * Filter by transaction hash
390
+ */
391
+ filter_transaction_hash?: string;
392
+ /**
393
+ * Filter by log index
394
+ */
395
+ filter_log_index?: number | null;
396
+ /**
397
+ * Filter by log index greater than or equal to
398
+ */
399
+ filter_log_index_gte?: number | null;
400
+ /**
401
+ * Filter by log index greater than
402
+ */
403
+ filter_log_index_gt?: number | null;
404
+ /**
405
+ * Filter by log index less than or equal to
406
+ */
407
+ filter_log_index_lte?: number | null;
408
+ /**
409
+ * Filter by log index less than
410
+ */
411
+ filter_log_index_lt?: number | null;
412
+ /**
413
+ * Filter by topic 1
414
+ */
415
+ filter_topic_1?: string;
416
+ /**
417
+ * Filter by topic 2
418
+ */
419
+ filter_topic_2?: string;
420
+ /**
421
+ * Filter by topic 3
422
+ */
423
+ filter_topic_3?: string;
424
+ /**
425
+ * Filter by topic 0
426
+ */
427
+ filter_topic_0?: string;
428
+ /**
429
+ * Filter by address
430
+ */
431
+ filter_address?: string;
432
+ /**
433
+ * The number of items to return
434
+ */
435
+ limit?: number;
436
+ page?: number | null;
437
+ };
438
+ url: '/v1/events';
439
+ };
440
+ export type GetV1EventsErrors = {
441
+ /**
442
+ * Bad request
443
+ */
444
+ 400: {
445
+ error: string;
446
+ };
447
+ /**
448
+ * Internal server error
449
+ */
450
+ 500: {
451
+ error: string;
452
+ };
453
+ };
454
+ export type GetV1EventsError = GetV1EventsErrors[keyof GetV1EventsErrors];
455
+ export type GetV1EventsResponses = {
456
+ /**
457
+ * Successful response
458
+ */
459
+ 200: {
460
+ data?: Array<{
461
+ chain_id: number;
462
+ block_number: string;
463
+ block_hash: string;
464
+ block_timestamp: string;
465
+ transaction_hash: string;
466
+ transaction_index: number;
467
+ log_index: number;
468
+ address: string;
469
+ data: string;
470
+ topics: Array<string>;
471
+ decoded?: {
472
+ name: string;
473
+ signature: string;
474
+ indexed_params: {
475
+ [key: string]: unknown;
476
+ };
477
+ non_indexed_params: {
478
+ [key: string]: unknown;
479
+ };
480
+ };
481
+ }>;
482
+ aggregations?: unknown;
483
+ meta: {
484
+ chain_ids: Array<number>;
485
+ address?: string;
486
+ signature?: string;
487
+ page: number;
488
+ limit_per_chain: number;
489
+ total_items: number;
490
+ total_pages: number;
491
+ };
492
+ };
493
+ };
494
+ export type GetV1EventsResponse = GetV1EventsResponses[keyof GetV1EventsResponses];
495
+ export type GetV1EventsByContractAddressData = {
496
+ body?: never;
497
+ path: {
498
+ contractAddress: string;
499
+ };
500
+ query?: {
501
+ /**
502
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
503
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
504
+ * Optional, because a single chain can as well be specified as a subdomain
505
+ */
506
+ chain?: Array<number> | (number | null) | unknown;
507
+ /**
508
+ * Filter by block number
509
+ */
510
+ filter_block_number?: number | null;
511
+ /**
512
+ * Filter by block number greater than or equal to
513
+ */
514
+ filter_block_number_gte?: number | null;
515
+ /**
516
+ * Filter by block number greater than
517
+ */
518
+ filter_block_number_gt?: number | null;
519
+ /**
520
+ * Filter by block number less than or equal to
521
+ */
522
+ filter_block_number_lte?: number | null;
523
+ /**
524
+ * Filter by block number less than
525
+ */
526
+ filter_block_number_lt?: number | null;
527
+ /**
528
+ * Filter by block hash
529
+ */
530
+ filter_block_hash?: string;
531
+ /**
532
+ * Filter by block timestamp
533
+ */
534
+ filter_block_timestamp?: number | null;
535
+ /**
536
+ * Filter by block timestamp greater than or equal to
537
+ */
538
+ filter_block_timestamp_gte?: number | null;
539
+ /**
540
+ * Filter by block timestamp greater than
541
+ */
542
+ filter_block_timestamp_gt?: number | null;
543
+ /**
544
+ * Filter by block timestamp less than or equal to
545
+ */
546
+ filter_block_timestamp_lte?: number | null;
547
+ /**
548
+ * Filter by block timestamp less than
549
+ */
550
+ filter_block_timestamp_lt?: number | null;
551
+ /**
552
+ * Field to sort results by
553
+ */
554
+ sort_by?: 'block_number' | string;
555
+ /**
556
+ * Sort order (asc or desc)
557
+ */
558
+ sort_order?: 'asc' | 'desc';
559
+ group_by?: Array<string | null> | (string | null) | unknown;
560
+ aggregate?: Array<string | null> | (string | null) | unknown;
561
+ /**
562
+ * Filter by transaction index
563
+ */
564
+ filter_transaction_index?: number | null;
565
+ /**
566
+ * Filter by transaction index greater than or equal to
567
+ */
568
+ filter_transaction_index_gte?: number | null;
569
+ /**
570
+ * Filter by transaction index greater than
571
+ */
572
+ filter_transaction_index_gt?: number | null;
573
+ /**
574
+ * Filter by transaction index less than or equal to
575
+ */
576
+ filter_transaction_index_lte?: number | null;
577
+ /**
578
+ * Filter by transaction index less than
579
+ */
580
+ filter_transaction_index_lt?: number | null;
581
+ /**
582
+ * Enable ABI decoding of the transactions/events data
583
+ */
584
+ decode?: boolean | null;
585
+ /**
586
+ * Filter by transaction hash
587
+ */
588
+ filter_transaction_hash?: string;
589
+ /**
590
+ * Filter by log index
591
+ */
592
+ filter_log_index?: number | null;
593
+ /**
594
+ * Filter by log index greater than or equal to
595
+ */
596
+ filter_log_index_gte?: number | null;
597
+ /**
598
+ * Filter by log index greater than
599
+ */
600
+ filter_log_index_gt?: number | null;
601
+ /**
602
+ * Filter by log index less than or equal to
603
+ */
604
+ filter_log_index_lte?: number | null;
605
+ /**
606
+ * Filter by log index less than
607
+ */
608
+ filter_log_index_lt?: number | null;
609
+ /**
610
+ * Filter by topic 1
611
+ */
612
+ filter_topic_1?: string;
613
+ /**
614
+ * Filter by topic 2
615
+ */
616
+ filter_topic_2?: string;
617
+ /**
618
+ * Filter by topic 3
619
+ */
620
+ filter_topic_3?: string;
621
+ /**
622
+ * Filter by topic 0
623
+ */
624
+ filter_topic_0?: string;
625
+ /**
626
+ * The number of items to return
627
+ */
628
+ limit?: number;
629
+ page?: number | null;
630
+ };
631
+ url: '/v1/events/{contractAddress}';
632
+ };
633
+ export type GetV1EventsByContractAddressErrors = {
634
+ /**
635
+ * Bad request
636
+ */
637
+ 400: {
638
+ error: string;
639
+ };
640
+ /**
641
+ * Internal server error
642
+ */
643
+ 500: {
644
+ error: string;
645
+ };
646
+ };
647
+ export type GetV1EventsByContractAddressError = GetV1EventsByContractAddressErrors[keyof GetV1EventsByContractAddressErrors];
648
+ export type GetV1EventsByContractAddressResponses = {
649
+ /**
650
+ * Successful response
651
+ */
652
+ 200: {
653
+ data?: Array<{
654
+ chain_id: number;
655
+ block_number: string;
656
+ block_hash: string;
657
+ block_timestamp: string;
658
+ transaction_hash: string;
659
+ transaction_index: number;
660
+ log_index: number;
661
+ address: string;
662
+ data: string;
663
+ topics: Array<string>;
664
+ decoded?: {
665
+ name: string;
666
+ signature: string;
667
+ indexed_params: {
668
+ [key: string]: unknown;
669
+ };
670
+ non_indexed_params: {
671
+ [key: string]: unknown;
672
+ };
673
+ };
674
+ }>;
675
+ aggregations?: unknown;
676
+ meta: {
677
+ chain_ids: Array<number>;
678
+ address?: string;
679
+ signature?: string;
680
+ page: number;
681
+ limit_per_chain: number;
682
+ total_items: number;
683
+ total_pages: number;
684
+ };
685
+ };
686
+ };
687
+ export type GetV1EventsByContractAddressResponse = GetV1EventsByContractAddressResponses[keyof GetV1EventsByContractAddressResponses];
688
+ export type GetV1EventsByContractAddressBySignatureData = {
689
+ body?: never;
690
+ path: {
691
+ contractAddress: string;
692
+ signature: string;
693
+ };
694
+ query?: {
695
+ /**
696
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
697
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
698
+ * Optional, because a single chain can as well be specified as a subdomain
699
+ */
700
+ chain?: Array<number> | (number | null) | unknown;
701
+ /**
702
+ * Filter by block number
703
+ */
704
+ filter_block_number?: number | null;
705
+ /**
706
+ * Filter by block number greater than or equal to
707
+ */
708
+ filter_block_number_gte?: number | null;
709
+ /**
710
+ * Filter by block number greater than
711
+ */
712
+ filter_block_number_gt?: number | null;
713
+ /**
714
+ * Filter by block number less than or equal to
715
+ */
716
+ filter_block_number_lte?: number | null;
717
+ /**
718
+ * Filter by block number less than
719
+ */
720
+ filter_block_number_lt?: number | null;
721
+ /**
722
+ * Filter by block hash
723
+ */
724
+ filter_block_hash?: string;
725
+ /**
726
+ * Filter by block timestamp
727
+ */
728
+ filter_block_timestamp?: number | null;
729
+ /**
730
+ * Filter by block timestamp greater than or equal to
731
+ */
732
+ filter_block_timestamp_gte?: number | null;
733
+ /**
734
+ * Filter by block timestamp greater than
735
+ */
736
+ filter_block_timestamp_gt?: number | null;
737
+ /**
738
+ * Filter by block timestamp less than or equal to
739
+ */
740
+ filter_block_timestamp_lte?: number | null;
741
+ /**
742
+ * Filter by block timestamp less than
743
+ */
744
+ filter_block_timestamp_lt?: number | null;
745
+ /**
746
+ * Field to sort results by
747
+ */
748
+ sort_by?: 'block_number' | string;
749
+ /**
750
+ * Sort order (asc or desc)
751
+ */
752
+ sort_order?: 'asc' | 'desc';
753
+ group_by?: Array<string | null> | (string | null) | unknown;
754
+ aggregate?: Array<string | null> | (string | null) | unknown;
755
+ /**
756
+ * Filter by transaction index
757
+ */
758
+ filter_transaction_index?: number | null;
759
+ /**
760
+ * Filter by transaction index greater than or equal to
761
+ */
762
+ filter_transaction_index_gte?: number | null;
763
+ /**
764
+ * Filter by transaction index greater than
765
+ */
766
+ filter_transaction_index_gt?: number | null;
767
+ /**
768
+ * Filter by transaction index less than or equal to
769
+ */
770
+ filter_transaction_index_lte?: number | null;
771
+ /**
772
+ * Filter by transaction index less than
773
+ */
774
+ filter_transaction_index_lt?: number | null;
775
+ /**
776
+ * Enable ABI decoding of the transactions/events data
777
+ */
778
+ decode?: boolean | null;
779
+ /**
780
+ * Filter by transaction hash
781
+ */
782
+ filter_transaction_hash?: string;
783
+ /**
784
+ * Filter by log index
785
+ */
786
+ filter_log_index?: number | null;
787
+ /**
788
+ * Filter by log index greater than or equal to
789
+ */
790
+ filter_log_index_gte?: number | null;
791
+ /**
792
+ * Filter by log index greater than
793
+ */
794
+ filter_log_index_gt?: number | null;
795
+ /**
796
+ * Filter by log index less than or equal to
797
+ */
798
+ filter_log_index_lte?: number | null;
799
+ /**
800
+ * Filter by log index less than
801
+ */
802
+ filter_log_index_lt?: number | null;
803
+ /**
804
+ * Filter by topic 1
805
+ */
806
+ filter_topic_1?: string;
807
+ /**
808
+ * Filter by topic 2
809
+ */
810
+ filter_topic_2?: string;
811
+ /**
812
+ * Filter by topic 3
813
+ */
814
+ filter_topic_3?: string;
815
+ /**
816
+ * The number of items to return
817
+ */
818
+ limit?: number;
819
+ page?: number | null;
820
+ };
821
+ url: '/v1/events/{contractAddress}/{signature}';
822
+ };
823
+ export type GetV1EventsByContractAddressBySignatureErrors = {
824
+ /**
825
+ * Bad request
826
+ */
827
+ 400: {
828
+ error: string;
829
+ };
830
+ /**
831
+ * Internal server error
832
+ */
833
+ 500: {
834
+ error: string;
835
+ };
836
+ };
837
+ export type GetV1EventsByContractAddressBySignatureError = GetV1EventsByContractAddressBySignatureErrors[keyof GetV1EventsByContractAddressBySignatureErrors];
838
+ export type GetV1EventsByContractAddressBySignatureResponses = {
839
+ /**
840
+ * Successful response
841
+ */
842
+ 200: {
843
+ data?: Array<{
844
+ chain_id: number;
845
+ block_number: string;
846
+ block_hash: string;
847
+ block_timestamp: string;
848
+ transaction_hash: string;
849
+ transaction_index: number;
850
+ log_index: number;
851
+ address: string;
852
+ data: string;
853
+ topics: Array<string>;
854
+ decoded?: {
855
+ name: string;
856
+ signature: string;
857
+ indexed_params: {
858
+ [key: string]: unknown;
859
+ };
860
+ non_indexed_params: {
861
+ [key: string]: unknown;
862
+ };
863
+ };
864
+ }>;
865
+ aggregations?: unknown;
866
+ meta: {
867
+ chain_ids: Array<number>;
868
+ address?: string;
869
+ signature?: string;
870
+ page: number;
871
+ limit_per_chain: number;
872
+ total_items: number;
873
+ total_pages: number;
874
+ };
875
+ };
876
+ };
877
+ export type GetV1EventsByContractAddressBySignatureResponse = GetV1EventsByContractAddressBySignatureResponses[keyof GetV1EventsByContractAddressBySignatureResponses];
878
+ export type GetV1TransactionsData = {
879
+ body?: never;
880
+ path?: never;
881
+ query?: {
882
+ /**
883
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
884
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
885
+ * Optional, because a single chain can as well be specified as a subdomain
886
+ */
887
+ chain?: Array<number> | (number | null) | unknown;
888
+ /**
889
+ * Filter by block number
890
+ */
891
+ filter_block_number?: number | null;
892
+ /**
893
+ * Filter by block number greater than or equal to
894
+ */
895
+ filter_block_number_gte?: number | null;
896
+ /**
897
+ * Filter by block number greater than
898
+ */
899
+ filter_block_number_gt?: number | null;
900
+ /**
901
+ * Filter by block number less than or equal to
902
+ */
903
+ filter_block_number_lte?: number | null;
904
+ /**
905
+ * Filter by block number less than
906
+ */
907
+ filter_block_number_lt?: number | null;
908
+ /**
909
+ * Filter by block hash
910
+ */
911
+ filter_block_hash?: string;
912
+ /**
913
+ * Filter by block timestamp
914
+ */
915
+ filter_block_timestamp?: number | null;
916
+ /**
917
+ * Filter by block timestamp greater than or equal to
918
+ */
919
+ filter_block_timestamp_gte?: number | null;
920
+ /**
921
+ * Filter by block timestamp greater than
922
+ */
923
+ filter_block_timestamp_gt?: number | null;
924
+ /**
925
+ * Filter by block timestamp less than or equal to
926
+ */
927
+ filter_block_timestamp_lte?: number | null;
928
+ /**
929
+ * Filter by block timestamp less than
930
+ */
931
+ filter_block_timestamp_lt?: number | null;
932
+ /**
933
+ * Field to sort results by
934
+ */
935
+ sort_by?: 'block_number' | string;
936
+ /**
937
+ * Sort order (asc or desc)
938
+ */
939
+ sort_order?: 'asc' | 'desc';
940
+ group_by?: Array<string | null> | (string | null) | unknown;
941
+ aggregate?: Array<string | null> | (string | null) | unknown;
942
+ /**
943
+ * Filter by transaction index
944
+ */
945
+ filter_transaction_index?: number | null;
946
+ /**
947
+ * Filter by transaction index greater than or equal to
948
+ */
949
+ filter_transaction_index_gte?: number | null;
950
+ /**
951
+ * Filter by transaction index greater than
952
+ */
953
+ filter_transaction_index_gt?: number | null;
954
+ /**
955
+ * Filter by transaction index less than or equal to
956
+ */
957
+ filter_transaction_index_lte?: number | null;
958
+ /**
959
+ * Filter by transaction index less than
960
+ */
961
+ filter_transaction_index_lt?: number | null;
962
+ /**
963
+ * Enable ABI decoding of the transactions/events data
964
+ */
965
+ decode?: boolean | null;
966
+ /**
967
+ * Filter by transaction hash
968
+ */
969
+ filter_hash?: string;
970
+ /**
971
+ * Filter by from address
972
+ */
973
+ filter_from_address?: string;
974
+ /**
975
+ * Filter by value
976
+ */
977
+ filter_value?: number | null;
978
+ /**
979
+ * Filter by value greater than or equal to
980
+ */
981
+ filter_value_gte?: number | null;
982
+ /**
983
+ * Filter by value greater than
984
+ */
985
+ filter_value_gt?: number | null;
986
+ /**
987
+ * Filter by value less than or equal to
988
+ */
989
+ filter_value_lte?: number | null;
990
+ /**
991
+ * Filter by value less than
992
+ */
993
+ filter_value_lt?: number | null;
994
+ /**
995
+ * Filter by gas price
996
+ */
997
+ filter_gas_price?: number | null;
998
+ /**
999
+ * Filter by gas price greater than or equal to
1000
+ */
1001
+ filter_gas_price_gte?: number | null;
1002
+ /**
1003
+ * Filter by gas price greater than
1004
+ */
1005
+ filter_gas_price_gt?: number | null;
1006
+ /**
1007
+ * Filter by gas price less than or equal to
1008
+ */
1009
+ filter_gas_price_lte?: number | null;
1010
+ /**
1011
+ * Filter by gas price less than
1012
+ */
1013
+ filter_gas_price_lt?: number | null;
1014
+ /**
1015
+ * Filter by gas
1016
+ */
1017
+ filter_gas?: number | null;
1018
+ /**
1019
+ * Filter by gas greater than or equal to
1020
+ */
1021
+ filter_gas_gte?: number | null;
1022
+ /**
1023
+ * Filter by gas greater than
1024
+ */
1025
+ filter_gas_gt?: number | null;
1026
+ /**
1027
+ * Filter by gas less than or equal to
1028
+ */
1029
+ filter_gas_lte?: number | null;
1030
+ /**
1031
+ * Filter by gas less than
1032
+ */
1033
+ filter_gas_lt?: number | null;
1034
+ /**
1035
+ * Filter by function selector
1036
+ */
1037
+ filter_function_selector?: string;
1038
+ /**
1039
+ * Filter by to address
1040
+ */
1041
+ filter_to_address?: string;
1042
+ /**
1043
+ * The number of items to return
1044
+ */
1045
+ limit?: number;
1046
+ page?: number | null;
1047
+ };
1048
+ url: '/v1/transactions';
1049
+ };
1050
+ export type GetV1TransactionsErrors = {
1051
+ /**
1052
+ * Bad request
1053
+ */
1054
+ 400: {
1055
+ error: string;
1056
+ };
1057
+ /**
1058
+ * Internal server error
1059
+ */
1060
+ 500: {
1061
+ error: string;
1062
+ };
1063
+ };
1064
+ export type GetV1TransactionsError = GetV1TransactionsErrors[keyof GetV1TransactionsErrors];
1065
+ export type GetV1TransactionsResponses = {
1066
+ /**
1067
+ * Successful response
1068
+ */
1069
+ 200: {
1070
+ data?: Array<{
1071
+ chain_id: number;
1072
+ block_number: string;
1073
+ block_hash: string;
1074
+ block_timestamp: string;
1075
+ hash: string;
1076
+ nonce: number;
1077
+ transaction_index: number;
1078
+ from_address: string;
1079
+ to_address: string;
1080
+ value: number;
1081
+ gas_price: number;
1082
+ gas: number;
1083
+ function_selector: string;
1084
+ data: string;
1085
+ max_fee_per_gas: number;
1086
+ max_priority_fee_per_gas: number;
1087
+ transaction_type: number;
1088
+ r: number;
1089
+ s: number;
1090
+ v: number;
1091
+ access_list_json?: string;
1092
+ contract_address?: string;
1093
+ gas_used?: number;
1094
+ cumulative_gas_used?: number;
1095
+ effective_gas_price?: number;
1096
+ blob_gas_used?: number;
1097
+ blob_gas_price?: number;
1098
+ logs_bloom?: string;
1099
+ status?: number;
1100
+ decoded?: {
1101
+ name: string;
1102
+ signature: string;
1103
+ inputs?: {
1104
+ [key: string]: unknown;
1105
+ };
1106
+ };
1107
+ /**
1108
+ * @deprecated
1109
+ */
1110
+ decodedData?: {
1111
+ name: string;
1112
+ signature: string;
1113
+ inputs?: {
1114
+ [key: string]: unknown;
1115
+ };
1116
+ };
1117
+ }>;
1118
+ aggregations?: unknown;
1119
+ meta: {
1120
+ chain_ids: Array<number>;
1121
+ address?: string;
1122
+ signature?: string;
1123
+ page: number;
1124
+ limit_per_chain: number;
1125
+ total_items: number;
1126
+ total_pages: number;
1127
+ };
1128
+ };
1129
+ };
1130
+ export type GetV1TransactionsResponse = GetV1TransactionsResponses[keyof GetV1TransactionsResponses];
1131
+ export type GetV1TransactionsByContractAddressData = {
1132
+ body?: never;
1133
+ path: {
1134
+ contractAddress: string;
1135
+ };
1136
+ query?: {
1137
+ /**
1138
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
1139
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
1140
+ * Optional, because a single chain can as well be specified as a subdomain
1141
+ */
1142
+ chain?: Array<number> | (number | null) | unknown;
1143
+ /**
1144
+ * Filter by block number
1145
+ */
1146
+ filter_block_number?: number | null;
1147
+ /**
1148
+ * Filter by block number greater than or equal to
1149
+ */
1150
+ filter_block_number_gte?: number | null;
1151
+ /**
1152
+ * Filter by block number greater than
1153
+ */
1154
+ filter_block_number_gt?: number | null;
1155
+ /**
1156
+ * Filter by block number less than or equal to
1157
+ */
1158
+ filter_block_number_lte?: number | null;
1159
+ /**
1160
+ * Filter by block number less than
1161
+ */
1162
+ filter_block_number_lt?: number | null;
1163
+ /**
1164
+ * Filter by block hash
1165
+ */
1166
+ filter_block_hash?: string;
1167
+ /**
1168
+ * Filter by block timestamp
1169
+ */
1170
+ filter_block_timestamp?: number | null;
1171
+ /**
1172
+ * Filter by block timestamp greater than or equal to
1173
+ */
1174
+ filter_block_timestamp_gte?: number | null;
1175
+ /**
1176
+ * Filter by block timestamp greater than
1177
+ */
1178
+ filter_block_timestamp_gt?: number | null;
1179
+ /**
1180
+ * Filter by block timestamp less than or equal to
1181
+ */
1182
+ filter_block_timestamp_lte?: number | null;
1183
+ /**
1184
+ * Filter by block timestamp less than
1185
+ */
1186
+ filter_block_timestamp_lt?: number | null;
1187
+ /**
1188
+ * Field to sort results by
1189
+ */
1190
+ sort_by?: 'block_number' | string;
1191
+ /**
1192
+ * Sort order (asc or desc)
1193
+ */
1194
+ sort_order?: 'asc' | 'desc';
1195
+ group_by?: Array<string | null> | (string | null) | unknown;
1196
+ aggregate?: Array<string | null> | (string | null) | unknown;
1197
+ /**
1198
+ * Filter by transaction index
1199
+ */
1200
+ filter_transaction_index?: number | null;
1201
+ /**
1202
+ * Filter by transaction index greater than or equal to
1203
+ */
1204
+ filter_transaction_index_gte?: number | null;
1205
+ /**
1206
+ * Filter by transaction index greater than
1207
+ */
1208
+ filter_transaction_index_gt?: number | null;
1209
+ /**
1210
+ * Filter by transaction index less than or equal to
1211
+ */
1212
+ filter_transaction_index_lte?: number | null;
1213
+ /**
1214
+ * Filter by transaction index less than
1215
+ */
1216
+ filter_transaction_index_lt?: number | null;
1217
+ /**
1218
+ * Enable ABI decoding of the transactions/events data
1219
+ */
1220
+ decode?: boolean | null;
1221
+ /**
1222
+ * Filter by transaction hash
1223
+ */
1224
+ filter_hash?: string;
1225
+ /**
1226
+ * Filter by from address
1227
+ */
1228
+ filter_from_address?: string;
1229
+ /**
1230
+ * Filter by value
1231
+ */
1232
+ filter_value?: number | null;
1233
+ /**
1234
+ * Filter by value greater than or equal to
1235
+ */
1236
+ filter_value_gte?: number | null;
1237
+ /**
1238
+ * Filter by value greater than
1239
+ */
1240
+ filter_value_gt?: number | null;
1241
+ /**
1242
+ * Filter by value less than or equal to
1243
+ */
1244
+ filter_value_lte?: number | null;
1245
+ /**
1246
+ * Filter by value less than
1247
+ */
1248
+ filter_value_lt?: number | null;
1249
+ /**
1250
+ * Filter by gas price
1251
+ */
1252
+ filter_gas_price?: number | null;
1253
+ /**
1254
+ * Filter by gas price greater than or equal to
1255
+ */
1256
+ filter_gas_price_gte?: number | null;
1257
+ /**
1258
+ * Filter by gas price greater than
1259
+ */
1260
+ filter_gas_price_gt?: number | null;
1261
+ /**
1262
+ * Filter by gas price less than or equal to
1263
+ */
1264
+ filter_gas_price_lte?: number | null;
1265
+ /**
1266
+ * Filter by gas price less than
1267
+ */
1268
+ filter_gas_price_lt?: number | null;
1269
+ /**
1270
+ * Filter by gas
1271
+ */
1272
+ filter_gas?: number | null;
1273
+ /**
1274
+ * Filter by gas greater than or equal to
1275
+ */
1276
+ filter_gas_gte?: number | null;
1277
+ /**
1278
+ * Filter by gas greater than
1279
+ */
1280
+ filter_gas_gt?: number | null;
1281
+ /**
1282
+ * Filter by gas less than or equal to
1283
+ */
1284
+ filter_gas_lte?: number | null;
1285
+ /**
1286
+ * Filter by gas less than
1287
+ */
1288
+ filter_gas_lt?: number | null;
1289
+ /**
1290
+ * Filter by function selector
1291
+ */
1292
+ filter_function_selector?: string;
1293
+ /**
1294
+ * The number of items to return
1295
+ */
1296
+ limit?: number;
1297
+ page?: number | null;
1298
+ };
1299
+ url: '/v1/transactions/{contractAddress}';
1300
+ };
1301
+ export type GetV1TransactionsByContractAddressErrors = {
1302
+ /**
1303
+ * Bad request
1304
+ */
1305
+ 400: {
1306
+ error: string;
1307
+ };
1308
+ /**
1309
+ * Internal server error
1310
+ */
1311
+ 500: {
1312
+ error: string;
1313
+ };
1314
+ };
1315
+ export type GetV1TransactionsByContractAddressError = GetV1TransactionsByContractAddressErrors[keyof GetV1TransactionsByContractAddressErrors];
1316
+ export type GetV1TransactionsByContractAddressResponses = {
1317
+ /**
1318
+ * Successful response
1319
+ */
1320
+ 200: {
1321
+ data?: Array<{
1322
+ chain_id: number;
1323
+ block_number: string;
1324
+ block_hash: string;
1325
+ block_timestamp: string;
1326
+ hash: string;
1327
+ nonce: number;
1328
+ transaction_index: number;
1329
+ from_address: string;
1330
+ to_address: string;
1331
+ value: number;
1332
+ gas_price: number;
1333
+ gas: number;
1334
+ function_selector: string;
1335
+ data: string;
1336
+ max_fee_per_gas: number;
1337
+ max_priority_fee_per_gas: number;
1338
+ transaction_type: number;
1339
+ r: number;
1340
+ s: number;
1341
+ v: number;
1342
+ access_list_json?: string;
1343
+ contract_address?: string;
1344
+ gas_used?: number;
1345
+ cumulative_gas_used?: number;
1346
+ effective_gas_price?: number;
1347
+ blob_gas_used?: number;
1348
+ blob_gas_price?: number;
1349
+ logs_bloom?: string;
1350
+ status?: number;
1351
+ }>;
1352
+ aggregations?: unknown;
1353
+ meta: {
1354
+ chain_ids: Array<number>;
1355
+ address?: string;
1356
+ signature?: string;
1357
+ page: number;
1358
+ limit_per_chain: number;
1359
+ total_items: number;
1360
+ total_pages: number;
1361
+ };
1362
+ };
1363
+ };
1364
+ export type GetV1TransactionsByContractAddressResponse = GetV1TransactionsByContractAddressResponses[keyof GetV1TransactionsByContractAddressResponses];
1365
+ export type GetV1TransactionsByContractAddressBySignatureData = {
1366
+ body?: never;
1367
+ path: {
1368
+ contractAddress: string;
1369
+ signature: string;
1370
+ };
1371
+ query?: {
1372
+ /**
1373
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
1374
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
1375
+ * Optional, because a single chain can as well be specified as a subdomain
1376
+ */
1377
+ chain?: Array<number> | (number | null) | unknown;
1378
+ /**
1379
+ * Filter by block number
1380
+ */
1381
+ filter_block_number?: number | null;
1382
+ /**
1383
+ * Filter by block number greater than or equal to
1384
+ */
1385
+ filter_block_number_gte?: number | null;
1386
+ /**
1387
+ * Filter by block number greater than
1388
+ */
1389
+ filter_block_number_gt?: number | null;
1390
+ /**
1391
+ * Filter by block number less than or equal to
1392
+ */
1393
+ filter_block_number_lte?: number | null;
1394
+ /**
1395
+ * Filter by block number less than
1396
+ */
1397
+ filter_block_number_lt?: number | null;
1398
+ /**
1399
+ * Filter by block hash
1400
+ */
1401
+ filter_block_hash?: string;
1402
+ /**
1403
+ * Filter by block timestamp
1404
+ */
1405
+ filter_block_timestamp?: number | null;
1406
+ /**
1407
+ * Filter by block timestamp greater than or equal to
1408
+ */
1409
+ filter_block_timestamp_gte?: number | null;
1410
+ /**
1411
+ * Filter by block timestamp greater than
1412
+ */
1413
+ filter_block_timestamp_gt?: number | null;
1414
+ /**
1415
+ * Filter by block timestamp less than or equal to
1416
+ */
1417
+ filter_block_timestamp_lte?: number | null;
1418
+ /**
1419
+ * Filter by block timestamp less than
1420
+ */
1421
+ filter_block_timestamp_lt?: number | null;
1422
+ /**
1423
+ * Field to sort results by
1424
+ */
1425
+ sort_by?: 'block_number' | string;
1426
+ /**
1427
+ * Sort order (asc or desc)
1428
+ */
1429
+ sort_order?: 'asc' | 'desc';
1430
+ group_by?: Array<string | null> | (string | null) | unknown;
1431
+ aggregate?: Array<string | null> | (string | null) | unknown;
1432
+ /**
1433
+ * Filter by transaction index
1434
+ */
1435
+ filter_transaction_index?: number | null;
1436
+ /**
1437
+ * Filter by transaction index greater than or equal to
1438
+ */
1439
+ filter_transaction_index_gte?: number | null;
1440
+ /**
1441
+ * Filter by transaction index greater than
1442
+ */
1443
+ filter_transaction_index_gt?: number | null;
1444
+ /**
1445
+ * Filter by transaction index less than or equal to
1446
+ */
1447
+ filter_transaction_index_lte?: number | null;
1448
+ /**
1449
+ * Filter by transaction index less than
1450
+ */
1451
+ filter_transaction_index_lt?: number | null;
1452
+ /**
1453
+ * Enable ABI decoding of the transactions/events data
1454
+ */
1455
+ decode?: boolean | null;
1456
+ /**
1457
+ * Filter by transaction hash
1458
+ */
1459
+ filter_hash?: string;
1460
+ /**
1461
+ * Filter by from address
1462
+ */
1463
+ filter_from_address?: string;
1464
+ /**
1465
+ * Filter by value
1466
+ */
1467
+ filter_value?: number | null;
1468
+ /**
1469
+ * Filter by value greater than or equal to
1470
+ */
1471
+ filter_value_gte?: number | null;
1472
+ /**
1473
+ * Filter by value greater than
1474
+ */
1475
+ filter_value_gt?: number | null;
1476
+ /**
1477
+ * Filter by value less than or equal to
1478
+ */
1479
+ filter_value_lte?: number | null;
1480
+ /**
1481
+ * Filter by value less than
1482
+ */
1483
+ filter_value_lt?: number | null;
1484
+ /**
1485
+ * Filter by gas price
1486
+ */
1487
+ filter_gas_price?: number | null;
1488
+ /**
1489
+ * Filter by gas price greater than or equal to
1490
+ */
1491
+ filter_gas_price_gte?: number | null;
1492
+ /**
1493
+ * Filter by gas price greater than
1494
+ */
1495
+ filter_gas_price_gt?: number | null;
1496
+ /**
1497
+ * Filter by gas price less than or equal to
1498
+ */
1499
+ filter_gas_price_lte?: number | null;
1500
+ /**
1501
+ * Filter by gas price less than
1502
+ */
1503
+ filter_gas_price_lt?: number | null;
1504
+ /**
1505
+ * Filter by gas
1506
+ */
1507
+ filter_gas?: number | null;
1508
+ /**
1509
+ * Filter by gas greater than or equal to
1510
+ */
1511
+ filter_gas_gte?: number | null;
1512
+ /**
1513
+ * Filter by gas greater than
1514
+ */
1515
+ filter_gas_gt?: number | null;
1516
+ /**
1517
+ * Filter by gas less than or equal to
1518
+ */
1519
+ filter_gas_lte?: number | null;
1520
+ /**
1521
+ * Filter by gas less than
1522
+ */
1523
+ filter_gas_lt?: number | null;
1524
+ /**
1525
+ * The number of items to return
1526
+ */
1527
+ limit?: number;
1528
+ page?: number | null;
1529
+ };
1530
+ url: '/v1/transactions/{contractAddress}/{signature}';
1531
+ };
1532
+ export type GetV1TransactionsByContractAddressBySignatureErrors = {
1533
+ /**
1534
+ * Bad request
1535
+ */
1536
+ 400: {
1537
+ error: string;
1538
+ };
1539
+ /**
1540
+ * Internal server error
1541
+ */
1542
+ 500: {
1543
+ error: string;
1544
+ };
1545
+ };
1546
+ export type GetV1TransactionsByContractAddressBySignatureError = GetV1TransactionsByContractAddressBySignatureErrors[keyof GetV1TransactionsByContractAddressBySignatureErrors];
1547
+ export type GetV1TransactionsByContractAddressBySignatureResponses = {
1548
+ /**
1549
+ * Successful response
1550
+ */
1551
+ 200: {
1552
+ data?: Array<{
1553
+ chain_id: number;
1554
+ block_number: string;
1555
+ block_hash: string;
1556
+ block_timestamp: string;
1557
+ hash: string;
1558
+ nonce: number;
1559
+ transaction_index: number;
1560
+ from_address: string;
1561
+ to_address: string;
1562
+ value: number;
1563
+ gas_price: number;
1564
+ gas: number;
1565
+ function_selector: string;
1566
+ data: string;
1567
+ max_fee_per_gas: number;
1568
+ max_priority_fee_per_gas: number;
1569
+ transaction_type: number;
1570
+ r: number;
1571
+ s: number;
1572
+ v: number;
1573
+ access_list_json?: string;
1574
+ contract_address?: string;
1575
+ gas_used?: number;
1576
+ cumulative_gas_used?: number;
1577
+ effective_gas_price?: number;
1578
+ blob_gas_used?: number;
1579
+ blob_gas_price?: number;
1580
+ logs_bloom?: string;
1581
+ status?: number;
1582
+ decoded?: {
1583
+ name: string;
1584
+ signature: string;
1585
+ inputs?: {
1586
+ [key: string]: unknown;
1587
+ };
1588
+ };
1589
+ /**
1590
+ * @deprecated
1591
+ */
1592
+ decodedData?: {
1593
+ name: string;
1594
+ signature: string;
1595
+ inputs?: {
1596
+ [key: string]: unknown;
1597
+ };
1598
+ };
1599
+ }>;
1600
+ aggregations?: unknown;
1601
+ meta: {
1602
+ chain_ids: Array<number>;
1603
+ address?: string;
1604
+ signature?: string;
1605
+ page: number;
1606
+ limit_per_chain: number;
1607
+ total_items: number;
1608
+ total_pages: number;
1609
+ };
1610
+ };
1611
+ };
1612
+ export type GetV1TransactionsByContractAddressBySignatureResponse = GetV1TransactionsByContractAddressBySignatureResponses[keyof GetV1TransactionsByContractAddressBySignatureResponses];
1613
+ export type GetV1TokensTransfersTransactionByTransactionHashData = {
1614
+ body?: never;
1615
+ path: {
1616
+ transaction_hash: string;
1617
+ };
1618
+ query?: {
1619
+ /**
1620
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
1621
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
1622
+ * Optional, because a single chain can as well be specified as a subdomain
1623
+ */
1624
+ chain?: Array<number> | (number | null) | unknown;
1625
+ /**
1626
+ * The number of items to return
1627
+ */
1628
+ limit?: number;
1629
+ page?: number | null;
1630
+ /**
1631
+ * Whether to include metadata for the tokens
1632
+ */
1633
+ metadata?: 'true' | 'false';
1634
+ /**
1635
+ * Whether to include sale details for NFT transfers
1636
+ */
1637
+ sales?: 'true' | 'false';
1638
+ /**
1639
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
1640
+ */
1641
+ include_owners?: 'true' | 'false';
1642
+ /**
1643
+ * Whether to resolve metadata IPFS or Arweave links
1644
+ */
1645
+ resolve_metadata_links?: 'true' | 'false';
1646
+ };
1647
+ url: '/v1/tokens/transfers/transaction/{transaction_hash}';
1648
+ };
1649
+ export type GetV1TokensTransfersTransactionByTransactionHashErrors = {
1650
+ /**
1651
+ * Not found
1652
+ */
1653
+ 404: unknown;
1654
+ /**
1655
+ * Internal server error
1656
+ */
1657
+ 500: {
1658
+ data: Array<{
1659
+ block_number: string;
1660
+ block_hash?: string;
1661
+ block_timestamp: string;
1662
+ transaction_hash: string;
1663
+ from_address: string;
1664
+ to_address: string;
1665
+ log_index: number;
1666
+ contract_address: string;
1667
+ transfer_type: 'mint' | 'sale' | 'transfer';
1668
+ token_type: 'erc20';
1669
+ amount: string;
1670
+ chain_id: number;
1671
+ token_metadata?: {
1672
+ name?: string;
1673
+ symbol?: string;
1674
+ decimals?: number;
1675
+ };
1676
+ }>;
1677
+ };
1678
+ };
1679
+ export type GetV1TokensTransfersTransactionByTransactionHashError = GetV1TokensTransfersTransactionByTransactionHashErrors[keyof GetV1TokensTransfersTransactionByTransactionHashErrors];
1680
+ export type GetV1TokensTransfersTransactionByTransactionHashResponses = {
1681
+ /**
1682
+ * Success
1683
+ */
1684
+ 200: {
1685
+ data: Array<{
1686
+ block_number: string;
1687
+ block_hash?: string;
1688
+ block_timestamp: string;
1689
+ transaction_hash: string;
1690
+ from_address: string;
1691
+ to_address: string;
1692
+ log_index: number;
1693
+ contract_address: string;
1694
+ transfer_type: 'mint' | 'sale' | 'transfer';
1695
+ token_type: 'erc20';
1696
+ amount: string;
1697
+ chain_id: number;
1698
+ token_metadata?: {
1699
+ name?: string;
1700
+ symbol?: string;
1701
+ decimals?: number;
1702
+ };
1703
+ }>;
1704
+ };
1705
+ };
1706
+ export type GetV1TokensTransfersTransactionByTransactionHashResponse = GetV1TokensTransfersTransactionByTransactionHashResponses[keyof GetV1TokensTransfersTransactionByTransactionHashResponses];
1707
+ export type GetV1TokensTransfersByContractAddressData = {
1708
+ body?: never;
1709
+ path: {
1710
+ contract_address: string;
1711
+ };
1712
+ query?: {
1713
+ /**
1714
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
1715
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
1716
+ * Optional, because a single chain can as well be specified as a subdomain
1717
+ */
1718
+ chain?: Array<number> | (number | null) | unknown;
1719
+ /**
1720
+ * The number of items to return
1721
+ */
1722
+ limit?: number;
1723
+ page?: number | null;
1724
+ /**
1725
+ * Whether to include metadata for the tokens
1726
+ */
1727
+ metadata?: 'true' | 'false';
1728
+ /**
1729
+ * Whether to include sale details for NFT transfers
1730
+ */
1731
+ sales?: 'true' | 'false';
1732
+ /**
1733
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
1734
+ */
1735
+ include_owners?: 'true' | 'false';
1736
+ /**
1737
+ * Whether to resolve metadata IPFS or Arweave links
1738
+ */
1739
+ resolve_metadata_links?: 'true' | 'false';
1740
+ };
1741
+ url: '/v1/tokens/transfers/{contract_address}';
1742
+ };
1743
+ export type GetV1TokensTransfersByContractAddressErrors = {
1744
+ /**
1745
+ * Not found
1746
+ */
1747
+ 404: unknown;
1748
+ /**
1749
+ * Internal server error
1750
+ */
1751
+ 500: {
1752
+ data: Array<{
1753
+ block_number: string;
1754
+ block_hash?: string;
1755
+ block_timestamp: string;
1756
+ transaction_hash: string;
1757
+ from_address: string;
1758
+ to_address: string;
1759
+ log_index: number;
1760
+ contract_address: string;
1761
+ transfer_type: 'mint' | 'sale' | 'transfer';
1762
+ token_type: 'erc20';
1763
+ amount: string;
1764
+ chain_id: number;
1765
+ token_metadata?: {
1766
+ name?: string;
1767
+ symbol?: string;
1768
+ decimals?: number;
1769
+ };
1770
+ }>;
1771
+ };
1772
+ };
1773
+ export type GetV1TokensTransfersByContractAddressError = GetV1TokensTransfersByContractAddressErrors[keyof GetV1TokensTransfersByContractAddressErrors];
1774
+ export type GetV1TokensTransfersByContractAddressResponses = {
1775
+ /**
1776
+ * Success
1777
+ */
1778
+ 200: {
1779
+ data: Array<{
1780
+ block_number: string;
1781
+ block_hash?: string;
1782
+ block_timestamp: string;
1783
+ transaction_hash: string;
1784
+ from_address: string;
1785
+ to_address: string;
1786
+ log_index: number;
1787
+ contract_address: string;
1788
+ transfer_type: 'mint' | 'sale' | 'transfer';
1789
+ token_type: 'erc20';
1790
+ amount: string;
1791
+ chain_id: number;
1792
+ token_metadata?: {
1793
+ name?: string;
1794
+ symbol?: string;
1795
+ decimals?: number;
1796
+ };
1797
+ }>;
1798
+ };
1799
+ };
1800
+ export type GetV1TokensTransfersByContractAddressResponse = GetV1TokensTransfersByContractAddressResponses[keyof GetV1TokensTransfersByContractAddressResponses];
1801
+ export type GetV1TokensTransfersData = {
1802
+ body?: never;
1803
+ path?: never;
1804
+ query?: {
1805
+ /**
1806
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
1807
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
1808
+ * Optional, because a single chain can as well be specified as a subdomain
1809
+ */
1810
+ chain?: Array<number> | (number | null) | unknown;
1811
+ /**
1812
+ * The number of items to return
1813
+ */
1814
+ limit?: number;
1815
+ page?: number | null;
1816
+ /**
1817
+ * Whether to include metadata for the tokens
1818
+ */
1819
+ metadata?: 'true' | 'false';
1820
+ /**
1821
+ * Whether to include sale details for NFT transfers
1822
+ */
1823
+ sales?: 'true' | 'false';
1824
+ /**
1825
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
1826
+ */
1827
+ include_owners?: 'true' | 'false';
1828
+ /**
1829
+ * Whether to resolve metadata IPFS or Arweave links
1830
+ */
1831
+ resolve_metadata_links?: 'true' | 'false';
1832
+ /**
1833
+ * Filter by block number greater than or equal to
1834
+ */
1835
+ block_number_from?: number | string;
1836
+ /**
1837
+ * Filter by block number less than or equal to
1838
+ */
1839
+ block_number_to?: number | string;
1840
+ owner_address?: string;
1841
+ };
1842
+ url: '/v1/tokens/transfers';
1843
+ };
1844
+ export type GetV1TokensTransfersErrors = {
1845
+ /**
1846
+ * Not found
1847
+ */
1848
+ 404: unknown;
1849
+ /**
1850
+ * Internal server error
1851
+ */
1852
+ 500: {
1853
+ data: Array<{
1854
+ block_number: string;
1855
+ block_hash?: string;
1856
+ block_timestamp: string;
1857
+ transaction_hash: string;
1858
+ from_address: string;
1859
+ to_address: string;
1860
+ log_index: number;
1861
+ contract_address: string;
1862
+ transfer_type: 'mint' | 'sale' | 'transfer';
1863
+ token_type: 'erc20';
1864
+ amount: string;
1865
+ chain_id: number;
1866
+ token_metadata?: {
1867
+ name?: string;
1868
+ symbol?: string;
1869
+ decimals?: number;
1870
+ };
1871
+ }>;
1872
+ };
1873
+ };
1874
+ export type GetV1TokensTransfersError = GetV1TokensTransfersErrors[keyof GetV1TokensTransfersErrors];
1875
+ export type GetV1TokensTransfersResponses = {
1876
+ /**
1877
+ * Success
1878
+ */
1879
+ 200: {
1880
+ data: Array<{
1881
+ block_number: string;
1882
+ block_hash?: string;
1883
+ block_timestamp: string;
1884
+ transaction_hash: string;
1885
+ from_address: string;
1886
+ to_address: string;
1887
+ log_index: number;
1888
+ contract_address: string;
1889
+ transfer_type: 'mint' | 'sale' | 'transfer';
1890
+ token_type: 'erc20';
1891
+ amount: string;
1892
+ chain_id: number;
1893
+ token_metadata?: {
1894
+ name?: string;
1895
+ symbol?: string;
1896
+ decimals?: number;
1897
+ };
1898
+ }>;
1899
+ };
1900
+ };
1901
+ export type GetV1TokensTransfersResponse = GetV1TokensTransfersResponses[keyof GetV1TokensTransfersResponses];
1902
+ export type GetV1TokensErc20ByOwnerAddressData = {
1903
+ body?: never;
1904
+ path: {
1905
+ ownerAddress: string;
1906
+ };
1907
+ query?: {
1908
+ /**
1909
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
1910
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
1911
+ * Optional, because a single chain can as well be specified as a subdomain
1912
+ */
1913
+ chain?: Array<number> | (number | null) | unknown;
1914
+ /**
1915
+ * The number of items to return
1916
+ */
1917
+ limit?: number;
1918
+ page?: number | null;
1919
+ /**
1920
+ * Whether to include metadata for the tokens
1921
+ */
1922
+ metadata?: 'true' | 'false';
1923
+ /**
1924
+ * Whether to resolve metadata IPFS or Arweave links
1925
+ */
1926
+ resolve_metadata_links?: 'true' | 'false';
1927
+ /**
1928
+ * Whether to include spam tokens
1929
+ */
1930
+ include_spam?: 'true' | 'false';
1931
+ };
1932
+ url: '/v1/tokens/erc20/{ownerAddress}';
1933
+ };
1934
+ export type GetV1TokensErc20ByOwnerAddressErrors = {
1935
+ /**
1936
+ * Bad request
1937
+ */
1938
+ 400: unknown;
1939
+ /**
1940
+ * Internal server error
1941
+ */
1942
+ 500: unknown;
1943
+ };
1944
+ export type GetV1TokensErc20ByOwnerAddressResponses = {
1945
+ /**
1946
+ * Successful response
1947
+ */
1948
+ 200: {
1949
+ data: Array<{
1950
+ /**
1951
+ * The chain ID of a relevant entry
1952
+ */
1953
+ chain_id: number;
1954
+ token_address: string;
1955
+ balance: string;
1956
+ name?: string;
1957
+ symbol?: string;
1958
+ decimals?: number;
1959
+ }>;
1960
+ };
1961
+ };
1962
+ export type GetV1TokensErc20ByOwnerAddressResponse = GetV1TokensErc20ByOwnerAddressResponses[keyof GetV1TokensErc20ByOwnerAddressResponses];
1963
+ export type GetV1TokensErc721ByOwnerAddressData = {
1964
+ body?: never;
1965
+ path: {
1966
+ ownerAddress: string;
1967
+ };
1968
+ query?: {
1969
+ /**
1970
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
1971
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
1972
+ * Optional, because a single chain can as well be specified as a subdomain
1973
+ */
1974
+ chain?: Array<number> | (number | null) | unknown;
1975
+ /**
1976
+ * The number of items to return
1977
+ */
1978
+ limit?: number;
1979
+ page?: number | null;
1980
+ /**
1981
+ * Whether to include metadata for the tokens
1982
+ */
1983
+ metadata?: 'true' | 'false';
1984
+ /**
1985
+ * Whether to resolve metadata IPFS or Arweave links
1986
+ */
1987
+ resolve_metadata_links?: 'true' | 'false';
1988
+ };
1989
+ url: '/v1/tokens/erc721/{ownerAddress}';
1990
+ };
1991
+ export type GetV1TokensErc721ByOwnerAddressErrors = {
1992
+ /**
1993
+ * Bad request
1994
+ */
1995
+ 400: unknown;
1996
+ /**
1997
+ * Internal server error
1998
+ */
1999
+ 500: unknown;
2000
+ };
2001
+ export type GetV1TokensErc721ByOwnerAddressResponses = {
2002
+ /**
2003
+ * Successful response
2004
+ */
2005
+ 200: {
2006
+ data: Array<{
2007
+ /**
2008
+ * The chain ID of a relevant entry
2009
+ */
2010
+ chain_id: number;
2011
+ token_address: string;
2012
+ token_id: string;
2013
+ balance: string;
2014
+ name?: string;
2015
+ description?: string;
2016
+ image_url?: string;
2017
+ video_url?: string;
2018
+ animation_url?: string;
2019
+ background_color?: string;
2020
+ external_url?: string;
2021
+ status?: string;
2022
+ metadata_url?: string;
2023
+ owner_addresses?: Array<string>;
2024
+ extra_metadata?: {
2025
+ [key: string]: unknown;
2026
+ } & {
2027
+ attributes?: Array<{
2028
+ trait_type: string;
2029
+ value: string | number;
2030
+ display_type?: string;
2031
+ }> | {
2032
+ [key: string]: unknown;
2033
+ };
2034
+ properties?: {
2035
+ [key: string]: unknown;
2036
+ };
2037
+ };
2038
+ collection?: {
2039
+ name?: string;
2040
+ description?: string;
2041
+ image_url?: string;
2042
+ banner_image_url?: string;
2043
+ featured_image_url?: string;
2044
+ external_link?: string;
2045
+ };
2046
+ contract?: {
2047
+ /**
2048
+ * The chain ID of a relevant entry
2049
+ */
2050
+ chain_id: number;
2051
+ address: string;
2052
+ name?: string;
2053
+ symbol?: string;
2054
+ type?: 'erc721' | 'erc1155';
2055
+ };
2056
+ }>;
2057
+ };
2058
+ };
2059
+ export type GetV1TokensErc721ByOwnerAddressResponse = GetV1TokensErc721ByOwnerAddressResponses[keyof GetV1TokensErc721ByOwnerAddressResponses];
2060
+ export type GetV1TokensErc1155ByOwnerAddressData = {
2061
+ body?: never;
2062
+ path: {
2063
+ ownerAddress: string;
2064
+ };
2065
+ query?: {
2066
+ /**
2067
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2068
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2069
+ * Optional, because a single chain can as well be specified as a subdomain
2070
+ */
2071
+ chain?: Array<number> | (number | null) | unknown;
2072
+ /**
2073
+ * The number of items to return
2074
+ */
2075
+ limit?: number;
2076
+ page?: number | null;
2077
+ /**
2078
+ * Whether to include metadata for the tokens
2079
+ */
2080
+ metadata?: 'true' | 'false';
2081
+ /**
2082
+ * Whether to resolve metadata IPFS or Arweave links
2083
+ */
2084
+ resolve_metadata_links?: 'true' | 'false';
2085
+ };
2086
+ url: '/v1/tokens/erc1155/{ownerAddress}';
2087
+ };
2088
+ export type GetV1TokensErc1155ByOwnerAddressErrors = {
2089
+ /**
2090
+ * Bad request
2091
+ */
2092
+ 400: unknown;
2093
+ /**
2094
+ * Internal server error
2095
+ */
2096
+ 500: unknown;
2097
+ };
2098
+ export type GetV1TokensErc1155ByOwnerAddressResponses = {
2099
+ /**
2100
+ * Successful response
2101
+ */
2102
+ 200: {
2103
+ data: Array<{
2104
+ /**
2105
+ * The chain ID of a relevant entry
2106
+ */
2107
+ chain_id: number;
2108
+ token_address: string;
2109
+ token_id: string;
2110
+ balance: string;
2111
+ name?: string;
2112
+ description?: string;
2113
+ image_url?: string;
2114
+ video_url?: string;
2115
+ animation_url?: string;
2116
+ background_color?: string;
2117
+ external_url?: string;
2118
+ status?: string;
2119
+ metadata_url?: string;
2120
+ owner_addresses?: Array<string>;
2121
+ extra_metadata?: {
2122
+ [key: string]: unknown;
2123
+ } & {
2124
+ attributes?: Array<{
2125
+ trait_type: string;
2126
+ value: string | number;
2127
+ display_type?: string;
2128
+ }> | {
2129
+ [key: string]: unknown;
2130
+ };
2131
+ properties?: {
2132
+ [key: string]: unknown;
2133
+ };
2134
+ };
2135
+ collection?: {
2136
+ name?: string;
2137
+ description?: string;
2138
+ image_url?: string;
2139
+ banner_image_url?: string;
2140
+ featured_image_url?: string;
2141
+ external_link?: string;
2142
+ };
2143
+ contract?: {
2144
+ /**
2145
+ * The chain ID of a relevant entry
2146
+ */
2147
+ chain_id: number;
2148
+ address: string;
2149
+ name?: string;
2150
+ symbol?: string;
2151
+ type?: 'erc721' | 'erc1155';
2152
+ };
2153
+ }>;
2154
+ };
2155
+ };
2156
+ export type GetV1TokensErc1155ByOwnerAddressResponse = GetV1TokensErc1155ByOwnerAddressResponses[keyof GetV1TokensErc1155ByOwnerAddressResponses];
2157
+ export type GetV1TokensPriceSupportedData = {
2158
+ body?: never;
2159
+ path?: never;
2160
+ query?: {
2161
+ /**
2162
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2163
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2164
+ * Optional, because a single chain can as well be specified as a subdomain
2165
+ */
2166
+ chain?: Array<number> | (number | null) | unknown;
2167
+ };
2168
+ url: '/v1/tokens/price/supported';
2169
+ };
2170
+ export type GetV1TokensPriceSupportedErrors = {
2171
+ /**
2172
+ * Bad request
2173
+ */
2174
+ 400: unknown;
2175
+ /**
2176
+ * Internal server error
2177
+ */
2178
+ 500: unknown;
2179
+ };
2180
+ export type GetV1TokensPriceSupportedResponses = {
2181
+ /**
2182
+ * Successful response
2183
+ */
2184
+ 200: {
2185
+ data: Array<{
2186
+ /**
2187
+ * The chain ID of a relevant entry
2188
+ */
2189
+ chain_id: number;
2190
+ address: string;
2191
+ symbol?: string;
2192
+ }>;
2193
+ };
2194
+ };
2195
+ export type GetV1TokensPriceSupportedResponse = GetV1TokensPriceSupportedResponses[keyof GetV1TokensPriceSupportedResponses];
2196
+ export type GetV1TokensPriceData = {
2197
+ body?: never;
2198
+ path?: never;
2199
+ query?: {
2200
+ /**
2201
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2202
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2203
+ * Optional, because a single chain can as well be specified as a subdomain
2204
+ */
2205
+ chain?: Array<number> | (number | null) | unknown;
2206
+ /**
2207
+ * The address of the token to get the price for
2208
+ */
2209
+ address?: Array<string> | string;
2210
+ /**
2211
+ * The symbol of the token to get the price for
2212
+ */
2213
+ symbol?: Array<string> | (string | null) | unknown;
2214
+ /**
2215
+ * Timestamp in seconds or milliseconds
2216
+ */
2217
+ timestamp?: number;
2218
+ /**
2219
+ * Whether to include historical token prices
2220
+ */
2221
+ include_historical_prices?: 'true' | 'false';
2222
+ /**
2223
+ * Whether to include the number of holders
2224
+ */
2225
+ include_holders?: 'true' | 'false';
2226
+ };
2227
+ url: '/v1/tokens/price';
2228
+ };
2229
+ export type GetV1TokensPriceErrors = {
2230
+ /**
2231
+ * Bad request
2232
+ */
2233
+ 400: unknown;
2234
+ /**
2235
+ * Internal server error
2236
+ */
2237
+ 500: unknown;
2238
+ };
2239
+ export type GetV1TokensPriceResponses = {
2240
+ /**
2241
+ * Successful response
2242
+ */
2243
+ 200: {
2244
+ data: Array<{
2245
+ /**
2246
+ * The chain ID of a relevant entry
2247
+ */
2248
+ chain_id: number;
2249
+ address: string;
2250
+ symbol?: string;
2251
+ /**
2252
+ * Precise price in USD
2253
+ */
2254
+ price_usd: number;
2255
+ /**
2256
+ * Price in USD cents
2257
+ */
2258
+ price_usd_cents: number;
2259
+ /**
2260
+ * Percent change in price over the last 24 hours
2261
+ */
2262
+ percent_change_24h: number;
2263
+ /**
2264
+ * Volume in USD over the last 24 hours
2265
+ */
2266
+ volume_24h_usd: number;
2267
+ /**
2268
+ * Percent change in volume over the last 24 hours
2269
+ */
2270
+ volume_change_24h: number;
2271
+ /**
2272
+ * Market cap in USD
2273
+ */
2274
+ market_cap_usd: number;
2275
+ historical_prices?: Array<{
2276
+ /**
2277
+ * Date of price
2278
+ */
2279
+ date: string;
2280
+ /**
2281
+ * Price in USD
2282
+ */
2283
+ price_usd: number;
2284
+ /**
2285
+ * Price in USD cents
2286
+ */
2287
+ price_usd_cents: number;
2288
+ }>;
2289
+ /**
2290
+ * Number of holders
2291
+ */
2292
+ holders?: number;
2293
+ }>;
2294
+ };
2295
+ };
2296
+ export type GetV1TokensPriceResponse = GetV1TokensPriceResponses[keyof GetV1TokensPriceResponses];
2297
+ export type GetV1TokensLookupData = {
2298
+ body?: never;
2299
+ path?: never;
2300
+ query: {
2301
+ /**
2302
+ * The symbol(s) of the token to lookup. You can specify multiple symbols, up to a maximum of 10.
2303
+ * Use repeated query parameters, e.g., `?symbol=ETH&symbol=USDC`.
2304
+ */
2305
+ symbol: Array<string> | string;
2306
+ /**
2307
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2308
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2309
+ * Optional, because a single chain can as well be specified as a subdomain
2310
+ */
2311
+ chain?: Array<number> | (number | null) | unknown;
2312
+ };
2313
+ url: '/v1/tokens/lookup';
2314
+ };
2315
+ export type GetV1TokensLookupErrors = {
2316
+ /**
2317
+ * Bad request
2318
+ */
2319
+ 400: unknown;
2320
+ /**
2321
+ * Internal server error
2322
+ */
2323
+ 500: unknown;
2324
+ };
2325
+ export type GetV1TokensLookupResponses = {
2326
+ /**
2327
+ * Successful response
2328
+ */
2329
+ 200: {
2330
+ data: Array<{
2331
+ /**
2332
+ * The chain ID of a relevant entry
2333
+ */
2334
+ chain_id: number;
2335
+ token_address: string;
2336
+ name?: string;
2337
+ symbol?: string;
2338
+ decimals?: number;
2339
+ }>;
2340
+ };
2341
+ };
2342
+ export type GetV1TokensLookupResponse = GetV1TokensLookupResponses[keyof GetV1TokensLookupResponses];
2343
+ export type GetV1ResolveByInputData = {
2344
+ body?: never;
2345
+ path: {
2346
+ /**
2347
+ * Can be a block number, transaction or block hash, address, event signature or function selector
2348
+ */
2349
+ input: string;
2350
+ };
2351
+ query?: {
2352
+ /**
2353
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2354
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2355
+ * Optional, because a single chain can as well be specified as a subdomain
2356
+ */
2357
+ chain?: Array<number> | (number | null) | unknown;
2358
+ };
2359
+ url: '/v1/resolve/{input}';
2360
+ };
2361
+ export type GetV1ResolveByInputErrors = {
2362
+ /**
2363
+ * Bad request
2364
+ */
2365
+ 400: {
2366
+ error: string;
2367
+ };
2368
+ /**
2369
+ * Internal server error
2370
+ */
2371
+ 500: {
2372
+ error: string;
2373
+ };
2374
+ };
2375
+ export type GetV1ResolveByInputError = GetV1ResolveByInputErrors[keyof GetV1ResolveByInputErrors];
2376
+ export type GetV1ResolveByInputResponses = {
2377
+ /**
2378
+ * Successful response
2379
+ */
2380
+ 200: {
2381
+ data?: {
2382
+ blocks?: Array<{
2383
+ chain_id: number;
2384
+ block_number: number;
2385
+ block_hash: string;
2386
+ parent_hash: string;
2387
+ block_timestamp: number;
2388
+ nonce: string;
2389
+ sha3_uncles: string;
2390
+ mix_hash: string;
2391
+ miner: string;
2392
+ state_root: string;
2393
+ transactions_root: string;
2394
+ receipts_root: string;
2395
+ logs_bloom: string;
2396
+ size: number;
2397
+ extra_data: string;
2398
+ difficulty: string;
2399
+ total_difficulty: string;
2400
+ transaction_count: number;
2401
+ gas_limit: number;
2402
+ gas_used: number;
2403
+ withdrawals_root: string;
2404
+ base_fee_per_gas: number;
2405
+ }>;
2406
+ transactions?: Array<{
2407
+ chain_id: number;
2408
+ block_number: string;
2409
+ block_hash: string;
2410
+ block_timestamp: string;
2411
+ hash: string;
2412
+ nonce: number;
2413
+ transaction_index: number;
2414
+ from_address: string;
2415
+ to_address: string;
2416
+ value: number;
2417
+ gas_price: number;
2418
+ gas: number;
2419
+ function_selector: string;
2420
+ data: string;
2421
+ max_fee_per_gas: number;
2422
+ max_priority_fee_per_gas: number;
2423
+ transaction_type: number;
2424
+ r: number;
2425
+ s: number;
2426
+ v: number;
2427
+ access_list_json?: string;
2428
+ contract_address?: string;
2429
+ gas_used?: number;
2430
+ cumulative_gas_used?: number;
2431
+ effective_gas_price?: number;
2432
+ blob_gas_used?: number;
2433
+ blob_gas_price?: number;
2434
+ logs_bloom?: string;
2435
+ status?: number;
2436
+ }>;
2437
+ events?: Array<{
2438
+ chain_id: number;
2439
+ block_number: string;
2440
+ block_hash: string;
2441
+ block_timestamp: string;
2442
+ transaction_hash: string;
2443
+ transaction_index: number;
2444
+ log_index: number;
2445
+ address: string;
2446
+ data: string;
2447
+ topics: Array<string>;
2448
+ }>;
2449
+ address?: string;
2450
+ type: 'block' | 'transaction' | 'event_signature' | 'function_signature' | 'address' | 'contract' | 'unknown';
2451
+ };
2452
+ aggregations?: unknown;
2453
+ meta: {
2454
+ chain_ids: Array<number>;
2455
+ address?: string;
2456
+ signature?: string;
2457
+ page: number;
2458
+ limit_per_chain: number;
2459
+ total_items: number;
2460
+ total_pages: number;
2461
+ };
2462
+ };
2463
+ };
2464
+ export type GetV1ResolveByInputResponse = GetV1ResolveByInputResponses[keyof GetV1ResolveByInputResponses];
2465
+ export type GetV1BlocksData = {
2466
+ body?: never;
2467
+ path?: never;
2468
+ query?: {
2469
+ /**
2470
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2471
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2472
+ * Optional, because a single chain can as well be specified as a subdomain
2473
+ */
2474
+ chain?: Array<number> | (number | null) | unknown;
2475
+ /**
2476
+ * Filter by block number
2477
+ */
2478
+ filter_block_number?: number | null;
2479
+ /**
2480
+ * Filter by block number greater than or equal to
2481
+ */
2482
+ filter_block_number_gte?: number | null;
2483
+ /**
2484
+ * Filter by block number greater than
2485
+ */
2486
+ filter_block_number_gt?: number | null;
2487
+ /**
2488
+ * Filter by block number less than or equal to
2489
+ */
2490
+ filter_block_number_lte?: number | null;
2491
+ /**
2492
+ * Filter by block number less than
2493
+ */
2494
+ filter_block_number_lt?: number | null;
2495
+ /**
2496
+ * Filter by block timestamp
2497
+ */
2498
+ filter_block_timestamp?: number | null;
2499
+ /**
2500
+ * Filter by block timestamp greater than or equal to
2501
+ */
2502
+ filter_block_timestamp_gte?: number | null;
2503
+ /**
2504
+ * Filter by block timestamp greater than
2505
+ */
2506
+ filter_block_timestamp_gt?: number | null;
2507
+ /**
2508
+ * Filter by block timestamp less than or equal to
2509
+ */
2510
+ filter_block_timestamp_lte?: number | null;
2511
+ /**
2512
+ * Filter by block timestamp less than
2513
+ */
2514
+ filter_block_timestamp_lt?: number | null;
2515
+ /**
2516
+ * Field to sort results by
2517
+ */
2518
+ sort_by?: 'block_number' | string;
2519
+ /**
2520
+ * Sort order (asc or desc)
2521
+ */
2522
+ sort_order?: 'asc' | 'desc';
2523
+ group_by?: Array<string | null> | (string | null) | unknown;
2524
+ aggregate?: Array<string | null> | (string | null) | unknown;
2525
+ /**
2526
+ * Filter by hash
2527
+ */
2528
+ filter_hash?: string;
2529
+ /**
2530
+ * The number of items to return
2531
+ */
2532
+ limit?: number;
2533
+ page?: number | null;
2534
+ };
2535
+ url: '/v1/blocks';
2536
+ };
2537
+ export type GetV1BlocksErrors = {
2538
+ /**
2539
+ * Bad request
2540
+ */
2541
+ 400: {
2542
+ error: string;
2543
+ };
2544
+ /**
2545
+ * Internal server error
2546
+ */
2547
+ 500: {
2548
+ error: string;
2549
+ };
2550
+ };
2551
+ export type GetV1BlocksError = GetV1BlocksErrors[keyof GetV1BlocksErrors];
2552
+ export type GetV1BlocksResponses = {
2553
+ /**
2554
+ * Successful response
2555
+ */
2556
+ 200: {
2557
+ data?: Array<{
2558
+ chain_id: number;
2559
+ block_number: number;
2560
+ block_hash: string;
2561
+ parent_hash: string;
2562
+ block_timestamp: number;
2563
+ nonce: string;
2564
+ sha3_uncles: string;
2565
+ mix_hash: string;
2566
+ miner: string;
2567
+ state_root: string;
2568
+ transactions_root: string;
2569
+ receipts_root: string;
2570
+ logs_bloom: string;
2571
+ size: number;
2572
+ extra_data: string;
2573
+ difficulty: string;
2574
+ total_difficulty: string;
2575
+ transaction_count: number;
2576
+ gas_limit: number;
2577
+ gas_used: number;
2578
+ withdrawals_root: string;
2579
+ base_fee_per_gas: number;
2580
+ }>;
2581
+ aggregations?: unknown;
2582
+ meta: {
2583
+ chain_ids: Array<number>;
2584
+ address?: string;
2585
+ signature?: string;
2586
+ page: number;
2587
+ limit_per_chain: number;
2588
+ total_items: number;
2589
+ total_pages: number;
2590
+ };
2591
+ };
2592
+ };
2593
+ export type GetV1BlocksResponse = GetV1BlocksResponses[keyof GetV1BlocksResponses];
2594
+ export type GetV1ContractsAbiByContractAddressData = {
2595
+ body?: never;
2596
+ path: {
2597
+ contractAddress: string;
2598
+ };
2599
+ query?: {
2600
+ /**
2601
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2602
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2603
+ * Optional, because a single chain can as well be specified as a subdomain
2604
+ */
2605
+ chain?: Array<number> | (number | null) | unknown;
2606
+ };
2607
+ url: '/v1/contracts/abi/{contractAddress}';
2608
+ };
2609
+ export type GetV1ContractsAbiByContractAddressErrors = {
2610
+ /**
2611
+ * Bad request
2612
+ */
2613
+ 400: {
2614
+ error: string;
2615
+ };
2616
+ /**
2617
+ * Not found
2618
+ */
2619
+ 404: unknown;
2620
+ /**
2621
+ * Internal server error
2622
+ */
2623
+ 500: {
2624
+ error: string;
2625
+ };
2626
+ };
2627
+ export type GetV1ContractsAbiByContractAddressError = GetV1ContractsAbiByContractAddressErrors[keyof GetV1ContractsAbiByContractAddressErrors];
2628
+ export type GetV1ContractsAbiByContractAddressResponses = {
2629
+ /**
2630
+ * Success
2631
+ */
2632
+ 200: {
2633
+ [key: string]: unknown;
2634
+ };
2635
+ };
2636
+ export type GetV1ContractsAbiByContractAddressResponse = GetV1ContractsAbiByContractAddressResponses[keyof GetV1ContractsAbiByContractAddressResponses];
2637
+ export type GetV1ContractsMetadataByContractAddressData = {
2638
+ body?: never;
2639
+ path: {
2640
+ contractAddress: string;
2641
+ };
2642
+ query?: {
2643
+ /**
2644
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2645
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2646
+ * Optional, because a single chain can as well be specified as a subdomain
2647
+ */
2648
+ chain?: Array<number> | (number | null) | unknown;
2649
+ };
2650
+ url: '/v1/contracts/metadata/{contractAddress}';
2651
+ };
2652
+ export type GetV1ContractsMetadataByContractAddressErrors = {
2653
+ /**
2654
+ * Not found
2655
+ */
2656
+ 404: unknown;
2657
+ /**
2658
+ * Internal server error
2659
+ */
2660
+ 500: {
2661
+ error: string;
2662
+ };
2663
+ };
2664
+ export type GetV1ContractsMetadataByContractAddressError = GetV1ContractsMetadataByContractAddressErrors[keyof GetV1ContractsMetadataByContractAddressErrors];
2665
+ export type GetV1ContractsMetadataByContractAddressResponses = {
2666
+ /**
2667
+ * Success
2668
+ */
2669
+ 200: {
2670
+ [key: string]: unknown;
2671
+ };
2672
+ };
2673
+ export type GetV1ContractsMetadataByContractAddressResponse = GetV1ContractsMetadataByContractAddressResponses[keyof GetV1ContractsMetadataByContractAddressResponses];
2674
+ export type PostV1DecodeByContractAddressData = {
2675
+ body?: {
2676
+ transactions?: Array<{
2677
+ data: string;
2678
+ }>;
2679
+ logs?: Array<{
2680
+ data?: string;
2681
+ topics: Array<string>;
2682
+ }>;
2683
+ };
2684
+ path: {
2685
+ contractAddress: string;
2686
+ };
2687
+ query?: {
2688
+ /**
2689
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2690
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2691
+ * Optional, because a single chain can as well be specified as a subdomain
2692
+ */
2693
+ chain?: Array<number> | (number | null) | unknown;
2694
+ };
2695
+ url: '/v1/decode/{contractAddress}';
2696
+ };
2697
+ export type PostV1DecodeByContractAddressErrors = {
2698
+ /**
2699
+ * Bad request
2700
+ */
2701
+ 400: {
2702
+ error: string;
2703
+ };
2704
+ /**
2705
+ * Not found
2706
+ */
2707
+ 404: unknown;
2708
+ /**
2709
+ * Internal server error
2710
+ */
2711
+ 500: {
2712
+ error: string;
2713
+ };
2714
+ };
2715
+ export type PostV1DecodeByContractAddressError = PostV1DecodeByContractAddressErrors[keyof PostV1DecodeByContractAddressErrors];
2716
+ export type PostV1DecodeByContractAddressResponses = {
2717
+ /**
2718
+ * Success
2719
+ */
2720
+ 200: {
2721
+ data?: {
2722
+ transactions?: Array<{
2723
+ data: string;
2724
+ function_name?: string;
2725
+ args?: Array<unknown>;
2726
+ }>;
2727
+ logs?: Array<{
2728
+ data?: string;
2729
+ topics: Array<string>;
2730
+ event_name?: string;
2731
+ args?: Array<unknown>;
2732
+ }>;
2733
+ };
2734
+ };
2735
+ };
2736
+ export type PostV1DecodeByContractAddressResponse = PostV1DecodeByContractAddressResponses[keyof PostV1DecodeByContractAddressResponses];
2737
+ export type GetV1NftsBalanceByOwnerAddressData = {
2738
+ body?: never;
2739
+ path: {
2740
+ ownerAddress: string;
2741
+ };
2742
+ query?: {
2743
+ /**
2744
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2745
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2746
+ * Optional, because a single chain can as well be specified as a subdomain
2747
+ */
2748
+ chain?: Array<number> | (number | null) | unknown;
2749
+ /**
2750
+ * The number of items to return
2751
+ */
2752
+ limit?: number;
2753
+ page?: number | null;
2754
+ /**
2755
+ * Whether to include metadata for the tokens
2756
+ */
2757
+ metadata?: 'true' | 'false';
2758
+ /**
2759
+ * Whether to resolve metadata IPFS or Arweave links
2760
+ */
2761
+ resolve_metadata_links?: 'true' | 'false';
2762
+ /**
2763
+ * The types of NFTs to include in the response. Can be an empty array to include all types
2764
+ */
2765
+ token_types?: Array<'erc1155' | 'erc721'>;
2766
+ };
2767
+ url: '/v1/nfts/balance/{ownerAddress}';
2768
+ };
2769
+ export type GetV1NftsBalanceByOwnerAddressErrors = {
2770
+ /**
2771
+ * Bad request
2772
+ */
2773
+ 400: unknown;
2774
+ /**
2775
+ * Internal server error
2776
+ */
2777
+ 500: unknown;
2778
+ };
2779
+ export type GetV1NftsBalanceByOwnerAddressResponses = {
2780
+ /**
2781
+ * Success
2782
+ */
2783
+ 200: {
2784
+ data: Array<{
2785
+ /**
2786
+ * The chain ID of a relevant entry
2787
+ */
2788
+ chain_id: number;
2789
+ token_address: string;
2790
+ token_id: string;
2791
+ balance: string;
2792
+ name?: string;
2793
+ description?: string;
2794
+ image_url?: string;
2795
+ video_url?: string;
2796
+ animation_url?: string;
2797
+ background_color?: string;
2798
+ external_url?: string;
2799
+ status?: string;
2800
+ metadata_url?: string;
2801
+ owner_addresses?: Array<string>;
2802
+ extra_metadata?: {
2803
+ [key: string]: unknown;
2804
+ } & {
2805
+ attributes?: Array<{
2806
+ trait_type: string;
2807
+ value: string | number;
2808
+ display_type?: string;
2809
+ }> | {
2810
+ [key: string]: unknown;
2811
+ };
2812
+ properties?: {
2813
+ [key: string]: unknown;
2814
+ };
2815
+ };
2816
+ collection?: {
2817
+ name?: string;
2818
+ description?: string;
2819
+ image_url?: string;
2820
+ banner_image_url?: string;
2821
+ featured_image_url?: string;
2822
+ external_link?: string;
2823
+ };
2824
+ contract?: {
2825
+ /**
2826
+ * The chain ID of a relevant entry
2827
+ */
2828
+ chain_id: number;
2829
+ address: string;
2830
+ name?: string;
2831
+ symbol?: string;
2832
+ type?: 'erc721' | 'erc1155';
2833
+ };
2834
+ }>;
2835
+ };
2836
+ };
2837
+ export type GetV1NftsBalanceByOwnerAddressResponse = GetV1NftsBalanceByOwnerAddressResponses[keyof GetV1NftsBalanceByOwnerAddressResponses];
2838
+ export type GetV1NftsCollectionsByContractAddressData = {
2839
+ body?: never;
2840
+ path: {
2841
+ contract_address: string;
2842
+ };
2843
+ query?: {
2844
+ /**
2845
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2846
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2847
+ * Optional, because a single chain can as well be specified as a subdomain
2848
+ */
2849
+ chain?: Array<number> | (number | null) | unknown;
2850
+ /**
2851
+ * Whether to include stats for the collection
2852
+ */
2853
+ include_stats?: 'true' | 'false';
2854
+ /**
2855
+ * Whether to resolve metadata IPFS or Arweave links
2856
+ */
2857
+ resolve_metadata_links?: 'true' | 'false';
2858
+ };
2859
+ url: '/v1/nfts/collections/{contract_address}';
2860
+ };
2861
+ export type GetV1NftsCollectionsByContractAddressErrors = {
2862
+ /**
2863
+ * Bad request
2864
+ */
2865
+ 400: {
2866
+ error: string;
2867
+ };
2868
+ /**
2869
+ * Internal server error
2870
+ */
2871
+ 500: {
2872
+ error: string;
2873
+ };
2874
+ };
2875
+ export type GetV1NftsCollectionsByContractAddressError = GetV1NftsCollectionsByContractAddressErrors[keyof GetV1NftsCollectionsByContractAddressErrors];
2876
+ export type GetV1NftsCollectionsByContractAddressResponses = {
2877
+ /**
2878
+ * Success
2879
+ */
2880
+ 200: {
2881
+ data: Array<{
2882
+ name?: string;
2883
+ description?: string;
2884
+ image_url?: string;
2885
+ banner_image_url?: string;
2886
+ featured_image_url?: string;
2887
+ external_link?: string;
2888
+ stats?: {
2889
+ owner_count: number;
2890
+ token_count: number;
2891
+ mint_count: number;
2892
+ total_quantity: number;
2893
+ };
2894
+ }>;
2895
+ };
2896
+ };
2897
+ export type GetV1NftsCollectionsByContractAddressResponse = GetV1NftsCollectionsByContractAddressResponses[keyof GetV1NftsCollectionsByContractAddressResponses];
2898
+ export type GetV1NftsData = {
2899
+ body?: never;
2900
+ path?: never;
2901
+ query: {
2902
+ /**
2903
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2904
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2905
+ * Optional, because a single chain can as well be specified as a subdomain
2906
+ */
2907
+ chain?: Array<number> | (number | null) | unknown;
2908
+ /**
2909
+ * The number of items to return
2910
+ */
2911
+ limit?: number;
2912
+ page?: number | null;
2913
+ /**
2914
+ * Whether to resolve metadata IPFS or Arweave links
2915
+ */
2916
+ resolve_metadata_links?: 'true' | 'false';
2917
+ owner_address: string;
2918
+ };
2919
+ url: '/v1/nfts';
2920
+ };
2921
+ export type GetV1NftsErrors = {
2922
+ /**
2923
+ * Not found
2924
+ */
2925
+ 404: unknown;
2926
+ /**
2927
+ * Internal server error
2928
+ */
2929
+ 500: {
2930
+ error: string;
2931
+ };
2932
+ };
2933
+ export type GetV1NftsError = GetV1NftsErrors[keyof GetV1NftsErrors];
2934
+ export type GetV1NftsResponses = {
2935
+ /**
2936
+ * Success
2937
+ */
2938
+ 200: {
2939
+ data: Array<{
2940
+ name?: string;
2941
+ description?: string;
2942
+ image_url?: string;
2943
+ video_url?: string;
2944
+ animation_url?: string;
2945
+ background_color?: string;
2946
+ external_url?: string;
2947
+ status?: string;
2948
+ metadata_url?: string;
2949
+ extra_metadata?: {
2950
+ [key: string]: unknown;
2951
+ } & {
2952
+ attributes?: Array<{
2953
+ trait_type: string;
2954
+ value: string | number;
2955
+ display_type?: string;
2956
+ }> | {
2957
+ [key: string]: unknown;
2958
+ };
2959
+ properties?: {
2960
+ [key: string]: unknown;
2961
+ };
2962
+ };
2963
+ collection?: {
2964
+ name?: string;
2965
+ description?: string;
2966
+ image_url?: string;
2967
+ banner_image_url?: string;
2968
+ featured_image_url?: string;
2969
+ external_link?: string;
2970
+ };
2971
+ contract?: {
2972
+ /**
2973
+ * The chain ID of a relevant entry
2974
+ */
2975
+ chain_id: number;
2976
+ address: string;
2977
+ name?: string;
2978
+ symbol?: string;
2979
+ type?: 'erc721' | 'erc1155';
2980
+ };
2981
+ chain_id: number;
2982
+ contract_address: string;
2983
+ token_id: string;
2984
+ token_type: string;
2985
+ balance?: string;
2986
+ }>;
2987
+ };
2988
+ };
2989
+ export type GetV1NftsResponse = GetV1NftsResponses[keyof GetV1NftsResponses];
2990
+ export type GetV1NftsOwnersByContractAddressData = {
2991
+ body?: never;
2992
+ path: {
2993
+ contract_address: string;
2994
+ };
2995
+ query?: {
2996
+ /**
2997
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
2998
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
2999
+ * Optional, because a single chain can as well be specified as a subdomain
3000
+ */
3001
+ chain?: Array<number> | (number | null) | unknown;
3002
+ /**
3003
+ * The number of items to return
3004
+ */
3005
+ limit?: number;
3006
+ page?: number | null;
3007
+ };
3008
+ url: '/v1/nfts/owners/{contract_address}';
3009
+ };
3010
+ export type GetV1NftsOwnersByContractAddressErrors = {
3011
+ /**
3012
+ * Not found
3013
+ */
3014
+ 404: unknown;
3015
+ /**
3016
+ * Internal server error
3017
+ */
3018
+ 500: {
3019
+ error: string;
3020
+ };
3021
+ };
3022
+ export type GetV1NftsOwnersByContractAddressError = GetV1NftsOwnersByContractAddressErrors[keyof GetV1NftsOwnersByContractAddressErrors];
3023
+ export type GetV1NftsOwnersByContractAddressResponses = {
3024
+ /**
3025
+ * Success
3026
+ */
3027
+ 200: Array<{
3028
+ chain_id: string;
3029
+ owner_addresses: Array<string>;
3030
+ }>;
3031
+ };
3032
+ export type GetV1NftsOwnersByContractAddressResponse = GetV1NftsOwnersByContractAddressResponses[keyof GetV1NftsOwnersByContractAddressResponses];
3033
+ export type GetV1NftsOwnersByContractAddressByTokenIdData = {
3034
+ body?: never;
3035
+ path: {
3036
+ contract_address: string;
3037
+ token_id: string;
3038
+ };
3039
+ query?: {
3040
+ /**
3041
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3042
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3043
+ * Optional, because a single chain can as well be specified as a subdomain
3044
+ */
3045
+ chain?: Array<number> | (number | null) | unknown;
3046
+ /**
3047
+ * The number of items to return
3048
+ */
3049
+ limit?: number;
3050
+ page?: number | null;
3051
+ };
3052
+ url: '/v1/nfts/owners/{contract_address}/{token_id}';
3053
+ };
3054
+ export type GetV1NftsOwnersByContractAddressByTokenIdErrors = {
3055
+ /**
3056
+ * Not found
3057
+ */
3058
+ 404: unknown;
3059
+ /**
3060
+ * Internal server error
3061
+ */
3062
+ 500: {
3063
+ error: string;
3064
+ };
3065
+ };
3066
+ export type GetV1NftsOwnersByContractAddressByTokenIdError = GetV1NftsOwnersByContractAddressByTokenIdErrors[keyof GetV1NftsOwnersByContractAddressByTokenIdErrors];
3067
+ export type GetV1NftsOwnersByContractAddressByTokenIdResponses = {
3068
+ /**
3069
+ * Success
3070
+ */
3071
+ 200: Array<{
3072
+ chain_id: string;
3073
+ owner_addresses: Array<string>;
3074
+ }>;
3075
+ };
3076
+ export type GetV1NftsOwnersByContractAddressByTokenIdResponse = GetV1NftsOwnersByContractAddressByTokenIdResponses[keyof GetV1NftsOwnersByContractAddressByTokenIdResponses];
3077
+ export type GetV1NftsTransfersData = {
3078
+ body?: never;
3079
+ path?: never;
3080
+ query?: {
3081
+ /**
3082
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3083
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3084
+ * Optional, because a single chain can as well be specified as a subdomain
3085
+ */
3086
+ chain?: Array<number> | (number | null) | unknown;
3087
+ /**
3088
+ * The number of items to return
3089
+ */
3090
+ limit?: number;
3091
+ page?: number | null;
3092
+ /**
3093
+ * Whether to include metadata for the tokens
3094
+ */
3095
+ metadata?: 'true' | 'false';
3096
+ /**
3097
+ * Whether to include sale details for NFT transfers
3098
+ */
3099
+ sales?: 'true' | 'false';
3100
+ /**
3101
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
3102
+ */
3103
+ include_owners?: 'true' | 'false';
3104
+ /**
3105
+ * Whether to resolve metadata IPFS or Arweave links
3106
+ */
3107
+ resolve_metadata_links?: 'true' | 'false';
3108
+ /**
3109
+ * Filter by block number greater than or equal to
3110
+ */
3111
+ block_number_from?: number | string;
3112
+ /**
3113
+ * Filter by block number less than or equal to
3114
+ */
3115
+ block_number_to?: number | string;
3116
+ owner_address?: string;
3117
+ };
3118
+ url: '/v1/nfts/transfers';
3119
+ };
3120
+ export type GetV1NftsTransfersErrors = {
3121
+ /**
3122
+ * Not found
3123
+ */
3124
+ 404: unknown;
3125
+ /**
3126
+ * Internal server error
3127
+ */
3128
+ 500: {
3129
+ error: string;
3130
+ };
3131
+ };
3132
+ export type GetV1NftsTransfersError = GetV1NftsTransfersErrors[keyof GetV1NftsTransfersErrors];
3133
+ export type GetV1NftsTransfersResponses = {
3134
+ /**
3135
+ * Success
3136
+ */
3137
+ 200: {
3138
+ data: Array<{
3139
+ token_id: string;
3140
+ chain_id: number;
3141
+ block_number: string;
3142
+ block_hash?: string;
3143
+ block_timestamp: string;
3144
+ transaction_hash: string;
3145
+ from_address: string;
3146
+ to_address: string;
3147
+ log_index: number;
3148
+ contract_address: string;
3149
+ transfer_type: 'mint' | 'sale' | 'transfer';
3150
+ token_type: string;
3151
+ amount: string;
3152
+ nft_metadata?: {
3153
+ name?: string;
3154
+ description?: string;
3155
+ image_url?: string;
3156
+ video_url?: string;
3157
+ animation_url?: string;
3158
+ background_color?: string;
3159
+ external_url?: string;
3160
+ status?: string;
3161
+ metadata_url?: string;
3162
+ owner_addresses?: Array<string>;
3163
+ extra_metadata?: {
3164
+ [key: string]: unknown;
3165
+ } & {
3166
+ attributes?: Array<{
3167
+ trait_type: string;
3168
+ value: string | number;
3169
+ display_type?: string;
3170
+ }> | {
3171
+ [key: string]: unknown;
3172
+ };
3173
+ properties?: {
3174
+ [key: string]: unknown;
3175
+ };
3176
+ };
3177
+ collection?: {
3178
+ name?: string;
3179
+ description?: string;
3180
+ image_url?: string;
3181
+ banner_image_url?: string;
3182
+ featured_image_url?: string;
3183
+ external_link?: string;
3184
+ };
3185
+ contract?: {
3186
+ /**
3187
+ * The chain ID of a relevant entry
3188
+ */
3189
+ chain_id: number;
3190
+ address: string;
3191
+ name?: string;
3192
+ symbol?: string;
3193
+ type?: 'erc721' | 'erc1155';
3194
+ };
3195
+ };
3196
+ nft_sale?: {
3197
+ transaction_hash: string;
3198
+ items_sold: Array<{
3199
+ token_address: string;
3200
+ token_id: string;
3201
+ amount: string;
3202
+ token_type: string;
3203
+ from_address?: string;
3204
+ to_address?: string;
3205
+ }>;
3206
+ payment: Array<{
3207
+ token_address: string;
3208
+ token_id: string;
3209
+ amount: string;
3210
+ token_type: string;
3211
+ from_address?: string;
3212
+ to_address?: string;
3213
+ }>;
3214
+ marketplace_address: string;
3215
+ marketplace_name: string;
3216
+ };
3217
+ }>;
3218
+ };
3219
+ };
3220
+ export type GetV1NftsTransfersResponse = GetV1NftsTransfersResponses[keyof GetV1NftsTransfersResponses];
3221
+ export type GetV1NftsTransfersTransactionByTransactionHashData = {
3222
+ body?: never;
3223
+ path: {
3224
+ transaction_hash: string;
3225
+ };
3226
+ query?: {
3227
+ /**
3228
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3229
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3230
+ * Optional, because a single chain can as well be specified as a subdomain
3231
+ */
3232
+ chain?: Array<number> | (number | null) | unknown;
3233
+ /**
3234
+ * The number of items to return
3235
+ */
3236
+ limit?: number;
3237
+ page?: number | null;
3238
+ /**
3239
+ * Whether to include metadata for the tokens
3240
+ */
3241
+ metadata?: 'true' | 'false';
3242
+ /**
3243
+ * Whether to include sale details for NFT transfers
3244
+ */
3245
+ sales?: 'true' | 'false';
3246
+ /**
3247
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
3248
+ */
3249
+ include_owners?: 'true' | 'false';
3250
+ /**
3251
+ * Whether to resolve metadata IPFS or Arweave links
3252
+ */
3253
+ resolve_metadata_links?: 'true' | 'false';
3254
+ };
3255
+ url: '/v1/nfts/transfers/transaction/{transaction_hash}';
3256
+ };
3257
+ export type GetV1NftsTransfersTransactionByTransactionHashErrors = {
3258
+ /**
3259
+ * Not found
3260
+ */
3261
+ 404: unknown;
3262
+ /**
3263
+ * Internal server error
3264
+ */
3265
+ 500: {
3266
+ error: string;
3267
+ };
3268
+ };
3269
+ export type GetV1NftsTransfersTransactionByTransactionHashError = GetV1NftsTransfersTransactionByTransactionHashErrors[keyof GetV1NftsTransfersTransactionByTransactionHashErrors];
3270
+ export type GetV1NftsTransfersTransactionByTransactionHashResponses = {
3271
+ /**
3272
+ * Success
3273
+ */
3274
+ 200: {
3275
+ data: Array<{
3276
+ token_id: string;
3277
+ chain_id: number;
3278
+ block_number: string;
3279
+ block_hash?: string;
3280
+ block_timestamp: string;
3281
+ transaction_hash: string;
3282
+ from_address: string;
3283
+ to_address: string;
3284
+ log_index: number;
3285
+ contract_address: string;
3286
+ transfer_type: 'mint' | 'sale' | 'transfer';
3287
+ token_type: string;
3288
+ amount: string;
3289
+ nft_metadata?: {
3290
+ name?: string;
3291
+ description?: string;
3292
+ image_url?: string;
3293
+ video_url?: string;
3294
+ animation_url?: string;
3295
+ background_color?: string;
3296
+ external_url?: string;
3297
+ status?: string;
3298
+ metadata_url?: string;
3299
+ owner_addresses?: Array<string>;
3300
+ extra_metadata?: {
3301
+ [key: string]: unknown;
3302
+ } & {
3303
+ attributes?: Array<{
3304
+ trait_type: string;
3305
+ value: string | number;
3306
+ display_type?: string;
3307
+ }> | {
3308
+ [key: string]: unknown;
3309
+ };
3310
+ properties?: {
3311
+ [key: string]: unknown;
3312
+ };
3313
+ };
3314
+ collection?: {
3315
+ name?: string;
3316
+ description?: string;
3317
+ image_url?: string;
3318
+ banner_image_url?: string;
3319
+ featured_image_url?: string;
3320
+ external_link?: string;
3321
+ };
3322
+ contract?: {
3323
+ /**
3324
+ * The chain ID of a relevant entry
3325
+ */
3326
+ chain_id: number;
3327
+ address: string;
3328
+ name?: string;
3329
+ symbol?: string;
3330
+ type?: 'erc721' | 'erc1155';
3331
+ };
3332
+ };
3333
+ nft_sale?: {
3334
+ transaction_hash: string;
3335
+ items_sold: Array<{
3336
+ token_address: string;
3337
+ token_id: string;
3338
+ amount: string;
3339
+ token_type: string;
3340
+ from_address?: string;
3341
+ to_address?: string;
3342
+ }>;
3343
+ payment: Array<{
3344
+ token_address: string;
3345
+ token_id: string;
3346
+ amount: string;
3347
+ token_type: string;
3348
+ from_address?: string;
3349
+ to_address?: string;
3350
+ }>;
3351
+ marketplace_address: string;
3352
+ marketplace_name: string;
3353
+ };
3354
+ }>;
3355
+ };
3356
+ };
3357
+ export type GetV1NftsTransfersTransactionByTransactionHashResponse = GetV1NftsTransfersTransactionByTransactionHashResponses[keyof GetV1NftsTransfersTransactionByTransactionHashResponses];
3358
+ export type GetV1NftsTransfersByContractAddressData = {
3359
+ body?: never;
3360
+ path: {
3361
+ contract_address: string;
3362
+ };
3363
+ query?: {
3364
+ /**
3365
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3366
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3367
+ * Optional, because a single chain can as well be specified as a subdomain
3368
+ */
3369
+ chain?: Array<number> | (number | null) | unknown;
3370
+ /**
3371
+ * The number of items to return
3372
+ */
3373
+ limit?: number;
3374
+ page?: number | null;
3375
+ /**
3376
+ * Whether to include metadata for the tokens
3377
+ */
3378
+ metadata?: 'true' | 'false';
3379
+ /**
3380
+ * Whether to include sale details for NFT transfers
3381
+ */
3382
+ sales?: 'true' | 'false';
3383
+ /**
3384
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
3385
+ */
3386
+ include_owners?: 'true' | 'false';
3387
+ /**
3388
+ * Whether to resolve metadata IPFS or Arweave links
3389
+ */
3390
+ resolve_metadata_links?: 'true' | 'false';
3391
+ };
3392
+ url: '/v1/nfts/transfers/{contract_address}';
3393
+ };
3394
+ export type GetV1NftsTransfersByContractAddressErrors = {
3395
+ /**
3396
+ * Not found
3397
+ */
3398
+ 404: unknown;
3399
+ /**
3400
+ * Internal server error
3401
+ */
3402
+ 500: {
3403
+ error: string;
3404
+ };
3405
+ };
3406
+ export type GetV1NftsTransfersByContractAddressError = GetV1NftsTransfersByContractAddressErrors[keyof GetV1NftsTransfersByContractAddressErrors];
3407
+ export type GetV1NftsTransfersByContractAddressResponses = {
3408
+ /**
3409
+ * Success
3410
+ */
3411
+ 200: {
3412
+ data: Array<{
3413
+ token_id: string;
3414
+ chain_id: number;
3415
+ block_number: string;
3416
+ block_hash?: string;
3417
+ block_timestamp: string;
3418
+ transaction_hash: string;
3419
+ from_address: string;
3420
+ to_address: string;
3421
+ log_index: number;
3422
+ contract_address: string;
3423
+ transfer_type: 'mint' | 'sale' | 'transfer';
3424
+ token_type: string;
3425
+ amount: string;
3426
+ nft_metadata?: {
3427
+ name?: string;
3428
+ description?: string;
3429
+ image_url?: string;
3430
+ video_url?: string;
3431
+ animation_url?: string;
3432
+ background_color?: string;
3433
+ external_url?: string;
3434
+ status?: string;
3435
+ metadata_url?: string;
3436
+ owner_addresses?: Array<string>;
3437
+ extra_metadata?: {
3438
+ [key: string]: unknown;
3439
+ } & {
3440
+ attributes?: Array<{
3441
+ trait_type: string;
3442
+ value: string | number;
3443
+ display_type?: string;
3444
+ }> | {
3445
+ [key: string]: unknown;
3446
+ };
3447
+ properties?: {
3448
+ [key: string]: unknown;
3449
+ };
3450
+ };
3451
+ collection?: {
3452
+ name?: string;
3453
+ description?: string;
3454
+ image_url?: string;
3455
+ banner_image_url?: string;
3456
+ featured_image_url?: string;
3457
+ external_link?: string;
3458
+ };
3459
+ contract?: {
3460
+ /**
3461
+ * The chain ID of a relevant entry
3462
+ */
3463
+ chain_id: number;
3464
+ address: string;
3465
+ name?: string;
3466
+ symbol?: string;
3467
+ type?: 'erc721' | 'erc1155';
3468
+ };
3469
+ };
3470
+ nft_sale?: {
3471
+ transaction_hash: string;
3472
+ items_sold: Array<{
3473
+ token_address: string;
3474
+ token_id: string;
3475
+ amount: string;
3476
+ token_type: string;
3477
+ from_address?: string;
3478
+ to_address?: string;
3479
+ }>;
3480
+ payment: Array<{
3481
+ token_address: string;
3482
+ token_id: string;
3483
+ amount: string;
3484
+ token_type: string;
3485
+ from_address?: string;
3486
+ to_address?: string;
3487
+ }>;
3488
+ marketplace_address: string;
3489
+ marketplace_name: string;
3490
+ };
3491
+ }>;
3492
+ };
3493
+ };
3494
+ export type GetV1NftsTransfersByContractAddressResponse = GetV1NftsTransfersByContractAddressResponses[keyof GetV1NftsTransfersByContractAddressResponses];
3495
+ export type GetV1NftsByContractAddressData = {
3496
+ body?: never;
3497
+ path: {
3498
+ contract_address: string;
3499
+ };
3500
+ query?: {
3501
+ /**
3502
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3503
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3504
+ * Optional, because a single chain can as well be specified as a subdomain
3505
+ */
3506
+ chain?: Array<number> | (number | null) | unknown;
3507
+ /**
3508
+ * The number of items to return
3509
+ */
3510
+ limit?: number;
3511
+ page?: number | null;
3512
+ /**
3513
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
3514
+ */
3515
+ include_owners?: 'true' | 'false';
3516
+ /**
3517
+ * Whether to resolve metadata IPFS or Arweave links
3518
+ */
3519
+ resolve_metadata_links?: 'true' | 'false';
3520
+ };
3521
+ url: '/v1/nfts/{contract_address}';
3522
+ };
3523
+ export type GetV1NftsByContractAddressErrors = {
3524
+ /**
3525
+ * Not found
3526
+ */
3527
+ 404: unknown;
3528
+ /**
3529
+ * Internal server error
3530
+ */
3531
+ 500: {
3532
+ error: string;
3533
+ };
3534
+ };
3535
+ export type GetV1NftsByContractAddressError = GetV1NftsByContractAddressErrors[keyof GetV1NftsByContractAddressErrors];
3536
+ export type GetV1NftsByContractAddressResponses = {
3537
+ /**
3538
+ * Success
3539
+ */
3540
+ 200: {
3541
+ data: Array<{
3542
+ name?: string;
3543
+ description?: string;
3544
+ image_url?: string;
3545
+ video_url?: string;
3546
+ animation_url?: string;
3547
+ background_color?: string;
3548
+ external_url?: string;
3549
+ status?: string;
3550
+ metadata_url?: string;
3551
+ owner_addresses: Array<string>;
3552
+ extra_metadata?: {
3553
+ [key: string]: unknown;
3554
+ } & {
3555
+ attributes?: Array<{
3556
+ trait_type: string;
3557
+ value: string | number;
3558
+ display_type?: string;
3559
+ }> | {
3560
+ [key: string]: unknown;
3561
+ };
3562
+ properties?: {
3563
+ [key: string]: unknown;
3564
+ };
3565
+ };
3566
+ collection?: {
3567
+ name?: string;
3568
+ description?: string;
3569
+ image_url?: string;
3570
+ banner_image_url?: string;
3571
+ featured_image_url?: string;
3572
+ external_link?: string;
3573
+ };
3574
+ contract?: {
3575
+ /**
3576
+ * The chain ID of a relevant entry
3577
+ */
3578
+ chain_id: number;
3579
+ address: string;
3580
+ name?: string;
3581
+ symbol?: string;
3582
+ type?: 'erc721' | 'erc1155';
3583
+ };
3584
+ chain_id: number;
3585
+ contract_address: string;
3586
+ token_id: string;
3587
+ token_type: string;
3588
+ balance?: string;
3589
+ }>;
3590
+ };
3591
+ };
3592
+ export type GetV1NftsByContractAddressResponse = GetV1NftsByContractAddressResponses[keyof GetV1NftsByContractAddressResponses];
3593
+ export type GetV1NftsTransfersByContractAddressByTokenIdData = {
3594
+ body?: never;
3595
+ path: {
3596
+ contract_address: string;
3597
+ token_id: string;
3598
+ };
3599
+ query?: {
3600
+ /**
3601
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3602
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3603
+ * Optional, because a single chain can as well be specified as a subdomain
3604
+ */
3605
+ chain?: Array<number> | (number | null) | unknown;
3606
+ /**
3607
+ * The number of items to return
3608
+ */
3609
+ limit?: number;
3610
+ page?: number | null;
3611
+ /**
3612
+ * Whether to include metadata for the tokens
3613
+ */
3614
+ metadata?: 'true' | 'false';
3615
+ /**
3616
+ * Whether to include sale details for NFT transfers
3617
+ */
3618
+ sales?: 'true' | 'false';
3619
+ /**
3620
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
3621
+ */
3622
+ include_owners?: 'true' | 'false';
3623
+ /**
3624
+ * Whether to resolve metadata IPFS or Arweave links
3625
+ */
3626
+ resolve_metadata_links?: 'true' | 'false';
3627
+ };
3628
+ url: '/v1/nfts/transfers/{contract_address}/{token_id}';
3629
+ };
3630
+ export type GetV1NftsTransfersByContractAddressByTokenIdErrors = {
3631
+ /**
3632
+ * Not found
3633
+ */
3634
+ 404: unknown;
3635
+ /**
3636
+ * Internal server error
3637
+ */
3638
+ 500: {
3639
+ error: string;
3640
+ };
3641
+ };
3642
+ export type GetV1NftsTransfersByContractAddressByTokenIdError = GetV1NftsTransfersByContractAddressByTokenIdErrors[keyof GetV1NftsTransfersByContractAddressByTokenIdErrors];
3643
+ export type GetV1NftsTransfersByContractAddressByTokenIdResponses = {
3644
+ /**
3645
+ * Success
3646
+ */
3647
+ 200: {
3648
+ data: Array<{
3649
+ token_id: string;
3650
+ chain_id: number;
3651
+ block_number: string;
3652
+ block_hash?: string;
3653
+ block_timestamp: string;
3654
+ transaction_hash: string;
3655
+ from_address: string;
3656
+ to_address: string;
3657
+ log_index: number;
3658
+ contract_address: string;
3659
+ transfer_type: 'mint' | 'sale' | 'transfer';
3660
+ token_type: string;
3661
+ amount: string;
3662
+ nft_metadata?: {
3663
+ name?: string;
3664
+ description?: string;
3665
+ image_url?: string;
3666
+ video_url?: string;
3667
+ animation_url?: string;
3668
+ background_color?: string;
3669
+ external_url?: string;
3670
+ status?: string;
3671
+ metadata_url?: string;
3672
+ owner_addresses?: Array<string>;
3673
+ extra_metadata?: {
3674
+ [key: string]: unknown;
3675
+ } & {
3676
+ attributes?: Array<{
3677
+ trait_type: string;
3678
+ value: string | number;
3679
+ display_type?: string;
3680
+ }> | {
3681
+ [key: string]: unknown;
3682
+ };
3683
+ properties?: {
3684
+ [key: string]: unknown;
3685
+ };
3686
+ };
3687
+ collection?: {
3688
+ name?: string;
3689
+ description?: string;
3690
+ image_url?: string;
3691
+ banner_image_url?: string;
3692
+ featured_image_url?: string;
3693
+ external_link?: string;
3694
+ };
3695
+ contract?: {
3696
+ /**
3697
+ * The chain ID of a relevant entry
3698
+ */
3699
+ chain_id: number;
3700
+ address: string;
3701
+ name?: string;
3702
+ symbol?: string;
3703
+ type?: 'erc721' | 'erc1155';
3704
+ };
3705
+ };
3706
+ nft_sale?: {
3707
+ transaction_hash: string;
3708
+ items_sold: Array<{
3709
+ token_address: string;
3710
+ token_id: string;
3711
+ amount: string;
3712
+ token_type: string;
3713
+ from_address?: string;
3714
+ to_address?: string;
3715
+ }>;
3716
+ payment: Array<{
3717
+ token_address: string;
3718
+ token_id: string;
3719
+ amount: string;
3720
+ token_type: string;
3721
+ from_address?: string;
3722
+ to_address?: string;
3723
+ }>;
3724
+ marketplace_address: string;
3725
+ marketplace_name: string;
3726
+ };
3727
+ }>;
3728
+ };
3729
+ };
3730
+ export type GetV1NftsTransfersByContractAddressByTokenIdResponse = GetV1NftsTransfersByContractAddressByTokenIdResponses[keyof GetV1NftsTransfersByContractAddressByTokenIdResponses];
3731
+ export type GetV1NftsByContractAddressByTokenIdData = {
3732
+ body?: never;
3733
+ path: {
3734
+ contract_address: string;
3735
+ token_id: string;
3736
+ };
3737
+ query?: {
3738
+ /**
3739
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3740
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3741
+ * Optional, because a single chain can as well be specified as a subdomain
3742
+ */
3743
+ chain?: Array<number> | (number | null) | unknown;
3744
+ /**
3745
+ * Whether to include owner addresses in the response (only if NFT metadata is requested)
3746
+ */
3747
+ include_owners?: 'true' | 'false';
3748
+ /**
3749
+ * Whether to resolve metadata IPFS or Arweave links
3750
+ */
3751
+ resolve_metadata_links?: 'true' | 'false';
3752
+ };
3753
+ url: '/v1/nfts/{contract_address}/{token_id}';
3754
+ };
3755
+ export type GetV1NftsByContractAddressByTokenIdErrors = {
3756
+ /**
3757
+ * Not found
3758
+ */
3759
+ 404: unknown;
3760
+ /**
3761
+ * Internal server error
3762
+ */
3763
+ 500: {
3764
+ error: string;
3765
+ };
3766
+ };
3767
+ export type GetV1NftsByContractAddressByTokenIdError = GetV1NftsByContractAddressByTokenIdErrors[keyof GetV1NftsByContractAddressByTokenIdErrors];
3768
+ export type GetV1NftsByContractAddressByTokenIdResponses = {
3769
+ /**
3770
+ * Success
3771
+ */
3772
+ 200: {
3773
+ data: Array<{
3774
+ name?: string;
3775
+ description?: string;
3776
+ image_url?: string;
3777
+ video_url?: string;
3778
+ animation_url?: string;
3779
+ background_color?: string;
3780
+ external_url?: string;
3781
+ status?: string;
3782
+ metadata_url?: string;
3783
+ owner_addresses: Array<string>;
3784
+ extra_metadata?: {
3785
+ [key: string]: unknown;
3786
+ } & {
3787
+ attributes?: Array<{
3788
+ trait_type: string;
3789
+ value: string | number;
3790
+ display_type?: string;
3791
+ }> | {
3792
+ [key: string]: unknown;
3793
+ };
3794
+ properties?: {
3795
+ [key: string]: unknown;
3796
+ };
3797
+ };
3798
+ collection?: {
3799
+ name?: string;
3800
+ description?: string;
3801
+ image_url?: string;
3802
+ banner_image_url?: string;
3803
+ featured_image_url?: string;
3804
+ external_link?: string;
3805
+ };
3806
+ contract?: {
3807
+ /**
3808
+ * The chain ID of a relevant entry
3809
+ */
3810
+ chain_id: number;
3811
+ address: string;
3812
+ name?: string;
3813
+ symbol?: string;
3814
+ type?: 'erc721' | 'erc1155';
3815
+ };
3816
+ chain_id: number;
3817
+ contract_address: string;
3818
+ token_id: string;
3819
+ token_type: string;
3820
+ balance?: string;
3821
+ }>;
3822
+ };
3823
+ };
3824
+ export type GetV1NftsByContractAddressByTokenIdResponse = GetV1NftsByContractAddressByTokenIdResponses[keyof GetV1NftsByContractAddressByTokenIdResponses];
3825
+ export type GetV1NftsMetadataRefreshByContractAddressData = {
3826
+ body?: never;
3827
+ path: {
3828
+ contract_address: string;
3829
+ };
3830
+ query?: {
3831
+ /**
3832
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3833
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3834
+ * Optional, because a single chain can as well be specified as a subdomain
3835
+ */
3836
+ chain?: Array<number> | (number | null) | unknown;
3837
+ };
3838
+ url: '/v1/nfts/metadata/refresh/{contract_address}';
3839
+ };
3840
+ export type GetV1NftsMetadataRefreshByContractAddressErrors = {
3841
+ /**
3842
+ * Bad request
3843
+ */
3844
+ 400: {
3845
+ error: string;
3846
+ };
3847
+ /**
3848
+ * Internal server error
3849
+ */
3850
+ 500: {
3851
+ error: string;
3852
+ };
3853
+ };
3854
+ export type GetV1NftsMetadataRefreshByContractAddressError = GetV1NftsMetadataRefreshByContractAddressErrors[keyof GetV1NftsMetadataRefreshByContractAddressErrors];
3855
+ export type GetV1NftsMetadataRefreshByContractAddressResponses = {
3856
+ /**
3857
+ * Success
3858
+ */
3859
+ 200: {
3860
+ data: {
3861
+ success: boolean;
3862
+ message: string;
3863
+ };
3864
+ };
3865
+ };
3866
+ export type GetV1NftsMetadataRefreshByContractAddressResponse = GetV1NftsMetadataRefreshByContractAddressResponses[keyof GetV1NftsMetadataRefreshByContractAddressResponses];
3867
+ export type GetV1NftsMetadataRefreshByContractAddressByTokenIdData = {
3868
+ body?: never;
3869
+ path: {
3870
+ contract_address: string;
3871
+ token_id: string;
3872
+ };
3873
+ query?: {
3874
+ /**
3875
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3876
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3877
+ * Optional, because a single chain can as well be specified as a subdomain
3878
+ */
3879
+ chain?: Array<number> | (number | null) | unknown;
3880
+ };
3881
+ url: '/v1/nfts/metadata/refresh/{contract_address}/{token_id}';
3882
+ };
3883
+ export type GetV1NftsMetadataRefreshByContractAddressByTokenIdErrors = {
3884
+ /**
3885
+ * Bad request
3886
+ */
3887
+ 400: {
3888
+ error: string;
3889
+ };
3890
+ /**
3891
+ * Internal server error
3892
+ */
3893
+ 500: {
3894
+ error: string;
3895
+ };
3896
+ };
3897
+ export type GetV1NftsMetadataRefreshByContractAddressByTokenIdError = GetV1NftsMetadataRefreshByContractAddressByTokenIdErrors[keyof GetV1NftsMetadataRefreshByContractAddressByTokenIdErrors];
3898
+ export type GetV1NftsMetadataRefreshByContractAddressByTokenIdResponses = {
3899
+ /**
3900
+ * Success
3901
+ */
3902
+ 200: {
3903
+ data: {
3904
+ success: boolean;
3905
+ message: string;
3906
+ };
3907
+ };
3908
+ };
3909
+ export type GetV1NftsMetadataRefreshByContractAddressByTokenIdResponse = GetV1NftsMetadataRefreshByContractAddressByTokenIdResponses[keyof GetV1NftsMetadataRefreshByContractAddressByTokenIdResponses];
3910
+ export type GetV1WalletsByWalletAddressTransactionsData = {
3911
+ body?: never;
3912
+ path: {
3913
+ wallet_address: string;
3914
+ };
3915
+ query?: {
3916
+ /**
3917
+ * The chain ID(s) to request the data for. You can specify multiple chain IDs, up to a maximum of 50.
3918
+ * Use repeated query parameters, e.g., `?chain=20&chain=56`.
3919
+ * Optional, because a single chain can as well be specified as a subdomain
3920
+ */
3921
+ chain?: Array<number> | (number | null) | unknown;
3922
+ /**
3923
+ * Filter by block number
3924
+ */
3925
+ filter_block_number?: number | null;
3926
+ /**
3927
+ * Filter by block number greater than or equal to
3928
+ */
3929
+ filter_block_number_gte?: number | null;
3930
+ /**
3931
+ * Filter by block number greater than
3932
+ */
3933
+ filter_block_number_gt?: number | null;
3934
+ /**
3935
+ * Filter by block number less than or equal to
3936
+ */
3937
+ filter_block_number_lte?: number | null;
3938
+ /**
3939
+ * Filter by block number less than
3940
+ */
3941
+ filter_block_number_lt?: number | null;
3942
+ /**
3943
+ * Filter by block hash
3944
+ */
3945
+ filter_block_hash?: string;
3946
+ /**
3947
+ * Filter by block timestamp
3948
+ */
3949
+ filter_block_timestamp?: number | null;
3950
+ /**
3951
+ * Filter by block timestamp greater than or equal to
3952
+ */
3953
+ filter_block_timestamp_gte?: number | null;
3954
+ /**
3955
+ * Filter by block timestamp greater than
3956
+ */
3957
+ filter_block_timestamp_gt?: number | null;
3958
+ /**
3959
+ * Filter by block timestamp less than or equal to
3960
+ */
3961
+ filter_block_timestamp_lte?: number | null;
3962
+ /**
3963
+ * Filter by block timestamp less than
3964
+ */
3965
+ filter_block_timestamp_lt?: number | null;
3966
+ /**
3967
+ * Field to sort results by
3968
+ */
3969
+ sort_by?: 'block_number' | string;
3970
+ /**
3971
+ * Sort order (asc or desc)
3972
+ */
3973
+ sort_order?: 'asc' | 'desc';
3974
+ group_by?: Array<string | null> | (string | null) | unknown;
3975
+ aggregate?: Array<string | null> | (string | null) | unknown;
3976
+ /**
3977
+ * Filter by transaction index
3978
+ */
3979
+ filter_transaction_index?: number | null;
3980
+ /**
3981
+ * Filter by transaction index greater than or equal to
3982
+ */
3983
+ filter_transaction_index_gte?: number | null;
3984
+ /**
3985
+ * Filter by transaction index greater than
3986
+ */
3987
+ filter_transaction_index_gt?: number | null;
3988
+ /**
3989
+ * Filter by transaction index less than or equal to
3990
+ */
3991
+ filter_transaction_index_lte?: number | null;
3992
+ /**
3993
+ * Filter by transaction index less than
3994
+ */
3995
+ filter_transaction_index_lt?: number | null;
3996
+ /**
3997
+ * Enable ABI decoding of the transactions/events data
3998
+ */
3999
+ decode?: boolean | null;
4000
+ /**
4001
+ * Filter by transaction hash
4002
+ */
4003
+ filter_hash?: string;
4004
+ /**
4005
+ * Filter by value
4006
+ */
4007
+ filter_value?: number | null;
4008
+ /**
4009
+ * Filter by value greater than or equal to
4010
+ */
4011
+ filter_value_gte?: number | null;
4012
+ /**
4013
+ * Filter by value greater than
4014
+ */
4015
+ filter_value_gt?: number | null;
4016
+ /**
4017
+ * Filter by value less than or equal to
4018
+ */
4019
+ filter_value_lte?: number | null;
4020
+ /**
4021
+ * Filter by value less than
4022
+ */
4023
+ filter_value_lt?: number | null;
4024
+ /**
4025
+ * Filter by gas price
4026
+ */
4027
+ filter_gas_price?: number | null;
4028
+ /**
4029
+ * Filter by gas price greater than or equal to
4030
+ */
4031
+ filter_gas_price_gte?: number | null;
4032
+ /**
4033
+ * Filter by gas price greater than
4034
+ */
4035
+ filter_gas_price_gt?: number | null;
4036
+ /**
4037
+ * Filter by gas price less than or equal to
4038
+ */
4039
+ filter_gas_price_lte?: number | null;
4040
+ /**
4041
+ * Filter by gas price less than
4042
+ */
4043
+ filter_gas_price_lt?: number | null;
4044
+ /**
4045
+ * Filter by gas
4046
+ */
4047
+ filter_gas?: number | null;
4048
+ /**
4049
+ * Filter by gas greater than or equal to
4050
+ */
4051
+ filter_gas_gte?: number | null;
4052
+ /**
4053
+ * Filter by gas greater than
4054
+ */
4055
+ filter_gas_gt?: number | null;
4056
+ /**
4057
+ * Filter by gas less than or equal to
4058
+ */
4059
+ filter_gas_lte?: number | null;
4060
+ /**
4061
+ * Filter by gas less than
4062
+ */
4063
+ filter_gas_lt?: number | null;
4064
+ /**
4065
+ * Filter by function selector
4066
+ */
4067
+ filter_function_selector?: string;
4068
+ /**
4069
+ * The number of items to return
4070
+ */
4071
+ limit?: number;
4072
+ page?: number | null;
4073
+ };
4074
+ url: '/v1/wallets/{wallet_address}/transactions';
4075
+ };
4076
+ export type GetV1WalletsByWalletAddressTransactionsErrors = {
4077
+ /**
4078
+ * Bad request
4079
+ */
4080
+ 400: {
4081
+ error: string;
4082
+ };
4083
+ /**
4084
+ * Internal server error
4085
+ */
4086
+ 500: {
4087
+ error: string;
4088
+ };
4089
+ };
4090
+ export type GetV1WalletsByWalletAddressTransactionsError = GetV1WalletsByWalletAddressTransactionsErrors[keyof GetV1WalletsByWalletAddressTransactionsErrors];
4091
+ export type GetV1WalletsByWalletAddressTransactionsResponses = {
4092
+ /**
4093
+ * Successful response
4094
+ */
4095
+ 200: {
4096
+ data?: Array<{
4097
+ chain_id: number;
4098
+ block_number: string;
4099
+ block_hash: string;
4100
+ block_timestamp: string;
4101
+ hash: string;
4102
+ nonce: number;
4103
+ transaction_index: number;
4104
+ from_address: string;
4105
+ to_address: string;
4106
+ value: number;
4107
+ gas_price: number;
4108
+ gas: number;
4109
+ function_selector: string;
4110
+ data: string;
4111
+ max_fee_per_gas: number;
4112
+ max_priority_fee_per_gas: number;
4113
+ transaction_type: number;
4114
+ r: number;
4115
+ s: number;
4116
+ v: number;
4117
+ access_list_json?: string;
4118
+ contract_address?: string;
4119
+ gas_used?: number;
4120
+ cumulative_gas_used?: number;
4121
+ effective_gas_price?: number;
4122
+ blob_gas_used?: number;
4123
+ blob_gas_price?: number;
4124
+ logs_bloom?: string;
4125
+ status?: number;
4126
+ decoded?: {
4127
+ name: string;
4128
+ signature: string;
4129
+ inputs?: {
4130
+ [key: string]: unknown;
4131
+ };
4132
+ };
4133
+ /**
4134
+ * @deprecated
4135
+ */
4136
+ decodedData?: {
4137
+ name: string;
4138
+ signature: string;
4139
+ inputs?: {
4140
+ [key: string]: unknown;
4141
+ };
4142
+ };
4143
+ }>;
4144
+ aggregations?: unknown;
4145
+ meta: {
4146
+ chain_ids: Array<number>;
4147
+ address?: string;
4148
+ signature?: string;
4149
+ page: number;
4150
+ limit_per_chain: number;
4151
+ total_items: number;
4152
+ total_pages: number;
4153
+ };
4154
+ };
4155
+ };
4156
+ export type GetV1WalletsByWalletAddressTransactionsResponse = GetV1WalletsByWalletAddressTransactionsResponses[keyof GetV1WalletsByWalletAddressTransactionsResponses];
4157
+ export type ClientOptions = {
4158
+ baseUrl: 'https://{chainId}.insight.thirdweb.com/' | (string & {});
4159
+ };