@b3dotfun/sdk 0.0.7-alpha.28 → 0.0.7-alpha.4
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/constants/index.js +10 -13
- package/dist/cjs/anyspend/index.d.ts +2 -4
- 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 +68 -69
- package/dist/cjs/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/AnySpendBuySpin.js +66 -68
- package/dist/cjs/anyspend/react/components/AnySpendCustom.d.ts +4 -4
- package/dist/cjs/anyspend/react/components/AnySpendCustom.js +101 -158
- package/dist/cjs/anyspend/react/components/AnySpendNFT.d.ts +2 -3
- package/dist/cjs/anyspend/react/components/AnySpendNFT.js +5 -7
- 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 +20 -21
- package/dist/cjs/anyspend/react/components/AnySpendTournament.js +4 -7
- 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 +62 -51
- 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 +14 -15
- 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 +25 -26
- 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/index.d.ts +0 -2
- package/dist/cjs/anyspend/react/components/index.js +1 -5
- 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 +1 -0
- package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
- package/dist/cjs/anyspend/react/components/webview/WebviewOnrampPayment.js +25 -26
- package/dist/cjs/anyspend/react/hooks/index.d.ts +2 -1
- package/dist/cjs/anyspend/react/hooks/index.js +2 -1
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +18 -3
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +6 -6
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +0 -1
- package/dist/cjs/anyspend/react/hooks/useAnyspendCreateOrder.js +6 -6
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +70 -10
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +2 -2
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +70 -10
- 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/useAnyspendSendPermitData.d.ts +16 -0
- package/dist/cjs/anyspend/react/hooks/useAnyspendSendPermitData.js +39 -0
- 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/usePermitData.d.ts +92 -0
- package/dist/cjs/anyspend/react/hooks/usePermitData.js +158 -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 +6 -7
- package/dist/cjs/anyspend/services/anyspend.d.ts +40 -7
- package/dist/cjs/anyspend/services/anyspend.js +24 -11
- 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/nft.d.ts +0 -1
- package/dist/cjs/anyspend/types/nft.js +6 -6
- package/dist/cjs/anyspend/types/onramp.d.ts +0 -3
- package/dist/cjs/anyspend/types/onramp.js +1 -2
- package/dist/cjs/anyspend/types/order.d.ts +200 -30
- package/dist/cjs/anyspend/types/order.js +12 -7
- package/dist/cjs/anyspend/types/permit.d.ts +21 -0
- package/dist/cjs/anyspend/types/permit.js +11 -0
- package/dist/cjs/anyspend/types/req-res/createOrder.d.ts +235 -70
- 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 +305 -45
- 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 +235 -35
- package/dist/cjs/anyspend/types/req-res/getOrderHistory.js +1 -1
- package/dist/cjs/anyspend/types/req-res/getQuote.d.ts +0 -37
- package/dist/cjs/anyspend/types/req-res/getQuote.js +9 -14
- package/dist/cjs/anyspend/types/req-res/getTokenList.js +3 -3
- package/dist/cjs/anyspend/types/req-res/index.d.ts +1 -0
- package/dist/cjs/anyspend/types/req-res/index.js +1 -0
- package/dist/cjs/anyspend/types/req-res/sendPermitData.d.ts +66 -0
- package/dist/cjs/anyspend/types/req-res/sendPermitData.js +11 -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 +6 -2
- package/dist/cjs/anyspend/utils/orderPayload.d.ts +3 -3
- package/dist/cjs/anyspend/utils/orderPayload.js +8 -22
- 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 +3 -13
- package/dist/cjs/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
- package/dist/cjs/global-account/react/components/B3Provider/B3Provider.js +16 -17
- 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/SignInWithB3.d.ts +2 -1
- package/dist/cjs/global-account/react/components/SignInWithB3/SignInWithB3.js +17 -12
- 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 +1 -0
- 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/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 +4 -8
- package/dist/cjs/global-account/react/hooks/useB3EnsName.js +23 -32
- 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 +1 -18
- 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/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 +1 -1
- package/dist/cjs/shared/constants/index.d.ts +0 -1
- package/dist/cjs/shared/constants/index.js +2 -3
- 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/index.d.ts +1 -3
- package/dist/cjs/shared/utils/index.js +6 -4
- 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/esm/anyspend/abis/abi-usdc-base.js +97 -97
- package/dist/esm/anyspend/abis/erc20-staking.js +51 -51
- package/dist/esm/anyspend/constants/index.js +10 -13
- package/dist/esm/anyspend/index.d.ts +2 -4
- 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 +22 -23
- package/dist/esm/anyspend/react/components/AnySpendBuySpin.d.ts +1 -1
- package/dist/esm/anyspend/react/components/AnySpendBuySpin.js +39 -41
- package/dist/esm/anyspend/react/components/AnySpendCustom.d.ts +4 -4
- package/dist/esm/anyspend/react/components/AnySpendCustom.js +81 -138
- package/dist/esm/anyspend/react/components/AnySpendNFT.d.ts +2 -3
- package/dist/esm/anyspend/react/components/AnySpendNFT.js +5 -7
- 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 +21 -22
- package/dist/esm/anyspend/react/components/AnySpendTournament.js +4 -7
- 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 +63 -52
- 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 +8 -9
- 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 +13 -14
- 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/index.d.ts +0 -2
- package/dist/esm/anyspend/react/components/index.js +0 -2
- 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 +1 -0
- package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.d.ts +1 -1
- package/dist/esm/anyspend/react/components/webview/WebviewOnrampPayment.js +15 -16
- package/dist/esm/anyspend/react/hooks/index.d.ts +2 -1
- package/dist/esm/anyspend/react/hooks/index.js +2 -1
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +18 -3
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOnrampOrder.js +6 -6
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +0 -1
- package/dist/esm/anyspend/react/hooks/useAnyspendCreateOrder.js +7 -7
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +70 -10
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.js +2 -2
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +70 -10
- 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/useAnyspendSendPermitData.d.ts +16 -0
- package/dist/esm/anyspend/react/hooks/useAnyspendSendPermitData.js +36 -0
- 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/usePermitData.d.ts +92 -0
- package/dist/esm/anyspend/react/hooks/usePermitData.js +154 -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 +4 -5
- package/dist/esm/anyspend/services/anyspend.d.ts +40 -7
- package/dist/esm/anyspend/services/anyspend.js +25 -12
- 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/nft.d.ts +0 -1
- package/dist/esm/anyspend/types/nft.js +6 -6
- package/dist/esm/anyspend/types/onramp.d.ts +0 -3
- package/dist/esm/anyspend/types/onramp.js +1 -2
- package/dist/esm/anyspend/types/order.d.ts +200 -30
- package/dist/esm/anyspend/types/order.js +12 -7
- package/dist/esm/anyspend/types/permit.d.ts +21 -0
- package/dist/esm/anyspend/types/permit.js +8 -0
- package/dist/esm/anyspend/types/req-res/createOrder.d.ts +235 -70
- 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 +305 -45
- 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 +235 -35
- package/dist/esm/anyspend/types/req-res/getOrderHistory.js +1 -1
- package/dist/esm/anyspend/types/req-res/getQuote.d.ts +0 -37
- package/dist/esm/anyspend/types/req-res/getQuote.js +9 -14
- package/dist/esm/anyspend/types/req-res/getTokenList.js +3 -3
- package/dist/esm/anyspend/types/req-res/index.d.ts +1 -0
- package/dist/esm/anyspend/types/req-res/index.js +1 -0
- package/dist/esm/anyspend/types/req-res/sendPermitData.d.ts +66 -0
- package/dist/esm/anyspend/types/req-res/sendPermitData.js +8 -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 +6 -2
- package/dist/esm/anyspend/utils/orderPayload.d.ts +3 -3
- package/dist/esm/anyspend/utils/orderPayload.js +9 -23
- 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 +4 -14
- package/dist/esm/global-account/react/components/B3Provider/B3Provider.d.ts +3 -3
- package/dist/esm/global-account/react/components/B3Provider/B3Provider.js +7 -8
- 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/SignInWithB3.d.ts +2 -1
- package/dist/esm/global-account/react/components/SignInWithB3/SignInWithB3.js +13 -8
- 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 +1 -0
- 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/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 +4 -8
- package/dist/esm/global-account/react/hooks/useB3EnsName.js +22 -34
- 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 +1 -18
- 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/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 +1 -1
- package/dist/esm/shared/constants/index.d.ts +0 -1
- package/dist/esm/shared/constants/index.js +1 -2
- 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/index.d.ts +1 -3
- package/dist/esm/shared/utils/index.js +5 -4
- 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/styles/index.css +1 -1
- package/dist/types/anyspend/index.d.ts +2 -4
- 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 +2 -3
- package/dist/types/anyspend/react/components/AnySpendStakeB3.d.ts +1 -1
- 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/index.d.ts +0 -2
- 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 +2 -1
- package/dist/types/anyspend/react/hooks/useAnyspendCreateOnrampOrder.d.ts +18 -3
- package/dist/types/anyspend/react/hooks/useAnyspendCreateOrder.d.ts +0 -1
- package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +70 -10
- package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +70 -10
- package/dist/types/anyspend/react/hooks/useAnyspendSendPermitData.d.ts +16 -0
- package/dist/types/anyspend/react/hooks/usePermitData.d.ts +92 -0
- package/dist/types/anyspend/services/anyspend.d.ts +40 -7
- package/dist/types/anyspend/types/index.d.ts +1 -1
- package/dist/types/anyspend/types/nft.d.ts +0 -1
- package/dist/types/anyspend/types/onramp.d.ts +0 -3
- package/dist/types/anyspend/types/order.d.ts +200 -30
- package/dist/types/anyspend/types/permit.d.ts +21 -0
- package/dist/types/anyspend/types/req-res/createOrder.d.ts +235 -70
- package/dist/types/anyspend/types/req-res/getOrderAndTransactions.d.ts +305 -45
- package/dist/types/anyspend/types/req-res/getOrderHistory.d.ts +235 -35
- package/dist/types/anyspend/types/req-res/getQuote.d.ts +0 -37
- package/dist/types/anyspend/types/req-res/index.d.ts +1 -0
- package/dist/types/anyspend/types/req-res/sendPermitData.d.ts +66 -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/SignInWithB3.d.ts +2 -1
- 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/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 +4 -8
- 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 +1 -18
- package/dist/types/shared/constants/index.d.ts +0 -1
- package/dist/types/shared/utils/index.d.ts +1 -3
- package/package.json +4 -17
- package/src/anyspend/abis/abi-usdc-base.ts +97 -97
- package/src/anyspend/abis/erc20-staking.ts +51 -51
- package/src/anyspend/constants/index.ts +11 -13
- package/src/anyspend/index.ts +6 -4
- package/src/anyspend/react/components/AnySpend.tsx +39 -44
- package/src/anyspend/react/components/AnySpendBuySpin.tsx +41 -46
- package/src/anyspend/react/components/AnySpendCustom.tsx +89 -214
- package/src/anyspend/react/components/AnySpendNFT.tsx +6 -11
- package/src/anyspend/react/components/AnySpendNFTButton.tsx +1 -1
- package/src/anyspend/react/components/AnySpendStakeB3.tsx +22 -23
- package/src/anyspend/react/components/AnySpendTournament.tsx +4 -7
- package/src/anyspend/react/components/common/ChainTokenIcon.tsx +1 -1
- package/src/anyspend/react/components/common/OrderDetails.tsx +76 -74
- 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 +17 -9
- 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 +15 -16
- package/src/anyspend/react/components/common/TokenBalance.tsx +2 -2
- package/src/anyspend/react/components/index.ts +0 -2
- package/src/anyspend/react/components/modals/EnterRecipientModal.tsx +2 -2
- package/src/anyspend/react/components/webview/WebviewOnrampOrderStatus.tsx +1 -0
- package/src/anyspend/react/components/webview/WebviewOnrampPayment.tsx +20 -18
- package/src/anyspend/react/hooks/index.ts +2 -1
- package/src/anyspend/react/hooks/useAnyspendCreateOnrampOrder.ts +20 -10
- package/src/anyspend/react/hooks/useAnyspendCreateOrder.ts +8 -9
- 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/useAnyspendSendPermitData.ts +38 -0
- 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/usePermitData.ts +183 -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 +4 -9
- package/src/anyspend/services/anyspend.ts +39 -21
- 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/nft.ts +7 -8
- package/src/anyspend/types/onramp.ts +2 -3
- package/src/anyspend/types/order.ts +16 -9
- package/src/anyspend/types/permit.ts +10 -0
- 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 +9 -14
- package/src/anyspend/types/req-res/getTokenList.ts +4 -4
- package/src/anyspend/types/req-res/index.ts +1 -0
- package/src/anyspend/types/req-res/sendPermitData.ts +10 -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 +7 -2
- package/src/anyspend/utils/orderPayload.ts +9 -21
- 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 +6 -15
- package/src/global-account/react/components/B3Provider/B3Provider.native.tsx +4 -4
- package/src/global-account/react/components/B3Provider/B3Provider.tsx +20 -22
- 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/SignInWithB3.tsx +28 -16
- 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 +1 -0
- 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/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 +31 -43
- 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 +4 -23
- 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/shared/constants/chains/b3Chain.ts +35 -35
- package/src/shared/constants/chains/chainPlatformMap.ts +1 -1
- package/src/shared/constants/chains/supported.ts +1 -1
- package/src/shared/constants/index.ts +1 -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/index.ts +6 -4
- 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/styles/index.css +2 -5
- package/dist/cjs/anyspend/abis/signature-minting.d.ts +0 -79
- package/dist/cjs/anyspend/abis/signature-minting.js +0 -45
- package/dist/cjs/anyspend/react/components/AnyspendSignatureMint.d.ts +0 -8
- package/dist/cjs/anyspend/react/components/AnyspendSignatureMint.js +0 -77
- package/dist/cjs/anyspend/react/components/common/Warning.d.ts +0 -3
- package/dist/cjs/anyspend/react/components/common/Warning.js +0 -7
- package/dist/cjs/anyspend/react/hooks/useSigMint.d.ts +0 -140
- package/dist/cjs/anyspend/react/hooks/useSigMint.js +0 -39
- package/dist/cjs/anyspend/types/metadata.d.ts +0 -26
- package/dist/cjs/anyspend/types/metadata.js +0 -16
- package/dist/cjs/anyspend/types/signature-mint.d.ts +0 -69
- package/dist/cjs/anyspend/types/signature-mint.js +0 -2
- package/dist/cjs/global-account/react/components/SignInWithB3/SignIn.d.ts +0 -14
- package/dist/cjs/global-account/react/components/SignInWithB3/SignIn.js +0 -50
- package/dist/cjs/global-account/react/components/custom/Icon.d.ts +0 -7
- package/dist/cjs/global-account/react/components/custom/Icon.js +0 -52
- package/dist/cjs/global-account/react/components/custom/ManageAccountButton.d.ts +0 -4
- package/dist/cjs/global-account/react/components/custom/ManageAccountButton.js +0 -20
- package/dist/cjs/shared/react/hooks/index.d.ts +0 -1
- package/dist/cjs/shared/react/hooks/index.js +0 -17
- package/dist/cjs/shared/react/hooks/useNavigation.d.ts +0 -17
- package/dist/cjs/shared/react/hooks/useNavigation.js +0 -57
- package/dist/cjs/shared/react/index.d.ts +0 -1
- package/dist/cjs/shared/react/index.js +0 -17
- package/dist/cjs/shared/utils/formatUsername.d.ts +0 -1
- package/dist/cjs/shared/utils/formatUsername.js +0 -8
- package/dist/cjs/shared/utils/truncateAddress.d.ts +0 -6
- package/dist/cjs/shared/utils/truncateAddress.js +0 -16
- package/dist/esm/anyspend/abis/signature-minting.d.ts +0 -79
- package/dist/esm/anyspend/abis/signature-minting.js +0 -42
- package/dist/esm/anyspend/react/components/AnyspendSignatureMint.d.ts +0 -8
- package/dist/esm/anyspend/react/components/AnyspendSignatureMint.js +0 -71
- package/dist/esm/anyspend/react/components/common/Warning.d.ts +0 -3
- package/dist/esm/anyspend/react/components/common/Warning.js +0 -4
- package/dist/esm/anyspend/react/hooks/useSigMint.d.ts +0 -140
- package/dist/esm/anyspend/react/hooks/useSigMint.js +0 -33
- package/dist/esm/anyspend/types/metadata.d.ts +0 -26
- package/dist/esm/anyspend/types/metadata.js +0 -11
- package/dist/esm/anyspend/types/signature-mint.d.ts +0 -69
- package/dist/esm/anyspend/types/signature-mint.js +0 -1
- package/dist/esm/global-account/react/components/SignInWithB3/SignIn.d.ts +0 -14
- package/dist/esm/global-account/react/components/SignInWithB3/SignIn.js +0 -44
- package/dist/esm/global-account/react/components/custom/Icon.d.ts +0 -7
- package/dist/esm/global-account/react/components/custom/Icon.js +0 -50
- package/dist/esm/global-account/react/components/custom/ManageAccountButton.d.ts +0 -4
- package/dist/esm/global-account/react/components/custom/ManageAccountButton.js +0 -17
- package/dist/esm/shared/react/hooks/index.d.ts +0 -1
- package/dist/esm/shared/react/hooks/index.js +0 -1
- package/dist/esm/shared/react/hooks/useNavigation.d.ts +0 -17
- package/dist/esm/shared/react/hooks/useNavigation.js +0 -52
- package/dist/esm/shared/react/index.d.ts +0 -1
- package/dist/esm/shared/react/index.js +0 -1
- package/dist/esm/shared/utils/formatUsername.d.ts +0 -1
- package/dist/esm/shared/utils/formatUsername.js +0 -5
- package/dist/esm/shared/utils/truncateAddress.d.ts +0 -6
- package/dist/esm/shared/utils/truncateAddress.js +0 -12
- package/dist/types/anyspend/abis/signature-minting.d.ts +0 -79
- package/dist/types/anyspend/react/components/AnyspendSignatureMint.d.ts +0 -8
- package/dist/types/anyspend/react/components/common/Warning.d.ts +0 -3
- package/dist/types/anyspend/react/hooks/useSigMint.d.ts +0 -140
- package/dist/types/anyspend/types/metadata.d.ts +0 -26
- package/dist/types/anyspend/types/signature-mint.d.ts +0 -69
- package/dist/types/global-account/react/components/SignInWithB3/SignIn.d.ts +0 -14
- package/dist/types/global-account/react/components/custom/Icon.d.ts +0 -7
- package/dist/types/global-account/react/components/custom/ManageAccountButton.d.ts +0 -4
- package/dist/types/shared/react/hooks/index.d.ts +0 -1
- package/dist/types/shared/react/hooks/useNavigation.d.ts +0 -17
- package/dist/types/shared/react/index.d.ts +0 -1
- package/dist/types/shared/utils/formatUsername.d.ts +0 -1
- package/dist/types/shared/utils/truncateAddress.d.ts +0 -6
- package/src/anyspend/abis/signature-minting.ts +0 -43
- package/src/anyspend/react/components/AnyspendSignatureMint.tsx +0 -147
- package/src/anyspend/react/components/common/Warning.tsx +0 -7
- package/src/anyspend/react/hooks/useSigMint.tsx +0 -55
- package/src/anyspend/types/metadata.ts +0 -41
- package/src/anyspend/types/signature-mint.ts +0 -77
- package/src/global-account/react/components/SignInWithB3/SignIn.tsx +0 -190
- package/src/global-account/react/components/custom/Icon.tsx +0 -102
- package/src/global-account/react/components/custom/ManageAccountButton.tsx +0 -33
- package/src/shared/react/hooks/index.ts +0 -1
- package/src/shared/react/hooks/useNavigation.ts +0 -61
- package/src/shared/react/index.ts +0 -1
- package/src/shared/utils/formatUsername.ts +0 -5
- package/src/shared/utils/truncateAddress.ts +0 -11
|
@@ -39,26 +39,42 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
39
39
|
paymentMethod: z.ZodString;
|
|
40
40
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
41
41
|
redirectUrl: z.ZodString;
|
|
42
|
-
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
43
42
|
}, "strip", z.ZodTypeAny, {
|
|
44
43
|
country: string;
|
|
45
44
|
vendor: import("..").OnrampVendor;
|
|
46
45
|
paymentMethod: string;
|
|
47
46
|
redirectUrl: string;
|
|
48
47
|
ipAddress?: string | undefined;
|
|
49
|
-
stripeAmountInCents?: number | undefined;
|
|
50
48
|
}, {
|
|
51
49
|
country: string;
|
|
52
50
|
vendor: import("..").OnrampVendor;
|
|
53
51
|
paymentMethod: string;
|
|
54
52
|
redirectUrl: string;
|
|
55
53
|
ipAddress?: string | undefined;
|
|
56
|
-
stripeAmountInCents?: number | undefined;
|
|
57
54
|
}>>;
|
|
58
55
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
59
56
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
60
57
|
oneClickBuyUrl: z.ZodNullable<z.ZodString>;
|
|
61
58
|
stripePaymentIntentId: z.ZodNullable<z.ZodString>;
|
|
59
|
+
permit: z.ZodNullable<z.ZodObject<{
|
|
60
|
+
ownerAddress: z.ZodString;
|
|
61
|
+
deadline: z.ZodNumber;
|
|
62
|
+
v: z.ZodNumber;
|
|
63
|
+
r: z.ZodString;
|
|
64
|
+
s: z.ZodString;
|
|
65
|
+
}, "strip", z.ZodTypeAny, {
|
|
66
|
+
ownerAddress: string;
|
|
67
|
+
deadline: number;
|
|
68
|
+
v: number;
|
|
69
|
+
r: string;
|
|
70
|
+
s: string;
|
|
71
|
+
}, {
|
|
72
|
+
ownerAddress: string;
|
|
73
|
+
deadline: number;
|
|
74
|
+
v: number;
|
|
75
|
+
r: string;
|
|
76
|
+
s: string;
|
|
77
|
+
}>>;
|
|
62
78
|
} & {
|
|
63
79
|
type: z.ZodLiteral<import("../order").OrderType.Swap>;
|
|
64
80
|
payload: z.ZodObject<{
|
|
@@ -221,12 +237,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
221
237
|
paymentMethod: string;
|
|
222
238
|
redirectUrl: string;
|
|
223
239
|
ipAddress?: string | undefined;
|
|
224
|
-
stripeAmountInCents?: number | undefined;
|
|
225
240
|
} | null;
|
|
226
241
|
creatorAddress: string | null;
|
|
227
242
|
partnerId: string | null;
|
|
228
243
|
oneClickBuyUrl: string | null;
|
|
229
244
|
stripePaymentIntentId: string | null;
|
|
245
|
+
permit: {
|
|
246
|
+
ownerAddress: string;
|
|
247
|
+
deadline: number;
|
|
248
|
+
v: number;
|
|
249
|
+
r: string;
|
|
250
|
+
s: string;
|
|
251
|
+
} | null;
|
|
230
252
|
payload: {
|
|
231
253
|
expectedDstAmount: string;
|
|
232
254
|
actualDstAmount: string | null;
|
|
@@ -273,12 +295,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
273
295
|
paymentMethod: string;
|
|
274
296
|
redirectUrl: string;
|
|
275
297
|
ipAddress?: string | undefined;
|
|
276
|
-
stripeAmountInCents?: number | undefined;
|
|
277
298
|
} | null;
|
|
278
299
|
creatorAddress: string | null;
|
|
279
300
|
partnerId: string | null;
|
|
280
301
|
oneClickBuyUrl: string | null;
|
|
281
302
|
stripePaymentIntentId: string | null;
|
|
303
|
+
permit: {
|
|
304
|
+
ownerAddress: string;
|
|
305
|
+
deadline: number;
|
|
306
|
+
v: number;
|
|
307
|
+
r: string;
|
|
308
|
+
s: string;
|
|
309
|
+
} | null;
|
|
282
310
|
payload: {
|
|
283
311
|
expectedDstAmount: string;
|
|
284
312
|
actualDstAmount: string | null;
|
|
@@ -302,26 +330,42 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
302
330
|
paymentMethod: z.ZodString;
|
|
303
331
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
304
332
|
redirectUrl: z.ZodString;
|
|
305
|
-
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
306
333
|
}, "strip", z.ZodTypeAny, {
|
|
307
334
|
country: string;
|
|
308
335
|
vendor: import("..").OnrampVendor;
|
|
309
336
|
paymentMethod: string;
|
|
310
337
|
redirectUrl: string;
|
|
311
338
|
ipAddress?: string | undefined;
|
|
312
|
-
stripeAmountInCents?: number | undefined;
|
|
313
339
|
}, {
|
|
314
340
|
country: string;
|
|
315
341
|
vendor: import("..").OnrampVendor;
|
|
316
342
|
paymentMethod: string;
|
|
317
343
|
redirectUrl: string;
|
|
318
344
|
ipAddress?: string | undefined;
|
|
319
|
-
stripeAmountInCents?: number | undefined;
|
|
320
345
|
}>>;
|
|
321
346
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
322
347
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
323
348
|
oneClickBuyUrl: z.ZodNullable<z.ZodString>;
|
|
324
349
|
stripePaymentIntentId: z.ZodNullable<z.ZodString>;
|
|
350
|
+
permit: z.ZodNullable<z.ZodObject<{
|
|
351
|
+
ownerAddress: z.ZodString;
|
|
352
|
+
deadline: z.ZodNumber;
|
|
353
|
+
v: z.ZodNumber;
|
|
354
|
+
r: z.ZodString;
|
|
355
|
+
s: z.ZodString;
|
|
356
|
+
}, "strip", z.ZodTypeAny, {
|
|
357
|
+
ownerAddress: string;
|
|
358
|
+
deadline: number;
|
|
359
|
+
v: number;
|
|
360
|
+
r: string;
|
|
361
|
+
s: string;
|
|
362
|
+
}, {
|
|
363
|
+
ownerAddress: string;
|
|
364
|
+
deadline: number;
|
|
365
|
+
v: number;
|
|
366
|
+
r: string;
|
|
367
|
+
s: string;
|
|
368
|
+
}>>;
|
|
325
369
|
} & {
|
|
326
370
|
type: z.ZodLiteral<import("../order").OrderType.MintNFT>;
|
|
327
371
|
payload: z.ZodObject<{
|
|
@@ -574,12 +618,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
574
618
|
paymentMethod: string;
|
|
575
619
|
redirectUrl: string;
|
|
576
620
|
ipAddress?: string | undefined;
|
|
577
|
-
stripeAmountInCents?: number | undefined;
|
|
578
621
|
} | null;
|
|
579
622
|
creatorAddress: string | null;
|
|
580
623
|
partnerId: string | null;
|
|
581
624
|
oneClickBuyUrl: string | null;
|
|
582
625
|
stripePaymentIntentId: string | null;
|
|
626
|
+
permit: {
|
|
627
|
+
ownerAddress: string;
|
|
628
|
+
deadline: number;
|
|
629
|
+
v: number;
|
|
630
|
+
r: string;
|
|
631
|
+
s: string;
|
|
632
|
+
} | null;
|
|
583
633
|
payload: {
|
|
584
634
|
contractAddress: string;
|
|
585
635
|
tokenId: number | null;
|
|
@@ -642,12 +692,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
642
692
|
paymentMethod: string;
|
|
643
693
|
redirectUrl: string;
|
|
644
694
|
ipAddress?: string | undefined;
|
|
645
|
-
stripeAmountInCents?: number | undefined;
|
|
646
695
|
} | null;
|
|
647
696
|
creatorAddress: string | null;
|
|
648
697
|
partnerId: string | null;
|
|
649
698
|
oneClickBuyUrl: string | null;
|
|
650
699
|
stripePaymentIntentId: string | null;
|
|
700
|
+
permit: {
|
|
701
|
+
ownerAddress: string;
|
|
702
|
+
deadline: number;
|
|
703
|
+
v: number;
|
|
704
|
+
r: string;
|
|
705
|
+
s: string;
|
|
706
|
+
} | null;
|
|
651
707
|
payload: {
|
|
652
708
|
contractAddress: string;
|
|
653
709
|
tokenId: number | null;
|
|
@@ -673,26 +729,42 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
673
729
|
paymentMethod: z.ZodString;
|
|
674
730
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
675
731
|
redirectUrl: z.ZodString;
|
|
676
|
-
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
677
732
|
}, "strip", z.ZodTypeAny, {
|
|
678
733
|
country: string;
|
|
679
734
|
vendor: import("..").OnrampVendor;
|
|
680
735
|
paymentMethod: string;
|
|
681
736
|
redirectUrl: string;
|
|
682
737
|
ipAddress?: string | undefined;
|
|
683
|
-
stripeAmountInCents?: number | undefined;
|
|
684
738
|
}, {
|
|
685
739
|
country: string;
|
|
686
740
|
vendor: import("..").OnrampVendor;
|
|
687
741
|
paymentMethod: string;
|
|
688
742
|
redirectUrl: string;
|
|
689
743
|
ipAddress?: string | undefined;
|
|
690
|
-
stripeAmountInCents?: number | undefined;
|
|
691
744
|
}>>;
|
|
692
745
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
693
746
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
694
747
|
oneClickBuyUrl: z.ZodNullable<z.ZodString>;
|
|
695
748
|
stripePaymentIntentId: z.ZodNullable<z.ZodString>;
|
|
749
|
+
permit: z.ZodNullable<z.ZodObject<{
|
|
750
|
+
ownerAddress: z.ZodString;
|
|
751
|
+
deadline: z.ZodNumber;
|
|
752
|
+
v: z.ZodNumber;
|
|
753
|
+
r: z.ZodString;
|
|
754
|
+
s: z.ZodString;
|
|
755
|
+
}, "strip", z.ZodTypeAny, {
|
|
756
|
+
ownerAddress: string;
|
|
757
|
+
deadline: number;
|
|
758
|
+
v: number;
|
|
759
|
+
r: string;
|
|
760
|
+
s: string;
|
|
761
|
+
}, {
|
|
762
|
+
ownerAddress: string;
|
|
763
|
+
deadline: number;
|
|
764
|
+
v: number;
|
|
765
|
+
r: string;
|
|
766
|
+
s: string;
|
|
767
|
+
}>>;
|
|
696
768
|
} & {
|
|
697
769
|
type: z.ZodLiteral<import("../order").OrderType.JoinTournament>;
|
|
698
770
|
payload: z.ZodObject<{
|
|
@@ -889,12 +961,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
889
961
|
paymentMethod: string;
|
|
890
962
|
redirectUrl: string;
|
|
891
963
|
ipAddress?: string | undefined;
|
|
892
|
-
stripeAmountInCents?: number | undefined;
|
|
893
964
|
} | null;
|
|
894
965
|
creatorAddress: string | null;
|
|
895
966
|
partnerId: string | null;
|
|
896
967
|
oneClickBuyUrl: string | null;
|
|
897
968
|
stripePaymentIntentId: string | null;
|
|
969
|
+
permit: {
|
|
970
|
+
ownerAddress: string;
|
|
971
|
+
deadline: number;
|
|
972
|
+
v: number;
|
|
973
|
+
r: string;
|
|
974
|
+
s: string;
|
|
975
|
+
} | null;
|
|
898
976
|
payload: {
|
|
899
977
|
contractAddress: string;
|
|
900
978
|
entryPrice: string;
|
|
@@ -947,12 +1025,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
947
1025
|
paymentMethod: string;
|
|
948
1026
|
redirectUrl: string;
|
|
949
1027
|
ipAddress?: string | undefined;
|
|
950
|
-
stripeAmountInCents?: number | undefined;
|
|
951
1028
|
} | null;
|
|
952
1029
|
creatorAddress: string | null;
|
|
953
1030
|
partnerId: string | null;
|
|
954
1031
|
oneClickBuyUrl: string | null;
|
|
955
1032
|
stripePaymentIntentId: string | null;
|
|
1033
|
+
permit: {
|
|
1034
|
+
ownerAddress: string;
|
|
1035
|
+
deadline: number;
|
|
1036
|
+
v: number;
|
|
1037
|
+
r: string;
|
|
1038
|
+
s: string;
|
|
1039
|
+
} | null;
|
|
956
1040
|
payload: {
|
|
957
1041
|
contractAddress: string;
|
|
958
1042
|
entryPrice: string;
|
|
@@ -976,26 +1060,42 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
976
1060
|
paymentMethod: z.ZodString;
|
|
977
1061
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
978
1062
|
redirectUrl: z.ZodString;
|
|
979
|
-
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
980
1063
|
}, "strip", z.ZodTypeAny, {
|
|
981
1064
|
country: string;
|
|
982
1065
|
vendor: import("..").OnrampVendor;
|
|
983
1066
|
paymentMethod: string;
|
|
984
1067
|
redirectUrl: string;
|
|
985
1068
|
ipAddress?: string | undefined;
|
|
986
|
-
stripeAmountInCents?: number | undefined;
|
|
987
1069
|
}, {
|
|
988
1070
|
country: string;
|
|
989
1071
|
vendor: import("..").OnrampVendor;
|
|
990
1072
|
paymentMethod: string;
|
|
991
1073
|
redirectUrl: string;
|
|
992
1074
|
ipAddress?: string | undefined;
|
|
993
|
-
stripeAmountInCents?: number | undefined;
|
|
994
1075
|
}>>;
|
|
995
1076
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
996
1077
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
997
1078
|
oneClickBuyUrl: z.ZodNullable<z.ZodString>;
|
|
998
1079
|
stripePaymentIntentId: z.ZodNullable<z.ZodString>;
|
|
1080
|
+
permit: z.ZodNullable<z.ZodObject<{
|
|
1081
|
+
ownerAddress: z.ZodString;
|
|
1082
|
+
deadline: z.ZodNumber;
|
|
1083
|
+
v: z.ZodNumber;
|
|
1084
|
+
r: z.ZodString;
|
|
1085
|
+
s: z.ZodString;
|
|
1086
|
+
}, "strip", z.ZodTypeAny, {
|
|
1087
|
+
ownerAddress: string;
|
|
1088
|
+
deadline: number;
|
|
1089
|
+
v: number;
|
|
1090
|
+
r: string;
|
|
1091
|
+
s: string;
|
|
1092
|
+
}, {
|
|
1093
|
+
ownerAddress: string;
|
|
1094
|
+
deadline: number;
|
|
1095
|
+
v: number;
|
|
1096
|
+
r: string;
|
|
1097
|
+
s: string;
|
|
1098
|
+
}>>;
|
|
999
1099
|
} & {
|
|
1000
1100
|
type: z.ZodLiteral<import("../order").OrderType.FundTournament>;
|
|
1001
1101
|
payload: z.ZodObject<{
|
|
@@ -1192,12 +1292,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1192
1292
|
paymentMethod: string;
|
|
1193
1293
|
redirectUrl: string;
|
|
1194
1294
|
ipAddress?: string | undefined;
|
|
1195
|
-
stripeAmountInCents?: number | undefined;
|
|
1196
1295
|
} | null;
|
|
1197
1296
|
creatorAddress: string | null;
|
|
1198
1297
|
partnerId: string | null;
|
|
1199
1298
|
oneClickBuyUrl: string | null;
|
|
1200
1299
|
stripePaymentIntentId: string | null;
|
|
1300
|
+
permit: {
|
|
1301
|
+
ownerAddress: string;
|
|
1302
|
+
deadline: number;
|
|
1303
|
+
v: number;
|
|
1304
|
+
r: string;
|
|
1305
|
+
s: string;
|
|
1306
|
+
} | null;
|
|
1201
1307
|
payload: {
|
|
1202
1308
|
contractAddress: string;
|
|
1203
1309
|
fundAmount: string;
|
|
@@ -1250,12 +1356,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1250
1356
|
paymentMethod: string;
|
|
1251
1357
|
redirectUrl: string;
|
|
1252
1358
|
ipAddress?: string | undefined;
|
|
1253
|
-
stripeAmountInCents?: number | undefined;
|
|
1254
1359
|
} | null;
|
|
1255
1360
|
creatorAddress: string | null;
|
|
1256
1361
|
partnerId: string | null;
|
|
1257
1362
|
oneClickBuyUrl: string | null;
|
|
1258
1363
|
stripePaymentIntentId: string | null;
|
|
1364
|
+
permit: {
|
|
1365
|
+
ownerAddress: string;
|
|
1366
|
+
deadline: number;
|
|
1367
|
+
v: number;
|
|
1368
|
+
r: string;
|
|
1369
|
+
s: string;
|
|
1370
|
+
} | null;
|
|
1259
1371
|
payload: {
|
|
1260
1372
|
contractAddress: string;
|
|
1261
1373
|
fundAmount: string;
|
|
@@ -1279,26 +1391,42 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1279
1391
|
paymentMethod: z.ZodString;
|
|
1280
1392
|
ipAddress: z.ZodOptional<z.ZodString>;
|
|
1281
1393
|
redirectUrl: z.ZodString;
|
|
1282
|
-
stripeAmountInCents: z.ZodOptional<z.ZodNumber>;
|
|
1283
1394
|
}, "strip", z.ZodTypeAny, {
|
|
1284
1395
|
country: string;
|
|
1285
1396
|
vendor: import("..").OnrampVendor;
|
|
1286
1397
|
paymentMethod: string;
|
|
1287
1398
|
redirectUrl: string;
|
|
1288
1399
|
ipAddress?: string | undefined;
|
|
1289
|
-
stripeAmountInCents?: number | undefined;
|
|
1290
1400
|
}, {
|
|
1291
1401
|
country: string;
|
|
1292
1402
|
vendor: import("..").OnrampVendor;
|
|
1293
1403
|
paymentMethod: string;
|
|
1294
1404
|
redirectUrl: string;
|
|
1295
1405
|
ipAddress?: string | undefined;
|
|
1296
|
-
stripeAmountInCents?: number | undefined;
|
|
1297
1406
|
}>>;
|
|
1298
1407
|
creatorAddress: z.ZodNullable<z.ZodString>;
|
|
1299
1408
|
partnerId: z.ZodNullable<z.ZodString>;
|
|
1300
1409
|
oneClickBuyUrl: z.ZodNullable<z.ZodString>;
|
|
1301
1410
|
stripePaymentIntentId: z.ZodNullable<z.ZodString>;
|
|
1411
|
+
permit: z.ZodNullable<z.ZodObject<{
|
|
1412
|
+
ownerAddress: z.ZodString;
|
|
1413
|
+
deadline: z.ZodNumber;
|
|
1414
|
+
v: z.ZodNumber;
|
|
1415
|
+
r: z.ZodString;
|
|
1416
|
+
s: z.ZodString;
|
|
1417
|
+
}, "strip", z.ZodTypeAny, {
|
|
1418
|
+
ownerAddress: string;
|
|
1419
|
+
deadline: number;
|
|
1420
|
+
v: number;
|
|
1421
|
+
r: string;
|
|
1422
|
+
s: string;
|
|
1423
|
+
}, {
|
|
1424
|
+
ownerAddress: string;
|
|
1425
|
+
deadline: number;
|
|
1426
|
+
v: number;
|
|
1427
|
+
r: string;
|
|
1428
|
+
s: string;
|
|
1429
|
+
}>>;
|
|
1302
1430
|
} & {
|
|
1303
1431
|
type: z.ZodLiteral<import("../order").OrderType.Custom>;
|
|
1304
1432
|
payload: z.ZodObject<{
|
|
@@ -1471,12 +1599,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1471
1599
|
paymentMethod: string;
|
|
1472
1600
|
redirectUrl: string;
|
|
1473
1601
|
ipAddress?: string | undefined;
|
|
1474
|
-
stripeAmountInCents?: number | undefined;
|
|
1475
1602
|
} | null;
|
|
1476
1603
|
creatorAddress: string | null;
|
|
1477
1604
|
partnerId: string | null;
|
|
1478
1605
|
oneClickBuyUrl: string | null;
|
|
1479
1606
|
stripePaymentIntentId: string | null;
|
|
1607
|
+
permit: {
|
|
1608
|
+
ownerAddress: string;
|
|
1609
|
+
deadline: number;
|
|
1610
|
+
v: number;
|
|
1611
|
+
r: string;
|
|
1612
|
+
s: string;
|
|
1613
|
+
} | null;
|
|
1480
1614
|
payload: {
|
|
1481
1615
|
data: string;
|
|
1482
1616
|
to: string;
|
|
@@ -1526,12 +1660,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1526
1660
|
paymentMethod: string;
|
|
1527
1661
|
redirectUrl: string;
|
|
1528
1662
|
ipAddress?: string | undefined;
|
|
1529
|
-
stripeAmountInCents?: number | undefined;
|
|
1530
1663
|
} | null;
|
|
1531
1664
|
creatorAddress: string | null;
|
|
1532
1665
|
partnerId: string | null;
|
|
1533
1666
|
oneClickBuyUrl: string | null;
|
|
1534
1667
|
stripePaymentIntentId: string | null;
|
|
1668
|
+
permit: {
|
|
1669
|
+
ownerAddress: string;
|
|
1670
|
+
deadline: number;
|
|
1671
|
+
v: number;
|
|
1672
|
+
r: string;
|
|
1673
|
+
s: string;
|
|
1674
|
+
} | null;
|
|
1535
1675
|
payload: {
|
|
1536
1676
|
data: string;
|
|
1537
1677
|
to: string;
|
|
@@ -1661,12 +1801,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1661
1801
|
paymentMethod: string;
|
|
1662
1802
|
redirectUrl: string;
|
|
1663
1803
|
ipAddress?: string | undefined;
|
|
1664
|
-
stripeAmountInCents?: number | undefined;
|
|
1665
1804
|
} | null;
|
|
1666
1805
|
creatorAddress: string | null;
|
|
1667
1806
|
partnerId: string | null;
|
|
1668
1807
|
oneClickBuyUrl: string | null;
|
|
1669
1808
|
stripePaymentIntentId: string | null;
|
|
1809
|
+
permit: {
|
|
1810
|
+
ownerAddress: string;
|
|
1811
|
+
deadline: number;
|
|
1812
|
+
v: number;
|
|
1813
|
+
r: string;
|
|
1814
|
+
s: string;
|
|
1815
|
+
} | null;
|
|
1670
1816
|
payload: {
|
|
1671
1817
|
expectedDstAmount: string;
|
|
1672
1818
|
actualDstAmount: string | null;
|
|
@@ -1727,12 +1873,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1727
1873
|
paymentMethod: string;
|
|
1728
1874
|
redirectUrl: string;
|
|
1729
1875
|
ipAddress?: string | undefined;
|
|
1730
|
-
stripeAmountInCents?: number | undefined;
|
|
1731
1876
|
} | null;
|
|
1732
1877
|
creatorAddress: string | null;
|
|
1733
1878
|
partnerId: string | null;
|
|
1734
1879
|
oneClickBuyUrl: string | null;
|
|
1735
1880
|
stripePaymentIntentId: string | null;
|
|
1881
|
+
permit: {
|
|
1882
|
+
ownerAddress: string;
|
|
1883
|
+
deadline: number;
|
|
1884
|
+
v: number;
|
|
1885
|
+
r: string;
|
|
1886
|
+
s: string;
|
|
1887
|
+
} | null;
|
|
1736
1888
|
payload: {
|
|
1737
1889
|
contractAddress: string;
|
|
1738
1890
|
tokenId: number | null;
|
|
@@ -1787,12 +1939,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1787
1939
|
paymentMethod: string;
|
|
1788
1940
|
redirectUrl: string;
|
|
1789
1941
|
ipAddress?: string | undefined;
|
|
1790
|
-
stripeAmountInCents?: number | undefined;
|
|
1791
1942
|
} | null;
|
|
1792
1943
|
creatorAddress: string | null;
|
|
1793
1944
|
partnerId: string | null;
|
|
1794
1945
|
oneClickBuyUrl: string | null;
|
|
1795
1946
|
stripePaymentIntentId: string | null;
|
|
1947
|
+
permit: {
|
|
1948
|
+
ownerAddress: string;
|
|
1949
|
+
deadline: number;
|
|
1950
|
+
v: number;
|
|
1951
|
+
r: string;
|
|
1952
|
+
s: string;
|
|
1953
|
+
} | null;
|
|
1796
1954
|
payload: {
|
|
1797
1955
|
contractAddress: string;
|
|
1798
1956
|
entryPrice: string;
|
|
@@ -1845,12 +2003,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1845
2003
|
paymentMethod: string;
|
|
1846
2004
|
redirectUrl: string;
|
|
1847
2005
|
ipAddress?: string | undefined;
|
|
1848
|
-
stripeAmountInCents?: number | undefined;
|
|
1849
2006
|
} | null;
|
|
1850
2007
|
creatorAddress: string | null;
|
|
1851
2008
|
partnerId: string | null;
|
|
1852
2009
|
oneClickBuyUrl: string | null;
|
|
1853
2010
|
stripePaymentIntentId: string | null;
|
|
2011
|
+
permit: {
|
|
2012
|
+
ownerAddress: string;
|
|
2013
|
+
deadline: number;
|
|
2014
|
+
v: number;
|
|
2015
|
+
r: string;
|
|
2016
|
+
s: string;
|
|
2017
|
+
} | null;
|
|
1854
2018
|
payload: {
|
|
1855
2019
|
contractAddress: string;
|
|
1856
2020
|
fundAmount: string;
|
|
@@ -1898,12 +2062,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1898
2062
|
paymentMethod: string;
|
|
1899
2063
|
redirectUrl: string;
|
|
1900
2064
|
ipAddress?: string | undefined;
|
|
1901
|
-
stripeAmountInCents?: number | undefined;
|
|
1902
2065
|
} | null;
|
|
1903
2066
|
creatorAddress: string | null;
|
|
1904
2067
|
partnerId: string | null;
|
|
1905
2068
|
oneClickBuyUrl: string | null;
|
|
1906
2069
|
stripePaymentIntentId: string | null;
|
|
2070
|
+
permit: {
|
|
2071
|
+
ownerAddress: string;
|
|
2072
|
+
deadline: number;
|
|
2073
|
+
v: number;
|
|
2074
|
+
r: string;
|
|
2075
|
+
s: string;
|
|
2076
|
+
} | null;
|
|
1907
2077
|
payload: {
|
|
1908
2078
|
data: string;
|
|
1909
2079
|
to: string;
|
|
@@ -1983,12 +2153,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
1983
2153
|
paymentMethod: string;
|
|
1984
2154
|
redirectUrl: string;
|
|
1985
2155
|
ipAddress?: string | undefined;
|
|
1986
|
-
stripeAmountInCents?: number | undefined;
|
|
1987
2156
|
} | null;
|
|
1988
2157
|
creatorAddress: string | null;
|
|
1989
2158
|
partnerId: string | null;
|
|
1990
2159
|
oneClickBuyUrl: string | null;
|
|
1991
2160
|
stripePaymentIntentId: string | null;
|
|
2161
|
+
permit: {
|
|
2162
|
+
ownerAddress: string;
|
|
2163
|
+
deadline: number;
|
|
2164
|
+
v: number;
|
|
2165
|
+
r: string;
|
|
2166
|
+
s: string;
|
|
2167
|
+
} | null;
|
|
1992
2168
|
payload: {
|
|
1993
2169
|
expectedDstAmount: string;
|
|
1994
2170
|
actualDstAmount: string | null;
|
|
@@ -2049,12 +2225,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2049
2225
|
paymentMethod: string;
|
|
2050
2226
|
redirectUrl: string;
|
|
2051
2227
|
ipAddress?: string | undefined;
|
|
2052
|
-
stripeAmountInCents?: number | undefined;
|
|
2053
2228
|
} | null;
|
|
2054
2229
|
creatorAddress: string | null;
|
|
2055
2230
|
partnerId: string | null;
|
|
2056
2231
|
oneClickBuyUrl: string | null;
|
|
2057
2232
|
stripePaymentIntentId: string | null;
|
|
2233
|
+
permit: {
|
|
2234
|
+
ownerAddress: string;
|
|
2235
|
+
deadline: number;
|
|
2236
|
+
v: number;
|
|
2237
|
+
r: string;
|
|
2238
|
+
s: string;
|
|
2239
|
+
} | null;
|
|
2058
2240
|
payload: {
|
|
2059
2241
|
contractAddress: string;
|
|
2060
2242
|
tokenId: number | null;
|
|
@@ -2109,12 +2291,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2109
2291
|
paymentMethod: string;
|
|
2110
2292
|
redirectUrl: string;
|
|
2111
2293
|
ipAddress?: string | undefined;
|
|
2112
|
-
stripeAmountInCents?: number | undefined;
|
|
2113
2294
|
} | null;
|
|
2114
2295
|
creatorAddress: string | null;
|
|
2115
2296
|
partnerId: string | null;
|
|
2116
2297
|
oneClickBuyUrl: string | null;
|
|
2117
2298
|
stripePaymentIntentId: string | null;
|
|
2299
|
+
permit: {
|
|
2300
|
+
ownerAddress: string;
|
|
2301
|
+
deadline: number;
|
|
2302
|
+
v: number;
|
|
2303
|
+
r: string;
|
|
2304
|
+
s: string;
|
|
2305
|
+
} | null;
|
|
2118
2306
|
payload: {
|
|
2119
2307
|
contractAddress: string;
|
|
2120
2308
|
entryPrice: string;
|
|
@@ -2167,12 +2355,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2167
2355
|
paymentMethod: string;
|
|
2168
2356
|
redirectUrl: string;
|
|
2169
2357
|
ipAddress?: string | undefined;
|
|
2170
|
-
stripeAmountInCents?: number | undefined;
|
|
2171
2358
|
} | null;
|
|
2172
2359
|
creatorAddress: string | null;
|
|
2173
2360
|
partnerId: string | null;
|
|
2174
2361
|
oneClickBuyUrl: string | null;
|
|
2175
2362
|
stripePaymentIntentId: string | null;
|
|
2363
|
+
permit: {
|
|
2364
|
+
ownerAddress: string;
|
|
2365
|
+
deadline: number;
|
|
2366
|
+
v: number;
|
|
2367
|
+
r: string;
|
|
2368
|
+
s: string;
|
|
2369
|
+
} | null;
|
|
2176
2370
|
payload: {
|
|
2177
2371
|
contractAddress: string;
|
|
2178
2372
|
fundAmount: string;
|
|
@@ -2220,12 +2414,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2220
2414
|
paymentMethod: string;
|
|
2221
2415
|
redirectUrl: string;
|
|
2222
2416
|
ipAddress?: string | undefined;
|
|
2223
|
-
stripeAmountInCents?: number | undefined;
|
|
2224
2417
|
} | null;
|
|
2225
2418
|
creatorAddress: string | null;
|
|
2226
2419
|
partnerId: string | null;
|
|
2227
2420
|
oneClickBuyUrl: string | null;
|
|
2228
2421
|
stripePaymentIntentId: string | null;
|
|
2422
|
+
permit: {
|
|
2423
|
+
ownerAddress: string;
|
|
2424
|
+
deadline: number;
|
|
2425
|
+
v: number;
|
|
2426
|
+
r: string;
|
|
2427
|
+
s: string;
|
|
2428
|
+
} | null;
|
|
2229
2429
|
payload: {
|
|
2230
2430
|
data: string;
|
|
2231
2431
|
to: string;
|
|
@@ -2309,12 +2509,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2309
2509
|
paymentMethod: string;
|
|
2310
2510
|
redirectUrl: string;
|
|
2311
2511
|
ipAddress?: string | undefined;
|
|
2312
|
-
stripeAmountInCents?: number | undefined;
|
|
2313
2512
|
} | null;
|
|
2314
2513
|
creatorAddress: string | null;
|
|
2315
2514
|
partnerId: string | null;
|
|
2316
2515
|
oneClickBuyUrl: string | null;
|
|
2317
2516
|
stripePaymentIntentId: string | null;
|
|
2517
|
+
permit: {
|
|
2518
|
+
ownerAddress: string;
|
|
2519
|
+
deadline: number;
|
|
2520
|
+
v: number;
|
|
2521
|
+
r: string;
|
|
2522
|
+
s: string;
|
|
2523
|
+
} | null;
|
|
2318
2524
|
payload: {
|
|
2319
2525
|
expectedDstAmount: string;
|
|
2320
2526
|
actualDstAmount: string | null;
|
|
@@ -2375,12 +2581,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2375
2581
|
paymentMethod: string;
|
|
2376
2582
|
redirectUrl: string;
|
|
2377
2583
|
ipAddress?: string | undefined;
|
|
2378
|
-
stripeAmountInCents?: number | undefined;
|
|
2379
2584
|
} | null;
|
|
2380
2585
|
creatorAddress: string | null;
|
|
2381
2586
|
partnerId: string | null;
|
|
2382
2587
|
oneClickBuyUrl: string | null;
|
|
2383
2588
|
stripePaymentIntentId: string | null;
|
|
2589
|
+
permit: {
|
|
2590
|
+
ownerAddress: string;
|
|
2591
|
+
deadline: number;
|
|
2592
|
+
v: number;
|
|
2593
|
+
r: string;
|
|
2594
|
+
s: string;
|
|
2595
|
+
} | null;
|
|
2384
2596
|
payload: {
|
|
2385
2597
|
contractAddress: string;
|
|
2386
2598
|
tokenId: number | null;
|
|
@@ -2435,12 +2647,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2435
2647
|
paymentMethod: string;
|
|
2436
2648
|
redirectUrl: string;
|
|
2437
2649
|
ipAddress?: string | undefined;
|
|
2438
|
-
stripeAmountInCents?: number | undefined;
|
|
2439
2650
|
} | null;
|
|
2440
2651
|
creatorAddress: string | null;
|
|
2441
2652
|
partnerId: string | null;
|
|
2442
2653
|
oneClickBuyUrl: string | null;
|
|
2443
2654
|
stripePaymentIntentId: string | null;
|
|
2655
|
+
permit: {
|
|
2656
|
+
ownerAddress: string;
|
|
2657
|
+
deadline: number;
|
|
2658
|
+
v: number;
|
|
2659
|
+
r: string;
|
|
2660
|
+
s: string;
|
|
2661
|
+
} | null;
|
|
2444
2662
|
payload: {
|
|
2445
2663
|
contractAddress: string;
|
|
2446
2664
|
entryPrice: string;
|
|
@@ -2493,12 +2711,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2493
2711
|
paymentMethod: string;
|
|
2494
2712
|
redirectUrl: string;
|
|
2495
2713
|
ipAddress?: string | undefined;
|
|
2496
|
-
stripeAmountInCents?: number | undefined;
|
|
2497
2714
|
} | null;
|
|
2498
2715
|
creatorAddress: string | null;
|
|
2499
2716
|
partnerId: string | null;
|
|
2500
2717
|
oneClickBuyUrl: string | null;
|
|
2501
2718
|
stripePaymentIntentId: string | null;
|
|
2719
|
+
permit: {
|
|
2720
|
+
ownerAddress: string;
|
|
2721
|
+
deadline: number;
|
|
2722
|
+
v: number;
|
|
2723
|
+
r: string;
|
|
2724
|
+
s: string;
|
|
2725
|
+
} | null;
|
|
2502
2726
|
payload: {
|
|
2503
2727
|
contractAddress: string;
|
|
2504
2728
|
fundAmount: string;
|
|
@@ -2546,12 +2770,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2546
2770
|
paymentMethod: string;
|
|
2547
2771
|
redirectUrl: string;
|
|
2548
2772
|
ipAddress?: string | undefined;
|
|
2549
|
-
stripeAmountInCents?: number | undefined;
|
|
2550
2773
|
} | null;
|
|
2551
2774
|
creatorAddress: string | null;
|
|
2552
2775
|
partnerId: string | null;
|
|
2553
2776
|
oneClickBuyUrl: string | null;
|
|
2554
2777
|
stripePaymentIntentId: string | null;
|
|
2778
|
+
permit: {
|
|
2779
|
+
ownerAddress: string;
|
|
2780
|
+
deadline: number;
|
|
2781
|
+
v: number;
|
|
2782
|
+
r: string;
|
|
2783
|
+
s: string;
|
|
2784
|
+
} | null;
|
|
2555
2785
|
payload: {
|
|
2556
2786
|
data: string;
|
|
2557
2787
|
to: string;
|
|
@@ -2636,12 +2866,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2636
2866
|
paymentMethod: string;
|
|
2637
2867
|
redirectUrl: string;
|
|
2638
2868
|
ipAddress?: string | undefined;
|
|
2639
|
-
stripeAmountInCents?: number | undefined;
|
|
2640
2869
|
} | null;
|
|
2641
2870
|
creatorAddress: string | null;
|
|
2642
2871
|
partnerId: string | null;
|
|
2643
2872
|
oneClickBuyUrl: string | null;
|
|
2644
2873
|
stripePaymentIntentId: string | null;
|
|
2874
|
+
permit: {
|
|
2875
|
+
ownerAddress: string;
|
|
2876
|
+
deadline: number;
|
|
2877
|
+
v: number;
|
|
2878
|
+
r: string;
|
|
2879
|
+
s: string;
|
|
2880
|
+
} | null;
|
|
2645
2881
|
payload: {
|
|
2646
2882
|
expectedDstAmount: string;
|
|
2647
2883
|
actualDstAmount: string | null;
|
|
@@ -2702,12 +2938,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2702
2938
|
paymentMethod: string;
|
|
2703
2939
|
redirectUrl: string;
|
|
2704
2940
|
ipAddress?: string | undefined;
|
|
2705
|
-
stripeAmountInCents?: number | undefined;
|
|
2706
2941
|
} | null;
|
|
2707
2942
|
creatorAddress: string | null;
|
|
2708
2943
|
partnerId: string | null;
|
|
2709
2944
|
oneClickBuyUrl: string | null;
|
|
2710
2945
|
stripePaymentIntentId: string | null;
|
|
2946
|
+
permit: {
|
|
2947
|
+
ownerAddress: string;
|
|
2948
|
+
deadline: number;
|
|
2949
|
+
v: number;
|
|
2950
|
+
r: string;
|
|
2951
|
+
s: string;
|
|
2952
|
+
} | null;
|
|
2711
2953
|
payload: {
|
|
2712
2954
|
contractAddress: string;
|
|
2713
2955
|
tokenId: number | null;
|
|
@@ -2762,12 +3004,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2762
3004
|
paymentMethod: string;
|
|
2763
3005
|
redirectUrl: string;
|
|
2764
3006
|
ipAddress?: string | undefined;
|
|
2765
|
-
stripeAmountInCents?: number | undefined;
|
|
2766
3007
|
} | null;
|
|
2767
3008
|
creatorAddress: string | null;
|
|
2768
3009
|
partnerId: string | null;
|
|
2769
3010
|
oneClickBuyUrl: string | null;
|
|
2770
3011
|
stripePaymentIntentId: string | null;
|
|
3012
|
+
permit: {
|
|
3013
|
+
ownerAddress: string;
|
|
3014
|
+
deadline: number;
|
|
3015
|
+
v: number;
|
|
3016
|
+
r: string;
|
|
3017
|
+
s: string;
|
|
3018
|
+
} | null;
|
|
2771
3019
|
payload: {
|
|
2772
3020
|
contractAddress: string;
|
|
2773
3021
|
entryPrice: string;
|
|
@@ -2820,12 +3068,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2820
3068
|
paymentMethod: string;
|
|
2821
3069
|
redirectUrl: string;
|
|
2822
3070
|
ipAddress?: string | undefined;
|
|
2823
|
-
stripeAmountInCents?: number | undefined;
|
|
2824
3071
|
} | null;
|
|
2825
3072
|
creatorAddress: string | null;
|
|
2826
3073
|
partnerId: string | null;
|
|
2827
3074
|
oneClickBuyUrl: string | null;
|
|
2828
3075
|
stripePaymentIntentId: string | null;
|
|
3076
|
+
permit: {
|
|
3077
|
+
ownerAddress: string;
|
|
3078
|
+
deadline: number;
|
|
3079
|
+
v: number;
|
|
3080
|
+
r: string;
|
|
3081
|
+
s: string;
|
|
3082
|
+
} | null;
|
|
2829
3083
|
payload: {
|
|
2830
3084
|
contractAddress: string;
|
|
2831
3085
|
fundAmount: string;
|
|
@@ -2873,12 +3127,18 @@ export declare const zGetOrderAndTxsResponse: z.ZodObject<{
|
|
|
2873
3127
|
paymentMethod: string;
|
|
2874
3128
|
redirectUrl: string;
|
|
2875
3129
|
ipAddress?: string | undefined;
|
|
2876
|
-
stripeAmountInCents?: number | undefined;
|
|
2877
3130
|
} | null;
|
|
2878
3131
|
creatorAddress: string | null;
|
|
2879
3132
|
partnerId: string | null;
|
|
2880
3133
|
oneClickBuyUrl: string | null;
|
|
2881
3134
|
stripePaymentIntentId: string | null;
|
|
3135
|
+
permit: {
|
|
3136
|
+
ownerAddress: string;
|
|
3137
|
+
deadline: number;
|
|
3138
|
+
v: number;
|
|
3139
|
+
r: string;
|
|
3140
|
+
s: string;
|
|
3141
|
+
} | null;
|
|
2882
3142
|
payload: {
|
|
2883
3143
|
data: string;
|
|
2884
3144
|
to: string;
|