@b3dotfun/sdk 0.0.7-alpha.27 → 0.0.7-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (749) hide show
  1. package/dist/cjs/anyspend/abis/abi-usdc-base.js +97 -97
  2. package/dist/cjs/anyspend/abis/erc20-staking.js +51 -51
  3. package/dist/cjs/anyspend/constants/index.js +10 -13
  4. package/dist/cjs/anyspend/index.d.ts +2 -4
  5. package/dist/cjs/anyspend/index.js +4 -4
  6. package/dist/cjs/anyspend/react/components/AnySpend.d.ts +1 -1
  7. package/dist/cjs/anyspend/react/components/AnySpend.js +68 -69
  8. package/dist/cjs/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
  9. package/dist/cjs/anyspend/react/components/AnySpendBuySpin.js +66 -68
  10. package/dist/cjs/anyspend/react/components/AnySpendCustom.d.ts +4 -4
  11. package/dist/cjs/anyspend/react/components/AnySpendCustom.js +101 -158
  12. package/dist/cjs/anyspend/react/components/AnySpendNFT.d.ts +2 -3
  13. package/dist/cjs/anyspend/react/components/AnySpendNFT.js +5 -7
  14. package/dist/cjs/anyspend/react/components/AnySpendNFTButton.js +1 -1
  15. package/dist/cjs/anyspend/react/components/AnySpendStakeB3.d.ts +1 -1
  16. package/dist/cjs/anyspend/react/components/AnySpendStakeB3.js +20 -21
  17. package/dist/cjs/anyspend/react/components/AnySpendTournament.js +4 -7
  18. package/dist/cjs/anyspend/react/components/common/ChainTokenIcon.d.ts +1 -1
  19. package/dist/cjs/anyspend/react/components/common/ChainTokenIcon.js +1 -1
  20. package/dist/cjs/anyspend/react/components/common/OrderDetails.js +62 -51
  21. package/dist/cjs/anyspend/react/components/common/OrderHistory.js +6 -6
  22. package/dist/cjs/anyspend/react/components/common/OrderToken.d.ts +1 -1
  23. package/dist/cjs/anyspend/react/components/common/OrderToken.js +4 -4
  24. package/dist/cjs/anyspend/react/components/common/OrderTokenAmount.d.ts +1 -1
  25. package/dist/cjs/anyspend/react/components/common/OrderTokenAmount.js +2 -2
  26. package/dist/cjs/anyspend/react/components/common/PanelOnramp.d.ts +1 -1
  27. package/dist/cjs/anyspend/react/components/common/PanelOnramp.js +9 -9
  28. package/dist/cjs/anyspend/react/components/common/PanelOnrampPayment.d.ts +1 -1
  29. package/dist/cjs/anyspend/react/components/common/PanelOnrampPayment.js +14 -15
  30. package/dist/cjs/anyspend/react/components/common/PaymentMethodIcons.js +1 -1
  31. package/dist/cjs/anyspend/react/components/common/PaymentOneClick.js +3 -3
  32. package/dist/cjs/anyspend/react/components/common/PaymentStripeWeb2.js +25 -26
  33. package/dist/cjs/anyspend/react/components/common/TokenBalance.d.ts +1 -1
  34. package/dist/cjs/anyspend/react/components/common/TokenBalance.js +2 -2
  35. package/dist/cjs/anyspend/react/components/index.d.ts +0 -2
  36. package/dist/cjs/anyspend/react/components/index.js +1 -5
  37. package/dist/cjs/anyspend/react/components/modals/EnterRecipientModal.d.ts +1 -1
  38. package/dist/cjs/anyspend/react/components/modals/EnterRecipientModal.js +6 -6
  39. package/dist/cjs/anyspend/react/components/webview/WebviewOnrampOrderStatus.js +1 -0
  40. package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
  41. package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.js +25 -26
  42. package/dist/cjs/anyspend/react/hooks/index.d.ts +2 -1
  43. package/dist/cjs/anyspend/react/hooks/index.js +2 -1
  44. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +18 -3
  45. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +6 -6
  46. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +0 -1
  47. package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.js +6 -6
  48. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +70 -14
  49. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +2 -2
  50. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +70 -14
  51. package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.js +3 -3
  52. package/dist/cjs/anyspend/react/hooks/useAnyspendQuote.js +3 -3
  53. package/dist/cjs/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +16 -0
  54. package/dist/cjs/anyspend/react/hooks/useAnyspendSendPermitData.js +39 -0
  55. package/dist/cjs/anyspend/react/hooks/useAnyspendTokens.js +3 -3
  56. package/dist/cjs/anyspend/react/hooks/useCoinbaseOnrampOptions.js +2 -2
  57. package/dist/cjs/anyspend/react/hooks/useGeoOnrampOptions.js +2 -2
  58. package/dist/cjs/anyspend/react/hooks/useGetGeo.js +1 -1
  59. package/dist/cjs/anyspend/react/hooks/usePermitData.d.ts +92 -0
  60. package/dist/cjs/anyspend/react/hooks/usePermitData.js +158 -0
  61. package/dist/cjs/anyspend/react/hooks/useStripeClientSecret.js +2 -2
  62. package/dist/cjs/anyspend/react/hooks/useStripeSupport.js +2 -2
  63. package/dist/cjs/anyspend/react/providers/AnyspendProvider.js +6 -7
  64. package/dist/cjs/anyspend/services/anyspend.d.ts +40 -9
  65. package/dist/cjs/anyspend/services/anyspend.js +24 -11
  66. package/dist/cjs/anyspend/types/custom.js +2 -2
  67. package/dist/cjs/anyspend/types/globalWallet.js +1 -1
  68. package/dist/cjs/anyspend/types/index.d.ts +1 -1
  69. package/dist/cjs/anyspend/types/index.js +1 -1
  70. package/dist/cjs/anyspend/types/nft.d.ts +0 -7
  71. package/dist/cjs/anyspend/types/nft.js +6 -8
  72. package/dist/cjs/anyspend/types/onramp.d.ts +0 -3
  73. package/dist/cjs/anyspend/types/onramp.js +1 -2
  74. package/dist/cjs/anyspend/types/order.d.ts +200 -40
  75. package/dist/cjs/anyspend/types/order.js +12 -7
  76. package/dist/cjs/anyspend/types/permit.d.ts +21 -0
  77. package/dist/cjs/anyspend/types/permit.js +11 -0
  78. package/dist/cjs/anyspend/types/req-res/createOrder.d.ts +235 -98
  79. package/dist/cjs/anyspend/types/req-res/createOrder.js +9 -9
  80. package/dist/cjs/anyspend/types/req-res/getCoinbaseOnrampOptions.js +5 -5
  81. package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.d.ts +305 -63
  82. package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.js +4 -4
  83. package/dist/cjs/anyspend/types/req-res/getOrderByCreator.js +2 -2
  84. package/dist/cjs/anyspend/types/req-res/getOrderHistory.d.ts +235 -49
  85. package/dist/cjs/anyspend/types/req-res/getOrderHistory.js +1 -1
  86. package/dist/cjs/anyspend/types/req-res/getQuote.d.ts +0 -37
  87. package/dist/cjs/anyspend/types/req-res/getQuote.js +9 -14
  88. package/dist/cjs/anyspend/types/req-res/getTokenList.js +3 -3
  89. package/dist/cjs/anyspend/types/req-res/index.d.ts +1 -0
  90. package/dist/cjs/anyspend/types/req-res/index.js +1 -0
  91. package/dist/cjs/anyspend/types/req-res/sendPermitData.d.ts +66 -0
  92. package/dist/cjs/anyspend/types/req-res/sendPermitData.js +11 -0
  93. package/dist/cjs/anyspend/types/swap.js +2 -2
  94. package/dist/cjs/anyspend/types/token.js +2 -2
  95. package/dist/cjs/anyspend/types/tournament.js +4 -4
  96. package/dist/cjs/anyspend/types/transaction.js +4 -4
  97. package/dist/cjs/anyspend/utils/chain.js +16 -16
  98. package/dist/cjs/anyspend/utils/format.js +6 -2
  99. package/dist/cjs/anyspend/utils/orderPayload.d.ts +3 -3
  100. package/dist/cjs/anyspend/utils/orderPayload.js +8 -22
  101. package/dist/cjs/anyspend/utils/token.js +10 -10
  102. package/dist/cjs/global-account/app.js +4 -4
  103. package/dist/cjs/global-account/app.native.js +4 -4
  104. package/dist/cjs/global-account/bsmnt.js +4 -4
  105. package/dist/cjs/global-account/bsmnt.native.js +4 -4
  106. package/dist/cjs/global-account/react/components/B3DynamicModal.js +3 -13
  107. package/dist/cjs/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
  108. package/dist/cjs/global-account/react/components/B3Provider/B3Provider.js +16 -17
  109. package/dist/cjs/global-account/react/components/B3Provider/B3Provider.native.d.ts +2 -2
  110. package/dist/cjs/global-account/react/components/B3Provider/B3Provider.native.js +4 -4
  111. package/dist/cjs/global-account/react/components/B3Provider/types.js +1 -1
  112. package/dist/cjs/global-account/react/components/ManageAccount/ManageAccount.d.ts +1 -1
  113. package/dist/cjs/global-account/react/components/ManageAccount/ManageAccount.js +5 -5
  114. package/dist/cjs/global-account/react/components/MintButton/MintButton.d.ts +1 -1
  115. package/dist/cjs/global-account/react/components/MintButton/MintButton.js +5 -5
  116. package/dist/cjs/global-account/react/components/RelayKitProviderWrapper.js +2 -2
  117. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +1 -1
  118. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissions.js +5 -5
  119. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +1 -1
  120. package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissionsButton.js +2 -2
  121. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +2 -1
  122. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3.js +17 -12
  123. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +1 -1
  124. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +12 -12
  125. package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +1 -1
  126. package/dist/cjs/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +1 -1
  127. package/dist/cjs/global-account/react/components/SignInWithB3/components/AuthButton.js +1 -1
  128. package/dist/cjs/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +1 -1
  129. package/dist/cjs/global-account/react/components/SignInWithB3/components/WalletRow.js +1 -1
  130. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStep.js +9 -9
  131. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +1 -1
  132. package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +2 -2
  133. package/dist/cjs/global-account/react/components/SignInWithB3/utils/signInUtils.js +2 -2
  134. package/dist/cjs/global-account/react/components/StyleRoot.js +1 -0
  135. package/dist/cjs/global-account/react/components/Transak/TransakModal.js +4 -4
  136. package/dist/cjs/global-account/react/components/custom/Button.js +5 -5
  137. package/dist/cjs/global-account/react/components/custom/StaggeredFadeLoader.js +3 -3
  138. package/dist/cjs/global-account/react/components/index.d.ts +4 -4
  139. package/dist/cjs/global-account/react/components/magicui/AnimatedLottie.js +1 -1
  140. package/dist/cjs/global-account/react/components/ui/Loading.js +2 -2
  141. package/dist/cjs/global-account/react/components/ui/ShinyButton.d.ts +1 -1
  142. package/dist/cjs/global-account/react/components/ui/ShinyButton.js +3 -3
  143. package/dist/cjs/global-account/react/components/ui/TabSystem.js +1 -1
  144. package/dist/cjs/global-account/react/components/ui/Tabs.d.ts +1 -1
  145. package/dist/cjs/global-account/react/components/ui/Tabs.js +1 -1
  146. package/dist/cjs/global-account/react/components/ui/badge.js +4 -4
  147. package/dist/cjs/global-account/react/components/ui/button.js +5 -5
  148. package/dist/cjs/global-account/react/components/ui/command.d.ts +1 -1
  149. package/dist/cjs/global-account/react/components/ui/dialog.d.ts +1 -1
  150. package/dist/cjs/global-account/react/components/ui/drawer.d.ts +1 -1
  151. package/dist/cjs/global-account/react/components/ui/glare-card-rounded.js +12 -12
  152. package/dist/cjs/global-account/react/components/ui/glare-card.js +11 -11
  153. package/dist/cjs/global-account/react/components/ui/input.js +1 -1
  154. package/dist/cjs/global-account/react/components/ui/text-loop.d.ts +1 -1
  155. package/dist/cjs/global-account/react/components/ui/text-loop.js +2 -2
  156. package/dist/cjs/global-account/react/components/ui/text-shimmer.js +2 -2
  157. package/dist/cjs/global-account/react/components/ui/tooltip.js +1 -1
  158. package/dist/cjs/global-account/react/hooks/useAccountAssets.js +4 -4
  159. package/dist/cjs/global-account/react/hooks/useAccountWallet.js +8 -8
  160. package/dist/cjs/global-account/react/hooks/useAddTWSessionKey.d.ts +2 -2
  161. package/dist/cjs/global-account/react/hooks/useAddTWSessionKey.js +6 -6
  162. package/dist/cjs/global-account/react/hooks/useAuthentication.js +3 -3
  163. package/dist/cjs/global-account/react/hooks/useB3BalanceFromAddresses.js +7 -7
  164. package/dist/cjs/global-account/react/hooks/useB3EnsName.d.ts +4 -8
  165. package/dist/cjs/global-account/react/hooks/useB3EnsName.js +23 -32
  166. package/dist/cjs/global-account/react/hooks/useBestTransactionPath.d.ts +1 -1
  167. package/dist/cjs/global-account/react/hooks/useBestTransactionPath.js +10 -10
  168. package/dist/cjs/global-account/react/hooks/useBsmntProfile.js +1 -1
  169. package/dist/cjs/global-account/react/hooks/useChainSwitchWithAction.js +3 -3
  170. package/dist/cjs/global-account/react/hooks/useClaim.js +4 -4
  171. package/dist/cjs/global-account/react/hooks/useConnect.js +3 -3
  172. package/dist/cjs/global-account/react/hooks/useExchangeRate.js +3 -3
  173. package/dist/cjs/global-account/react/hooks/useGetAllTWSigners.js +7 -7
  174. package/dist/cjs/global-account/react/hooks/useGetGeo.js +1 -1
  175. package/dist/cjs/global-account/react/hooks/useHandleConnectWithPrivy.js +2 -2
  176. package/dist/cjs/global-account/react/hooks/useNativeBalance.js +6 -6
  177. package/dist/cjs/global-account/react/hooks/useOnchainName.js +10 -10
  178. package/dist/cjs/global-account/react/hooks/useOneBalance.js +2 -2
  179. package/dist/cjs/global-account/react/hooks/useRemoveSessionKey.d.ts +1 -1
  180. package/dist/cjs/global-account/react/hooks/useRemoveSessionKey.js +3 -3
  181. package/dist/cjs/global-account/react/hooks/useRouter.js +6 -6
  182. package/dist/cjs/global-account/react/hooks/useSiwe.js +4 -4
  183. package/dist/cjs/global-account/react/hooks/useTokenBalance.js +6 -6
  184. package/dist/cjs/global-account/react/hooks/useTokenBalancesByChain.d.ts +1 -1
  185. package/dist/cjs/global-account/react/hooks/useTokenBalancesByChain.js +9 -9
  186. package/dist/cjs/global-account/react/hooks/useTokenData.js +3 -3
  187. package/dist/cjs/global-account/react/hooks/useTokenFromUrl.js +14 -14
  188. package/dist/cjs/global-account/react/hooks/useTokenPrice.d.ts +1 -1
  189. package/dist/cjs/global-account/react/hooks/useTokenPrice.js +6 -6
  190. package/dist/cjs/global-account/react/hooks/useTokenPriceWithFallback.d.ts +1 -1
  191. package/dist/cjs/global-account/react/hooks/useTokenPriceWithFallback.js +7 -7
  192. package/dist/cjs/global-account/react/hooks/useTokensFromAddress.d.ts +1 -1
  193. package/dist/cjs/global-account/react/hooks/useTokensFromAddress.js +2 -2
  194. package/dist/cjs/global-account/react/hooks/useURLParams.js +1 -1
  195. package/dist/cjs/global-account/react/stores/index.d.ts +1 -1
  196. package/dist/cjs/global-account/react/stores/useAuthStore.js +3 -3
  197. package/dist/cjs/global-account/react/stores/useModalStore.d.ts +1 -18
  198. package/dist/cjs/global-account/react/stores/useModalStore.js +3 -3
  199. package/dist/cjs/global-account/server.js +3 -3
  200. package/dist/cjs/global-account/types/chain-networks.js +8 -8
  201. package/dist/cjs/global-account/types/feature-flags.js +1 -1
  202. package/dist/cjs/shared/constants/chains/b3Chain.js +35 -35
  203. package/dist/cjs/shared/constants/chains/chainPlatformMap.js +1 -1
  204. package/dist/cjs/shared/constants/chains/supported.js +1 -1
  205. package/dist/cjs/shared/constants/index.d.ts +0 -1
  206. package/dist/cjs/shared/constants/index.js +2 -3
  207. package/dist/cjs/shared/thirdweb/initiateClient.js +2 -2
  208. package/dist/cjs/shared/thirdweb/openapi-ts.config.js +1 -1
  209. package/dist/cjs/shared/utils/b3Ens.js +4 -4
  210. package/dist/cjs/shared/utils/chain-transformers.js +9 -9
  211. package/dist/cjs/shared/utils/fetchBalances.js +4 -4
  212. package/dist/cjs/shared/utils/index.d.ts +0 -9
  213. package/dist/cjs/shared/utils/index.js +0 -17
  214. package/dist/cjs/shared/utils/insights.js +28 -28
  215. package/dist/cjs/shared/utils/ipfs.js +1 -1
  216. package/dist/cjs/shared/utils/number.js +3 -3
  217. package/dist/cjs/shared/utils/simplehash.js +22 -22
  218. package/dist/cjs/shared/utils/thirdweb-insights.js +15 -15
  219. package/dist/esm/anyspend/abis/abi-usdc-base.js +97 -97
  220. package/dist/esm/anyspend/abis/erc20-staking.js +51 -51
  221. package/dist/esm/anyspend/constants/index.js +10 -13
  222. package/dist/esm/anyspend/index.d.ts +2 -4
  223. package/dist/esm/anyspend/index.js +4 -4
  224. package/dist/esm/anyspend/react/components/AnySpend.d.ts +1 -1
  225. package/dist/esm/anyspend/react/components/AnySpend.js +22 -23
  226. package/dist/esm/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
  227. package/dist/esm/anyspend/react/components/AnySpendBuySpin.js +39 -41
  228. package/dist/esm/anyspend/react/components/AnySpendCustom.d.ts +4 -4
  229. package/dist/esm/anyspend/react/components/AnySpendCustom.js +81 -138
  230. package/dist/esm/anyspend/react/components/AnySpendNFT.d.ts +2 -3
  231. package/dist/esm/anyspend/react/components/AnySpendNFT.js +5 -7
  232. package/dist/esm/anyspend/react/components/AnySpendNFTButton.js +1 -1
  233. package/dist/esm/anyspend/react/components/AnySpendStakeB3.d.ts +1 -1
  234. package/dist/esm/anyspend/react/components/AnySpendStakeB3.js +21 -22
  235. package/dist/esm/anyspend/react/components/AnySpendTournament.js +4 -7
  236. package/dist/esm/anyspend/react/components/common/ChainTokenIcon.d.ts +1 -1
  237. package/dist/esm/anyspend/react/components/common/ChainTokenIcon.js +1 -1
  238. package/dist/esm/anyspend/react/components/common/OrderDetails.js +63 -52
  239. package/dist/esm/anyspend/react/components/common/OrderHistory.js +1 -1
  240. package/dist/esm/anyspend/react/components/common/OrderToken.d.ts +1 -1
  241. package/dist/esm/anyspend/react/components/common/OrderToken.js +4 -4
  242. package/dist/esm/anyspend/react/components/common/OrderTokenAmount.d.ts +1 -1
  243. package/dist/esm/anyspend/react/components/common/OrderTokenAmount.js +2 -2
  244. package/dist/esm/anyspend/react/components/common/PanelOnramp.d.ts +1 -1
  245. package/dist/esm/anyspend/react/components/common/PanelOnramp.js +3 -3
  246. package/dist/esm/anyspend/react/components/common/PanelOnrampPayment.d.ts +1 -1
  247. package/dist/esm/anyspend/react/components/common/PanelOnrampPayment.js +8 -9
  248. package/dist/esm/anyspend/react/components/common/PaymentMethodIcons.js +1 -1
  249. package/dist/esm/anyspend/react/components/common/PaymentOneClick.js +3 -3
  250. package/dist/esm/anyspend/react/components/common/PaymentStripeWeb2.js +13 -14
  251. package/dist/esm/anyspend/react/components/common/TokenBalance.d.ts +1 -1
  252. package/dist/esm/anyspend/react/components/common/TokenBalance.js +2 -2
  253. package/dist/esm/anyspend/react/components/index.d.ts +0 -2
  254. package/dist/esm/anyspend/react/components/index.js +0 -2
  255. package/dist/esm/anyspend/react/components/modals/EnterRecipientModal.d.ts +1 -1
  256. package/dist/esm/anyspend/react/components/modals/EnterRecipientModal.js +2 -2
  257. package/dist/esm/anyspend/react/components/webview/WebviewOnrampOrderStatus.js +1 -0
  258. package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
  259. package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.js +15 -16
  260. package/dist/esm/anyspend/react/hooks/index.d.ts +2 -1
  261. package/dist/esm/anyspend/react/hooks/index.js +2 -1
  262. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +18 -3
  263. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +6 -6
  264. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +0 -1
  265. package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.js +7 -7
  266. package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +70 -14
  267. package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +2 -2
  268. package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +70 -14
  269. package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.js +3 -3
  270. package/dist/esm/anyspend/react/hooks/useAnyspendQuote.js +3 -3
  271. package/dist/esm/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +16 -0
  272. package/dist/esm/anyspend/react/hooks/useAnyspendSendPermitData.js +36 -0
  273. package/dist/esm/anyspend/react/hooks/useAnyspendTokens.js +3 -3
  274. package/dist/esm/anyspend/react/hooks/useCoinbaseOnrampOptions.js +2 -2
  275. package/dist/esm/anyspend/react/hooks/useGeoOnrampOptions.js +2 -2
  276. package/dist/esm/anyspend/react/hooks/useGetGeo.js +1 -1
  277. package/dist/esm/anyspend/react/hooks/usePermitData.d.ts +92 -0
  278. package/dist/esm/anyspend/react/hooks/usePermitData.js +154 -0
  279. package/dist/esm/anyspend/react/hooks/useStripeClientSecret.js +2 -2
  280. package/dist/esm/anyspend/react/hooks/useStripeSupport.js +2 -2
  281. package/dist/esm/anyspend/react/providers/AnyspendProvider.js +4 -5
  282. package/dist/esm/anyspend/services/anyspend.d.ts +40 -9
  283. package/dist/esm/anyspend/services/anyspend.js +25 -12
  284. package/dist/esm/anyspend/types/custom.js +2 -2
  285. package/dist/esm/anyspend/types/globalWallet.js +1 -1
  286. package/dist/esm/anyspend/types/index.d.ts +1 -1
  287. package/dist/esm/anyspend/types/index.js +1 -1
  288. package/dist/esm/anyspend/types/nft.d.ts +0 -7
  289. package/dist/esm/anyspend/types/nft.js +6 -8
  290. package/dist/esm/anyspend/types/onramp.d.ts +0 -3
  291. package/dist/esm/anyspend/types/onramp.js +1 -2
  292. package/dist/esm/anyspend/types/order.d.ts +200 -40
  293. package/dist/esm/anyspend/types/order.js +12 -7
  294. package/dist/esm/anyspend/types/permit.d.ts +21 -0
  295. package/dist/esm/anyspend/types/permit.js +8 -0
  296. package/dist/esm/anyspend/types/req-res/createOrder.d.ts +235 -98
  297. package/dist/esm/anyspend/types/req-res/createOrder.js +9 -9
  298. package/dist/esm/anyspend/types/req-res/getCoinbaseOnrampOptions.js +5 -5
  299. package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.d.ts +305 -63
  300. package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.js +4 -4
  301. package/dist/esm/anyspend/types/req-res/getOrderByCreator.js +2 -2
  302. package/dist/esm/anyspend/types/req-res/getOrderHistory.d.ts +235 -49
  303. package/dist/esm/anyspend/types/req-res/getOrderHistory.js +1 -1
  304. package/dist/esm/anyspend/types/req-res/getQuote.d.ts +0 -37
  305. package/dist/esm/anyspend/types/req-res/getQuote.js +9 -14
  306. package/dist/esm/anyspend/types/req-res/getTokenList.js +3 -3
  307. package/dist/esm/anyspend/types/req-res/index.d.ts +1 -0
  308. package/dist/esm/anyspend/types/req-res/index.js +1 -0
  309. package/dist/esm/anyspend/types/req-res/sendPermitData.d.ts +66 -0
  310. package/dist/esm/anyspend/types/req-res/sendPermitData.js +8 -0
  311. package/dist/esm/anyspend/types/swap.js +2 -2
  312. package/dist/esm/anyspend/types/token.js +2 -2
  313. package/dist/esm/anyspend/types/tournament.js +4 -4
  314. package/dist/esm/anyspend/types/transaction.js +4 -4
  315. package/dist/esm/anyspend/utils/chain.js +18 -18
  316. package/dist/esm/anyspend/utils/format.js +6 -2
  317. package/dist/esm/anyspend/utils/orderPayload.d.ts +3 -3
  318. package/dist/esm/anyspend/utils/orderPayload.js +9 -23
  319. package/dist/esm/anyspend/utils/token.js +10 -10
  320. package/dist/esm/global-account/app.js +4 -4
  321. package/dist/esm/global-account/app.native.js +4 -4
  322. package/dist/esm/global-account/bsmnt.js +4 -4
  323. package/dist/esm/global-account/bsmnt.native.js +4 -4
  324. package/dist/esm/global-account/react/components/B3DynamicModal.js +4 -14
  325. package/dist/esm/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
  326. package/dist/esm/global-account/react/components/B3Provider/B3Provider.js +7 -8
  327. package/dist/esm/global-account/react/components/B3Provider/B3Provider.native.d.ts +2 -2
  328. package/dist/esm/global-account/react/components/B3Provider/B3Provider.native.js +4 -4
  329. package/dist/esm/global-account/react/components/B3Provider/types.js +1 -1
  330. package/dist/esm/global-account/react/components/ManageAccount/ManageAccount.d.ts +1 -1
  331. package/dist/esm/global-account/react/components/ManageAccount/ManageAccount.js +6 -6
  332. package/dist/esm/global-account/react/components/MintButton/MintButton.d.ts +1 -1
  333. package/dist/esm/global-account/react/components/MintButton/MintButton.js +5 -5
  334. package/dist/esm/global-account/react/components/RelayKitProviderWrapper.js +2 -2
  335. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +1 -1
  336. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissions.js +6 -6
  337. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +1 -1
  338. package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissionsButton.js +2 -2
  339. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +2 -1
  340. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3.js +13 -8
  341. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +1 -1
  342. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +13 -13
  343. package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +2 -2
  344. package/dist/esm/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +1 -1
  345. package/dist/esm/global-account/react/components/SignInWithB3/components/AuthButton.js +1 -1
  346. package/dist/esm/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +1 -1
  347. package/dist/esm/global-account/react/components/SignInWithB3/components/WalletRow.js +1 -1
  348. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStep.js +9 -9
  349. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +1 -1
  350. package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +3 -3
  351. package/dist/esm/global-account/react/components/SignInWithB3/utils/signInUtils.js +2 -2
  352. package/dist/esm/global-account/react/components/StyleRoot.js +1 -0
  353. package/dist/esm/global-account/react/components/Transak/TransakModal.js +4 -4
  354. package/dist/esm/global-account/react/components/custom/Button.js +5 -5
  355. package/dist/esm/global-account/react/components/custom/StaggeredFadeLoader.js +3 -3
  356. package/dist/esm/global-account/react/components/custom/WalletConnectorIcon.js +1 -1
  357. package/dist/esm/global-account/react/components/index.d.ts +4 -4
  358. package/dist/esm/global-account/react/components/index.js +4 -4
  359. package/dist/esm/global-account/react/components/magicui/AnimatedLottie.js +1 -1
  360. package/dist/esm/global-account/react/components/ui/Loading.js +2 -2
  361. package/dist/esm/global-account/react/components/ui/ShinyButton.d.ts +1 -1
  362. package/dist/esm/global-account/react/components/ui/ShinyButton.js +3 -3
  363. package/dist/esm/global-account/react/components/ui/TabSystem.js +1 -1
  364. package/dist/esm/global-account/react/components/ui/Tabs.d.ts +1 -1
  365. package/dist/esm/global-account/react/components/ui/Tabs.js +1 -1
  366. package/dist/esm/global-account/react/components/ui/badge.js +4 -4
  367. package/dist/esm/global-account/react/components/ui/button.js +5 -5
  368. package/dist/esm/global-account/react/components/ui/command.d.ts +1 -1
  369. package/dist/esm/global-account/react/components/ui/command.js +1 -1
  370. package/dist/esm/global-account/react/components/ui/dialog.d.ts +1 -1
  371. package/dist/esm/global-account/react/components/ui/dialog.js +1 -1
  372. package/dist/esm/global-account/react/components/ui/drawer.d.ts +1 -1
  373. package/dist/esm/global-account/react/components/ui/drawer.js +1 -1
  374. package/dist/esm/global-account/react/components/ui/glare-card-rounded.js +12 -12
  375. package/dist/esm/global-account/react/components/ui/glare-card.js +11 -11
  376. package/dist/esm/global-account/react/components/ui/input.js +1 -1
  377. package/dist/esm/global-account/react/components/ui/text-loop.d.ts +1 -1
  378. package/dist/esm/global-account/react/components/ui/text-loop.js +2 -2
  379. package/dist/esm/global-account/react/components/ui/text-shimmer.js +2 -2
  380. package/dist/esm/global-account/react/components/ui/tooltip.js +1 -1
  381. package/dist/esm/global-account/react/hooks/useAccountAssets.js +4 -4
  382. package/dist/esm/global-account/react/hooks/useAccountWallet.js +8 -8
  383. package/dist/esm/global-account/react/hooks/useAddTWSessionKey.d.ts +2 -2
  384. package/dist/esm/global-account/react/hooks/useAddTWSessionKey.js +6 -6
  385. package/dist/esm/global-account/react/hooks/useAuthentication.js +3 -3
  386. package/dist/esm/global-account/react/hooks/useB3BalanceFromAddresses.js +7 -7
  387. package/dist/esm/global-account/react/hooks/useB3EnsName.d.ts +4 -8
  388. package/dist/esm/global-account/react/hooks/useB3EnsName.js +22 -34
  389. package/dist/esm/global-account/react/hooks/useBestTransactionPath.d.ts +1 -1
  390. package/dist/esm/global-account/react/hooks/useBestTransactionPath.js +10 -10
  391. package/dist/esm/global-account/react/hooks/useBsmntProfile.js +1 -1
  392. package/dist/esm/global-account/react/hooks/useChainSwitchWithAction.js +3 -3
  393. package/dist/esm/global-account/react/hooks/useClaim.js +4 -4
  394. package/dist/esm/global-account/react/hooks/useConnect.js +3 -3
  395. package/dist/esm/global-account/react/hooks/useExchangeRate.js +3 -3
  396. package/dist/esm/global-account/react/hooks/useGetAllTWSigners.js +7 -7
  397. package/dist/esm/global-account/react/hooks/useGetGeo.js +1 -1
  398. package/dist/esm/global-account/react/hooks/useHandleConnectWithPrivy.js +2 -2
  399. package/dist/esm/global-account/react/hooks/useNativeBalance.js +6 -6
  400. package/dist/esm/global-account/react/hooks/useOnchainName.js +10 -10
  401. package/dist/esm/global-account/react/hooks/useOneBalance.js +2 -2
  402. package/dist/esm/global-account/react/hooks/useRemoveSessionKey.d.ts +1 -1
  403. package/dist/esm/global-account/react/hooks/useRemoveSessionKey.js +3 -3
  404. package/dist/esm/global-account/react/hooks/useRouter.js +6 -6
  405. package/dist/esm/global-account/react/hooks/useSiwe.js +4 -4
  406. package/dist/esm/global-account/react/hooks/useTokenBalance.js +6 -6
  407. package/dist/esm/global-account/react/hooks/useTokenBalancesByChain.d.ts +1 -1
  408. package/dist/esm/global-account/react/hooks/useTokenBalancesByChain.js +9 -9
  409. package/dist/esm/global-account/react/hooks/useTokenData.js +3 -3
  410. package/dist/esm/global-account/react/hooks/useTokenFromUrl.js +13 -13
  411. package/dist/esm/global-account/react/hooks/useTokenPrice.d.ts +1 -1
  412. package/dist/esm/global-account/react/hooks/useTokenPrice.js +6 -6
  413. package/dist/esm/global-account/react/hooks/useTokenPriceWithFallback.d.ts +1 -1
  414. package/dist/esm/global-account/react/hooks/useTokenPriceWithFallback.js +7 -7
  415. package/dist/esm/global-account/react/hooks/useTokensFromAddress.d.ts +1 -1
  416. package/dist/esm/global-account/react/hooks/useTokensFromAddress.js +2 -2
  417. package/dist/esm/global-account/react/hooks/useURLParams.js +1 -1
  418. package/dist/esm/global-account/react/stores/index.d.ts +1 -1
  419. package/dist/esm/global-account/react/stores/useAuthStore.js +3 -3
  420. package/dist/esm/global-account/react/stores/useModalStore.d.ts +1 -18
  421. package/dist/esm/global-account/react/stores/useModalStore.js +3 -3
  422. package/dist/esm/global-account/server.js +3 -3
  423. package/dist/esm/global-account/types/chain-networks.js +8 -8
  424. package/dist/esm/global-account/types/feature-flags.js +1 -1
  425. package/dist/esm/shared/constants/chains/b3Chain.js +35 -35
  426. package/dist/esm/shared/constants/chains/chainPlatformMap.js +1 -1
  427. package/dist/esm/shared/constants/chains/supported.js +1 -1
  428. package/dist/esm/shared/constants/index.d.ts +0 -1
  429. package/dist/esm/shared/constants/index.js +1 -2
  430. package/dist/esm/shared/thirdweb/initiateClient.js +2 -2
  431. package/dist/esm/shared/thirdweb/openapi-ts.config.js +1 -1
  432. package/dist/esm/shared/utils/b3Ens.js +4 -4
  433. package/dist/esm/shared/utils/chain-transformers.js +9 -9
  434. package/dist/esm/shared/utils/fetchBalances.js +4 -4
  435. package/dist/esm/shared/utils/index.d.ts +0 -9
  436. package/dist/esm/shared/utils/index.js +0 -15
  437. package/dist/esm/shared/utils/insights.js +28 -28
  438. package/dist/esm/shared/utils/ipfs.js +1 -1
  439. package/dist/esm/shared/utils/number.js +3 -3
  440. package/dist/esm/shared/utils/simplehash.js +23 -23
  441. package/dist/esm/shared/utils/thirdweb-insights.js +15 -15
  442. package/dist/styles/index.css +1 -1
  443. package/dist/types/anyspend/index.d.ts +2 -4
  444. package/dist/types/anyspend/react/components/AnySpend.d.ts +1 -1
  445. package/dist/types/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
  446. package/dist/types/anyspend/react/components/AnySpendCustom.d.ts +4 -4
  447. package/dist/types/anyspend/react/components/AnySpendNFT.d.ts +2 -3
  448. package/dist/types/anyspend/react/components/AnySpendStakeB3.d.ts +1 -1
  449. package/dist/types/anyspend/react/components/common/ChainTokenIcon.d.ts +1 -1
  450. package/dist/types/anyspend/react/components/common/OrderToken.d.ts +1 -1
  451. package/dist/types/anyspend/react/components/common/OrderTokenAmount.d.ts +1 -1
  452. package/dist/types/anyspend/react/components/common/PanelOnramp.d.ts +1 -1
  453. package/dist/types/anyspend/react/components/common/PanelOnrampPayment.d.ts +1 -1
  454. package/dist/types/anyspend/react/components/common/TokenBalance.d.ts +1 -1
  455. package/dist/types/anyspend/react/components/index.d.ts +0 -2
  456. package/dist/types/anyspend/react/components/modals/EnterRecipientModal.d.ts +1 -1
  457. package/dist/types/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
  458. package/dist/types/anyspend/react/hooks/index.d.ts +2 -1
  459. package/dist/types/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +18 -3
  460. package/dist/types/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +0 -1
  461. package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +70 -14
  462. package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +70 -14
  463. package/dist/types/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +16 -0
  464. package/dist/types/anyspend/react/hooks/usePermitData.d.ts +92 -0
  465. package/dist/types/anyspend/services/anyspend.d.ts +40 -9
  466. package/dist/types/anyspend/types/index.d.ts +1 -1
  467. package/dist/types/anyspend/types/nft.d.ts +0 -7
  468. package/dist/types/anyspend/types/onramp.d.ts +0 -3
  469. package/dist/types/anyspend/types/order.d.ts +200 -40
  470. package/dist/types/anyspend/types/permit.d.ts +21 -0
  471. package/dist/types/anyspend/types/req-res/createOrder.d.ts +235 -98
  472. package/dist/types/anyspend/types/req-res/getOrderAndTransactions.d.ts +305 -63
  473. package/dist/types/anyspend/types/req-res/getOrderHistory.d.ts +235 -49
  474. package/dist/types/anyspend/types/req-res/getQuote.d.ts +0 -37
  475. package/dist/types/anyspend/types/req-res/index.d.ts +1 -0
  476. package/dist/types/anyspend/types/req-res/sendPermitData.d.ts +66 -0
  477. package/dist/types/anyspend/utils/orderPayload.d.ts +3 -3
  478. package/dist/types/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
  479. package/dist/types/global-account/react/components/B3Provider/B3Provider.native.d.ts +2 -2
  480. package/dist/types/global-account/react/components/ManageAccount/ManageAccount.d.ts +1 -1
  481. package/dist/types/global-account/react/components/MintButton/MintButton.d.ts +1 -1
  482. package/dist/types/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +1 -1
  483. package/dist/types/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +1 -1
  484. package/dist/types/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +2 -1
  485. package/dist/types/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +1 -1
  486. package/dist/types/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +1 -1
  487. package/dist/types/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +1 -1
  488. package/dist/types/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +1 -1
  489. package/dist/types/global-account/react/components/index.d.ts +4 -4
  490. package/dist/types/global-account/react/components/ui/ShinyButton.d.ts +1 -1
  491. package/dist/types/global-account/react/components/ui/Tabs.d.ts +1 -1
  492. package/dist/types/global-account/react/components/ui/command.d.ts +1 -1
  493. package/dist/types/global-account/react/components/ui/dialog.d.ts +1 -1
  494. package/dist/types/global-account/react/components/ui/drawer.d.ts +1 -1
  495. package/dist/types/global-account/react/components/ui/text-loop.d.ts +1 -1
  496. package/dist/types/global-account/react/hooks/useAddTWSessionKey.d.ts +2 -2
  497. package/dist/types/global-account/react/hooks/useB3EnsName.d.ts +4 -8
  498. package/dist/types/global-account/react/hooks/useBestTransactionPath.d.ts +1 -1
  499. package/dist/types/global-account/react/hooks/useRemoveSessionKey.d.ts +1 -1
  500. package/dist/types/global-account/react/hooks/useTokenBalancesByChain.d.ts +1 -1
  501. package/dist/types/global-account/react/hooks/useTokenPrice.d.ts +1 -1
  502. package/dist/types/global-account/react/hooks/useTokenPriceWithFallback.d.ts +1 -1
  503. package/dist/types/global-account/react/hooks/useTokensFromAddress.d.ts +1 -1
  504. package/dist/types/global-account/react/stores/index.d.ts +1 -1
  505. package/dist/types/global-account/react/stores/useModalStore.d.ts +1 -18
  506. package/dist/types/shared/constants/index.d.ts +0 -1
  507. package/dist/types/shared/utils/index.d.ts +0 -9
  508. package/package.json +4 -17
  509. package/src/anyspend/abis/abi-usdc-base.ts +97 -97
  510. package/src/anyspend/abis/erc20-staking.ts +51 -51
  511. package/src/anyspend/constants/index.ts +11 -13
  512. package/src/anyspend/index.ts +6 -4
  513. package/src/anyspend/react/components/AnySpend.tsx +39 -44
  514. package/src/anyspend/react/components/AnySpendBuySpin.tsx +41 -46
  515. package/src/anyspend/react/components/AnySpendCustom.tsx +89 -214
  516. package/src/anyspend/react/components/AnySpendNFT.tsx +6 -11
  517. package/src/anyspend/react/components/AnySpendNFTButton.tsx +1 -1
  518. package/src/anyspend/react/components/AnySpendStakeB3.tsx +22 -23
  519. package/src/anyspend/react/components/AnySpendTournament.tsx +4 -7
  520. package/src/anyspend/react/components/common/ChainTokenIcon.tsx +1 -1
  521. package/src/anyspend/react/components/common/OrderDetails.tsx +76 -74
  522. package/src/anyspend/react/components/common/OrderHistory.tsx +1 -1
  523. package/src/anyspend/react/components/common/OrderHistoryItem.tsx +3 -3
  524. package/src/anyspend/react/components/common/OrderToken.tsx +5 -5
  525. package/src/anyspend/react/components/common/OrderTokenAmount.tsx +4 -4
  526. package/src/anyspend/react/components/common/PanelOnramp.tsx +4 -4
  527. package/src/anyspend/react/components/common/PanelOnrampPayment.tsx +17 -9
  528. package/src/anyspend/react/components/common/PaymentMethodIcons.tsx +1 -1
  529. package/src/anyspend/react/components/common/PaymentOneClick.tsx +3 -3
  530. package/src/anyspend/react/components/common/PaymentStripeWeb2.tsx +15 -16
  531. package/src/anyspend/react/components/common/TokenBalance.tsx +2 -2
  532. package/src/anyspend/react/components/index.ts +0 -2
  533. package/src/anyspend/react/components/modals/EnterRecipientModal.tsx +2 -2
  534. package/src/anyspend/react/components/webview/WebviewOnrampOrderStatus.tsx +1 -0
  535. package/src/anyspend/react/components/webview/WebviewOnrampPayment.tsx +20 -18
  536. package/src/anyspend/react/hooks/index.ts +2 -1
  537. package/src/anyspend/react/hooks/useAnyspendCreateOnrampOrder.ts +20 -10
  538. package/src/anyspend/react/hooks/useAnyspendCreateOrder.ts +8 -9
  539. package/src/anyspend/react/hooks/useAnyspendOrderAndTransactions.ts +3 -3
  540. package/src/anyspend/react/hooks/useAnyspendOrderHistory.ts +4 -4
  541. package/src/anyspend/react/hooks/useAnyspendQuote.ts +6 -6
  542. package/src/anyspend/react/hooks/useAnyspendSendPermitData.ts +38 -0
  543. package/src/anyspend/react/hooks/useAnyspendTokens.ts +4 -4
  544. package/src/anyspend/react/hooks/useCoinbaseOnrampOptions.ts +3 -3
  545. package/src/anyspend/react/hooks/useGeoOnrampOptions.ts +3 -3
  546. package/src/anyspend/react/hooks/useGetGeo.ts +1 -1
  547. package/src/anyspend/react/hooks/usePermitData.ts +183 -0
  548. package/src/anyspend/react/hooks/useStripeClientSecret.ts +3 -3
  549. package/src/anyspend/react/hooks/useStripeSupport.ts +3 -3
  550. package/src/anyspend/react/providers/AnyspendProvider.tsx +4 -9
  551. package/src/anyspend/services/anyspend.ts +39 -21
  552. package/src/anyspend/types/chain.ts +1 -1
  553. package/src/anyspend/types/custom.ts +2 -2
  554. package/src/anyspend/types/globalWallet.ts +1 -1
  555. package/src/anyspend/types/index.ts +1 -1
  556. package/src/anyspend/types/nft.ts +7 -10
  557. package/src/anyspend/types/onramp.ts +2 -3
  558. package/src/anyspend/types/order.ts +16 -9
  559. package/src/anyspend/types/permit.ts +10 -0
  560. package/src/anyspend/types/relay.ts +1 -1
  561. package/src/anyspend/types/req-res/createOrder.ts +9 -9
  562. package/src/anyspend/types/req-res/getCoinbaseOnrampOptions.ts +5 -5
  563. package/src/anyspend/types/req-res/getOrderAndTransactions.ts +4 -4
  564. package/src/anyspend/types/req-res/getOrderByCreator.ts +2 -2
  565. package/src/anyspend/types/req-res/getOrderHistory.ts +1 -1
  566. package/src/anyspend/types/req-res/getQuote.ts +9 -14
  567. package/src/anyspend/types/req-res/getTokenList.ts +4 -4
  568. package/src/anyspend/types/req-res/index.ts +1 -0
  569. package/src/anyspend/types/req-res/sendPermitData.ts +10 -0
  570. package/src/anyspend/types/swap.ts +2 -2
  571. package/src/anyspend/types/token.ts +2 -2
  572. package/src/anyspend/types/tournament.ts +4 -4
  573. package/src/anyspend/types/transaction.ts +4 -4
  574. package/src/anyspend/utils/chain.ts +25 -25
  575. package/src/anyspend/utils/format.ts +7 -2
  576. package/src/anyspend/utils/orderPayload.ts +9 -21
  577. package/src/anyspend/utils/token.ts +10 -10
  578. package/src/global-account/app.native.ts +5 -5
  579. package/src/global-account/app.ts +5 -5
  580. package/src/global-account/bsmnt.native.ts +5 -5
  581. package/src/global-account/bsmnt.ts +5 -5
  582. package/src/global-account/react/components/B3DynamicModal.tsx +6 -15
  583. package/src/global-account/react/components/B3Provider/B3Provider.native.tsx +4 -4
  584. package/src/global-account/react/components/B3Provider/B3Provider.tsx +20 -22
  585. package/src/global-account/react/components/B3Provider/types.ts +1 -1
  586. package/src/global-account/react/components/ManageAccount/ManageAccount.tsx +6 -6
  587. package/src/global-account/react/components/MintButton/MintButton.tsx +5 -5
  588. package/src/global-account/react/components/RelayKitProviderWrapper.tsx +2 -2
  589. package/src/global-account/react/components/RequestPermissions/RequestPermissions.tsx +7 -7
  590. package/src/global-account/react/components/RequestPermissions/RequestPermissionsButton.tsx +2 -2
  591. package/src/global-account/react/components/SignInWithB3/SignInWithB3.tsx +28 -16
  592. package/src/global-account/react/components/SignInWithB3/SignInWithB3Flow.tsx +14 -14
  593. package/src/global-account/react/components/SignInWithB3/SignInWithB3Privy.tsx +2 -2
  594. package/src/global-account/react/components/SignInWithB3/components/AuthButton.tsx +1 -1
  595. package/src/global-account/react/components/SignInWithB3/components/WalletRow.tsx +1 -1
  596. package/src/global-account/react/components/SignInWithB3/steps/LoginStep.tsx +10 -10
  597. package/src/global-account/react/components/SignInWithB3/steps/LoginStepCustom.tsx +3 -3
  598. package/src/global-account/react/components/SignInWithB3/utils/signInUtils.ts +2 -2
  599. package/src/global-account/react/components/StyleRoot.tsx +1 -0
  600. package/src/global-account/react/components/Transak/TransakModal.tsx +4 -4
  601. package/src/global-account/react/components/custom/Button.tsx +7 -7
  602. package/src/global-account/react/components/custom/StaggeredFadeLoader.tsx +3 -3
  603. package/src/global-account/react/components/custom/WalletConnectorIcon.tsx +1 -1
  604. package/src/global-account/react/components/index.ts +4 -4
  605. package/src/global-account/react/components/magicui/AnimatedLottie.tsx +5 -5
  606. package/src/global-account/react/components/ui/Loading.tsx +2 -2
  607. package/src/global-account/react/components/ui/ShinyButton.tsx +5 -5
  608. package/src/global-account/react/components/ui/TabSystem.tsx +2 -2
  609. package/src/global-account/react/components/ui/Tabs.tsx +4 -4
  610. package/src/global-account/react/components/ui/badge.tsx +5 -5
  611. package/src/global-account/react/components/ui/button.tsx +7 -7
  612. package/src/global-account/react/components/ui/command.tsx +5 -5
  613. package/src/global-account/react/components/ui/dialog.tsx +5 -5
  614. package/src/global-account/react/components/ui/drawer.tsx +2 -2
  615. package/src/global-account/react/components/ui/glare-card-rounded.tsx +12 -12
  616. package/src/global-account/react/components/ui/glare-card.tsx +11 -11
  617. package/src/global-account/react/components/ui/input.tsx +2 -2
  618. package/src/global-account/react/components/ui/popover.tsx +1 -1
  619. package/src/global-account/react/components/ui/scroll-area.tsx +1 -1
  620. package/src/global-account/react/components/ui/text-loop.tsx +2 -2
  621. package/src/global-account/react/components/ui/text-shimmer.tsx +3 -3
  622. package/src/global-account/react/components/ui/tooltip.tsx +2 -2
  623. package/src/global-account/react/hooks/useAccountAssets.ts +4 -4
  624. package/src/global-account/react/hooks/useAccountWallet.tsx +9 -9
  625. package/src/global-account/react/hooks/useAddTWSessionKey.tsx +7 -7
  626. package/src/global-account/react/hooks/useAuthentication.ts +3 -3
  627. package/src/global-account/react/hooks/useB3BalanceFromAddresses.ts +9 -9
  628. package/src/global-account/react/hooks/useB3EnsName.ts +31 -43
  629. package/src/global-account/react/hooks/useBestTransactionPath.tsx +11 -11
  630. package/src/global-account/react/hooks/useBsmntProfile.ts +1 -1
  631. package/src/global-account/react/hooks/useChainSwitchWithAction.ts +4 -4
  632. package/src/global-account/react/hooks/useClaim.tsx +5 -5
  633. package/src/global-account/react/hooks/useConnect.tsx +4 -4
  634. package/src/global-account/react/hooks/useExchangeRate.tsx +3 -3
  635. package/src/global-account/react/hooks/useGetAllTWSigners.tsx +9 -9
  636. package/src/global-account/react/hooks/useGetGeo.tsx +1 -1
  637. package/src/global-account/react/hooks/useHandleConnectWithPrivy.tsx +2 -2
  638. package/src/global-account/react/hooks/useMediaQuery.tsx +1 -1
  639. package/src/global-account/react/hooks/useNativeBalance.tsx +7 -7
  640. package/src/global-account/react/hooks/useOnchainName.tsx +11 -11
  641. package/src/global-account/react/hooks/useOneBalance.tsx +2 -2
  642. package/src/global-account/react/hooks/useQueryB3.ts +2 -2
  643. package/src/global-account/react/hooks/useQueryBSMNT.ts +2 -2
  644. package/src/global-account/react/hooks/useRemoveSessionKey.tsx +5 -5
  645. package/src/global-account/react/hooks/useRouter.tsx +6 -6
  646. package/src/global-account/react/hooks/useSiwe.tsx +4 -4
  647. package/src/global-account/react/hooks/useTokenBalance.tsx +6 -6
  648. package/src/global-account/react/hooks/useTokenBalancesByChain.tsx +10 -10
  649. package/src/global-account/react/hooks/useTokenData.ts +3 -3
  650. package/src/global-account/react/hooks/useTokenFromUrl.tsx +14 -14
  651. package/src/global-account/react/hooks/useTokenPrice.tsx +7 -7
  652. package/src/global-account/react/hooks/useTokenPriceWithFallback.tsx +7 -7
  653. package/src/global-account/react/hooks/useTokensFromAddress.ts +2 -2
  654. package/src/global-account/react/hooks/useURLParams.ts +2 -2
  655. package/src/global-account/react/stores/index.ts +1 -1
  656. package/src/global-account/react/stores/useAuthStore.ts +3 -3
  657. package/src/global-account/react/stores/useModalStore.ts +4 -23
  658. package/src/global-account/server.ts +3 -3
  659. package/src/global-account/types/chain-networks.ts +10 -10
  660. package/src/global-account/types/feature-flags.ts +2 -2
  661. package/src/shared/constants/chains/b3Chain.ts +35 -35
  662. package/src/shared/constants/chains/chainPlatformMap.ts +1 -1
  663. package/src/shared/constants/chains/supported.ts +1 -1
  664. package/src/shared/constants/index.ts +1 -3
  665. package/src/shared/thirdweb/initiateClient.ts +2 -2
  666. package/src/shared/thirdweb/openapi-ts.config.ts +1 -1
  667. package/src/shared/utils/b3Ens.ts +4 -4
  668. package/src/shared/utils/chain-transformers.ts +9 -9
  669. package/src/shared/utils/fetchBalances.ts +5 -5
  670. package/src/shared/utils/fetchBsmntProfile.ts +1 -1
  671. package/src/shared/utils/index.ts +0 -16
  672. package/src/shared/utils/insights.ts +31 -31
  673. package/src/shared/utils/ipfs.ts +1 -1
  674. package/src/shared/utils/number.ts +5 -5
  675. package/src/shared/utils/simplehash.ts +28 -28
  676. package/src/shared/utils/thirdweb-insights.ts +20 -20
  677. package/src/styles/index.css +2 -5
  678. package/dist/cjs/anyspend/abis/signature-minting.d.ts +0 -79
  679. package/dist/cjs/anyspend/abis/signature-minting.js +0 -45
  680. package/dist/cjs/anyspend/react/components/AnyspendSignatureMint.d.ts +0 -8
  681. package/dist/cjs/anyspend/react/components/AnyspendSignatureMint.js +0 -77
  682. package/dist/cjs/anyspend/react/components/common/Warning.d.ts +0 -3
  683. package/dist/cjs/anyspend/react/components/common/Warning.js +0 -7
  684. package/dist/cjs/anyspend/react/hooks/useSigMint.d.ts +0 -140
  685. package/dist/cjs/anyspend/react/hooks/useSigMint.js +0 -39
  686. package/dist/cjs/anyspend/types/metadata.d.ts +0 -26
  687. package/dist/cjs/anyspend/types/metadata.js +0 -16
  688. package/dist/cjs/anyspend/types/signature-mint.d.ts +0 -69
  689. package/dist/cjs/anyspend/types/signature-mint.js +0 -2
  690. package/dist/cjs/global-account/react/components/SignInWithB3/SignIn.d.ts +0 -14
  691. package/dist/cjs/global-account/react/components/SignInWithB3/SignIn.js +0 -50
  692. package/dist/cjs/global-account/react/components/custom/Icon.d.ts +0 -7
  693. package/dist/cjs/global-account/react/components/custom/Icon.js +0 -52
  694. package/dist/cjs/global-account/react/components/custom/ManageAccountButton.d.ts +0 -4
  695. package/dist/cjs/global-account/react/components/custom/ManageAccountButton.js +0 -20
  696. package/dist/cjs/shared/react/hooks/index.d.ts +0 -1
  697. package/dist/cjs/shared/react/hooks/index.js +0 -17
  698. package/dist/cjs/shared/react/hooks/useNavigation.d.ts +0 -17
  699. package/dist/cjs/shared/react/hooks/useNavigation.js +0 -57
  700. package/dist/cjs/shared/react/index.d.ts +0 -1
  701. package/dist/cjs/shared/react/index.js +0 -17
  702. package/dist/esm/anyspend/abis/signature-minting.d.ts +0 -79
  703. package/dist/esm/anyspend/abis/signature-minting.js +0 -42
  704. package/dist/esm/anyspend/react/components/AnyspendSignatureMint.d.ts +0 -8
  705. package/dist/esm/anyspend/react/components/AnyspendSignatureMint.js +0 -71
  706. package/dist/esm/anyspend/react/components/common/Warning.d.ts +0 -3
  707. package/dist/esm/anyspend/react/components/common/Warning.js +0 -4
  708. package/dist/esm/anyspend/react/hooks/useSigMint.d.ts +0 -140
  709. package/dist/esm/anyspend/react/hooks/useSigMint.js +0 -33
  710. package/dist/esm/anyspend/types/metadata.d.ts +0 -26
  711. package/dist/esm/anyspend/types/metadata.js +0 -11
  712. package/dist/esm/anyspend/types/signature-mint.d.ts +0 -69
  713. package/dist/esm/anyspend/types/signature-mint.js +0 -1
  714. package/dist/esm/global-account/react/components/SignInWithB3/SignIn.d.ts +0 -14
  715. package/dist/esm/global-account/react/components/SignInWithB3/SignIn.js +0 -44
  716. package/dist/esm/global-account/react/components/custom/Icon.d.ts +0 -7
  717. package/dist/esm/global-account/react/components/custom/Icon.js +0 -50
  718. package/dist/esm/global-account/react/components/custom/ManageAccountButton.d.ts +0 -4
  719. package/dist/esm/global-account/react/components/custom/ManageAccountButton.js +0 -17
  720. package/dist/esm/shared/react/hooks/index.d.ts +0 -1
  721. package/dist/esm/shared/react/hooks/index.js +0 -1
  722. package/dist/esm/shared/react/hooks/useNavigation.d.ts +0 -17
  723. package/dist/esm/shared/react/hooks/useNavigation.js +0 -52
  724. package/dist/esm/shared/react/index.d.ts +0 -1
  725. package/dist/esm/shared/react/index.js +0 -1
  726. package/dist/types/anyspend/abis/signature-minting.d.ts +0 -79
  727. package/dist/types/anyspend/react/components/AnyspendSignatureMint.d.ts +0 -8
  728. package/dist/types/anyspend/react/components/common/Warning.d.ts +0 -3
  729. package/dist/types/anyspend/react/hooks/useSigMint.d.ts +0 -140
  730. package/dist/types/anyspend/types/metadata.d.ts +0 -26
  731. package/dist/types/anyspend/types/signature-mint.d.ts +0 -69
  732. package/dist/types/global-account/react/components/SignInWithB3/SignIn.d.ts +0 -14
  733. package/dist/types/global-account/react/components/custom/Icon.d.ts +0 -7
  734. package/dist/types/global-account/react/components/custom/ManageAccountButton.d.ts +0 -4
  735. package/dist/types/shared/react/hooks/index.d.ts +0 -1
  736. package/dist/types/shared/react/hooks/useNavigation.d.ts +0 -17
  737. package/dist/types/shared/react/index.d.ts +0 -1
  738. package/src/anyspend/abis/signature-minting.ts +0 -43
  739. package/src/anyspend/react/components/AnyspendSignatureMint.tsx +0 -147
  740. package/src/anyspend/react/components/common/Warning.tsx +0 -7
  741. package/src/anyspend/react/hooks/useSigMint.tsx +0 -55
  742. package/src/anyspend/types/metadata.ts +0 -41
  743. package/src/anyspend/types/signature-mint.ts +0 -77
  744. package/src/global-account/react/components/SignInWithB3/SignIn.tsx +0 -190
  745. package/src/global-account/react/components/custom/Icon.tsx +0 -102
  746. package/src/global-account/react/components/custom/ManageAccountButton.tsx +0 -33
  747. package/src/shared/react/hooks/index.ts +0 -1
  748. package/src/shared/react/hooks/useNavigation.ts +0 -61
  749. package/src/shared/react/index.ts +0 -1
