@b3dotfun/sdk 0.0.7 → 0.0.8
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.
- package/dist/cjs/anyspend/abis/abi-usdc-base.js +97 -97
- package/dist/cjs/anyspend/abis/erc20-staking.js +51 -51
- package/dist/cjs/anyspend/abis/signature-minting.d.ts +79 -0
- package/dist/cjs/anyspend/abis/signature-minting.js +45 -0
- package/dist/cjs/anyspend/constants/index.js +13 -10
- package/dist/cjs/anyspend/index.d.ts +4 -2
- package/dist/cjs/anyspend/index.js +4 -4
- package/dist/cjs/anyspend/react/components/AnySpend.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/AnySpend.js +69 -68
- package/dist/cjs/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/AnySpendBuySpin.js +68 -66
- package/dist/cjs/anyspend/react/components/AnySpendCustom.d.ts +4 -4
- package/dist/cjs/anyspend/react/components/AnySpendCustom.js +158 -101
- package/dist/cjs/anyspend/react/components/AnySpendNFT.d.ts +3 -2
- package/dist/cjs/anyspend/react/components/AnySpendNFT.js +7 -5
- package/dist/cjs/anyspend/react/components/AnySpendNFTButton.js +1 -1
- package/dist/cjs/anyspend/react/components/AnySpendStakeB3.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/AnySpendStakeB3.js +21 -20
- package/dist/cjs/anyspend/react/components/AnySpendTournament.js +7 -4
- package/dist/cjs/anyspend/react/components/AnyspendSignatureMint.d.ts +8 -0
- package/dist/cjs/anyspend/react/components/AnyspendSignatureMint.js +77 -0
- package/dist/cjs/anyspend/react/components/common/ChainTokenIcon.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/common/ChainTokenIcon.js +1 -1
- package/dist/cjs/anyspend/react/components/common/OrderDetails.js +52 -63
- package/dist/cjs/anyspend/react/components/common/OrderHistory.js +6 -6
- package/dist/cjs/anyspend/react/components/common/OrderToken.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/common/OrderToken.js +4 -4
- package/dist/cjs/anyspend/react/components/common/OrderTokenAmount.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/common/OrderTokenAmount.js +2 -2
- package/dist/cjs/anyspend/react/components/common/PanelOnramp.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/common/PanelOnramp.js +9 -9
- package/dist/cjs/anyspend/react/components/common/PanelOnrampPayment.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/common/PanelOnrampPayment.js +15 -14
- package/dist/cjs/anyspend/react/components/common/PaymentMethodIcons.js +1 -1
- package/dist/cjs/anyspend/react/components/common/PaymentOneClick.js +3 -3
- package/dist/cjs/anyspend/react/components/common/PaymentStripeWeb2.js +26 -25
- package/dist/cjs/anyspend/react/components/common/TokenBalance.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/common/TokenBalance.js +2 -2
- package/dist/cjs/anyspend/react/components/common/Warning.d.ts +3 -0
- package/dist/cjs/anyspend/react/components/common/Warning.js +7 -0
- package/dist/cjs/anyspend/react/components/index.d.ts +2 -0
- package/dist/cjs/anyspend/react/components/index.js +5 -1
- package/dist/cjs/anyspend/react/components/modals/EnterRecipientModal.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/modals/EnterRecipientModal.js +6 -6
- package/dist/cjs/anyspend/react/components/webview/WebviewOnrampOrderStatus.js +0 -1
- package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.js +26 -25
- package/dist/cjs/anyspend/react/hooks/index.d.ts +1 -2
- package/dist/cjs/anyspend/react/hooks/index.js +1 -2
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +3 -18
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +6 -6
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +1 -0
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.js +6 -6
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +14 -70
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +2 -2
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +14 -70
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.js +3 -3
- package/dist/cjs/anyspend/react/hooks/useAnyspendQuote.js +3 -3
- package/dist/cjs/anyspend/react/hooks/useAnyspendTokens.js +3 -3
- package/dist/cjs/anyspend/react/hooks/useCoinbaseOnrampOptions.js +2 -2
- package/dist/cjs/anyspend/react/hooks/useGeoOnrampOptions.js +2 -2
- package/dist/cjs/anyspend/react/hooks/useGetGeo.js +1 -1
- package/dist/cjs/anyspend/react/hooks/useSigMint.d.ts +140 -0
- package/dist/cjs/anyspend/react/hooks/useSigMint.js +39 -0
- package/dist/cjs/anyspend/react/hooks/useStripeClientSecret.js +2 -2
- package/dist/cjs/anyspend/react/hooks/useStripeSupport.js +2 -2
- package/dist/cjs/anyspend/react/providers/AnyspendProvider.js +7 -6
- package/dist/cjs/anyspend/services/anyspend.d.ts +9 -40
- package/dist/cjs/anyspend/services/anyspend.js +11 -24
- package/dist/cjs/anyspend/types/custom.js +2 -2
- package/dist/cjs/anyspend/types/globalWallet.js +1 -1
- package/dist/cjs/anyspend/types/index.d.ts +1 -1
- package/dist/cjs/anyspend/types/index.js +1 -1
- package/dist/cjs/anyspend/types/metadata.d.ts +26 -0
- package/dist/cjs/anyspend/types/metadata.js +16 -0
- package/dist/cjs/anyspend/types/nft.d.ts +7 -0
- package/dist/cjs/anyspend/types/nft.js +8 -6
- package/dist/cjs/anyspend/types/onramp.d.ts +3 -0
- package/dist/cjs/anyspend/types/onramp.js +2 -1
- package/dist/cjs/anyspend/types/order.d.ts +40 -200
- package/dist/cjs/anyspend/types/order.js +7 -12
- package/dist/cjs/anyspend/types/req-res/createOrder.d.ts +98 -235
- package/dist/cjs/anyspend/types/req-res/createOrder.js +9 -9
- package/dist/cjs/anyspend/types/req-res/getCoinbaseOnrampOptions.js +5 -5
- package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.d.ts +63 -305
- package/dist/cjs/anyspend/types/req-res/getOrderAndTransactions.js +4 -4
- package/dist/cjs/anyspend/types/req-res/getOrderByCreator.js +2 -2
- package/dist/cjs/anyspend/types/req-res/getOrderHistory.d.ts +49 -235
- package/dist/cjs/anyspend/types/req-res/getOrderHistory.js +1 -1
- package/dist/cjs/anyspend/types/req-res/getQuote.d.ts +37 -0
- package/dist/cjs/anyspend/types/req-res/getQuote.js +14 -9
- package/dist/cjs/anyspend/types/req-res/getTokenList.js +3 -3
- package/dist/cjs/anyspend/types/req-res/index.d.ts +0 -1
- package/dist/cjs/anyspend/types/req-res/index.js +0 -1
- package/dist/cjs/anyspend/types/signature-mint.d.ts +69 -0
- package/dist/cjs/anyspend/types/signature-mint.js +2 -0
- package/dist/cjs/anyspend/types/swap.js +2 -2
- package/dist/cjs/anyspend/types/token.js +2 -2
- package/dist/cjs/anyspend/types/tournament.js +4 -4
- package/dist/cjs/anyspend/types/transaction.js +4 -4
- package/dist/cjs/anyspend/utils/chain.js +16 -16
- package/dist/cjs/anyspend/utils/format.js +2 -6
- package/dist/cjs/anyspend/utils/orderPayload.d.ts +3 -3
- package/dist/cjs/anyspend/utils/orderPayload.js +22 -8
- package/dist/cjs/anyspend/utils/token.js +10 -10
- package/dist/cjs/global-account/app.js +4 -4
- package/dist/cjs/global-account/app.native.js +4 -4
- package/dist/cjs/global-account/bsmnt.js +4 -4
- package/dist/cjs/global-account/bsmnt.native.js +4 -4
- package/dist/cjs/global-account/react/components/B3DynamicModal.js +13 -3
- package/dist/cjs/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
- package/dist/cjs/global-account/react/components/B3Provider/B3Provider.js +17 -16
- package/dist/cjs/global-account/react/components/B3Provider/B3Provider.native.d.ts +2 -2
- package/dist/cjs/global-account/react/components/B3Provider/B3Provider.native.js +4 -4
- package/dist/cjs/global-account/react/components/B3Provider/types.js +1 -1
- package/dist/cjs/global-account/react/components/ManageAccount/ManageAccount.d.ts +1 -1
- package/dist/cjs/global-account/react/components/ManageAccount/ManageAccount.js +5 -5
- package/dist/cjs/global-account/react/components/MintButton/MintButton.d.ts +1 -1
- package/dist/cjs/global-account/react/components/MintButton/MintButton.js +5 -5
- package/dist/cjs/global-account/react/components/RelayKitProviderWrapper.js +2 -2
- package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +1 -1
- package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissions.js +5 -5
- package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +1 -1
- package/dist/cjs/global-account/react/components/RequestPermissions/RequestPermissionsButton.js +2 -2
- package/dist/cjs/global-account/react/components/SignInWithB3/SignIn.d.ts +14 -0
- package/dist/cjs/global-account/react/components/SignInWithB3/SignIn.js +50 -0
- package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +1 -2
- package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3.js +12 -17
- package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +1 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +12 -12
- package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +1 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +1 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/components/AuthButton.js +1 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +1 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/components/WalletRow.js +1 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStep.js +9 -9
- package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +1 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +2 -2
- package/dist/cjs/global-account/react/components/SignInWithB3/utils/signInUtils.js +2 -2
- package/dist/cjs/global-account/react/components/StyleRoot.js +0 -1
- package/dist/cjs/global-account/react/components/Transak/TransakModal.js +4 -4
- package/dist/cjs/global-account/react/components/custom/Button.js +5 -5
- package/dist/cjs/global-account/react/components/custom/Icon.d.ts +7 -0
- package/dist/cjs/global-account/react/components/custom/Icon.js +52 -0
- package/dist/cjs/global-account/react/components/custom/ManageAccountButton.d.ts +4 -0
- package/dist/cjs/global-account/react/components/custom/ManageAccountButton.js +20 -0
- package/dist/cjs/global-account/react/components/custom/StaggeredFadeLoader.js +3 -3
- package/dist/cjs/global-account/react/components/index.d.ts +4 -4
- package/dist/cjs/global-account/react/components/magicui/AnimatedLottie.js +1 -1
- package/dist/cjs/global-account/react/components/ui/Loading.js +2 -2
- package/dist/cjs/global-account/react/components/ui/ShinyButton.d.ts +1 -1
- package/dist/cjs/global-account/react/components/ui/ShinyButton.js +3 -3
- package/dist/cjs/global-account/react/components/ui/TabSystem.js +1 -1
- package/dist/cjs/global-account/react/components/ui/Tabs.d.ts +1 -1
- package/dist/cjs/global-account/react/components/ui/Tabs.js +1 -1
- package/dist/cjs/global-account/react/components/ui/badge.js +4 -4
- package/dist/cjs/global-account/react/components/ui/button.js +5 -5
- package/dist/cjs/global-account/react/components/ui/command.d.ts +1 -1
- package/dist/cjs/global-account/react/components/ui/dialog.d.ts +1 -1
- package/dist/cjs/global-account/react/components/ui/drawer.d.ts +1 -1
- package/dist/cjs/global-account/react/components/ui/glare-card-rounded.js +12 -12
- package/dist/cjs/global-account/react/components/ui/glare-card.js +11 -11
- package/dist/cjs/global-account/react/components/ui/input.js +1 -1
- package/dist/cjs/global-account/react/components/ui/text-loop.d.ts +1 -1
- package/dist/cjs/global-account/react/components/ui/text-loop.js +2 -2
- package/dist/cjs/global-account/react/components/ui/text-shimmer.js +2 -2
- package/dist/cjs/global-account/react/components/ui/tooltip.js +1 -1
- package/dist/cjs/global-account/react/hooks/useAccountAssets.js +4 -4
- package/dist/cjs/global-account/react/hooks/useAccountWallet.js +8 -8
- package/dist/cjs/global-account/react/hooks/useAddTWSessionKey.d.ts +2 -2
- package/dist/cjs/global-account/react/hooks/useAddTWSessionKey.js +6 -6
- package/dist/cjs/global-account/react/hooks/useAuthentication.js +3 -3
- package/dist/cjs/global-account/react/hooks/useB3BalanceFromAddresses.js +7 -7
- package/dist/cjs/global-account/react/hooks/useB3EnsName.d.ts +8 -4
- package/dist/cjs/global-account/react/hooks/useB3EnsName.js +32 -23
- package/dist/cjs/global-account/react/hooks/useBestTransactionPath.d.ts +1 -1
- package/dist/cjs/global-account/react/hooks/useBestTransactionPath.js +10 -10
- package/dist/cjs/global-account/react/hooks/useBsmntProfile.js +1 -1
- package/dist/cjs/global-account/react/hooks/useChainSwitchWithAction.js +3 -3
- package/dist/cjs/global-account/react/hooks/useClaim.js +4 -4
- package/dist/cjs/global-account/react/hooks/useConnect.js +3 -3
- package/dist/cjs/global-account/react/hooks/useExchangeRate.js +3 -3
- package/dist/cjs/global-account/react/hooks/useGetAllTWSigners.js +7 -7
- package/dist/cjs/global-account/react/hooks/useGetGeo.js +1 -1
- package/dist/cjs/global-account/react/hooks/useHandleConnectWithPrivy.js +2 -2
- package/dist/cjs/global-account/react/hooks/useNativeBalance.js +6 -6
- package/dist/cjs/global-account/react/hooks/useOnchainName.js +10 -10
- package/dist/cjs/global-account/react/hooks/useOneBalance.js +2 -2
- package/dist/cjs/global-account/react/hooks/useRemoveSessionKey.d.ts +1 -1
- package/dist/cjs/global-account/react/hooks/useRemoveSessionKey.js +3 -3
- package/dist/cjs/global-account/react/hooks/useRouter.js +6 -6
- package/dist/cjs/global-account/react/hooks/useSiwe.js +4 -4
- package/dist/cjs/global-account/react/hooks/useTokenBalance.js +6 -6
- package/dist/cjs/global-account/react/hooks/useTokenBalancesByChain.d.ts +1 -1
- package/dist/cjs/global-account/react/hooks/useTokenBalancesByChain.js +9 -9
- package/dist/cjs/global-account/react/hooks/useTokenData.js +3 -3
- package/dist/cjs/global-account/react/hooks/useTokenFromUrl.js +14 -14
- package/dist/cjs/global-account/react/hooks/useTokenPrice.d.ts +1 -1
- package/dist/cjs/global-account/react/hooks/useTokenPrice.js +6 -6
- package/dist/cjs/global-account/react/hooks/useTokenPriceWithFallback.d.ts +1 -1
- package/dist/cjs/global-account/react/hooks/useTokenPriceWithFallback.js +7 -7
- package/dist/cjs/global-account/react/hooks/useTokensFromAddress.d.ts +1 -1
- package/dist/cjs/global-account/react/hooks/useTokensFromAddress.js +2 -2
- package/dist/cjs/global-account/react/hooks/useURLParams.js +1 -1
- package/dist/cjs/global-account/react/stores/index.d.ts +1 -1
- package/dist/cjs/global-account/react/stores/useAuthStore.js +3 -3
- package/dist/cjs/global-account/react/stores/useModalStore.d.ts +18 -1
- package/dist/cjs/global-account/react/stores/useModalStore.js +3 -3
- package/dist/cjs/global-account/server.js +3 -3
- package/dist/cjs/global-account/types/chain-networks.js +8 -8
- package/dist/cjs/global-account/types/feature-flags.js +1 -1
- package/dist/cjs/index.d.ts +0 -0
- package/dist/cjs/index.js +2 -0
- package/dist/cjs/shared/constants/chains/b3Chain.js +35 -35
- package/dist/cjs/shared/constants/chains/chainPlatformMap.js +1 -1
- package/dist/cjs/shared/constants/chains/supported.js +4 -1
- package/dist/cjs/shared/constants/index.d.ts +1 -0
- package/dist/cjs/shared/constants/index.js +3 -2
- package/dist/cjs/shared/react/hooks/index.d.ts +1 -0
- package/dist/cjs/shared/react/hooks/index.js +17 -0
- package/dist/cjs/shared/react/hooks/useNavigation.d.ts +17 -0
- package/dist/cjs/shared/react/hooks/useNavigation.js +57 -0
- package/dist/cjs/shared/react/index.d.ts +1 -0
- package/dist/cjs/shared/react/index.js +17 -0
- package/dist/cjs/shared/thirdweb/generated/sdk.gen.d.ts +2 -2
- package/dist/cjs/shared/thirdweb/generated/sdk.gen.js +1 -1
- package/dist/cjs/shared/thirdweb/initiateClient.js +2 -2
- package/dist/cjs/shared/thirdweb/openapi-ts.config.js +1 -1
- package/dist/cjs/shared/utils/b3Ens.js +4 -4
- package/dist/cjs/shared/utils/chain-transformers.js +9 -9
- package/dist/cjs/shared/utils/fetchBalances.js +4 -4
- package/dist/cjs/shared/utils/formatUsername.d.ts +1 -0
- package/dist/cjs/shared/utils/formatUsername.js +8 -0
- package/dist/cjs/shared/utils/index.d.ts +3 -1
- package/dist/cjs/shared/utils/index.js +4 -6
- package/dist/cjs/shared/utils/insights.js +28 -28
- package/dist/cjs/shared/utils/ipfs.js +1 -1
- package/dist/cjs/shared/utils/number.js +3 -3
- package/dist/cjs/shared/utils/simplehash.js +22 -22
- package/dist/cjs/shared/utils/thirdweb-insights.js +15 -15
- package/dist/cjs/shared/utils/truncateAddress.d.ts +6 -0
- package/dist/cjs/shared/utils/truncateAddress.js +16 -0
- package/dist/esm/anyspend/abis/abi-usdc-base.js +97 -97
- package/dist/esm/anyspend/abis/erc20-staking.js +51 -51
- package/dist/esm/anyspend/abis/signature-minting.d.ts +79 -0
- package/dist/esm/anyspend/abis/signature-minting.js +42 -0
- package/dist/esm/anyspend/constants/index.js +13 -10
- package/dist/esm/anyspend/index.d.ts +4 -2
- package/dist/esm/anyspend/index.js +4 -4
- package/dist/esm/anyspend/react/components/AnySpend.d.ts +1 -1
- package/dist/esm/anyspend/react/components/AnySpend.js +23 -22
- package/dist/esm/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
- package/dist/esm/anyspend/react/components/AnySpendBuySpin.js +41 -39
- package/dist/esm/anyspend/react/components/AnySpendCustom.d.ts +4 -4
- package/dist/esm/anyspend/react/components/AnySpendCustom.js +138 -81
- package/dist/esm/anyspend/react/components/AnySpendNFT.d.ts +3 -2
- package/dist/esm/anyspend/react/components/AnySpendNFT.js +7 -5
- package/dist/esm/anyspend/react/components/AnySpendNFTButton.js +1 -1
- package/dist/esm/anyspend/react/components/AnySpendStakeB3.d.ts +1 -1
- package/dist/esm/anyspend/react/components/AnySpendStakeB3.js +22 -21
- package/dist/esm/anyspend/react/components/AnySpendTournament.js +7 -4
- package/dist/esm/anyspend/react/components/AnyspendSignatureMint.d.ts +8 -0
- package/dist/esm/anyspend/react/components/AnyspendSignatureMint.js +71 -0
- package/dist/esm/anyspend/react/components/common/ChainTokenIcon.d.ts +1 -1
- package/dist/esm/anyspend/react/components/common/ChainTokenIcon.js +1 -1
- package/dist/esm/anyspend/react/components/common/OrderDetails.js +53 -64
- package/dist/esm/anyspend/react/components/common/OrderHistory.js +1 -1
- package/dist/esm/anyspend/react/components/common/OrderToken.d.ts +1 -1
- package/dist/esm/anyspend/react/components/common/OrderToken.js +4 -4
- package/dist/esm/anyspend/react/components/common/OrderTokenAmount.d.ts +1 -1
- package/dist/esm/anyspend/react/components/common/OrderTokenAmount.js +2 -2
- package/dist/esm/anyspend/react/components/common/PanelOnramp.d.ts +1 -1
- package/dist/esm/anyspend/react/components/common/PanelOnramp.js +3 -3
- package/dist/esm/anyspend/react/components/common/PanelOnrampPayment.d.ts +1 -1
- package/dist/esm/anyspend/react/components/common/PanelOnrampPayment.js +9 -8
- package/dist/esm/anyspend/react/components/common/PaymentMethodIcons.js +1 -1
- package/dist/esm/anyspend/react/components/common/PaymentOneClick.js +3 -3
- package/dist/esm/anyspend/react/components/common/PaymentStripeWeb2.js +14 -13
- package/dist/esm/anyspend/react/components/common/TokenBalance.d.ts +1 -1
- package/dist/esm/anyspend/react/components/common/TokenBalance.js +2 -2
- package/dist/esm/anyspend/react/components/common/Warning.d.ts +3 -0
- package/dist/esm/anyspend/react/components/common/Warning.js +4 -0
- package/dist/esm/anyspend/react/components/index.d.ts +2 -0
- package/dist/esm/anyspend/react/components/index.js +2 -0
- package/dist/esm/anyspend/react/components/modals/EnterRecipientModal.d.ts +1 -1
- package/dist/esm/anyspend/react/components/modals/EnterRecipientModal.js +2 -2
- package/dist/esm/anyspend/react/components/webview/WebviewOnrampOrderStatus.js +0 -1
- package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
- package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.js +16 -15
- package/dist/esm/anyspend/react/hooks/index.d.ts +1 -2
- package/dist/esm/anyspend/react/hooks/index.js +1 -2
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +3 -18
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +6 -6
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +1 -0
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.js +7 -7
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +14 -70
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +2 -2
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +14 -70
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.js +3 -3
- package/dist/esm/anyspend/react/hooks/useAnyspendQuote.js +3 -3
- package/dist/esm/anyspend/react/hooks/useAnyspendTokens.js +3 -3
- package/dist/esm/anyspend/react/hooks/useCoinbaseOnrampOptions.js +2 -2
- package/dist/esm/anyspend/react/hooks/useGeoOnrampOptions.js +2 -2
- package/dist/esm/anyspend/react/hooks/useGetGeo.js +1 -1
- package/dist/esm/anyspend/react/hooks/useSigMint.d.ts +140 -0
- package/dist/esm/anyspend/react/hooks/useSigMint.js +33 -0
- package/dist/esm/anyspend/react/hooks/useStripeClientSecret.js +2 -2
- package/dist/esm/anyspend/react/hooks/useStripeSupport.js +2 -2
- package/dist/esm/anyspend/react/providers/AnyspendProvider.js +5 -4
- package/dist/esm/anyspend/services/anyspend.d.ts +9 -40
- package/dist/esm/anyspend/services/anyspend.js +12 -25
- package/dist/esm/anyspend/types/custom.js +2 -2
- package/dist/esm/anyspend/types/globalWallet.js +1 -1
- package/dist/esm/anyspend/types/index.d.ts +1 -1
- package/dist/esm/anyspend/types/index.js +1 -1
- package/dist/esm/anyspend/types/metadata.d.ts +26 -0
- package/dist/esm/anyspend/types/metadata.js +11 -0
- package/dist/esm/anyspend/types/nft.d.ts +7 -0
- package/dist/esm/anyspend/types/nft.js +8 -6
- package/dist/esm/anyspend/types/onramp.d.ts +3 -0
- package/dist/esm/anyspend/types/onramp.js +2 -1
- package/dist/esm/anyspend/types/order.d.ts +40 -200
- package/dist/esm/anyspend/types/order.js +7 -12
- package/dist/esm/anyspend/types/req-res/createOrder.d.ts +98 -235
- package/dist/esm/anyspend/types/req-res/createOrder.js +9 -9
- package/dist/esm/anyspend/types/req-res/getCoinbaseOnrampOptions.js +5 -5
- package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.d.ts +63 -305
- package/dist/esm/anyspend/types/req-res/getOrderAndTransactions.js +4 -4
- package/dist/esm/anyspend/types/req-res/getOrderByCreator.js +2 -2
- package/dist/esm/anyspend/types/req-res/getOrderHistory.d.ts +49 -235
- package/dist/esm/anyspend/types/req-res/getOrderHistory.js +1 -1
- package/dist/esm/anyspend/types/req-res/getQuote.d.ts +37 -0
- package/dist/esm/anyspend/types/req-res/getQuote.js +14 -9
- package/dist/esm/anyspend/types/req-res/getTokenList.js +3 -3
- package/dist/esm/anyspend/types/req-res/index.d.ts +0 -1
- package/dist/esm/anyspend/types/req-res/index.js +0 -1
- package/dist/esm/anyspend/types/signature-mint.d.ts +69 -0
- package/dist/esm/anyspend/types/signature-mint.js +1 -0
- package/dist/esm/anyspend/types/swap.js +2 -2
- package/dist/esm/anyspend/types/token.js +2 -2
- package/dist/esm/anyspend/types/tournament.js +4 -4
- package/dist/esm/anyspend/types/transaction.js +4 -4
- package/dist/esm/anyspend/utils/chain.js +18 -18
- package/dist/esm/anyspend/utils/format.js +2 -6
- package/dist/esm/anyspend/utils/orderPayload.d.ts +3 -3
- package/dist/esm/anyspend/utils/orderPayload.js +23 -9
- package/dist/esm/anyspend/utils/token.js +10 -10
- package/dist/esm/global-account/app.js +4 -4
- package/dist/esm/global-account/app.native.js +4 -4
- package/dist/esm/global-account/bsmnt.js +4 -4
- package/dist/esm/global-account/bsmnt.native.js +4 -4
- package/dist/esm/global-account/react/components/B3DynamicModal.js +14 -4
- package/dist/esm/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
- package/dist/esm/global-account/react/components/B3Provider/B3Provider.js +8 -7
- package/dist/esm/global-account/react/components/B3Provider/B3Provider.native.d.ts +2 -2
- package/dist/esm/global-account/react/components/B3Provider/B3Provider.native.js +4 -4
- package/dist/esm/global-account/react/components/B3Provider/types.js +1 -1
- package/dist/esm/global-account/react/components/ManageAccount/ManageAccount.d.ts +1 -1
- package/dist/esm/global-account/react/components/ManageAccount/ManageAccount.js +6 -6
- package/dist/esm/global-account/react/components/MintButton/MintButton.d.ts +1 -1
- package/dist/esm/global-account/react/components/MintButton/MintButton.js +5 -5
- package/dist/esm/global-account/react/components/RelayKitProviderWrapper.js +2 -2
- package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +1 -1
- package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissions.js +6 -6
- package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +1 -1
- package/dist/esm/global-account/react/components/RequestPermissions/RequestPermissionsButton.js +2 -2
- package/dist/esm/global-account/react/components/SignInWithB3/SignIn.d.ts +14 -0
- package/dist/esm/global-account/react/components/SignInWithB3/SignIn.js +44 -0
- package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +1 -2
- package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3.js +8 -13
- package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +1 -1
- package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Flow.js +13 -13
- package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3Privy.js +2 -2
- package/dist/esm/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +1 -1
- package/dist/esm/global-account/react/components/SignInWithB3/components/AuthButton.js +1 -1
- package/dist/esm/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +1 -1
- package/dist/esm/global-account/react/components/SignInWithB3/components/WalletRow.js +1 -1
- package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStep.js +9 -9
- package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +1 -1
- package/dist/esm/global-account/react/components/SignInWithB3/steps/LoginStepCustom.js +3 -3
- package/dist/esm/global-account/react/components/SignInWithB3/utils/signInUtils.js +2 -2
- package/dist/esm/global-account/react/components/StyleRoot.js +0 -1
- package/dist/esm/global-account/react/components/Transak/TransakModal.js +4 -4
- package/dist/esm/global-account/react/components/custom/Button.js +5 -5
- package/dist/esm/global-account/react/components/custom/Icon.d.ts +7 -0
- package/dist/esm/global-account/react/components/custom/Icon.js +50 -0
- package/dist/esm/global-account/react/components/custom/ManageAccountButton.d.ts +4 -0
- package/dist/esm/global-account/react/components/custom/ManageAccountButton.js +17 -0
- package/dist/esm/global-account/react/components/custom/StaggeredFadeLoader.js +3 -3
- package/dist/esm/global-account/react/components/custom/WalletConnectorIcon.js +1 -1
- package/dist/esm/global-account/react/components/index.d.ts +4 -4
- package/dist/esm/global-account/react/components/index.js +4 -4
- package/dist/esm/global-account/react/components/magicui/AnimatedLottie.js +1 -1
- package/dist/esm/global-account/react/components/ui/Loading.js +2 -2
- package/dist/esm/global-account/react/components/ui/ShinyButton.d.ts +1 -1
- package/dist/esm/global-account/react/components/ui/ShinyButton.js +3 -3
- package/dist/esm/global-account/react/components/ui/TabSystem.js +1 -1
- package/dist/esm/global-account/react/components/ui/Tabs.d.ts +1 -1
- package/dist/esm/global-account/react/components/ui/Tabs.js +1 -1
- package/dist/esm/global-account/react/components/ui/badge.js +4 -4
- package/dist/esm/global-account/react/components/ui/button.js +5 -5
- package/dist/esm/global-account/react/components/ui/command.d.ts +1 -1
- package/dist/esm/global-account/react/components/ui/command.js +1 -1
- package/dist/esm/global-account/react/components/ui/dialog.d.ts +1 -1
- package/dist/esm/global-account/react/components/ui/dialog.js +1 -1
- package/dist/esm/global-account/react/components/ui/drawer.d.ts +1 -1
- package/dist/esm/global-account/react/components/ui/drawer.js +1 -1
- package/dist/esm/global-account/react/components/ui/glare-card-rounded.js +12 -12
- package/dist/esm/global-account/react/components/ui/glare-card.js +11 -11
- package/dist/esm/global-account/react/components/ui/input.js +1 -1
- package/dist/esm/global-account/react/components/ui/text-loop.d.ts +1 -1
- package/dist/esm/global-account/react/components/ui/text-loop.js +2 -2
- package/dist/esm/global-account/react/components/ui/text-shimmer.js +2 -2
- package/dist/esm/global-account/react/components/ui/tooltip.js +1 -1
- package/dist/esm/global-account/react/hooks/useAccountAssets.js +4 -4
- package/dist/esm/global-account/react/hooks/useAccountWallet.js +8 -8
- package/dist/esm/global-account/react/hooks/useAddTWSessionKey.d.ts +2 -2
- package/dist/esm/global-account/react/hooks/useAddTWSessionKey.js +6 -6
- package/dist/esm/global-account/react/hooks/useAuthentication.js +3 -3
- package/dist/esm/global-account/react/hooks/useB3BalanceFromAddresses.js +7 -7
- package/dist/esm/global-account/react/hooks/useB3EnsName.d.ts +8 -4
- package/dist/esm/global-account/react/hooks/useB3EnsName.js +34 -22
- package/dist/esm/global-account/react/hooks/useBestTransactionPath.d.ts +1 -1
- package/dist/esm/global-account/react/hooks/useBestTransactionPath.js +10 -10
- package/dist/esm/global-account/react/hooks/useBsmntProfile.js +1 -1
- package/dist/esm/global-account/react/hooks/useChainSwitchWithAction.js +3 -3
- package/dist/esm/global-account/react/hooks/useClaim.js +4 -4
- package/dist/esm/global-account/react/hooks/useConnect.js +3 -3
- package/dist/esm/global-account/react/hooks/useExchangeRate.js +3 -3
- package/dist/esm/global-account/react/hooks/useGetAllTWSigners.js +7 -7
- package/dist/esm/global-account/react/hooks/useGetGeo.js +1 -1
- package/dist/esm/global-account/react/hooks/useHandleConnectWithPrivy.js +2 -2
- package/dist/esm/global-account/react/hooks/useNativeBalance.js +6 -6
- package/dist/esm/global-account/react/hooks/useOnchainName.js +10 -10
- package/dist/esm/global-account/react/hooks/useOneBalance.js +2 -2
- package/dist/esm/global-account/react/hooks/useRemoveSessionKey.d.ts +1 -1
- package/dist/esm/global-account/react/hooks/useRemoveSessionKey.js +3 -3
- package/dist/esm/global-account/react/hooks/useRouter.js +6 -6
- package/dist/esm/global-account/react/hooks/useSiwe.js +4 -4
- package/dist/esm/global-account/react/hooks/useTokenBalance.js +6 -6
- package/dist/esm/global-account/react/hooks/useTokenBalancesByChain.d.ts +1 -1
- package/dist/esm/global-account/react/hooks/useTokenBalancesByChain.js +9 -9
- package/dist/esm/global-account/react/hooks/useTokenData.js +3 -3
- package/dist/esm/global-account/react/hooks/useTokenFromUrl.js +13 -13
- package/dist/esm/global-account/react/hooks/useTokenPrice.d.ts +1 -1
- package/dist/esm/global-account/react/hooks/useTokenPrice.js +6 -6
- package/dist/esm/global-account/react/hooks/useTokenPriceWithFallback.d.ts +1 -1
- package/dist/esm/global-account/react/hooks/useTokenPriceWithFallback.js +7 -7
- package/dist/esm/global-account/react/hooks/useTokensFromAddress.d.ts +1 -1
- package/dist/esm/global-account/react/hooks/useTokensFromAddress.js +2 -2
- package/dist/esm/global-account/react/hooks/useURLParams.js +1 -1
- package/dist/esm/global-account/react/stores/index.d.ts +1 -1
- package/dist/esm/global-account/react/stores/useAuthStore.js +3 -3
- package/dist/esm/global-account/react/stores/useModalStore.d.ts +18 -1
- package/dist/esm/global-account/react/stores/useModalStore.js +3 -3
- package/dist/esm/global-account/server.js +3 -3
- package/dist/esm/global-account/types/chain-networks.js +8 -8
- package/dist/esm/global-account/types/feature-flags.js +1 -1
- package/dist/esm/index.d.ts +0 -0
- package/dist/esm/index.js +2 -0
- package/dist/esm/shared/constants/chains/b3Chain.js +35 -35
- package/dist/esm/shared/constants/chains/chainPlatformMap.js +1 -1
- package/dist/esm/shared/constants/chains/supported.js +4 -1
- package/dist/esm/shared/constants/index.d.ts +1 -0
- package/dist/esm/shared/constants/index.js +2 -1
- package/dist/esm/shared/react/hooks/index.d.ts +1 -0
- package/dist/esm/shared/react/hooks/index.js +1 -0
- package/dist/esm/shared/react/hooks/useNavigation.d.ts +17 -0
- package/dist/esm/shared/react/hooks/useNavigation.js +52 -0
- package/dist/esm/shared/react/index.d.ts +1 -0
- package/dist/esm/shared/react/index.js +1 -0
- package/dist/esm/shared/thirdweb/generated/sdk.gen.d.ts +2 -2
- package/dist/esm/shared/thirdweb/generated/sdk.gen.js +1 -1
- package/dist/esm/shared/thirdweb/initiateClient.js +2 -2
- package/dist/esm/shared/thirdweb/openapi-ts.config.js +1 -1
- package/dist/esm/shared/utils/b3Ens.js +4 -4
- package/dist/esm/shared/utils/chain-transformers.js +9 -9
- package/dist/esm/shared/utils/fetchBalances.js +4 -4
- package/dist/esm/shared/utils/formatUsername.d.ts +1 -0
- package/dist/esm/shared/utils/formatUsername.js +5 -0
- package/dist/esm/shared/utils/index.d.ts +3 -1
- package/dist/esm/shared/utils/index.js +4 -5
- package/dist/esm/shared/utils/insights.js +28 -28
- package/dist/esm/shared/utils/ipfs.js +1 -1
- package/dist/esm/shared/utils/number.js +3 -3
- package/dist/esm/shared/utils/simplehash.js +23 -23
- package/dist/esm/shared/utils/thirdweb-insights.js +15 -15
- package/dist/esm/shared/utils/truncateAddress.d.ts +6 -0
- package/dist/esm/shared/utils/truncateAddress.js +12 -0
- package/dist/styles/index.css +1 -1
- package/dist/types/anyspend/abis/signature-minting.d.ts +79 -0
- package/dist/types/anyspend/index.d.ts +4 -2
- package/dist/types/anyspend/react/components/AnySpend.d.ts +1 -1
- package/dist/types/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
- package/dist/types/anyspend/react/components/AnySpendCustom.d.ts +4 -4
- package/dist/types/anyspend/react/components/AnySpendNFT.d.ts +3 -2
- package/dist/types/anyspend/react/components/AnySpendStakeB3.d.ts +1 -1
- package/dist/types/anyspend/react/components/AnyspendSignatureMint.d.ts +8 -0
- package/dist/types/anyspend/react/components/common/ChainTokenIcon.d.ts +1 -1
- package/dist/types/anyspend/react/components/common/OrderToken.d.ts +1 -1
- package/dist/types/anyspend/react/components/common/OrderTokenAmount.d.ts +1 -1
- package/dist/types/anyspend/react/components/common/PanelOnramp.d.ts +1 -1
- package/dist/types/anyspend/react/components/common/PanelOnrampPayment.d.ts +1 -1
- package/dist/types/anyspend/react/components/common/TokenBalance.d.ts +1 -1
- package/dist/types/anyspend/react/components/common/Warning.d.ts +3 -0
- package/dist/types/anyspend/react/components/index.d.ts +2 -0
- package/dist/types/anyspend/react/components/modals/EnterRecipientModal.d.ts +1 -1
- package/dist/types/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
- package/dist/types/anyspend/react/hooks/index.d.ts +1 -2
- package/dist/types/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +3 -18
- package/dist/types/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +1 -0
- package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +14 -70
- package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +14 -70
- package/dist/types/anyspend/react/hooks/useSigMint.d.ts +140 -0
- package/dist/types/anyspend/services/anyspend.d.ts +9 -40
- package/dist/types/anyspend/types/index.d.ts +1 -1
- package/dist/types/anyspend/types/metadata.d.ts +26 -0
- package/dist/types/anyspend/types/nft.d.ts +7 -0
- package/dist/types/anyspend/types/onramp.d.ts +3 -0
- package/dist/types/anyspend/types/order.d.ts +40 -200
- package/dist/types/anyspend/types/req-res/createOrder.d.ts +98 -235
- package/dist/types/anyspend/types/req-res/getOrderAndTransactions.d.ts +63 -305
- package/dist/types/anyspend/types/req-res/getOrderHistory.d.ts +49 -235
- package/dist/types/anyspend/types/req-res/getQuote.d.ts +37 -0
- package/dist/types/anyspend/types/req-res/index.d.ts +0 -1
- package/dist/types/anyspend/types/signature-mint.d.ts +69 -0
- package/dist/types/anyspend/utils/orderPayload.d.ts +3 -3
- package/dist/types/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
- package/dist/types/global-account/react/components/B3Provider/B3Provider.native.d.ts +2 -2
- package/dist/types/global-account/react/components/ManageAccount/ManageAccount.d.ts +1 -1
- package/dist/types/global-account/react/components/MintButton/MintButton.d.ts +1 -1
- package/dist/types/global-account/react/components/RequestPermissions/RequestPermissions.d.ts +1 -1
- package/dist/types/global-account/react/components/RequestPermissions/RequestPermissionsButton.d.ts +1 -1
- package/dist/types/global-account/react/components/SignInWithB3/SignIn.d.ts +14 -0
- package/dist/types/global-account/react/components/SignInWithB3/SignInWithB3.d.ts +1 -2
- package/dist/types/global-account/react/components/SignInWithB3/SignInWithB3Flow.d.ts +1 -1
- package/dist/types/global-account/react/components/SignInWithB3/components/AuthButton.d.ts +1 -1
- package/dist/types/global-account/react/components/SignInWithB3/components/WalletRow.d.ts +1 -1
- package/dist/types/global-account/react/components/SignInWithB3/steps/LoginStepCustom.d.ts +1 -1
- package/dist/types/global-account/react/components/custom/Icon.d.ts +7 -0
- package/dist/types/global-account/react/components/custom/ManageAccountButton.d.ts +4 -0
- package/dist/types/global-account/react/components/index.d.ts +4 -4
- package/dist/types/global-account/react/components/ui/ShinyButton.d.ts +1 -1
- package/dist/types/global-account/react/components/ui/Tabs.d.ts +1 -1
- package/dist/types/global-account/react/components/ui/command.d.ts +1 -1
- package/dist/types/global-account/react/components/ui/dialog.d.ts +1 -1
- package/dist/types/global-account/react/components/ui/drawer.d.ts +1 -1
- package/dist/types/global-account/react/components/ui/text-loop.d.ts +1 -1
- package/dist/types/global-account/react/hooks/useAddTWSessionKey.d.ts +2 -2
- package/dist/types/global-account/react/hooks/useB3EnsName.d.ts +8 -4
- package/dist/types/global-account/react/hooks/useBestTransactionPath.d.ts +1 -1
- package/dist/types/global-account/react/hooks/useRemoveSessionKey.d.ts +1 -1
- package/dist/types/global-account/react/hooks/useTokenBalancesByChain.d.ts +1 -1
- package/dist/types/global-account/react/hooks/useTokenPrice.d.ts +1 -1
- package/dist/types/global-account/react/hooks/useTokenPriceWithFallback.d.ts +1 -1
- package/dist/types/global-account/react/hooks/useTokensFromAddress.d.ts +1 -1
- package/dist/types/global-account/react/stores/index.d.ts +1 -1
- package/dist/types/global-account/react/stores/useModalStore.d.ts +18 -1
- package/dist/types/index.d.ts +0 -0
- package/dist/types/shared/constants/index.d.ts +1 -0
- package/dist/types/shared/react/hooks/index.d.ts +1 -0
- package/dist/types/shared/react/hooks/useNavigation.d.ts +17 -0
- package/dist/types/shared/react/index.d.ts +1 -0
- package/dist/types/shared/thirdweb/generated/sdk.gen.d.ts +2 -2
- package/dist/types/shared/utils/formatUsername.d.ts +1 -0
- package/dist/types/shared/utils/index.d.ts +3 -1
- package/dist/types/shared/utils/truncateAddress.d.ts +6 -0
- package/package.json +24 -4
- package/src/anyspend/README.md +12 -0
- package/src/anyspend/abis/abi-usdc-base.ts +97 -97
- package/src/anyspend/abis/erc20-staking.ts +51 -51
- package/src/anyspend/abis/signature-minting.ts +43 -0
- package/src/anyspend/constants/index.ts +13 -11
- package/src/anyspend/index.ts +4 -6
- package/src/anyspend/react/components/AnySpend.tsx +44 -39
- package/src/anyspend/react/components/AnySpendBuySpin.tsx +46 -41
- package/src/anyspend/react/components/AnySpendCustom.tsx +214 -89
- package/src/anyspend/react/components/AnySpendNFT.tsx +11 -6
- package/src/anyspend/react/components/AnySpendNFTButton.tsx +1 -1
- package/src/anyspend/react/components/AnySpendStakeB3.tsx +23 -22
- package/src/anyspend/react/components/AnySpendTournament.tsx +7 -4
- package/src/anyspend/react/components/AnyspendSignatureMint.tsx +147 -0
- package/src/anyspend/react/components/common/ChainTokenIcon.tsx +1 -1
- package/src/anyspend/react/components/common/OrderDetails.tsx +75 -77
- package/src/anyspend/react/components/common/OrderHistory.tsx +1 -1
- package/src/anyspend/react/components/common/OrderHistoryItem.tsx +3 -3
- package/src/anyspend/react/components/common/OrderToken.tsx +5 -5
- package/src/anyspend/react/components/common/OrderTokenAmount.tsx +4 -4
- package/src/anyspend/react/components/common/PanelOnramp.tsx +4 -4
- package/src/anyspend/react/components/common/PanelOnrampPayment.tsx +9 -17
- package/src/anyspend/react/components/common/PaymentMethodIcons.tsx +1 -1
- package/src/anyspend/react/components/common/PaymentOneClick.tsx +3 -3
- package/src/anyspend/react/components/common/PaymentStripeWeb2.tsx +16 -15
- package/src/anyspend/react/components/common/TokenBalance.tsx +2 -2
- package/src/anyspend/react/components/common/Warning.tsx +7 -0
- package/src/anyspend/react/components/index.ts +2 -0
- package/src/anyspend/react/components/modals/EnterRecipientModal.tsx +2 -2
- package/src/anyspend/react/components/webview/WebviewOnrampOrderStatus.tsx +0 -1
- package/src/anyspend/react/components/webview/WebviewOnrampPayment.tsx +18 -20
- package/src/anyspend/react/hooks/index.ts +1 -2
- package/src/anyspend/react/hooks/useAnyspendCreateOnrampOrder.ts +10 -20
- package/src/anyspend/react/hooks/useAnyspendCreateOrder.ts +9 -8
- package/src/anyspend/react/hooks/useAnyspendOrderAndTransactions.ts +3 -3
- package/src/anyspend/react/hooks/useAnyspendOrderHistory.ts +4 -4
- package/src/anyspend/react/hooks/useAnyspendQuote.ts +6 -6
- package/src/anyspend/react/hooks/useAnyspendTokens.ts +4 -4
- package/src/anyspend/react/hooks/useCoinbaseOnrampOptions.ts +3 -3
- package/src/anyspend/react/hooks/useGeoOnrampOptions.ts +3 -3
- package/src/anyspend/react/hooks/useGetGeo.ts +1 -1
- package/src/anyspend/react/hooks/useSigMint.tsx +55 -0
- package/src/anyspend/react/hooks/useStripeClientSecret.ts +3 -3
- package/src/anyspend/react/hooks/useStripeSupport.ts +3 -3
- package/src/anyspend/react/providers/AnyspendProvider.tsx +9 -4
- package/src/anyspend/services/anyspend.ts +21 -39
- package/src/anyspend/types/chain.ts +1 -1
- package/src/anyspend/types/custom.ts +2 -2
- package/src/anyspend/types/globalWallet.ts +1 -1
- package/src/anyspend/types/index.ts +1 -1
- package/src/anyspend/types/metadata.ts +41 -0
- package/src/anyspend/types/nft.ts +10 -7
- package/src/anyspend/types/onramp.ts +3 -2
- package/src/anyspend/types/order.ts +9 -16
- package/src/anyspend/types/relay.ts +1 -1
- package/src/anyspend/types/req-res/createOrder.ts +9 -9
- package/src/anyspend/types/req-res/getCoinbaseOnrampOptions.ts +5 -5
- package/src/anyspend/types/req-res/getOrderAndTransactions.ts +4 -4
- package/src/anyspend/types/req-res/getOrderByCreator.ts +2 -2
- package/src/anyspend/types/req-res/getOrderHistory.ts +1 -1
- package/src/anyspend/types/req-res/getQuote.ts +14 -9
- package/src/anyspend/types/req-res/getTokenList.ts +4 -4
- package/src/anyspend/types/req-res/index.ts +0 -1
- package/src/anyspend/types/signature-mint.ts +77 -0
- package/src/anyspend/types/swap.ts +2 -2
- package/src/anyspend/types/token.ts +2 -2
- package/src/anyspend/types/tournament.ts +4 -4
- package/src/anyspend/types/transaction.ts +4 -4
- package/src/anyspend/utils/chain.ts +25 -25
- package/src/anyspend/utils/format.ts +2 -7
- package/src/anyspend/utils/orderPayload.ts +21 -9
- package/src/anyspend/utils/token.ts +10 -10
- package/src/global-account/app.native.ts +5 -5
- package/src/global-account/app.ts +5 -5
- package/src/global-account/bsmnt.native.ts +5 -5
- package/src/global-account/bsmnt.ts +5 -5
- package/src/global-account/react/components/B3DynamicModal.tsx +15 -6
- package/src/global-account/react/components/B3Provider/B3Provider.native.tsx +4 -4
- package/src/global-account/react/components/B3Provider/B3Provider.tsx +22 -20
- package/src/global-account/react/components/B3Provider/types.ts +1 -1
- package/src/global-account/react/components/ManageAccount/ManageAccount.tsx +6 -6
- package/src/global-account/react/components/MintButton/MintButton.tsx +5 -5
- package/src/global-account/react/components/RelayKitProviderWrapper.tsx +2 -2
- package/src/global-account/react/components/RequestPermissions/RequestPermissions.tsx +7 -7
- package/src/global-account/react/components/RequestPermissions/RequestPermissionsButton.tsx +2 -2
- package/src/global-account/react/components/SignInWithB3/SignIn.tsx +190 -0
- package/src/global-account/react/components/SignInWithB3/SignInWithB3.tsx +16 -28
- package/src/global-account/react/components/SignInWithB3/SignInWithB3Flow.tsx +14 -14
- package/src/global-account/react/components/SignInWithB3/SignInWithB3Privy.tsx +2 -2
- package/src/global-account/react/components/SignInWithB3/components/AuthButton.tsx +1 -1
- package/src/global-account/react/components/SignInWithB3/components/WalletRow.tsx +1 -1
- package/src/global-account/react/components/SignInWithB3/steps/LoginStep.tsx +10 -10
- package/src/global-account/react/components/SignInWithB3/steps/LoginStepCustom.tsx +3 -3
- package/src/global-account/react/components/SignInWithB3/utils/signInUtils.ts +2 -2
- package/src/global-account/react/components/StyleRoot.tsx +0 -1
- package/src/global-account/react/components/Transak/TransakModal.tsx +4 -4
- package/src/global-account/react/components/custom/Button.tsx +7 -7
- package/src/global-account/react/components/custom/Icon.tsx +102 -0
- package/src/global-account/react/components/custom/ManageAccountButton.tsx +33 -0
- package/src/global-account/react/components/custom/StaggeredFadeLoader.tsx +3 -3
- package/src/global-account/react/components/custom/WalletConnectorIcon.tsx +1 -1
- package/src/global-account/react/components/index.ts +4 -4
- package/src/global-account/react/components/magicui/AnimatedLottie.tsx +5 -5
- package/src/global-account/react/components/ui/Loading.tsx +2 -2
- package/src/global-account/react/components/ui/ShinyButton.tsx +5 -5
- package/src/global-account/react/components/ui/TabSystem.tsx +2 -2
- package/src/global-account/react/components/ui/Tabs.tsx +4 -4
- package/src/global-account/react/components/ui/badge.tsx +5 -5
- package/src/global-account/react/components/ui/button.tsx +7 -7
- package/src/global-account/react/components/ui/command.tsx +5 -5
- package/src/global-account/react/components/ui/dialog.tsx +5 -5
- package/src/global-account/react/components/ui/drawer.tsx +2 -2
- package/src/global-account/react/components/ui/glare-card-rounded.tsx +12 -12
- package/src/global-account/react/components/ui/glare-card.tsx +11 -11
- package/src/global-account/react/components/ui/input.tsx +2 -2
- package/src/global-account/react/components/ui/popover.tsx +1 -1
- package/src/global-account/react/components/ui/scroll-area.tsx +1 -1
- package/src/global-account/react/components/ui/text-loop.tsx +2 -2
- package/src/global-account/react/components/ui/text-shimmer.tsx +3 -3
- package/src/global-account/react/components/ui/tooltip.tsx +2 -2
- package/src/global-account/react/hooks/useAccountAssets.ts +4 -4
- package/src/global-account/react/hooks/useAccountWallet.tsx +9 -9
- package/src/global-account/react/hooks/useAddTWSessionKey.tsx +7 -7
- package/src/global-account/react/hooks/useAuthentication.ts +3 -3
- package/src/global-account/react/hooks/useB3BalanceFromAddresses.ts +9 -9
- package/src/global-account/react/hooks/useB3EnsName.ts +43 -31
- package/src/global-account/react/hooks/useBestTransactionPath.tsx +11 -11
- package/src/global-account/react/hooks/useBsmntProfile.ts +1 -1
- package/src/global-account/react/hooks/useChainSwitchWithAction.ts +4 -4
- package/src/global-account/react/hooks/useClaim.tsx +5 -5
- package/src/global-account/react/hooks/useConnect.tsx +4 -4
- package/src/global-account/react/hooks/useExchangeRate.tsx +3 -3
- package/src/global-account/react/hooks/useGetAllTWSigners.tsx +9 -9
- package/src/global-account/react/hooks/useGetGeo.tsx +1 -1
- package/src/global-account/react/hooks/useHandleConnectWithPrivy.tsx +2 -2
- package/src/global-account/react/hooks/useMediaQuery.tsx +1 -1
- package/src/global-account/react/hooks/useNativeBalance.tsx +7 -7
- package/src/global-account/react/hooks/useOnchainName.tsx +11 -11
- package/src/global-account/react/hooks/useOneBalance.tsx +2 -2
- package/src/global-account/react/hooks/useQueryB3.ts +2 -2
- package/src/global-account/react/hooks/useQueryBSMNT.ts +2 -2
- package/src/global-account/react/hooks/useRemoveSessionKey.tsx +5 -5
- package/src/global-account/react/hooks/useRouter.tsx +6 -6
- package/src/global-account/react/hooks/useSiwe.tsx +4 -4
- package/src/global-account/react/hooks/useTokenBalance.tsx +6 -6
- package/src/global-account/react/hooks/useTokenBalancesByChain.tsx +10 -10
- package/src/global-account/react/hooks/useTokenData.ts +3 -3
- package/src/global-account/react/hooks/useTokenFromUrl.tsx +14 -14
- package/src/global-account/react/hooks/useTokenPrice.tsx +7 -7
- package/src/global-account/react/hooks/useTokenPriceWithFallback.tsx +7 -7
- package/src/global-account/react/hooks/useTokensFromAddress.ts +2 -2
- package/src/global-account/react/hooks/useURLParams.ts +2 -2
- package/src/global-account/react/stores/index.ts +1 -1
- package/src/global-account/react/stores/useAuthStore.ts +3 -3
- package/src/global-account/react/stores/useModalStore.ts +23 -4
- package/src/global-account/server.ts +3 -3
- package/src/global-account/types/chain-networks.ts +10 -10
- package/src/global-account/types/feature-flags.ts +2 -2
- package/src/index.ts +1 -0
- package/src/shared/constants/chains/b3Chain.ts +35 -35
- package/src/shared/constants/chains/chainPlatformMap.ts +1 -1
- package/src/shared/constants/chains/supported.ts +6 -1
- package/src/shared/constants/index.ts +3 -1
- package/src/shared/react/hooks/index.ts +1 -0
- package/src/shared/react/hooks/useNavigation.ts +61 -0
- package/src/shared/react/index.ts +1 -0
- package/src/shared/thirdweb/generated/sdk.gen.ts +3 -3
- package/src/shared/thirdweb/initiateClient.ts +2 -2
- package/src/shared/thirdweb/openapi-ts.config.ts +1 -1
- package/src/shared/utils/b3Ens.ts +4 -4
- package/src/shared/utils/chain-transformers.ts +9 -9
- package/src/shared/utils/fetchBalances.ts +5 -5
- package/src/shared/utils/fetchBsmntProfile.ts +1 -1
- package/src/shared/utils/formatUsername.ts +5 -0
- package/src/shared/utils/index.ts +4 -6
- package/src/shared/utils/insights.ts +31 -31
- package/src/shared/utils/ipfs.ts +1 -1
- package/src/shared/utils/number.ts +5 -5
- package/src/shared/utils/simplehash.ts +28 -28
- package/src/shared/utils/thirdweb-insights.ts +20 -20
- package/src/shared/utils/truncateAddress.ts +11 -0
- package/src/styles/index.css +5 -2
- package/dist/cjs/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +0 -16
- package/dist/cjs/anyspend/react/hooks/useAnyspendSendPermitData.js +0 -39
- package/dist/cjs/anyspend/react/hooks/usePermitData.d.ts +0 -92
- package/dist/cjs/anyspend/react/hooks/usePermitData.js +0 -158
- package/dist/cjs/anyspend/types/permit.d.ts +0 -21
- package/dist/cjs/anyspend/types/permit.js +0 -11
- package/dist/cjs/anyspend/types/req-res/sendPermitData.d.ts +0 -66
- package/dist/cjs/anyspend/types/req-res/sendPermitData.js +0 -11
- package/dist/esm/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +0 -16
- package/dist/esm/anyspend/react/hooks/useAnyspendSendPermitData.js +0 -36
- package/dist/esm/anyspend/react/hooks/usePermitData.d.ts +0 -92
- package/dist/esm/anyspend/react/hooks/usePermitData.js +0 -154
- package/dist/esm/anyspend/types/permit.d.ts +0 -21
- package/dist/esm/anyspend/types/permit.js +0 -8
- package/dist/esm/anyspend/types/req-res/sendPermitData.d.ts +0 -66
- package/dist/esm/anyspend/types/req-res/sendPermitData.js +0 -8
- package/dist/types/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +0 -16
- package/dist/types/anyspend/react/hooks/usePermitData.d.ts +0 -92
- package/dist/types/anyspend/types/permit.d.ts +0 -21
- package/dist/types/anyspend/types/req-res/sendPermitData.d.ts +0 -66
- package/src/anyspend/react/hooks/useAnyspendSendPermitData.ts +0 -38
- package/src/anyspend/react/hooks/usePermitData.ts +0 -183
- package/src/anyspend/types/permit.ts +0 -10
- package/src/anyspend/types/req-res/sendPermitData.ts +0 -10
|
@@ -44,18 +44,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
44
44
|
paymentMethod: string;
|
|
45
45
|
redirectUrl: string;
|
|
46
46
|
ipAddress?: string | undefined;
|
|
47
|
+
stripeAmountInCents?: number | undefined;
|
|
47
48
|
} | null;
|
|
48
49
|
creatorAddress: string | null;
|
|
49
50
|
partnerId: string | null;
|
|
50
51
|
oneClickBuyUrl: string | null;
|
|
51
52
|
stripePaymentIntentId: string | null;
|
|
52
|
-
permit: {
|
|
53
|
-
ownerAddress: string;
|
|
54
|
-
deadline: number;
|
|
55
|
-
v: number;
|
|
56
|
-
r: string;
|
|
57
|
-
s: string;
|
|
58
|
-
} | null;
|
|
59
53
|
payload: {
|
|
60
54
|
expectedDstAmount: string;
|
|
61
55
|
actualDstAmount: string | null;
|
|
@@ -116,20 +110,16 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
116
110
|
paymentMethod: string;
|
|
117
111
|
redirectUrl: string;
|
|
118
112
|
ipAddress?: string | undefined;
|
|
113
|
+
stripeAmountInCents?: number | undefined;
|
|
119
114
|
} | null;
|
|
120
115
|
creatorAddress: string | null;
|
|
121
116
|
partnerId: string | null;
|
|
122
117
|
oneClickBuyUrl: string | null;
|
|
123
118
|
stripePaymentIntentId: string | null;
|
|
124
|
-
permit: {
|
|
125
|
-
ownerAddress: string;
|
|
126
|
-
deadline: number;
|
|
127
|
-
v: number;
|
|
128
|
-
r: string;
|
|
129
|
-
s: string;
|
|
130
|
-
} | null;
|
|
131
119
|
payload: {
|
|
132
120
|
contractAddress: string;
|
|
121
|
+
tokenId: number | null;
|
|
122
|
+
contractType: import("@b3dotfun/sdk/anyspend/types").NftType;
|
|
133
123
|
nftPrice: string;
|
|
134
124
|
};
|
|
135
125
|
} | {
|
|
@@ -180,18 +170,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
180
170
|
paymentMethod: string;
|
|
181
171
|
redirectUrl: string;
|
|
182
172
|
ipAddress?: string | undefined;
|
|
173
|
+
stripeAmountInCents?: number | undefined;
|
|
183
174
|
} | null;
|
|
184
175
|
creatorAddress: string | null;
|
|
185
176
|
partnerId: string | null;
|
|
186
177
|
oneClickBuyUrl: string | null;
|
|
187
178
|
stripePaymentIntentId: string | null;
|
|
188
|
-
permit: {
|
|
189
|
-
ownerAddress: string;
|
|
190
|
-
deadline: number;
|
|
191
|
-
v: number;
|
|
192
|
-
r: string;
|
|
193
|
-
s: string;
|
|
194
|
-
} | null;
|
|
195
179
|
payload: {
|
|
196
180
|
contractAddress: string;
|
|
197
181
|
entryPrice: string;
|
|
@@ -244,18 +228,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
244
228
|
paymentMethod: string;
|
|
245
229
|
redirectUrl: string;
|
|
246
230
|
ipAddress?: string | undefined;
|
|
231
|
+
stripeAmountInCents?: number | undefined;
|
|
247
232
|
} | null;
|
|
248
233
|
creatorAddress: string | null;
|
|
249
234
|
partnerId: string | null;
|
|
250
235
|
oneClickBuyUrl: string | null;
|
|
251
236
|
stripePaymentIntentId: string | null;
|
|
252
|
-
permit: {
|
|
253
|
-
ownerAddress: string;
|
|
254
|
-
deadline: number;
|
|
255
|
-
v: number;
|
|
256
|
-
r: string;
|
|
257
|
-
s: string;
|
|
258
|
-
} | null;
|
|
259
237
|
payload: {
|
|
260
238
|
contractAddress: string;
|
|
261
239
|
fundAmount: string;
|
|
@@ -303,18 +281,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
303
281
|
paymentMethod: string;
|
|
304
282
|
redirectUrl: string;
|
|
305
283
|
ipAddress?: string | undefined;
|
|
284
|
+
stripeAmountInCents?: number | undefined;
|
|
306
285
|
} | null;
|
|
307
286
|
creatorAddress: string | null;
|
|
308
287
|
partnerId: string | null;
|
|
309
288
|
oneClickBuyUrl: string | null;
|
|
310
289
|
stripePaymentIntentId: string | null;
|
|
311
|
-
permit: {
|
|
312
|
-
ownerAddress: string;
|
|
313
|
-
deadline: number;
|
|
314
|
-
v: number;
|
|
315
|
-
r: string;
|
|
316
|
-
s: string;
|
|
317
|
-
} | null;
|
|
318
290
|
payload: {
|
|
319
291
|
data: string;
|
|
320
292
|
to: string;
|
|
@@ -402,18 +374,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
402
374
|
paymentMethod: string;
|
|
403
375
|
redirectUrl: string;
|
|
404
376
|
ipAddress?: string | undefined;
|
|
377
|
+
stripeAmountInCents?: number | undefined;
|
|
405
378
|
} | null;
|
|
406
379
|
creatorAddress: string | null;
|
|
407
380
|
partnerId: string | null;
|
|
408
381
|
oneClickBuyUrl: string | null;
|
|
409
382
|
stripePaymentIntentId: string | null;
|
|
410
|
-
permit: {
|
|
411
|
-
ownerAddress: string;
|
|
412
|
-
deadline: number;
|
|
413
|
-
v: number;
|
|
414
|
-
r: string;
|
|
415
|
-
s: string;
|
|
416
|
-
} | null;
|
|
417
383
|
payload: {
|
|
418
384
|
expectedDstAmount: string;
|
|
419
385
|
actualDstAmount: string | null;
|
|
@@ -474,20 +440,16 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
474
440
|
paymentMethod: string;
|
|
475
441
|
redirectUrl: string;
|
|
476
442
|
ipAddress?: string | undefined;
|
|
443
|
+
stripeAmountInCents?: number | undefined;
|
|
477
444
|
} | null;
|
|
478
445
|
creatorAddress: string | null;
|
|
479
446
|
partnerId: string | null;
|
|
480
447
|
oneClickBuyUrl: string | null;
|
|
481
448
|
stripePaymentIntentId: string | null;
|
|
482
|
-
permit: {
|
|
483
|
-
ownerAddress: string;
|
|
484
|
-
deadline: number;
|
|
485
|
-
v: number;
|
|
486
|
-
r: string;
|
|
487
|
-
s: string;
|
|
488
|
-
} | null;
|
|
489
449
|
payload: {
|
|
490
450
|
contractAddress: string;
|
|
451
|
+
tokenId: number | null;
|
|
452
|
+
contractType: import("@b3dotfun/sdk/anyspend/types").NftType;
|
|
491
453
|
nftPrice: string;
|
|
492
454
|
};
|
|
493
455
|
} | {
|
|
@@ -538,18 +500,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
538
500
|
paymentMethod: string;
|
|
539
501
|
redirectUrl: string;
|
|
540
502
|
ipAddress?: string | undefined;
|
|
503
|
+
stripeAmountInCents?: number | undefined;
|
|
541
504
|
} | null;
|
|
542
505
|
creatorAddress: string | null;
|
|
543
506
|
partnerId: string | null;
|
|
544
507
|
oneClickBuyUrl: string | null;
|
|
545
508
|
stripePaymentIntentId: string | null;
|
|
546
|
-
permit: {
|
|
547
|
-
ownerAddress: string;
|
|
548
|
-
deadline: number;
|
|
549
|
-
v: number;
|
|
550
|
-
r: string;
|
|
551
|
-
s: string;
|
|
552
|
-
} | null;
|
|
553
509
|
payload: {
|
|
554
510
|
contractAddress: string;
|
|
555
511
|
entryPrice: string;
|
|
@@ -602,18 +558,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
602
558
|
paymentMethod: string;
|
|
603
559
|
redirectUrl: string;
|
|
604
560
|
ipAddress?: string | undefined;
|
|
561
|
+
stripeAmountInCents?: number | undefined;
|
|
605
562
|
} | null;
|
|
606
563
|
creatorAddress: string | null;
|
|
607
564
|
partnerId: string | null;
|
|
608
565
|
oneClickBuyUrl: string | null;
|
|
609
566
|
stripePaymentIntentId: string | null;
|
|
610
|
-
permit: {
|
|
611
|
-
ownerAddress: string;
|
|
612
|
-
deadline: number;
|
|
613
|
-
v: number;
|
|
614
|
-
r: string;
|
|
615
|
-
s: string;
|
|
616
|
-
} | null;
|
|
617
567
|
payload: {
|
|
618
568
|
contractAddress: string;
|
|
619
569
|
fundAmount: string;
|
|
@@ -661,18 +611,12 @@ export declare function useAnyspendOrderAndTransactions(isMainnet: boolean, orde
|
|
|
661
611
|
paymentMethod: string;
|
|
662
612
|
redirectUrl: string;
|
|
663
613
|
ipAddress?: string | undefined;
|
|
614
|
+
stripeAmountInCents?: number | undefined;
|
|
664
615
|
} | null;
|
|
665
616
|
creatorAddress: string | null;
|
|
666
617
|
partnerId: string | null;
|
|
667
618
|
oneClickBuyUrl: string | null;
|
|
668
619
|
stripePaymentIntentId: string | null;
|
|
669
|
-
permit: {
|
|
670
|
-
ownerAddress: string;
|
|
671
|
-
deadline: number;
|
|
672
|
-
v: number;
|
|
673
|
-
r: string;
|
|
674
|
-
s: string;
|
|
675
|
-
} | null;
|
|
676
620
|
payload: {
|
|
677
621
|
data: string;
|
|
678
622
|
to: string;
|
|
@@ -41,18 +41,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
41
41
|
paymentMethod: string;
|
|
42
42
|
redirectUrl: string;
|
|
43
43
|
ipAddress?: string | undefined;
|
|
44
|
+
stripeAmountInCents?: number | undefined;
|
|
44
45
|
} | null;
|
|
45
46
|
creatorAddress: string | null;
|
|
46
47
|
partnerId: string | null;
|
|
47
48
|
oneClickBuyUrl: string | null;
|
|
48
49
|
stripePaymentIntentId: string | null;
|
|
49
|
-
permit: {
|
|
50
|
-
ownerAddress: string;
|
|
51
|
-
deadline: number;
|
|
52
|
-
v: number;
|
|
53
|
-
r: string;
|
|
54
|
-
s: string;
|
|
55
|
-
} | null;
|
|
56
50
|
payload: {
|
|
57
51
|
expectedDstAmount: string;
|
|
58
52
|
actualDstAmount: string | null;
|
|
@@ -113,20 +107,16 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
113
107
|
paymentMethod: string;
|
|
114
108
|
redirectUrl: string;
|
|
115
109
|
ipAddress?: string | undefined;
|
|
110
|
+
stripeAmountInCents?: number | undefined;
|
|
116
111
|
} | null;
|
|
117
112
|
creatorAddress: string | null;
|
|
118
113
|
partnerId: string | null;
|
|
119
114
|
oneClickBuyUrl: string | null;
|
|
120
115
|
stripePaymentIntentId: string | null;
|
|
121
|
-
permit: {
|
|
122
|
-
ownerAddress: string;
|
|
123
|
-
deadline: number;
|
|
124
|
-
v: number;
|
|
125
|
-
r: string;
|
|
126
|
-
s: string;
|
|
127
|
-
} | null;
|
|
128
116
|
payload: {
|
|
129
117
|
contractAddress: string;
|
|
118
|
+
tokenId: number | null;
|
|
119
|
+
contractType: import("../..").NftType;
|
|
130
120
|
nftPrice: string;
|
|
131
121
|
};
|
|
132
122
|
} | {
|
|
@@ -177,18 +167,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
177
167
|
paymentMethod: string;
|
|
178
168
|
redirectUrl: string;
|
|
179
169
|
ipAddress?: string | undefined;
|
|
170
|
+
stripeAmountInCents?: number | undefined;
|
|
180
171
|
} | null;
|
|
181
172
|
creatorAddress: string | null;
|
|
182
173
|
partnerId: string | null;
|
|
183
174
|
oneClickBuyUrl: string | null;
|
|
184
175
|
stripePaymentIntentId: string | null;
|
|
185
|
-
permit: {
|
|
186
|
-
ownerAddress: string;
|
|
187
|
-
deadline: number;
|
|
188
|
-
v: number;
|
|
189
|
-
r: string;
|
|
190
|
-
s: string;
|
|
191
|
-
} | null;
|
|
192
176
|
payload: {
|
|
193
177
|
contractAddress: string;
|
|
194
178
|
entryPrice: string;
|
|
@@ -241,18 +225,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
241
225
|
paymentMethod: string;
|
|
242
226
|
redirectUrl: string;
|
|
243
227
|
ipAddress?: string | undefined;
|
|
228
|
+
stripeAmountInCents?: number | undefined;
|
|
244
229
|
} | null;
|
|
245
230
|
creatorAddress: string | null;
|
|
246
231
|
partnerId: string | null;
|
|
247
232
|
oneClickBuyUrl: string | null;
|
|
248
233
|
stripePaymentIntentId: string | null;
|
|
249
|
-
permit: {
|
|
250
|
-
ownerAddress: string;
|
|
251
|
-
deadline: number;
|
|
252
|
-
v: number;
|
|
253
|
-
r: string;
|
|
254
|
-
s: string;
|
|
255
|
-
} | null;
|
|
256
234
|
payload: {
|
|
257
235
|
contractAddress: string;
|
|
258
236
|
fundAmount: string;
|
|
@@ -300,18 +278,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
300
278
|
paymentMethod: string;
|
|
301
279
|
redirectUrl: string;
|
|
302
280
|
ipAddress?: string | undefined;
|
|
281
|
+
stripeAmountInCents?: number | undefined;
|
|
303
282
|
} | null;
|
|
304
283
|
creatorAddress: string | null;
|
|
305
284
|
partnerId: string | null;
|
|
306
285
|
oneClickBuyUrl: string | null;
|
|
307
286
|
stripePaymentIntentId: string | null;
|
|
308
|
-
permit: {
|
|
309
|
-
ownerAddress: string;
|
|
310
|
-
deadline: number;
|
|
311
|
-
v: number;
|
|
312
|
-
r: string;
|
|
313
|
-
s: string;
|
|
314
|
-
} | null;
|
|
315
287
|
payload: {
|
|
316
288
|
data: string;
|
|
317
289
|
to: string;
|
|
@@ -363,18 +335,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
363
335
|
paymentMethod: string;
|
|
364
336
|
redirectUrl: string;
|
|
365
337
|
ipAddress?: string | undefined;
|
|
338
|
+
stripeAmountInCents?: number | undefined;
|
|
366
339
|
} | null;
|
|
367
340
|
creatorAddress: string | null;
|
|
368
341
|
partnerId: string | null;
|
|
369
342
|
oneClickBuyUrl: string | null;
|
|
370
343
|
stripePaymentIntentId: string | null;
|
|
371
|
-
permit: {
|
|
372
|
-
ownerAddress: string;
|
|
373
|
-
deadline: number;
|
|
374
|
-
v: number;
|
|
375
|
-
r: string;
|
|
376
|
-
s: string;
|
|
377
|
-
} | null;
|
|
378
344
|
payload: {
|
|
379
345
|
expectedDstAmount: string;
|
|
380
346
|
actualDstAmount: string | null;
|
|
@@ -435,20 +401,16 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
435
401
|
paymentMethod: string;
|
|
436
402
|
redirectUrl: string;
|
|
437
403
|
ipAddress?: string | undefined;
|
|
404
|
+
stripeAmountInCents?: number | undefined;
|
|
438
405
|
} | null;
|
|
439
406
|
creatorAddress: string | null;
|
|
440
407
|
partnerId: string | null;
|
|
441
408
|
oneClickBuyUrl: string | null;
|
|
442
409
|
stripePaymentIntentId: string | null;
|
|
443
|
-
permit: {
|
|
444
|
-
ownerAddress: string;
|
|
445
|
-
deadline: number;
|
|
446
|
-
v: number;
|
|
447
|
-
r: string;
|
|
448
|
-
s: string;
|
|
449
|
-
} | null;
|
|
450
410
|
payload: {
|
|
451
411
|
contractAddress: string;
|
|
412
|
+
tokenId: number | null;
|
|
413
|
+
contractType: import("../..").NftType;
|
|
452
414
|
nftPrice: string;
|
|
453
415
|
};
|
|
454
416
|
} | {
|
|
@@ -499,18 +461,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
499
461
|
paymentMethod: string;
|
|
500
462
|
redirectUrl: string;
|
|
501
463
|
ipAddress?: string | undefined;
|
|
464
|
+
stripeAmountInCents?: number | undefined;
|
|
502
465
|
} | null;
|
|
503
466
|
creatorAddress: string | null;
|
|
504
467
|
partnerId: string | null;
|
|
505
468
|
oneClickBuyUrl: string | null;
|
|
506
469
|
stripePaymentIntentId: string | null;
|
|
507
|
-
permit: {
|
|
508
|
-
ownerAddress: string;
|
|
509
|
-
deadline: number;
|
|
510
|
-
v: number;
|
|
511
|
-
r: string;
|
|
512
|
-
s: string;
|
|
513
|
-
} | null;
|
|
514
470
|
payload: {
|
|
515
471
|
contractAddress: string;
|
|
516
472
|
entryPrice: string;
|
|
@@ -563,18 +519,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
563
519
|
paymentMethod: string;
|
|
564
520
|
redirectUrl: string;
|
|
565
521
|
ipAddress?: string | undefined;
|
|
522
|
+
stripeAmountInCents?: number | undefined;
|
|
566
523
|
} | null;
|
|
567
524
|
creatorAddress: string | null;
|
|
568
525
|
partnerId: string | null;
|
|
569
526
|
oneClickBuyUrl: string | null;
|
|
570
527
|
stripePaymentIntentId: string | null;
|
|
571
|
-
permit: {
|
|
572
|
-
ownerAddress: string;
|
|
573
|
-
deadline: number;
|
|
574
|
-
v: number;
|
|
575
|
-
r: string;
|
|
576
|
-
s: string;
|
|
577
|
-
} | null;
|
|
578
528
|
payload: {
|
|
579
529
|
contractAddress: string;
|
|
580
530
|
fundAmount: string;
|
|
@@ -622,18 +572,12 @@ export declare function useAnyspendOrderHistory(isMainnet: boolean, creatorAddre
|
|
|
622
572
|
paymentMethod: string;
|
|
623
573
|
redirectUrl: string;
|
|
624
574
|
ipAddress?: string | undefined;
|
|
575
|
+
stripeAmountInCents?: number | undefined;
|
|
625
576
|
} | null;
|
|
626
577
|
creatorAddress: string | null;
|
|
627
578
|
partnerId: string | null;
|
|
628
579
|
oneClickBuyUrl: string | null;
|
|
629
580
|
stripePaymentIntentId: string | null;
|
|
630
|
-
permit: {
|
|
631
|
-
ownerAddress: string;
|
|
632
|
-
deadline: number;
|
|
633
|
-
v: number;
|
|
634
|
-
r: string;
|
|
635
|
-
s: string;
|
|
636
|
-
} | null;
|
|
637
581
|
payload: {
|
|
638
582
|
data: string;
|
|
639
583
|
to: string;
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import { FindByAddressParams, GenerateSigMintParams, IsMintEligibleParams } from "../../types/signature-mint";
|
|
2
|
+
/**
|
|
3
|
+
* Hook to generate signature for minting
|
|
4
|
+
*/
|
|
5
|
+
export declare const useGenerateSigMintData: ({ recipientAddress, contractAddress, chainId, quantity, prompt, }: GenerateSigMintParams) => {
|
|
6
|
+
data: {
|
|
7
|
+
payload: any;
|
|
8
|
+
signature: string;
|
|
9
|
+
collection: {
|
|
10
|
+
status?: "DRAFT" | "ACTIVE" | "INACTIVE" | undefined;
|
|
11
|
+
metadata?: {} | undefined;
|
|
12
|
+
logoURI?: string | undefined;
|
|
13
|
+
description?: string | undefined;
|
|
14
|
+
createdAt?: string | undefined;
|
|
15
|
+
updatedAt?: string | undefined;
|
|
16
|
+
creator?: string | undefined;
|
|
17
|
+
signatureRequestBody?: {
|
|
18
|
+
price?: string | undefined;
|
|
19
|
+
currency?: string | undefined;
|
|
20
|
+
clonePrice?: string | undefined;
|
|
21
|
+
primarySaleRecipient?: string | undefined;
|
|
22
|
+
royaltyRecipient?: string | undefined;
|
|
23
|
+
royaltyBps?: number | undefined;
|
|
24
|
+
validityStartTimestamp?: number | undefined;
|
|
25
|
+
validityEndTimestamp?: number | undefined;
|
|
26
|
+
metadata: {
|
|
27
|
+
name?: string | undefined;
|
|
28
|
+
description?: string | undefined;
|
|
29
|
+
properties?: any;
|
|
30
|
+
image?: string | undefined;
|
|
31
|
+
externalLink?: string | undefined;
|
|
32
|
+
appUri?: string | undefined;
|
|
33
|
+
attributes?: any;
|
|
34
|
+
backgroundColor?: string | undefined;
|
|
35
|
+
promptImageUrl?: string | undefined;
|
|
36
|
+
};
|
|
37
|
+
} | undefined;
|
|
38
|
+
maxSupply?: number | undefined;
|
|
39
|
+
conditions?: {
|
|
40
|
+
chainId: number;
|
|
41
|
+
tokenAddress: string;
|
|
42
|
+
conditionType: "user-owns-tokens";
|
|
43
|
+
isOnchain: boolean;
|
|
44
|
+
tokenAmount: string;
|
|
45
|
+
}[] | undefined;
|
|
46
|
+
isFreeMint?: boolean | undefined;
|
|
47
|
+
engineWallet?: string | undefined;
|
|
48
|
+
creatorMap?: {} | undefined;
|
|
49
|
+
chainId: number;
|
|
50
|
+
address: string;
|
|
51
|
+
title: string;
|
|
52
|
+
_id: string | {};
|
|
53
|
+
};
|
|
54
|
+
} | null;
|
|
55
|
+
error: Error | null;
|
|
56
|
+
isLoading: boolean;
|
|
57
|
+
runQuery: (queryParams: {
|
|
58
|
+
imageUrl?: string | undefined;
|
|
59
|
+
tokenId?: string | undefined;
|
|
60
|
+
quantity?: string | undefined;
|
|
61
|
+
prompt?: string | undefined;
|
|
62
|
+
chainId: number;
|
|
63
|
+
contractAddress: string;
|
|
64
|
+
recipientAddress: string;
|
|
65
|
+
}) => Promise<any>;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Hook to fetch a signature minting collection by address
|
|
69
|
+
*/
|
|
70
|
+
export declare const useSigMintCollection: ({ address, chainId }: FindByAddressParams) => {
|
|
71
|
+
data: {
|
|
72
|
+
description?: string | undefined;
|
|
73
|
+
createdAt?: string | undefined;
|
|
74
|
+
updatedAt?: string | undefined;
|
|
75
|
+
status?: "DRAFT" | "ACTIVE" | "INACTIVE" | undefined;
|
|
76
|
+
metadata?: {} | undefined;
|
|
77
|
+
logoURI?: string | undefined;
|
|
78
|
+
creator?: string | undefined;
|
|
79
|
+
signatureRequestBody?: {
|
|
80
|
+
price?: string | undefined;
|
|
81
|
+
clonePrice?: string | undefined;
|
|
82
|
+
currency?: string | undefined;
|
|
83
|
+
primarySaleRecipient?: string | undefined;
|
|
84
|
+
royaltyRecipient?: string | undefined;
|
|
85
|
+
royaltyBps?: number | undefined;
|
|
86
|
+
validityStartTimestamp?: number | undefined;
|
|
87
|
+
validityEndTimestamp?: number | undefined;
|
|
88
|
+
metadata: {
|
|
89
|
+
properties?: any;
|
|
90
|
+
description?: string | undefined;
|
|
91
|
+
name?: string | undefined;
|
|
92
|
+
image?: string | undefined;
|
|
93
|
+
externalLink?: string | undefined;
|
|
94
|
+
appUri?: string | undefined;
|
|
95
|
+
attributes?: any;
|
|
96
|
+
backgroundColor?: string | undefined;
|
|
97
|
+
promptImageUrl?: string | undefined;
|
|
98
|
+
};
|
|
99
|
+
} | undefined;
|
|
100
|
+
maxSupply?: number | undefined;
|
|
101
|
+
conditions?: {
|
|
102
|
+
chainId: number;
|
|
103
|
+
tokenAddress: string;
|
|
104
|
+
conditionType: "user-owns-tokens";
|
|
105
|
+
isOnchain: boolean;
|
|
106
|
+
tokenAmount: string;
|
|
107
|
+
}[] | undefined;
|
|
108
|
+
isFreeMint?: boolean | undefined;
|
|
109
|
+
engineWallet?: string | undefined;
|
|
110
|
+
creatorMap?: {} | undefined;
|
|
111
|
+
_id: string | {};
|
|
112
|
+
address: string;
|
|
113
|
+
chainId: number;
|
|
114
|
+
title: string;
|
|
115
|
+
} | null;
|
|
116
|
+
error: Error | null;
|
|
117
|
+
isLoading: boolean;
|
|
118
|
+
runQuery: (queryParams: {
|
|
119
|
+
chainId: number;
|
|
120
|
+
address: string;
|
|
121
|
+
}) => Promise<any>;
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* Hook to check if an address is eligible for minting
|
|
125
|
+
*/
|
|
126
|
+
export declare const useIsMintEligible: ({ contractAddress, chainId, recipientAddress, quantity }: IsMintEligibleParams) => {
|
|
127
|
+
data: {
|
|
128
|
+
eligible: boolean;
|
|
129
|
+
reason?: string;
|
|
130
|
+
} | null;
|
|
131
|
+
error: Error | null;
|
|
132
|
+
isLoading: boolean;
|
|
133
|
+
runQuery: (queryParams: {
|
|
134
|
+
tokenId?: string | undefined;
|
|
135
|
+
quantity?: string | undefined;
|
|
136
|
+
chainId: number;
|
|
137
|
+
contractAddress: string;
|
|
138
|
+
recipientAddress: string;
|
|
139
|
+
}) => Promise<any>;
|
|
140
|
+
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { GetOrderAndTxsResponse, GetQuoteRequest, GetQuoteResponse, SendPermitDataRequestBody, Token } from "@b3dotfun/sdk/anyspend/types";
|
|
2
1
|
import { OnrampOptions } from "@b3dotfun/sdk/anyspend/react";
|
|
2
|
+
import { GetOrderAndTxsResponse, GetQuoteRequest, GetQuoteResponse, Token } from "@b3dotfun/sdk/anyspend/types";
|
|
3
3
|
export declare const anyspendService: {
|
|
4
4
|
getTokenList: (isMainnet: boolean, chainId: number, query: string) => Promise<Token[]>;
|
|
5
5
|
getToken: (isMainnet: boolean, chainId: number, tokenAddress: string) => Promise<Token>;
|
|
6
6
|
getQuote: (isMainnet: boolean, req: GetQuoteRequest) => Promise<GetQuoteResponse>;
|
|
7
|
-
createOrder: ({ isMainnet, recipientAddress, type, srcChain, dstChain, srcTokenAddress, dstTokenAddress, srcAmount, payload, onramp, metadata, creatorAddress, partnerId }: {
|
|
7
|
+
createOrder: ({ isMainnet, recipientAddress, type, srcChain, dstChain, srcTokenAddress, dstTokenAddress, srcAmount, payload, onramp, metadata, creatorAddress, partnerId, }: {
|
|
8
8
|
isMainnet: boolean;
|
|
9
9
|
recipientAddress: string;
|
|
10
10
|
type: string;
|
|
@@ -64,18 +64,12 @@ export declare const anyspendService: {
|
|
|
64
64
|
paymentMethod: string;
|
|
65
65
|
redirectUrl: string;
|
|
66
66
|
ipAddress?: string | undefined;
|
|
67
|
+
stripeAmountInCents?: number | undefined;
|
|
67
68
|
} | null;
|
|
68
69
|
creatorAddress: string | null;
|
|
69
70
|
partnerId: string | null;
|
|
70
71
|
oneClickBuyUrl: string | null;
|
|
71
72
|
stripePaymentIntentId: string | null;
|
|
72
|
-
permit: {
|
|
73
|
-
ownerAddress: string;
|
|
74
|
-
deadline: number;
|
|
75
|
-
v: number;
|
|
76
|
-
r: string;
|
|
77
|
-
s: string;
|
|
78
|
-
} | null;
|
|
79
73
|
payload: {
|
|
80
74
|
expectedDstAmount: string;
|
|
81
75
|
actualDstAmount: string | null;
|
|
@@ -136,20 +130,16 @@ export declare const anyspendService: {
|
|
|
136
130
|
paymentMethod: string;
|
|
137
131
|
redirectUrl: string;
|
|
138
132
|
ipAddress?: string | undefined;
|
|
133
|
+
stripeAmountInCents?: number | undefined;
|
|
139
134
|
} | null;
|
|
140
135
|
creatorAddress: string | null;
|
|
141
136
|
partnerId: string | null;
|
|
142
137
|
oneClickBuyUrl: string | null;
|
|
143
138
|
stripePaymentIntentId: string | null;
|
|
144
|
-
permit: {
|
|
145
|
-
ownerAddress: string;
|
|
146
|
-
deadline: number;
|
|
147
|
-
v: number;
|
|
148
|
-
r: string;
|
|
149
|
-
s: string;
|
|
150
|
-
} | null;
|
|
151
139
|
payload: {
|
|
152
140
|
contractAddress: string;
|
|
141
|
+
tokenId: number | null;
|
|
142
|
+
contractType: import("@b3dotfun/sdk/anyspend/types").NftType;
|
|
153
143
|
nftPrice: string;
|
|
154
144
|
};
|
|
155
145
|
} | {
|
|
@@ -200,18 +190,12 @@ export declare const anyspendService: {
|
|
|
200
190
|
paymentMethod: string;
|
|
201
191
|
redirectUrl: string;
|
|
202
192
|
ipAddress?: string | undefined;
|
|
193
|
+
stripeAmountInCents?: number | undefined;
|
|
203
194
|
} | null;
|
|
204
195
|
creatorAddress: string | null;
|
|
205
196
|
partnerId: string | null;
|
|
206
197
|
oneClickBuyUrl: string | null;
|
|
207
198
|
stripePaymentIntentId: string | null;
|
|
208
|
-
permit: {
|
|
209
|
-
ownerAddress: string;
|
|
210
|
-
deadline: number;
|
|
211
|
-
v: number;
|
|
212
|
-
r: string;
|
|
213
|
-
s: string;
|
|
214
|
-
} | null;
|
|
215
199
|
payload: {
|
|
216
200
|
contractAddress: string;
|
|
217
201
|
entryPrice: string;
|
|
@@ -264,18 +248,12 @@ export declare const anyspendService: {
|
|
|
264
248
|
paymentMethod: string;
|
|
265
249
|
redirectUrl: string;
|
|
266
250
|
ipAddress?: string | undefined;
|
|
251
|
+
stripeAmountInCents?: number | undefined;
|
|
267
252
|
} | null;
|
|
268
253
|
creatorAddress: string | null;
|
|
269
254
|
partnerId: string | null;
|
|
270
255
|
oneClickBuyUrl: string | null;
|
|
271
256
|
stripePaymentIntentId: string | null;
|
|
272
|
-
permit: {
|
|
273
|
-
ownerAddress: string;
|
|
274
|
-
deadline: number;
|
|
275
|
-
v: number;
|
|
276
|
-
r: string;
|
|
277
|
-
s: string;
|
|
278
|
-
} | null;
|
|
279
257
|
payload: {
|
|
280
258
|
contractAddress: string;
|
|
281
259
|
fundAmount: string;
|
|
@@ -323,18 +301,12 @@ export declare const anyspendService: {
|
|
|
323
301
|
paymentMethod: string;
|
|
324
302
|
redirectUrl: string;
|
|
325
303
|
ipAddress?: string | undefined;
|
|
304
|
+
stripeAmountInCents?: number | undefined;
|
|
326
305
|
} | null;
|
|
327
306
|
creatorAddress: string | null;
|
|
328
307
|
partnerId: string | null;
|
|
329
308
|
oneClickBuyUrl: string | null;
|
|
330
309
|
stripePaymentIntentId: string | null;
|
|
331
|
-
permit: {
|
|
332
|
-
ownerAddress: string;
|
|
333
|
-
deadline: number;
|
|
334
|
-
v: number;
|
|
335
|
-
r: string;
|
|
336
|
-
s: string;
|
|
337
|
-
} | null;
|
|
338
310
|
payload: {
|
|
339
311
|
data: string;
|
|
340
312
|
to: string;
|
|
@@ -371,8 +343,5 @@ export declare const anyspendService: {
|
|
|
371
343
|
stripeOnramp: boolean;
|
|
372
344
|
stripeWeb2: boolean;
|
|
373
345
|
}>;
|
|
374
|
-
sendPermitData: ({ isMainnet, orderId, permitData }: SendPermitDataRequestBody & {
|
|
375
|
-
isMainnet: boolean;
|
|
376
|
-
}) => Promise<any>;
|
|
377
346
|
getStripeClientSecret: (isMainnet: boolean, paymentIntentId: string) => Promise<string | null>;
|
|
378
347
|
};
|
|
@@ -2,10 +2,10 @@ export * from "./req-res";
|
|
|
2
2
|
export * from "./chain";
|
|
3
3
|
export * from "./custom";
|
|
4
4
|
export * from "./globalWallet";
|
|
5
|
+
export * from "./metadata";
|
|
5
6
|
export * from "./nft";
|
|
6
7
|
export * from "./onramp";
|
|
7
8
|
export * from "./order";
|
|
8
|
-
export * from "./permit";
|
|
9
9
|
export * from "./relay";
|
|
10
10
|
export * from "./swap";
|
|
11
11
|
export * from "./token";
|