@@ -6,6 +6,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
6
6
  exports.AnySpendStakeB3 = AnySpendStakeB3;
7
7
  const jsx_runtime_1 = require("react/jsx-runtime");
8
8
  const anyspend_1 = require("../../../anyspend");
9
+ const EthIcon_1 = require("./icons/EthIcon");
10
+ const SolIcon_1 = require("./icons/SolIcon");
11
+ const USDCIcon_1 = require("./icons/USDCIcon");
9
12
  const react_1 = require("../../../global-account/react");
10
13
  const number_1 = require("../../../shared/utils/number");
11
14
  const framer_motion_1 = require("framer-motion");
@@ -17,12 +20,9 @@ const viem_1 = require("viem");
17
20
  const chains_1 = require("viem/chains");
18
21
  const wagmi_1 = require("wagmi");
19
22
  const AnySpendCustom_1 = require("./AnySpendCustom");
20
- const EthIcon_1 = require("./icons/EthIcon");
21
- const SolIcon_1 = require("./icons/SolIcon");
22
- const USDCIcon_1 = require("./icons/USDCIcon");
23
23
  const basePublicClient = (0, viem_1.createPublicClient)({
24
24
  chain: chains_1.base,
25
- transport: (0, viem_1.http)(),
25
+ transport: (0, viem_1.http)()
26
26
  });
27
27
  const ERC20Staking = "0xbf04200be3cbf371467a539706393c81c470f523";
28
28
  function generateEncodedDataForStakingB3(amount, beneficiary) {
@@ -30,16 +30,16 @@ function generateEncodedDataForStakingB3(amount, beneficiary) {
30
30
  const encodedData = (0, viem_1.encodeFunctionData)({
31
31
  abi: anyspend_1.ABI_ERC20_STAKING,
32
32
  functionName: "stake",
33
- args: [BigInt(amount), beneficiary],
33
+ args: [BigInt(amount), beneficiary]
34
34
  });
35
35
  return encodedData;
36
36
  }
37
- function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipientAddress, stakeAmount, onSuccess, }) {
37
+ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipientAddress, stakeAmount, onSuccess }) {
38
38
  const hasMounted = (0, react_1.useHasMounted)();
39
39
  const { setB3ModalOpen } = (0, react_1.useModalStore)();
40
40
  // Fetch B3 token balance
41
- const { formattedBalance: b3Balance, isLoading: isBalanceLoading, rawBalance: b3RawBalance, } = (0, react_1.useTokenBalance)({
42
- token: anyspend_1.B3_TOKEN,
41
+ const { formattedBalance: b3Balance, isLoading: isBalanceLoading, rawBalance: b3RawBalance } = (0, react_1.useTokenBalance)({
42
+ token: anyspend_1.B3_TOKEN
43
43
  });
44
44
  // Wagmi hooks for direct staking
45
45
  const { address } = (0, wagmi_1.useAccount)();
@@ -53,8 +53,8 @@ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipien
53
53
  const { isLoading: isTxPending, isSuccess: isTxSuccess } = (0, wagmi_1.useWaitForTransactionReceipt)({
54
54
  hash: stakingTxHash,
55
55
  query: {
56
- structuralSharing: false, // Disable to avoid BigInt serialization issues
57
- },
56
+ structuralSharing: false // Disable to avoid BigInt serialization issues
57
+ }
58
58
  });
59
59
  // Show success modal when transaction is confirmed
60
60
  (0, react_2.useEffect)(() => {
@@ -154,7 +154,7 @@ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipien
154
154
  address: anyspend_1.B3_TOKEN.address,
155
155
  abi: viem_1.erc20Abi,
156
156
  functionName: "allowance",
157
- args: [address, ERC20Staking],
157
+ args: [address, ERC20Staking]
158
158
  });
159
159
  // If allowance is insufficient, request approval
160
160
  if (allowance < BigInt(userStakeAmount)) {
@@ -163,7 +163,7 @@ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipien
163
163
  address: anyspend_1.B3_TOKEN.address,
164
164
  abi: viem_1.erc20Abi,
165
165
  functionName: "approve",
166
- args: [ERC20Staking, BigInt(userStakeAmount)],
166
+ args: [ERC20Staking, BigInt(userStakeAmount)]
167
167
  });
168
168
  sonner_1.toast.info("Approval confirmed. Proceeding with stake...");
169
169
  }
@@ -173,7 +173,7 @@ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipien
173
173
  address: ERC20Staking,
174
174
  abi: anyspend_1.ABI_ERC20_STAKING,
175
175
  functionName: "stake",
176
- args: [BigInt(userStakeAmount), recipientAddress],
176
+ args: [BigInt(userStakeAmount), recipientAddress]
177
177
  });
178
178
  setStakingTxHash(stakeHash);
179
179
  sonner_1.toast.success("Staking transaction submitted!");
@@ -214,18 +214,18 @@ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipien
214
214
  return ((0, jsx_runtime_1.jsx)(react_1.StyleRoot, { children: (0, jsx_runtime_1.jsxs)("div", { className: "bg-b3-react-background flex w-full flex-col items-center", children: [(0, jsx_runtime_1.jsxs)("div", { className: "w-full px-4", children: [(0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { initial: false, animate: {
215
215
  opacity: hasMounted ? 1 : 0,
216
216
  y: hasMounted ? 0 : 20,
217
- filter: hasMounted ? "blur(0px)" : "blur(10px)",
217
+ filter: hasMounted ? "blur(0px)" : "blur(10px)"
218
218
  }, transition: { duration: 0.3, delay: 0, ease: "easeInOut" }, className: "relative mx-auto size-48", children: (0, jsx_runtime_1.jsx)("video", { autoPlay: true, muted: true, playsInline: true, className: "size-full", src: "https://cdn.b3.fun/b3-sphere-to-coin.mp4" }) }), (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { initial: false, animate: {
219
219
  opacity: hasMounted ? 1 : 0,
220
220
  y: hasMounted ? 0 : 20,
221
- filter: hasMounted ? "blur(0px)" : "blur(10px)",
221
+ filter: hasMounted ? "blur(0px)" : "blur(10px)"
222
222
  }, transition: { duration: 0.3, delay: 0.1, ease: "easeInOut" }, children: (0, jsx_runtime_1.jsx)("h2", { className: "font-sf-rounded font-neue-montreal-medium mb-1 text-center text-2xl font-semibold", children: (() => {
223
223
  const hasEnoughBalance = b3RawBalance && BigInt(debouncedUserStakeAmount || "0") <= b3RawBalance;
224
224
  return hasEnoughBalance || !debouncedAmount ? "Stake B3" : "Swap & Stake B3";
225
225
  })() }) })] }), (0, jsx_runtime_1.jsxs)(framer_motion_1.motion.div, { initial: false, animate: {
226
226
  opacity: hasMounted ? 1 : 0,
227
227
  y: hasMounted ? 0 : 20,
228
- filter: hasMounted ? "blur(0px)" : "blur(10px)",
228
+ filter: hasMounted ? "blur(0px)" : "blur(10px)"
229
229
  }, transition: { duration: 0.3, delay: 0.2, ease: "easeInOut" }, className: "bg-b3-react-background w-full p-6", children: [(0, jsx_runtime_1.jsx)("div", { className: "mb-2", children: (0, jsx_runtime_1.jsxs)("div", { className: "flex items-center justify-between", children: [(0, jsx_runtime_1.jsx)("p", { className: "text-as-primary/70 text-sm font-medium", children: "I want to stake" }), (0, jsx_runtime_1.jsxs)("span", { className: "text-as-primary/50 flex items-center gap-1 text-sm", children: ["Available: ", isBalanceLoading ? (0, jsx_runtime_1.jsx)(lucide_react_1.Loader2, { className: "h-3 w-3 animate-spin" }) : `${b3Balance} B3`] })] }) }), (0, jsx_runtime_1.jsxs)("div", { className: "relative", children: [(0, jsx_runtime_1.jsx)(react_1.Input, { onFocus: onFocusStakeAmountInput, type: "text", placeholder: "0.00", value: displayAmount, onChange: e => validateAndSetAmount(e.target.value), className: `h-14 px-4 text-lg ${!isAmountValid && displayAmount ? "border-as-red" : "border-b3-react-border"}` }), (0, jsx_runtime_1.jsx)("div", { className: "font-pack absolute right-4 top-1/2 -translate-y-1/2 text-lg font-medium text-blue-500/70", children: "B3" })] }), !isAmountValid && displayAmount && (0, jsx_runtime_1.jsx)("p", { className: "text-as-red mt-2 text-sm", children: validationError }), (0, jsx_runtime_1.jsx)("div", { className: "mt-4", children: (() => {
230
230
  const hasEnoughBalance = b3RawBalance && BigInt(debouncedUserStakeAmount || "0") <= b3RawBalance;
231
231
  if (!hasEnoughBalance || !debouncedAmount) {
@@ -240,15 +240,15 @@ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipien
240
240
  return ((0, jsx_runtime_1.jsx)(react_1.StyleRoot, { children: (0, jsx_runtime_1.jsxs)("div", { className: "bg-b3-react-background flex w-full flex-col items-center", children: [(0, jsx_runtime_1.jsxs)("div", { className: "w-full p-4", children: [(0, jsx_runtime_1.jsxs)(framer_motion_1.motion.div, { initial: false, animate: {
241
241
  opacity: hasMounted ? 1 : 0,
242
242
  y: hasMounted ? 0 : 20,
243
- filter: hasMounted ? "blur(0px)" : "blur(10px)",
243
+ filter: hasMounted ? "blur(0px)" : "blur(10px)"
244
244
  }, transition: { duration: 0.3, delay: 0, ease: "easeInOut" }, className: "relative mx-auto mb-4 size-[120px]", children: [(0, jsx_runtime_1.jsx)("div", { className: "absolute inset-0 scale-95 rounded-[50%] bg-black/30 blur-md" }), (0, jsx_runtime_1.jsxs)(react_1.GlareCardRounded, { className: "overflow-hidden rounded-full border-none", children: [(0, jsx_runtime_1.jsx)("img", { alt: "b3 coin", loading: "lazy", width: "64", height: "64", decoding: "async", "data-nimg": "1", className: "size-full shrink-0 bg-transparent text-transparent", src: "https://cdn.b3.fun/b3-coin-3d.png" }), (0, jsx_runtime_1.jsx)("div", { className: "absolute inset-0 rounded-[50%] border border-white/10" })] })] }), (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { initial: false, animate: {
245
245
  opacity: hasMounted ? 1 : 0,
246
246
  y: hasMounted ? 0 : 20,
247
- filter: hasMounted ? "blur(0px)" : "blur(10px)",
247
+ filter: hasMounted ? "blur(0px)" : "blur(10px)"
248
248
  }, transition: { duration: 0.3, delay: 0.1, ease: "easeInOut" }, children: (0, jsx_runtime_1.jsxs)("h2", { className: "font-sf-rounded mb-1 text-center text-2xl font-semibold", children: ["Staked ", (0, number_1.formatTokenAmount)(BigInt(userStakeAmount), 18), " B3"] }) })] }), (0, jsx_runtime_1.jsxs)(framer_motion_1.motion.div, { initial: false, animate: {
249
249
  opacity: hasMounted ? 1 : 0,
250
250
  y: hasMounted ? 0 : 20,
251
- filter: hasMounted ? "blur(0px)" : "blur(10px)",
251
+ filter: hasMounted ? "blur(0px)" : "blur(10px)"
252
252
  }, transition: { duration: 0.3, delay: 0.2, ease: "easeInOut" }, className: "bg-b3-react-background w-full p-6", children: [(0, jsx_runtime_1.jsx)("div", { className: "mb-6", children: (0, jsx_runtime_1.jsx)("a", { href: `https://basescan.org/tx/${stakingTxHash}`, target: "_blank", rel: "noopener noreferrer", className: "text-as-primary/70 hover:text-as-primary block break-all text-center font-mono text-sm underline transition-colors", children: "View transaction" }) }), (0, jsx_runtime_1.jsx)(react_1.Button, { onClick: () => {
253
253
  setB3ModalOpen(false);
254
254
  onSuccess?.();
@@ -256,7 +256,6 @@ function AnySpendStakeB3({ isMainnet = true, loadOrder, mode = "modal", recipien
256
256
  }
257
257
  const encodedData = generateEncodedDataForStakingB3(userStakeAmount, recipientAddress);
258
258
  return ((0, jsx_runtime_1.jsx)(AnySpendCustom_1.AnySpendCustom, { isMainnet: isMainnet, loadOrder: loadOrder, mode: mode, recipientAddress: recipientAddress, orderType: anyspend_1.OrderType.Custom, dstChainId: chains_1.base.id, dstToken: anyspend_1.B3_TOKEN, dstAmount: userStakeAmount, contractAddress: ERC20Staking, encodedData: encodedData, metadata: {
259
- type: anyspend_1.OrderType.Custom,
260
- action: "stake B3",
259
+ action: "stake B3"
261
260
  }, header: header, onSuccess: onSuccess, showRecipient: true }));
262
261
  }
@@ -8,14 +8,11 @@ const number_1 = require("../../../shared/utils/number");
8
8
  const framer_motion_1 = require("framer-motion");
9
9
  const AnySpendCustom_1 = require("./AnySpendCustom");
10
10
  function AnySpendTournament(props) {
11
- const { isMainnet = true, mode = "modal", action, loadOrder, tournamentChainId, tournamentContractAddress, tournamentMetadata, onSuccess, } = props;
11
+ const { isMainnet = true, mode = "modal", action, loadOrder, tournamentChainId, tournamentContractAddress, tournamentMetadata, onSuccess } = props;
12
12
  const dstToken = action === "join" ? props.tournamentEntryToken : props.tournamentFundToken;
13
13
  const dstAmount = action === "join" ? props.tournamentEntryFee : props.tournamentFundAmount;
14
- const header = ({ anyspendPrice, isLoadingAnyspendPrice, }) => ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("div", { className: "z-10 mt-[-100px] flex h-[270px] w-full items-end justify-center", children: (0, jsx_runtime_1.jsx)("img", { src: "https://cdn.b3.fun/tournament-play.svg", alt: "Tournament Play", className: "h-[200px] w-[360px] object-cover object-center" }) }), (0, jsx_runtime_1.jsxs)("div", { className: "from-b3-react-background to-as-on-surface-1 mt-[-100px] w-full rounded-t-lg bg-gradient-to-t", children: [(0, jsx_runtime_1.jsx)("div", { className: "h-[100px] w-full" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex w-full flex-col items-center gap-1 p-6 pt-0", children: [(0, jsx_runtime_1.jsxs)("span", { className: "font-sf-rounded text-center text-lg font-semibold", children: [action === "join" ? "Pay entry fee to join " : "Pay to fund ", " ", tournamentMetadata.name] }), (0, jsx_runtime_1.jsx)("div", { className: "mt-2 flex w-fit items-center gap-1", children: anyspendPrice ? ((0, jsx_runtime_1.jsx)(framer_motion_1.AnimatePresence, { mode: "wait", children: (0, jsx_runtime_1.jsxs)("div", { className: (0, utils_1.cn)("text-as-primary group flex items-center text-2xl font-semibold transition-all", {
15
- "opacity-0": isLoadingAnyspendPrice,
14
+ const header = ({ anyspendPrice, isLoadingAnyspendPrice }) => ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)("div", { className: "z-10 mt-[-100px] flex h-[270px] w-full items-end justify-center", children: (0, jsx_runtime_1.jsx)("img", { src: "https://cdn.b3.fun/tournament-play.svg", alt: "Tournament Play", className: "h-[200px] w-[360px] object-cover object-center" }) }), (0, jsx_runtime_1.jsxs)("div", { className: "from-b3-react-background to-as-on-surface-1 mt-[-100px] w-full rounded-t-lg bg-gradient-to-t", children: [(0, jsx_runtime_1.jsx)("div", { className: "h-[100px] w-full" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex w-full flex-col items-center gap-1 p-6 pt-0", children: [(0, jsx_runtime_1.jsxs)("span", { className: "font-sf-rounded text-center text-lg font-semibold", children: [action === "join" ? "Pay entry fee to join " : "Pay to fund ", " ", tournamentMetadata.name] }), (0, jsx_runtime_1.jsx)("div", { className: "mt-2 flex w-fit items-center gap-1", children: anyspendPrice ? ((0, jsx_runtime_1.jsx)(framer_motion_1.AnimatePresence, { mode: "wait", children: (0, jsx_runtime_1.jsxs)("div", { className: (0, utils_1.cn)("text-as-primary group flex items-center text-2xl font-semibold transition-all", {
15
+ "opacity-0": isLoadingAnyspendPrice
16
16
  }), children: [(0, number_1.formatDisplayNumber)(anyspendPrice?.data?.currencyIn?.amountUsd, { style: "currency" }), " (", (0, number_1.formatTokenAmount)(BigInt(dstAmount), dstToken.decimals, 6, true), " ", dstToken.symbol, ")"] }) })) : ((0, jsx_runtime_1.jsx)("div", { className: "h-[32px] w-full" })) })] })] })] }));
17
- return ((0, jsx_runtime_1.jsx)(AnySpendCustom_1.AnySpendCustom, { isMainnet: isMainnet, loadOrder: loadOrder, mode: mode, recipientAddress: action === "join" ? props.joinFor : undefined, orderType: action === "join" ? anyspend_1.OrderType.JoinTournament : anyspend_1.OrderType.FundTournament, dstChainId: tournamentChainId, dstToken: dstToken, dstAmount: dstAmount, contractAddress: tournamentContractAddress, encodedData: "0x", metadata: {
18
- type: action === "join" ? anyspend_1.OrderType.JoinTournament : anyspend_1.OrderType.FundTournament,
19
- tournament: tournamentMetadata,
20
- }, header: header, onSuccess: onSuccess, showRecipient: action === "join" }));
17
+ return ((0, jsx_runtime_1.jsx)(AnySpendCustom_1.AnySpendCustom, { isMainnet: isMainnet, loadOrder: loadOrder, mode: mode, recipientAddress: action === "join" ? props.joinFor : undefined, orderType: action === "join" ? anyspend_1.OrderType.JoinTournament : anyspend_1.OrderType.FundTournament, dstChainId: tournamentChainId, dstToken: dstToken, dstAmount: dstAmount, contractAddress: tournamentContractAddress, encodedData: "0x", metadata: { tournament: tournamentMetadata }, header: header, onSuccess: onSuccess, showRecipient: action === "join" }));
21
18
  }
@@ -1,4 +1,4 @@
1
- export declare function ChainTokenIcon({ chainUrl, tokenUrl, className, }: {
1
+ export declare function ChainTokenIcon({ chainUrl, tokenUrl, className }: {
2
2
  chainUrl: string;
3
3
  tokenUrl: string;
4
4
  className?: string;
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.ChainTokenIcon = ChainTokenIcon;
4
4
  const jsx_runtime_1 = require("react/jsx-runtime");
5
- function ChainTokenIcon({ chainUrl, tokenUrl, className = "", }) {
5
+ function ChainTokenIcon({ chainUrl, tokenUrl, className = "" }) {
6
6
  return ((0, jsx_runtime_1.jsxs)("div", { className: `relative ${className}`, children: [(0, jsx_runtime_1.jsx)("img", { src: tokenUrl, alt: "Token", className: "h-full w-full rounded-full" }), (0, jsx_runtime_1.jsx)("div", { className: "bg-as-on-surface-1 border-as-stroke absolute bottom-0 right-0 h-[45%] w-[45%] rounded border", children: (0, jsx_runtime_1.jsx)("img", { src: chainUrl, alt: "Chain", className: "h-full w-full rounded" }) })] }));
7
7
  }
@@ -8,7 +8,6 @@ exports.OrderDetailsLoadingView = exports.OrderDetails = void 0;
8
8
  const jsx_runtime_1 = require("react/jsx-runtime");
9
9
  const anyspend_1 = require("../../../../anyspend");
10
10
  const react_1 = require("../../../../global-account/react");
11
- const hooks_1 = require("../../../../shared/react/hooks");
12
11
  const utils_1 = require("../../../../shared/utils");
13
12
  const centerTruncate_1 = __importDefault(require("../../../../shared/utils/centerTruncate"));
14
13
  const number_1 = require("../../../../shared/utils/number");
@@ -16,6 +15,7 @@ const react_2 = require("@chakra-ui/react");
16
15
  const react_3 = require("@web3icons/react");
17
16
  const framer_motion_1 = require("framer-motion");
18
17
  const lucide_react_1 = require("lucide-react");
18
+ const navigation_1 = require("next/navigation");
19
19
  const qrcode_react_1 = require("qrcode.react");
20
20
  const react_4 = require("react");
21
21
  const react_timeago_1 = __importDefault(require("react-timeago"));
@@ -25,7 +25,7 @@ const chains_1 = require("viem/chains");
25
25
  const wagmi_1 = require("wagmi");
26
26
  const PaymentVendorUI_1 = __importDefault(require("./PaymentVendorUI"));
27
27
  // Add this helper function near the top or just above the component
28
- function getOrderSuccessText({ order, tournament, formattedActualDstAmount, dstToken, recipientName, centerTruncate, }) {
28
+ function getOrderSuccessText({ order, tournament, formattedActualDstAmount, dstToken, recipientName, centerTruncate }) {
29
29
  const recipient = recipientName || centerTruncate(order.recipientAddress, 8);
30
30
  let actionText = "";
31
31
  switch (order.type) {
@@ -120,9 +120,9 @@ function roundTokenAmount(amount) {
120
120
  const roundedDecimalPart = digits.join("");
121
121
  return `${wholePart}.${roundedDecimalPart}`;
122
122
  }
123
- exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode = "modal", order, depositTxs, relayTx, executeTx, refundTxs, onBack, }) {
124
- const router = (0, hooks_1.useRouter)();
125
- const searchParams = (0, hooks_1.useSearchParams)();
123
+ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode = "modal", order, depositTxs, relayTx, executeTx, refundTxs, onBack }) {
124
+ const router = (0, navigation_1.useRouter)();
125
+ const searchParams = (0, navigation_1.useSearchParams)();
126
126
  const setB3ModalOpen = (0, react_1.useModalStore)(state => state.setB3ModalOpen);
127
127
  const srcToken = anyspend_1.zToken.parse(order.metadata.srcToken);
128
128
  const dstToken = anyspend_1.zToken.parse(order.metadata.dstToken);
@@ -137,6 +137,21 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
137
137
  const [showQRCode, setShowQRCode] = (0, react_4.useState)(false);
138
138
  const { isLoading: txLoading, isSuccess: txSuccess } = (0, wagmi_1.useWaitForTransactionReceipt)({ hash: txHash });
139
139
  const { switchChainAndExecute, isSwitchingOrExecuting } = (0, react_1.useChainSwitchWithAction)();
140
+ // const { permitData, isCheckingPermit } = usePermitData({
141
+ // chainId: order.srcChain,
142
+ // tokenAddress: order.srcTokenAddress as Hex,
143
+ // ownerAddress: account?.address && isAddress(account.address) ? getAddress(account.address) : undefined,
144
+ // amount: BigInt(order.srcAmount)
145
+ // });
146
+ // const { sendPermitData } = useAnyspendSendPermitData({
147
+ // onSuccess: _data => {
148
+ // toast.info("Sent permit data successfully");
149
+ // },
150
+ // onError: error => {
151
+ // console.error(error);
152
+ // toast.error("Failed to send permit data: " + error.message);
153
+ // }
154
+ // });
140
155
  const { colorMode } = (0, react_2.useColorMode)();
141
156
  const roundedUpSrcAmount = (0, react_4.useMemo)(() => {
142
157
  // Display the full transfer amount without rounding since users need to see the exact value they're transferring.
@@ -153,6 +168,31 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
153
168
  return;
154
169
  }
155
170
  console.log("Processing transaction on chain:", currentWalletClient.chain.id);
171
+ // Process transaction
172
+ // if (permitData?.data && account.address) {
173
+ // const signature = await currentWalletClient.signTypedData({
174
+ // domain: permitData.data.domain,
175
+ // types: permitData.data.types,
176
+ // primaryType: "Permit",
177
+ // message: permitData.data.messageToSign
178
+ // });
179
+ // // Split signature into v, r, s components
180
+ // const r = signature.slice(0, 66);
181
+ // const s = "0x" + signature.slice(66, 130);
182
+ // const v = parseInt(signature.slice(130, 132), 16);
183
+ // sendPermitData({
184
+ // isMainnet: true,
185
+ // orderId: order.id,
186
+ // permitData: {
187
+ // deadline: Number(permitData.data.messageToSign.deadline),
188
+ // ownerAddress: account.address,
189
+ // r,
190
+ // s,
191
+ // v
192
+ // }
193
+ // });
194
+ // return;
195
+ // }
156
196
  const signer = currentWalletClient.account;
157
197
  // Send transaction
158
198
  if ((0, anyspend_1.isNativeToken)(order.srcTokenAddress)) {
@@ -160,7 +200,7 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
160
200
  account: signer,
161
201
  chain: anyspend_1.EVM_CHAINS[order.srcChain].viem,
162
202
  to: order.globalAddress,
163
- value: BigInt(order.srcAmount),
203
+ value: BigInt(order.srcAmount)
164
204
  });
165
205
  setTxHash(hash);
166
206
  }
@@ -171,7 +211,7 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
171
211
  address: order.srcTokenAddress,
172
212
  abi: viem_1.erc20Abi,
173
213
  functionName: "transfer",
174
- args: [order.globalAddress, BigInt(order.srcAmount)],
214
+ args: [order.globalAddress, BigInt(order.srcAmount)]
175
215
  });
176
216
  setTxHash(hash);
177
217
  }
@@ -183,29 +223,10 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
183
223
  };
184
224
  // When waitingForDeposit is true, we show a message to the user to wait for the deposit to be processed.
185
225
  const setWaitingForDeposit = (0, react_4.useCallback)(() => {
186
- const params = new URLSearchParams(searchParams.toString());
226
+ const params = new URLSearchParams(searchParams);
187
227
  params.set("waitingForDeposit", "true");
188
228
  router.push(`?${params}`);
189
229
  }, [router, searchParams]);
190
- // Clean up URL parameters before closing modal or navigating back
191
- const cleanupUrlParams = (0, react_4.useCallback)(() => {
192
- const params = new URLSearchParams(searchParams.toString());
193
- params.delete("waitingForDeposit");
194
- params.delete("orderId");
195
- // Only update URL if params were actually removed
196
- if (params.toString() !== searchParams.toString()) {
197
- router.push(`?${params}`);
198
- }
199
- }, [router, searchParams]);
200
- // Helper functions that clean up URL params before executing actions
201
- const handleCloseModal = (0, react_4.useCallback)(() => {
202
- cleanupUrlParams();
203
- setB3ModalOpen(false);
204
- }, [cleanupUrlParams, setB3ModalOpen]);
205
- const handleBack = (0, react_4.useCallback)(() => {
206
- cleanupUrlParams();
207
- onBack?.();
208
- }, [cleanupUrlParams, onBack]);
209
230
  (0, react_4.useEffect)(() => {
210
231
  if (txSuccess) {
211
232
  sonner_1.toast.success("Transaction successful! We are processing your order.", { duration: 10000 });
@@ -253,18 +274,14 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
253
274
  };
254
275
  if (refundTxs) {
255
276
  return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", { className: "relative mt-4 flex w-full flex-col gap-4", children: [(0, jsx_runtime_1.jsx)("div", { className: "bg-b3-react-background absolute bottom-2 left-4 top-2 z-[5] w-2", children: (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { className: "from-as-brand/50 absolute left-[2px] top-0 z-10 w-[3px] bg-gradient-to-b from-20% via-purple-500/50 via-80% to-transparent", initial: { height: "0%" }, animate: { height: "100%" }, transition: { duration: 1.5, ease: "easeInOut" } }) }), depositTxs
256
- ? depositTxs.map(dTx => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.onrampMetadata?.vendor === anyspend_1.OnrampVendor.StripeWeb2
257
- ? `Received payment`
258
- : `Received ${(0, number_1.formatTokenAmount)(BigInt(dTx.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTx, isProcessing: false }, dTx.txHash)))
277
+ ? depositTxs.map(dTx => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: `Received ${(0, number_1.formatTokenAmount)(BigInt(dTx.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTx, isProcessing: false }, dTx.txHash)))
259
278
  : null, refundTxs
260
279
  ? refundTxs.map(rTx => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: `Refunded ${(0, number_1.formatTokenAmount)(BigInt(rTx.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: rTx, isProcessing: false }, rTx.txHash)))
261
- : null] }), order.errorDetails && ((0, jsx_runtime_1.jsx)("div", { className: "flex justify-center", children: (0, jsx_runtime_1.jsx)("span", { className: "text-as-primary/50 text-center text-sm", style: { maxWidth: "40ch" }, children: (0, anyspend_1.getErrorDisplay)(order.errorDetails) }) })), (0, jsx_runtime_1.jsx)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: mode === "page" ? handleBack : handleCloseModal, children: mode === "page" ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["Return to Home ", (0, jsx_runtime_1.jsx)(lucide_react_1.Home, { className: "ml-2 h-4 w-4" })] })) : ("Close") })] }));
280
+ : null] }), order.errorDetails && ((0, jsx_runtime_1.jsx)("div", { className: "flex justify-center", children: (0, jsx_runtime_1.jsx)("span", { className: "text-as-primary/50 text-center text-sm", style: { maxWidth: "40ch" }, children: (0, anyspend_1.getErrorDisplay)(order.errorDetails) }) })), (0, jsx_runtime_1.jsx)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: mode === "page" ? onBack : () => setB3ModalOpen(false), children: mode === "page" ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["Return to Home ", (0, jsx_runtime_1.jsx)(lucide_react_1.Home, { className: "ml-2 h-4 w-4" })] })) : ("Close") })] }));
262
281
  }
263
282
  if (executeTx) {
264
283
  return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", { className: "relative mt-4 flex w-full flex-col gap-4", children: [(0, jsx_runtime_1.jsx)("div", { className: "bg-b3-react-background absolute bottom-2 left-4 top-2 z-[5] w-2", children: (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { className: "from-as-brand/50 absolute left-[2px] top-0 z-10 w-[3px] bg-gradient-to-b from-20% via-purple-500/50 via-80% to-transparent", initial: { height: "0%" }, animate: { height: "100%" }, transition: { duration: 1.5, ease: "easeInOut" } }) }), depositTxs
265
- ? depositTxs.map(dTxs => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.onrampMetadata?.vendor === anyspend_1.OnrampVendor.StripeWeb2
266
- ? `Received payment`
267
- : `Received ${(0, number_1.formatTokenAmount)(BigInt(dTxs.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTxs, isProcessing: false }, dTxs.txHash)))
284
+ ? depositTxs.map(dTxs => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: `Received ${(0, number_1.formatTokenAmount)(BigInt(dTxs.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTxs, isProcessing: false }, dTxs.txHash)))
268
285
  : null, (0, jsx_runtime_1.jsx)(TransactionDetails, { title: "Processed Transaction", chainId: order.srcChain, tx: relayTx, delay: 0.5, isProcessing: false }), (0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.type === anyspend_1.OrderType.Swap
269
286
  ? "Processed Swap"
270
287
  : order.type === anyspend_1.OrderType.MintNFT
@@ -279,14 +296,12 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
279
296
  formattedActualDstAmount: formattedActualDstAmount,
280
297
  dstToken,
281
298
  recipientName,
282
- centerTruncate: centerTruncate_1.default,
283
- }), (0, jsx_runtime_1.jsx)(lucide_react_1.ExternalLink, { className: "ml-2 h-4 w-4" })] }) }) }), order.type === anyspend_1.OrderType.JoinTournament && order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsxs)(react_1.ShinyButton, { accentColor: "hsl(var(--as-brand))", textColor: "text-white", className: "flex w-full items-center gap-2", disabled: txLoading || isSwitchingOrExecuting, onClick: handleCloseModal, children: [(0, jsx_runtime_1.jsx)("span", { className: "pl-4", children: "Continue to Tournament" }), (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronRight, { className: "h-4 w-4" })] })), order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsx)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: mode === "page" ? handleBack : handleCloseModal, children: mode === "page" ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["Return to Home ", (0, jsx_runtime_1.jsx)(lucide_react_1.Home, { className: "ml-2 h-4 w-4" })] })) : ("Close") }))] }));
299
+ centerTruncate: centerTruncate_1.default
300
+ }), (0, jsx_runtime_1.jsx)(lucide_react_1.ExternalLink, { className: "ml-2 h-4 w-4" })] }) }) }), order.type === anyspend_1.OrderType.JoinTournament && order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsxs)(react_1.ShinyButton, { accentColor: "hsl(var(--as-brand))", textColor: "text-white", className: "flex w-full items-center gap-2", disabled: txLoading || isSwitchingOrExecuting, onClick: () => setB3ModalOpen(false), children: [(0, jsx_runtime_1.jsx)("span", { className: "pl-4", children: "Continue to Tournament" }), (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronRight, { className: "h-4 w-4" })] })), order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsx)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: mode === "page" ? onBack : () => setB3ModalOpen(false), children: mode === "page" ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["Return to Home ", (0, jsx_runtime_1.jsx)(lucide_react_1.Home, { className: "ml-2 h-4 w-4" })] })) : ("Close") }))] }));
284
301
  }
285
302
  if (relayTx && relayTx.status === "success") {
286
303
  return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", { className: "relative mt-4 flex w-full flex-col gap-4", children: [(0, jsx_runtime_1.jsx)("div", { className: "bg-b3-react-background absolute bottom-2 left-4 top-2 z-[5] w-2", children: (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { className: "from-as-brand/50 absolute left-[2px] top-0 z-10 w-[3px] bg-gradient-to-b from-20% via-purple-500/50 via-80% to-transparent", initial: { height: "0%" }, animate: { height: "100%" }, transition: { duration: 1.5, ease: "easeInOut" } }) }), depositTxs
287
- ? depositTxs.map(dTxs => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.onrampMetadata?.vendor === anyspend_1.OnrampVendor.StripeWeb2
288
- ? `Received payment`
289
- : `Received ${(0, number_1.formatTokenAmount)(BigInt(dTxs.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTxs, isProcessing: false }, dTxs.txHash)))
304
+ ? depositTxs.map(dTxs => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: `Received ${(0, number_1.formatTokenAmount)(BigInt(dTxs.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTxs, isProcessing: false }, dTxs.txHash)))
290
305
  : null, order.srcChain === order.dstChain ? ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.type === anyspend_1.OrderType.Swap
291
306
  ? "Processed Swap"
292
307
  : order.type === anyspend_1.OrderType.MintNFT
@@ -309,15 +324,13 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
309
324
  formattedActualDstAmount,
310
325
  dstToken,
311
326
  recipientName,
312
- centerTruncate: centerTruncate_1.default,
313
- }), (0, jsx_runtime_1.jsx)(lucide_react_1.ExternalLink, { className: "ml-2 h-4 w-4" })] }) }) }), order.type === anyspend_1.OrderType.JoinTournament && order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsxs)(react_1.ShinyButton, { accentColor: "hsl(var(--as-brand))", textColor: "text-white", className: "flex w-full items-center gap-2", disabled: txLoading || isSwitchingOrExecuting, onClick: handleCloseModal, children: [(0, jsx_runtime_1.jsx)("span", { className: "pl-4", children: "Continue to Tournament" }), (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronRight, { className: "h-4 w-4" })] })), order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsx)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: mode === "page" ? handleBack : handleCloseModal, children: mode === "page" ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["Return to Home ", (0, jsx_runtime_1.jsx)(lucide_react_1.Home, { className: "ml-2 h-4 w-4" })] })) : ("Close") }))] }));
327
+ centerTruncate: centerTruncate_1.default
328
+ }), (0, jsx_runtime_1.jsx)(lucide_react_1.ExternalLink, { className: "ml-2 h-4 w-4" })] }) }) }), order.type === anyspend_1.OrderType.JoinTournament && order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsxs)(react_1.ShinyButton, { accentColor: "hsl(var(--as-brand))", textColor: "text-white", className: "flex w-full items-center gap-2", disabled: txLoading || isSwitchingOrExecuting, onClick: () => setB3ModalOpen(false), children: [(0, jsx_runtime_1.jsx)("span", { className: "pl-4", children: "Continue to Tournament" }), (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronRight, { className: "h-4 w-4" })] })), order.status === anyspend_1.OrderStatus.Executed && ((0, jsx_runtime_1.jsx)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: mode === "page" ? onBack : () => setB3ModalOpen(false), children: mode === "page" ? ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: ["Return to Home ", (0, jsx_runtime_1.jsx)(lucide_react_1.Home, { className: "ml-2 h-4 w-4" })] })) : ("Close") }))] }));
314
329
  }
315
330
  // This boolean indicates that user finish payment, and waiting for the deposit to be confirmed. We get this from query params (waitingForDeposit=true)
316
331
  const waitingForDeposit = new URLSearchParams(window.location.search).get("waitingForDeposit") === "true";
317
332
  if (depositTxs?.length || waitingForDeposit) {
318
- return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsxs)("div", { className: "relative mt-4 flex w-full flex-col gap-6", children: [(0, jsx_runtime_1.jsx)("div", { className: "bg-b3-react-background absolute bottom-2 left-4 top-2 z-[5] w-2", children: (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { className: "from-as-brand/50 absolute left-[2px] top-0 z-10 w-[3px] bg-gradient-to-b from-20% via-purple-500/50 via-80% to-transparent", initial: { height: "0%" }, animate: { height: "100%" }, transition: { duration: 1, ease: "easeInOut" } }) }), (depositTxs || []).map((dTxs, index) => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.onrampMetadata?.vendor === anyspend_1.OnrampVendor.StripeWeb2
319
- ? `Received payment`
320
- : `Received ${(0, number_1.formatTokenAmount)(BigInt(dTxs.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTxs, isProcessing: index < (depositTxs || []).length - 1 ? false : !depositEnoughAmount }, dTxs.txHash))), statusDisplay === "failure" ? ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: statusText, chainId: order.srcChain, tx: null, isProcessing: false, delay: 0.5 })) : depositEnoughAmount ? ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.type === anyspend_1.OrderType.Swap
333
+ return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsxs)("div", { className: "relative mt-4 flex w-full flex-col gap-6", children: [(0, jsx_runtime_1.jsx)("div", { className: "bg-b3-react-background absolute bottom-2 left-4 top-2 z-[5] w-2", children: (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { className: "from-as-brand/50 absolute left-[2px] top-0 z-10 w-[3px] bg-gradient-to-b from-20% via-purple-500/50 via-80% to-transparent", initial: { height: "0%" }, animate: { height: "100%" }, transition: { duration: 1, ease: "easeInOut" } }) }), (depositTxs || []).map((dTxs, index) => ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: `Received ${(0, number_1.formatTokenAmount)(BigInt(dTxs.amount), srcToken.decimals)} ${srcToken.symbol}`, chainId: order.srcChain, tx: dTxs, isProcessing: index < (depositTxs || []).length - 1 ? false : !depositEnoughAmount }, dTxs.txHash))), statusDisplay === "failure" ? ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: statusText, chainId: order.srcChain, tx: null, isProcessing: false, delay: 0.5 })) : depositEnoughAmount ? ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.type === anyspend_1.OrderType.Swap
321
334
  ? "Processing Swap"
322
335
  : order.type === anyspend_1.OrderType.MintNFT
323
336
  ? "Minting NFT"
@@ -325,9 +338,7 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
325
338
  ? "Joining Tournament"
326
339
  : order.type === anyspend_1.OrderType.FundTournament
327
340
  ? "Funding Tournament"
328
- : "Processing Transaction", chainId: order.srcChain, tx: null, isProcessing: true, delay: 0.5 })) : ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: order.onrampMetadata?.vendor === anyspend_1.OnrampVendor.StripeWeb2
329
- ? `Waiting for payment`
330
- : `Waiting for deposit ${formattedDepositDeficit} ${srcToken.symbol}`, chainId: order.srcChain, tx: null, isProcessing: true, delay: 0.5 }))] }) }));
341
+ : "Processing Transaction", chainId: order.srcChain, tx: null, isProcessing: true, delay: 0.5 })) : ((0, jsx_runtime_1.jsx)(TransactionDetails, { title: `Waiting for deposit ${formattedDepositDeficit} ${srcToken.symbol}`, chainId: order.srcChain, tx: null, isProcessing: true, delay: 0.5 }))] }) }));
331
342
  }
332
343
  return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [statusDisplay === "failure" && ((0, jsx_runtime_1.jsx)("div", { className: "flex w-full flex-col items-center gap-3 whitespace-nowrap pb-2 text-sm", children: (0, jsx_runtime_1.jsx)("div", { className: "bg-as-light-brand/20 flex w-full flex-col gap-4 rounded-lg p-8", children: (0, jsx_runtime_1.jsx)("div", { className: "text-as-primary", style: { whiteSpace: "normal" }, children: "This order is no longer valid because the order expired." }) }) })), statusDisplay === "processing" && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [order.onrampMetadata ? ((0, jsx_runtime_1.jsx)(PaymentVendorUI_1.default, { isMainnet: isMainnet, order: order, dstTokenSymbol: dstToken.symbol })) : ((0, jsx_runtime_1.jsxs)("div", { className: "relative flex w-full flex-1 flex-col", children: [(0, jsx_runtime_1.jsxs)("div", { className: "flex flex-col gap-1", children: [(0, jsx_runtime_1.jsx)("span", { className: "text-as-primary/50", children: "Please send" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex w-full flex-wrap items-center gap-6 sm:justify-between sm:gap-0", children: [(0, jsx_runtime_1.jsx)(react_1.CopyToClipboard, { text: roundedUpSrcAmount, onCopy: () => {
333
344
  sonner_1.toast.success("Copied to clipboard");
@@ -341,7 +352,7 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
341
352
  .share({
342
353
  title: "Complete Deposit",
343
354
  text: "Complete your deposit on BSMNT.fun",
344
- url: permalink,
355
+ url: permalink
345
356
  })
346
357
  .catch(error => console.log("Error sharing:", error));
347
358
  }
@@ -360,11 +371,11 @@ exports.OrderDetails = (0, react_4.memo)(function OrderDetails({ isMainnet, mode
360
371
  : "Contract execution"
361
372
  : "" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex items-end gap-2", children: [order.type === anyspend_1.OrderType.Swap ? (`~${formattedExpectedDstAmount} ${dstToken.symbol}`) : order.type === anyspend_1.OrderType.MintNFT ? ((0, jsx_runtime_1.jsxs)("div", { className: "flex items-center gap-2", children: [(0, jsx_runtime_1.jsx)("img", { src: nft?.imageUrl, alt: nft?.name || "NFT", className: "h-5 w-5" }), (0, jsx_runtime_1.jsx)("div", { children: nft?.name || "NFT" })] })) : order.type === anyspend_1.OrderType.JoinTournament || order.type === anyspend_1.OrderType.FundTournament ? ((0, jsx_runtime_1.jsxs)("div", { className: "flex items-center gap-2", children: [(0, jsx_runtime_1.jsx)("img", { src: tournament?.imageUrl, alt: tournament?.name || "Tournament", className: "h-5 w-5" }), (0, jsx_runtime_1.jsx)("div", { children: tournament?.name || "Tournament" })] })) : null, (0, jsx_runtime_1.jsxs)("div", { className: "text-as-primary/50 flex items-center gap-2", children: [(0, jsx_runtime_1.jsxs)("span", { children: ["on ", order.dstChain !== chains_1.b3.id && (0, anyspend_1.getChainName)(order.dstChain)] }), (0, jsx_runtime_1.jsx)("img", { src: anyspend_1.ALL_CHAINS[order.dstChain].logoUrl, alt: (0, anyspend_1.getChainName)(order.dstChain), className: (0, utils_1.cn)("h-3", order.dstChain !== chains_1.b3.id && "w-3 rounded-full", order.dstChain === chains_1.b3.id && "h-4") })] })] })] }), (0, jsx_runtime_1.jsx)("div", { className: "divider w-full" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex w-full justify-between gap-4", children: [(0, jsx_runtime_1.jsx)("div", { className: "text-as-primary/30", children: "Order ID" }), (0, jsx_runtime_1.jsx)("div", { className: "text-as-primary overflow-hidden text-ellipsis whitespace-nowrap", children: order.id })] }), (0, jsx_runtime_1.jsx)("div", { className: "divider w-full" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex w-full justify-between gap-4", children: [(0, jsx_runtime_1.jsx)("div", { className: "text-as-primary/30", children: "Recipient" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex flex-col items-end gap-1", children: [recipientName && (0, jsx_runtime_1.jsx)("div", { className: "text-as-primary font-semibold", children: recipientName }), (0, jsx_runtime_1.jsx)(react_1.CopyToClipboard, { text: order.recipientAddress, onCopy: () => {
362
373
  sonner_1.toast.success("Copied recipient address to clipboard");
363
- }, children: (0, jsx_runtime_1.jsxs)("div", { className: "text-as-primary flex items-center gap-2", children: [(0, centerTruncate_1.default)(order.recipientAddress, 10), (0, jsx_runtime_1.jsx)(lucide_react_1.Copy, { className: "text-as-primary/50 hover:text-as-primary h-4 w-4 cursor-pointer transition-all duration-200" })] }) })] })] })] }) })) : ((0, jsx_runtime_1.jsxs)("div", { className: "flex w-full items-center", children: [(0, jsx_runtime_1.jsx)("div", { className: "divider w-full" }), (0, jsx_runtime_1.jsx)("button", { className: "whitespace-nowrap text-sm", onClick: () => setShowOrderDetails(true), children: "Order Details" }), (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronDown, { className: "text-as-primary mx-1 h-4 min-h-4 w-4 min-w-4" }), (0, jsx_runtime_1.jsx)("div", { className: "divider w-full" })] })), (0, jsx_runtime_1.jsxs)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: handleBack, children: ["Cancel and start over ", (0, jsx_runtime_1.jsx)(lucide_react_1.RefreshCcw, { className: "ml-2 h-4 w-4" })] })] }));
374
+ }, children: (0, jsx_runtime_1.jsxs)("div", { className: "text-as-primary flex items-center gap-2", children: [(0, centerTruncate_1.default)(order.recipientAddress, 10), (0, jsx_runtime_1.jsx)(lucide_react_1.Copy, { className: "text-as-primary/50 hover:text-as-primary h-4 w-4 cursor-pointer transition-all duration-200" })] }) })] })] })] }) })) : ((0, jsx_runtime_1.jsxs)("div", { className: "flex w-full items-center", children: [(0, jsx_runtime_1.jsx)("div", { className: "divider w-full" }), (0, jsx_runtime_1.jsx)("button", { className: "whitespace-nowrap text-sm", onClick: () => setShowOrderDetails(true), children: "Order Details" }), (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronDown, { className: "text-as-primary mx-1 h-4 min-h-4 w-4 min-w-4" }), (0, jsx_runtime_1.jsx)("div", { className: "divider w-full" })] })), (0, jsx_runtime_1.jsxs)("button", { className: "bg-as-on-surface-2 text-as-secondary flex w-full items-center justify-center gap-2 rounded-lg p-2", onClick: onBack, children: ["Cancel and start over ", (0, jsx_runtime_1.jsx)(lucide_react_1.RefreshCcw, { className: "ml-2 h-4 w-4" })] })] }));
364
375
  });
365
- function TransactionDetails({ title, chainId, tx, isProcessing, delay, }) {
376
+ function TransactionDetails({ title, chainId, tx, isProcessing, delay }) {
366
377
  return ((0, jsx_runtime_1.jsxs)("div", { className: "relative flex w-full flex-1 items-center justify-between gap-4", children: [(0, jsx_runtime_1.jsxs)("div", { className: "flex grow items-center gap-4", children: [(0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { className: "bg-b3-react-background relative h-10 w-10 rounded-full", children: isProcessing ? ((0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { initial: { opacity: 0, scale: 0.3 }, animate: { opacity: 1, scale: 1 }, transition: { duration: 0.5, ease: "easeInOut", delay }, className: "absolute z-10 m-2 flex h-6 w-6 items-center justify-center rounded-full bg-black/70 shadow-lg backdrop-blur-sm", children: (0, jsx_runtime_1.jsx)(lucide_react_1.Loader2, { className: "text-as-primary h-4 w-4 animate-spin" }) })) : ((0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { initial: { opacity: 0, scale: 0.3 }, animate: { opacity: 1, scale: 1 }, transition: { duration: 0.5, ease: "easeOut", delay }, className: "bg-as-brand/70 absolute z-10 m-2 flex h-6 w-6 items-center justify-center rounded-full border border-white/30 shadow-lg shadow-purple-500/30 backdrop-blur-sm", style: {
367
- boxShadow: "0 0 15px 5px rgba(138, 43, 226, 0.2)",
378
+ boxShadow: "0 0 15px 5px rgba(138, 43, 226, 0.2)"
368
379
  }, children: (0, jsx_runtime_1.jsx)(lucide_react_1.CheckIcon, { className: "text-as-primary h-3 w-3" }) })) }), (0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { initial: { opacity: 0 }, animate: { opacity: 1 }, transition: { duration: 0.3, ease: "easeInOut", delay }, className: "shrink-0 text-base", children: isProcessing ? ((0, jsx_runtime_1.jsx)(react_1.TextShimmer, { duration: 1, children: title })) : ((0, jsx_runtime_1.jsx)("span", { className: "text-as-primary", children: title })) })] }), (0, jsx_runtime_1.jsx)("div", { className: "flex flex-col gap-1", children: tx ? ((0, jsx_runtime_1.jsx)(framer_motion_1.motion.div, { initial: { opacity: 0 }, animate: { opacity: 1 }, transition: { duration: 0.3, ease: "easeInOut", delay: (delay || 0) + 0.3 }, className: "flex items-center gap-3", children: (0, jsx_runtime_1.jsx)("a", { href: (0, anyspend_1.getExplorerTxUrl)(chainId, tx.txHash), target: "_blank", children: (0, jsx_runtime_1.jsx)("div", { className: "text-as-primary/30 font-mono text-xs", children: (0, centerTruncate_1.default)(tx?.txHash, 6) }) }) })) : null })] }));
369
380
  }
370
381
  exports.OrderDetailsLoadingView = ((0, jsx_runtime_1.jsxs)("div", { className: "mx-auto flex w-[460px] max-w-full flex-col items-center gap-4", children: [(0, jsx_runtime_1.jsxs)(react_1.Badge, { variant: "default", className: "hover:bg-b3-react-background flex items-center gap-3 border-white/20 bg-white/10 px-4 py-1 text-base transition-colors", children: [(0, jsx_runtime_1.jsx)(lucide_react_1.Loader2, { className: "text-as-primary h-4 w-4 animate-spin" }), (0, jsx_runtime_1.jsx)(react_1.TextShimmer, { duration: 1, className: "font-sf-rounded text-base font-semibold", children: "Loading..." })] }), (0, jsx_runtime_1.jsxs)("div", { className: "flex w-full flex-1 flex-col", children: [(0, jsx_runtime_1.jsxs)("div", { className: "mb-4 flex flex-col gap-1", children: [(0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "h-4 w-24" }), (0, jsx_runtime_1.jsxs)("div", { className: "mt-2 flex items-center gap-2", children: [(0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "h-8 w-48" }), (0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "ml-4 h-8 w-32" })] }), (0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "mt-4 h-8 w-24" })] }), (0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "mb-4 h-12 w-full" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex w-full items-center justify-between gap-4", children: [(0, jsx_runtime_1.jsxs)(react_1.Skeleton, { className: "rounded-lg p-6 pb-3", children: [(0, jsx_runtime_1.jsx)("div", { className: "h-[200px] w-[200px]" }), (0, jsx_runtime_1.jsx)("div", { className: "mt-3 flex items-center justify-center gap-2", children: (0, jsx_runtime_1.jsx)("div", { className: "h-5 w-5 rounded-full" }) })] }), (0, jsx_runtime_1.jsx)("div", { className: "flex flex-1 flex-col gap-2", children: [1, 2, 3].map(i => ((0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "h-10 w-full" }, i))) })] })] }), (0, jsx_runtime_1.jsxs)("div", { className: "bg-b3-react-background mt-8 w-full rounded-lg p-4", children: [(0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "mb-3 h-4 w-48" }), (0, jsx_runtime_1.jsxs)("div", { className: "flex items-center gap-4", children: [(0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "h-10 flex-1" }), (0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "h-10 flex-1" })] })] }), (0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "h-10 w-full" })] }));
@@ -3,17 +3,17 @@
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
4
  exports.OrderHistory = OrderHistory;
5
5
  const jsx_runtime_1 = require("react/jsx-runtime");
6
- const react_1 = require("../../../../anyspend/react");
7
- const react_2 = require("../../../../global-account/react");
6
+ const anyspend_1 = require("../../../../anyspend");
7
+ const react_1 = require("../../../../global-account/react");
8
8
  const lucide_react_1 = require("lucide-react");
9
9
  const OrderHistoryItem_1 = require("./OrderHistoryItem");
10
10
  const isMainnet = true;
11
11
  function OrderHistory({ mode, onBack, onSelectOrder }) {
12
- const { address } = (0, react_2.useAccountWallet)();
13
- const { orderHistory, isLoadingOrderHistory, refetchOrderHistory } = (0, react_1.useAnyspendOrderHistory)(isMainnet, address);
14
- return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", { className: "mb-6 flex w-full items-center gap-4", children: [(0, jsx_runtime_1.jsx)(react_2.Button, { onClick: onBack, variant: "ghost", size: "icon", children: (0, jsx_runtime_1.jsx)(lucide_react_1.ArrowLeft, { className: "h-4 w-4" }) }), (0, jsx_runtime_1.jsxs)("div", { className: "flex-1", children: [(0, jsx_runtime_1.jsx)("h3", { className: "text-xl font-semibold", children: "Order History" }), (0, jsx_runtime_1.jsx)("p", { className: "text-as-primary/30 text-sm", children: "View your past transactions" })] }), (0, jsx_runtime_1.jsx)(react_2.Button, { variant: "ghost", size: "icon", onClick: () => {
12
+ const { address } = (0, react_1.useAccountWallet)();
13
+ const { orderHistory, isLoadingOrderHistory, refetchOrderHistory } = (0, anyspend_1.useAnyspendOrderHistory)(isMainnet, address);
14
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsxs)("div", { className: "mb-6 flex w-full items-center gap-4", children: [(0, jsx_runtime_1.jsx)(react_1.Button, { onClick: onBack, variant: "ghost", size: "icon", children: (0, jsx_runtime_1.jsx)(lucide_react_1.ArrowLeft, { className: "h-4 w-4" }) }), (0, jsx_runtime_1.jsxs)("div", { className: "flex-1", children: [(0, jsx_runtime_1.jsx)("h3", { className: "text-xl font-semibold", children: "Order History" }), (0, jsx_runtime_1.jsx)("p", { className: "text-as-primary/30 text-sm", children: "View your past transactions" })] }), (0, jsx_runtime_1.jsx)(react_1.Button, { variant: "ghost", size: "icon", onClick: () => {
15
15
  refetchOrderHistory();
16
- }, children: (0, jsx_runtime_1.jsx)(lucide_react_1.RefreshCcw, { className: "text-as-primary/30 hover:text-as-primary h-4 w-4 cursor-pointer transition-all hover:rotate-180" }) })] }), isLoadingOrderHistory ? ((0, jsx_runtime_1.jsx)("div", { className: "w-full space-y-4", children: [1, 2, 3].map(i => ((0, jsx_runtime_1.jsx)(react_2.Skeleton, { className: "h-[160px] w-full rounded-lg" }, i))) })) : !orderHistory?.length ? ((0, jsx_runtime_1.jsx)("div", { className: "bg-as-light-brand w-full rounded-lg border p-8 text-center", children: (0, jsx_runtime_1.jsx)("p", { className: "text-b3-react-muted-foreground", children: "No order history found" }) })) : ((0, jsx_runtime_1.jsx)("div", { className: "mb-12 w-full space-y-4", children: [...orderHistory]
16
+ }, children: (0, jsx_runtime_1.jsx)(lucide_react_1.RefreshCcw, { className: "text-as-primary/30 hover:text-as-primary h-4 w-4 cursor-pointer transition-all hover:rotate-180" }) })] }), isLoadingOrderHistory ? ((0, jsx_runtime_1.jsx)("div", { className: "w-full space-y-4", children: [1, 2, 3].map(i => ((0, jsx_runtime_1.jsx)(react_1.Skeleton, { className: "h-[160px] w-full rounded-lg" }, i))) })) : !orderHistory?.length ? ((0, jsx_runtime_1.jsx)("div", { className: "bg-as-light-brand w-full rounded-lg border p-8 text-center", children: (0, jsx_runtime_1.jsx)("p", { className: "text-b3-react-muted-foreground", children: "No order history found" }) })) : ((0, jsx_runtime_1.jsx)("div", { className: "mb-12 w-full space-y-4", children: [...orderHistory]
17
17
  .sort((a, b) => b.createdAt - a.createdAt)
18
18
  .map(order => ((0, jsx_runtime_1.jsx)(OrderHistoryItem_1.OrderHistoryItem, { order: order, onSelectOrder: onSelectOrder, mode: mode }, order.id))) }))] }));
19
19
  }
@@ -1,5 +1,5 @@
1
1
  import { Token } from "../../../../anyspend";
2
- export declare function OrderToken({ context, address, chainId, setChainId, token, setToken, requiredAmount, tokenSelectClassName, }: {
2
+ export declare function OrderToken({ context, address, chainId, setChainId, token, setToken, requiredAmount, tokenSelectClassName }: {
3
3
  context: "from" | "to";
4
4
  address: string | undefined;
5
5
  token: Token;
@@ -12,13 +12,13 @@ const relay_kit_ui_1 = require("@reservoir0x/relay-kit-ui");
12
12
  const lucide_react_1 = require("lucide-react");
13
13
  const react_2 = require("react");
14
14
  const ChainTokenIcon_1 = require("./ChainTokenIcon");
15
- function OrderToken({ context, address, chainId, setChainId, token, setToken, requiredAmount, tokenSelectClassName, }) {
15
+ function OrderToken({ context, address, chainId, setChainId, token, setToken, requiredAmount, tokenSelectClassName }) {
16
16
  const { wallet } = (0, react_1.useAccountWallet)();
17
17
  const chainName = (0, react_2.useMemo)(() => (0, simplehash_1.simpleHashChainToChainName)(chainId), [chainId]);
18
18
  const { nativeTokens, fungibleTokens } = (0, react_1.useTokenBalancesByChain)({
19
19
  address: wallet?.address || "",
20
20
  chainsIds: [chainId],
21
- enabled: !!wallet?.address && !!chainName,
21
+ enabled: !!wallet?.address && !!chainName
22
22
  });
23
23
  const { formattedBalance, hasEnoughBalance } = (0, react_2.useMemo)(() => {
24
24
  // Get balance for the selected token
@@ -40,7 +40,7 @@ function OrderToken({ context, address, chainId, setChainId, token, setToken, re
40
40
  const formattedBalance = balance ? (0, number_1.formatTokenAmount)(balance, token.decimals, 6, false) : null;
41
41
  return {
42
42
  formattedBalance,
43
- hasEnoughBalance,
43
+ hasEnoughBalance
44
44
  };
45
45
  }, [chainId, fungibleTokens, nativeTokens, requiredAmount, token, wallet?.address]);
46
46
  return ((0, jsx_runtime_1.jsx)(relay_kit_ui_1.TokenSelector, { address: address, chainIdsFilter: Object.values(anyspend_1.ALL_CHAINS).map(chain => chain.id), context: context, fromChainWalletVMSupported: true, isValidAddress: true, lockedChainIds: Object.values(anyspend_1.ALL_CHAINS).map(chain => chain.id), multiWalletSupportEnabled: true, onAnalyticEvent: undefined, popularChainIds: [1, 8453, anyspend_1.RELAY_SOLANA_MAINNET_CHAIN_ID], restrictedToken: undefined, setToken: token => {
@@ -51,7 +51,7 @@ function OrderToken({ context, address, chainId, setChainId, token, setToken, re
51
51
  decimals: token.decimals,
52
52
  metadata: { logoURI: token.logoURI },
53
53
  name: token.name,
54
- symbol: token.symbol,
54
+ symbol: token.symbol
55
55
  });
56
56
  }, supportedWalletVMs: ["evm", "svm"], token: undefined, trigger: (0, jsx_runtime_1.jsxs)(react_1.Button, { variant: "outline", role: "combobox", className: (0, utils_1.cn)("bg-b3-react-background border-as-stroke flex h-auto w-fit shrink-0 items-center justify-center gap-2 rounded-xl border-2 px-2 py-1 pr-2 text-center", tokenSelectClassName), children: [token.metadata.logoURI ? ((0, jsx_runtime_1.jsx)(ChainTokenIcon_1.ChainTokenIcon, { chainUrl: anyspend_1.ALL_CHAINS[chainId].logoUrl, tokenUrl: token.metadata.logoURI, className: "h-8 min-h-8 w-8 min-w-8" })) : ((0, jsx_runtime_1.jsx)("div", { className: "h-8 w-8 rounded-full bg-gray-700" })), (0, jsx_runtime_1.jsxs)("div", { className: "flex flex-col items-start gap-0", children: [(0, jsx_runtime_1.jsxs)("div", { className: "text-as-primary font-semibold", children: [token.symbol, " on ", anyspend_1.ALL_CHAINS[chainId].name] }), formattedBalance && ((0, jsx_runtime_1.jsxs)("div", { className: "flex items-center gap-1", children: [(0, jsx_runtime_1.jsxs)("div", { className: "text-as-primary/50 text-xs", children: [formattedBalance || "--", " ", token.symbol] }), hasEnoughBalance && (0, jsx_runtime_1.jsx)(lucide_react_1.CheckCircle2, { className: "text-as-brand -mt-0.5 h-4 w-4" })] }))] }), (0, jsx_runtime_1.jsx)(lucide_react_1.ChevronsUpDown, { className: "h-4 w-4 shrink-0 opacity-70" })] }) }, undefined));
57
57
  }
@@ -1,5 +1,5 @@
1
1
  import { Token } from "../../../../anyspend";
2
- export declare function OrderTokenAmount({ disabled, inputValue, onChangeInput, context, address, chainId, setChainId, token, setToken, hideTokenSelect, canEditAmount, className, innerClassName, amountClassName, tokenSelectClassName, }: {
2
+ export declare function OrderTokenAmount({ disabled, inputValue, onChangeInput, context, address, chainId, setChainId, token, setToken, hideTokenSelect, canEditAmount, className, innerClassName, amountClassName, tokenSelectClassName }: {
3
3
  disabled?: boolean;
4
4
  inputValue: string;
5
5
  onChangeInput: (value: string) => void;
@@ -11,7 +11,7 @@ const react_2 = require("../../../../global-account/react");
11
11
  const utils_1 = require("../../../../shared/utils");
12
12
  const relay_kit_ui_1 = require("@reservoir0x/relay-kit-ui");
13
13
  const ChainTokenIcon_1 = require("./ChainTokenIcon");
14
- function OrderTokenAmount({ disabled, inputValue, onChangeInput, context, address, chainId, setChainId, token, setToken, hideTokenSelect = false, canEditAmount = true, className, innerClassName, amountClassName, tokenSelectClassName, }) {
14
+ function OrderTokenAmount({ disabled, inputValue, onChangeInput, context, address, chainId, setChainId, token, setToken, hideTokenSelect = false, canEditAmount = true, className, innerClassName, amountClassName, tokenSelectClassName }) {
15
15
  // Track previous token to detect changes
16
16
  const prevTokenRef = (0, react_1.useRef)(token.address);
17
17
  (0, react_1.useEffect)(() => {
@@ -39,7 +39,7 @@ function OrderTokenAmount({ disabled, inputValue, onChangeInput, context, addres
39
39
  decimals: newToken.decimals,
40
40
  metadata: { logoURI: newToken.logoURI },
41
41
  name: newToken.name,
42
- symbol: newToken.symbol,
42
+ symbol: newToken.symbol
43
43
  });
44
44
  // If this is the source token, reset the amount immediately
45
45
  if (context === "from") {
@@ -1,4 +1,4 @@
1
- export declare function PanelOnramp({ srcAmountOnRamp, setSrcAmountOnRamp, }: {
1
+ export declare function PanelOnramp({ srcAmountOnRamp, setSrcAmountOnRamp }: {
2
2
  srcAmountOnRamp: string;
3
3
  setSrcAmountOnRamp: (amount: string) => void;
4
4
  }): import("react/jsx-runtime").JSX.Element;