@b3dotfun/sdk 0.0.43 → 0.0.44-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/anyspend/react/components/AnySpend.js +82 -24
- package/dist/cjs/anyspend/react/components/common/OrderDetails.js +2 -7
- package/dist/cjs/anyspend/react/components/common/OrderHistoryItem.js +1 -6
- package/dist/cjs/anyspend/react/hooks/useAnyspendFlow.d.ts +1 -0
- package/dist/cjs/anyspend/react/hooks/useAnyspendFlow.js +3 -3
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +2 -0
- package/dist/cjs/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +48 -0
- package/dist/cjs/anyspend/types/api.d.ts +15 -20
- package/dist/cjs/anyspend/utils/orderPayload.js +0 -4
- package/dist/cjs/shared/react/hooks/useCurrencyConversion.d.ts +1 -1
- package/dist/cjs/shared/react/hooks/useCurrencyConversion.js +30 -12
- package/dist/esm/anyspend/react/components/AnySpend.js +82 -24
- package/dist/esm/anyspend/react/components/common/OrderDetails.js +2 -7
- package/dist/esm/anyspend/react/components/common/OrderHistoryItem.js +1 -6
- package/dist/esm/anyspend/react/hooks/useAnyspendFlow.d.ts +1 -0
- package/dist/esm/anyspend/react/hooks/useAnyspendFlow.js +3 -3
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +2 -0
- package/dist/esm/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +48 -0
- package/dist/esm/anyspend/types/api.d.ts +15 -20
- package/dist/esm/anyspend/utils/orderPayload.js +0 -4
- package/dist/esm/shared/react/hooks/useCurrencyConversion.d.ts +1 -1
- package/dist/esm/shared/react/hooks/useCurrencyConversion.js +30 -12
- package/dist/types/anyspend/react/hooks/useAnyspendFlow.d.ts +1 -0
- package/dist/types/anyspend/react/hooks/useAnyspendOrderAndTransactions.d.ts +2 -0
- package/dist/types/anyspend/react/hooks/useAnyspendOrderHistory.d.ts +48 -0
- package/dist/types/anyspend/types/api.d.ts +15 -20
- package/dist/types/shared/react/hooks/useCurrencyConversion.d.ts +1 -1
- package/package.json +1 -1
- package/src/anyspend/react/components/AnySpend.tsx +93 -28
- package/src/anyspend/react/components/common/OrderDetails.tsx +3 -9
- package/src/anyspend/react/components/common/OrderHistoryItem.tsx +1 -7
- package/src/anyspend/react/hooks/useAnyspendFlow.ts +3 -3
- package/src/anyspend/types/api.ts +15 -20
- package/src/anyspend/utils/orderPayload.ts +0 -4
- package/src/shared/react/hooks/useCurrencyConversion.ts +39 -12
|
@@ -1,9 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.useCurrencyConversion = useCurrencyConversion;
|
|
4
|
-
const
|
|
4
|
+
const react_query_1 = require("@tanstack/react-query");
|
|
5
5
|
const number_1 = require("../../../shared/utils/number");
|
|
6
6
|
const currencyStore_1 = require("../stores/currencyStore");
|
|
7
|
+
const COINBASE_API_URL = "https://api.coinbase.com/v2/exchange-rates";
|
|
8
|
+
const REFETCH_INTERVAL_MS = 30000;
|
|
9
|
+
/**
|
|
10
|
+
* Fetches all exchange rates for a given base currency from Coinbase API.
|
|
11
|
+
*/
|
|
12
|
+
async function fetchAllExchangeRates(baseCurrency) {
|
|
13
|
+
const response = await fetch(`${COINBASE_API_URL}?currency=${baseCurrency}`);
|
|
14
|
+
if (!response.ok) {
|
|
15
|
+
throw new Error(`Failed to fetch exchange rates for ${baseCurrency}: ${response.status}`);
|
|
16
|
+
}
|
|
17
|
+
const data = await response.json();
|
|
18
|
+
const rates = {};
|
|
19
|
+
for (const [currency, rate] of Object.entries(data.data.rates)) {
|
|
20
|
+
rates[currency] = parseFloat(rate);
|
|
21
|
+
}
|
|
22
|
+
return rates;
|
|
23
|
+
}
|
|
7
24
|
/**
|
|
8
25
|
* Hook for currency conversion and formatting with real-time exchange rates.
|
|
9
26
|
*
|
|
@@ -23,16 +40,18 @@ const currencyStore_1 = require("../stores/currencyStore");
|
|
|
23
40
|
function useCurrencyConversion() {
|
|
24
41
|
const selectedCurrency = (0, currencyStore_1.useCurrencyStore)(state => state.selectedCurrency);
|
|
25
42
|
const baseCurrency = (0, currencyStore_1.useCurrencyStore)(state => state.baseCurrency);
|
|
26
|
-
//
|
|
27
|
-
const {
|
|
28
|
-
baseCurrency,
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
quoteCurrency: "USD",
|
|
43
|
+
// Fetch all exchange rates for the base currency
|
|
44
|
+
const { data: exchangeRates } = (0, react_query_1.useQuery)({
|
|
45
|
+
queryKey: ["exchangeRates", baseCurrency],
|
|
46
|
+
queryFn: () => fetchAllExchangeRates(baseCurrency),
|
|
47
|
+
refetchInterval: REFETCH_INTERVAL_MS,
|
|
48
|
+
staleTime: REFETCH_INTERVAL_MS / 2,
|
|
49
|
+
retry: 3,
|
|
50
|
+
retryDelay: attemptIndex => Math.min(1000 * 2 ** attemptIndex, REFETCH_INTERVAL_MS),
|
|
35
51
|
});
|
|
52
|
+
// Extract specific rates from the full rates object
|
|
53
|
+
const exchangeRate = exchangeRates?.[selectedCurrency];
|
|
54
|
+
const usdRate = exchangeRates?.["USD"];
|
|
36
55
|
/**
|
|
37
56
|
* Formats a numeric value as a currency string with proper conversion and formatting.
|
|
38
57
|
*
|
|
@@ -78,8 +97,7 @@ function useCurrencyConversion() {
|
|
|
78
97
|
});
|
|
79
98
|
return `${formatted} ${baseCurrency}`;
|
|
80
99
|
}
|
|
81
|
-
// If
|
|
82
|
-
// incorrect values with wrong currency symbols during rate fetching
|
|
100
|
+
// If showing base currency, no conversion needed
|
|
83
101
|
if (selectedCurrency === baseCurrency || !exchangeRate) {
|
|
84
102
|
const formatted = (0, number_1.formatDisplayNumber)(value, {
|
|
85
103
|
significantDigits: baseCurrency === "B3" ? 6 : 8,
|
|
@@ -52,11 +52,27 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
52
52
|
const lastUrlUpdate = useRef(null);
|
|
53
53
|
// Track if onSuccess has been called for the current order
|
|
54
54
|
const onSuccessCalled = useRef(false);
|
|
55
|
+
// Track animation direction for TransitionPanel
|
|
56
|
+
const animationDirection = useRef(null);
|
|
57
|
+
// Track previous panel for proper back navigation
|
|
58
|
+
const previousPanel = useRef(PanelView.MAIN);
|
|
55
59
|
const [activeTab, setActiveTab] = useState(defaultActiveTab);
|
|
56
60
|
const [orderId, setOrderId] = useState(loadOrder);
|
|
57
61
|
const { orderAndTransactions: oat, getOrderAndTransactionsError } = useAnyspendOrderAndTransactions(orderId);
|
|
58
62
|
!!getOrderAndTransactionsError && console.log("getOrderAndTransactionsError", getOrderAndTransactionsError);
|
|
59
63
|
const [activePanel, setActivePanel] = useState(loadOrder ? PanelView.ORDER_DETAILS : PanelView.MAIN);
|
|
64
|
+
// Helper functions to navigate with animation direction
|
|
65
|
+
const navigateToPanel = useCallback((panel, direction = "forward") => {
|
|
66
|
+
previousPanel.current = activePanel;
|
|
67
|
+
animationDirection.current = direction;
|
|
68
|
+
setActivePanel(panel);
|
|
69
|
+
}, [activePanel]);
|
|
70
|
+
const navigateBack = useCallback(() => {
|
|
71
|
+
animationDirection.current = "back";
|
|
72
|
+
// Navigate back to previous panel or default to MAIN
|
|
73
|
+
const targetPanel = previousPanel.current !== activePanel ? previousPanel.current : PanelView.MAIN;
|
|
74
|
+
setActivePanel(targetPanel);
|
|
75
|
+
}, [activePanel]);
|
|
60
76
|
const [customRecipients, setCustomRecipients] = useState([]);
|
|
61
77
|
// Add state for selected payment method
|
|
62
78
|
const [selectedCryptoPaymentMethod, setSelectedCryptoPaymentMethod] = useState(CryptoPaymentMethodType.NONE);
|
|
@@ -405,7 +421,7 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
405
421
|
const orderId = data.data.id;
|
|
406
422
|
setOrderId(orderId);
|
|
407
423
|
// setNewRecipientAddress("");
|
|
408
|
-
|
|
424
|
+
navigateToPanel(PanelView.ORDER_DETAILS, "forward");
|
|
409
425
|
// Debug: Check payment method before setting URL
|
|
410
426
|
console.log("Creating order - selectedCryptoPaymentMethod:", selectedCryptoPaymentMethod);
|
|
411
427
|
// Add orderId and payment method to URL for persistence
|
|
@@ -431,7 +447,7 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
431
447
|
onSuccess: data => {
|
|
432
448
|
const orderId = data.data.id;
|
|
433
449
|
setOrderId(orderId);
|
|
434
|
-
|
|
450
|
+
navigateToPanel(PanelView.ORDER_DETAILS, "forward");
|
|
435
451
|
// Add orderId and payment method to URL for persistence
|
|
436
452
|
const params = new URLSearchParams(searchParams.toString());
|
|
437
453
|
params.set("orderId", orderId);
|
|
@@ -494,7 +510,7 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
494
510
|
if (btnInfo.disable)
|
|
495
511
|
return;
|
|
496
512
|
if (!recipientAddress) {
|
|
497
|
-
|
|
513
|
+
navigateToPanel(PanelView.RECIPIENT_SELECTION, "forward");
|
|
498
514
|
return;
|
|
499
515
|
}
|
|
500
516
|
try {
|
|
@@ -503,7 +519,7 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
503
519
|
if (activeTab === "fiat") {
|
|
504
520
|
// If no fiat payment method selected, show payment method selection
|
|
505
521
|
if (selectedFiatPaymentMethod === FiatPaymentMethod.NONE) {
|
|
506
|
-
|
|
522
|
+
navigateToPanel(PanelView.FIAT_PAYMENT_METHOD, "forward");
|
|
507
523
|
return;
|
|
508
524
|
}
|
|
509
525
|
// If payment method is selected, create order directly
|
|
@@ -514,7 +530,7 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
514
530
|
// If no payment method selected, show payment method selection
|
|
515
531
|
if (selectedCryptoPaymentMethod === CryptoPaymentMethodType.NONE) {
|
|
516
532
|
console.log("No payment method selected, showing selection panel");
|
|
517
|
-
|
|
533
|
+
navigateToPanel(PanelView.CRYPTO_PAYMENT_METHOD, "forward");
|
|
518
534
|
return;
|
|
519
535
|
}
|
|
520
536
|
// If payment method is selected, create order with payment method info
|
|
@@ -534,7 +550,7 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
534
550
|
};
|
|
535
551
|
const onClickHistory = () => {
|
|
536
552
|
setOrderId(undefined);
|
|
537
|
-
|
|
553
|
+
navigateToPanel(PanelView.HISTORY, "forward");
|
|
538
554
|
// Remove orderId and paymentMethod from URL when going back to history
|
|
539
555
|
const params = new URLSearchParams(searchParams.toString());
|
|
540
556
|
params.delete("orderId");
|
|
@@ -647,8 +663,8 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
647
663
|
}
|
|
648
664
|
}, [searchParams, loadOrder]);
|
|
649
665
|
const onSelectOrder = (selectedOrderId) => {
|
|
650
|
-
setActivePanel(PanelView.MAIN);
|
|
651
666
|
setOrderId(selectedOrderId);
|
|
667
|
+
navigateToPanel(PanelView.ORDER_DETAILS, "forward");
|
|
652
668
|
// Update URL with the new orderId and preserve existing parameters
|
|
653
669
|
const params = new URLSearchParams(searchParams.toString());
|
|
654
670
|
params.set("orderId", selectedOrderId);
|
|
@@ -668,13 +684,49 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
668
684
|
useEffect(() => {
|
|
669
685
|
window.scrollTo({ top: 0, behavior: "smooth" });
|
|
670
686
|
}, [activePanel]);
|
|
671
|
-
|
|
687
|
+
// Handle browser back button for recipient selection and payment method views
|
|
688
|
+
useEffect(() => {
|
|
689
|
+
// Push a new history state when navigating to specific panels
|
|
690
|
+
if (activePanel === PanelView.RECIPIENT_SELECTION) {
|
|
691
|
+
window.history.pushState({ panel: "recipient-selection" }, "");
|
|
692
|
+
}
|
|
693
|
+
else if (activePanel === PanelView.CRYPTO_PAYMENT_METHOD) {
|
|
694
|
+
window.history.pushState({ panel: "crypto-payment-method" }, "");
|
|
695
|
+
}
|
|
696
|
+
else if (activePanel === PanelView.FIAT_PAYMENT_METHOD) {
|
|
697
|
+
window.history.pushState({ panel: "fiat-payment-method" }, "");
|
|
698
|
+
}
|
|
699
|
+
// Listen for popstate event (browser back button)
|
|
700
|
+
const handlePopState = (event) => {
|
|
701
|
+
if (activePanel === PanelView.RECIPIENT_SELECTION ||
|
|
702
|
+
activePanel === PanelView.CRYPTO_PAYMENT_METHOD ||
|
|
703
|
+
activePanel === PanelView.FIAT_PAYMENT_METHOD) {
|
|
704
|
+
// User pressed back while on these panels
|
|
705
|
+
event.preventDefault();
|
|
706
|
+
navigateBack();
|
|
707
|
+
}
|
|
708
|
+
};
|
|
709
|
+
window.addEventListener("popstate", handlePopState);
|
|
710
|
+
return () => {
|
|
711
|
+
window.removeEventListener("popstate", handlePopState);
|
|
712
|
+
};
|
|
713
|
+
}, [activePanel, navigateBack]);
|
|
714
|
+
const historyView = (_jsx("div", { className: "mx-auto flex w-[560px] max-w-full flex-col items-center", children: _jsx(OrderHistory, { mode: mode, onBack: navigateBack, onSelectOrder: onSelectOrder }) }));
|
|
672
715
|
const orderDetailsView = (_jsx("div", { className: "mx-auto w-[460px] max-w-full", children: _jsx("div", { className: "relative flex flex-col gap-4", children: oat && (_jsx(OrderDetails, { mode: mode, order: oat.data.order, depositTxs: oat.data.depositTxs, relayTxs: oat.data.relayTxs, executeTx: oat.data.executeTx, refundTxs: oat.data.refundTxs, selectedCryptoPaymentMethod: selectedCryptoPaymentMethod, onPaymentMethodChange: setSelectedCryptoPaymentMethod, onBack: () => {
|
|
673
716
|
setOrderId(undefined);
|
|
674
|
-
|
|
717
|
+
navigateBack();
|
|
675
718
|
setSelectedCryptoPaymentMethod(CryptoPaymentMethodType.NONE); // Reset payment method when going back
|
|
676
719
|
} })) }) }));
|
|
677
|
-
const mainView = (_jsxs("div", { className: "mx-auto flex w-[460px] max-w-full flex-col items-center gap-2", children: [isBuyMode && (_jsxs("div", { className: "mb-4 flex flex-col items-center gap-3 text-center", children: [selectedDstToken.metadata?.logoURI && (_jsx("div", { className: "relative", children: _jsx("img", { src: selectedDstToken.metadata.logoURI, alt: selectedDstToken.symbol, className: "border-as-stroke h-12 w-12 rounded-full border-2 shadow-md" }) })), _jsx("div", { children: _jsxs("h1", { className: "text-as-primary text-xl font-bold", children: ["Buy ", selectedDstToken.symbol] }) })] })), _jsx(TabSection, { activeTab: activeTab, setActiveTab: setActiveTab, setSelectedCryptoPaymentMethod: setSelectedCryptoPaymentMethod, setSelectedFiatPaymentMethod: setSelectedFiatPaymentMethod }), _jsxs("div", { className: "relative flex w-full max-w-[calc(100vw-32px)] flex-col gap-2", children: [activeTab === "crypto" ? (_jsx(CryptoPaySection, { selectedSrcChainId: selectedSrcChainId, setSelectedSrcChainId: setSelectedSrcChainId, selectedSrcToken: selectedSrcToken, setSelectedSrcToken: setSelectedSrcToken, srcAmount: srcAmount, setSrcAmount: setSrcAmount, setIsSrcInputDirty: setIsSrcInputDirty, selectedCryptoPaymentMethod: selectedCryptoPaymentMethod, onSelectCryptoPaymentMethod: () =>
|
|
720
|
+
const mainView = (_jsxs("div", { className: "mx-auto flex w-[460px] max-w-full flex-col items-center gap-2", children: [isBuyMode && (_jsxs("div", { className: "mb-4 flex flex-col items-center gap-3 text-center", children: [selectedDstToken.metadata?.logoURI && (_jsx("div", { className: "relative", children: _jsx("img", { src: selectedDstToken.metadata.logoURI, alt: selectedDstToken.symbol, className: "border-as-stroke h-12 w-12 rounded-full border-2 shadow-md" }) })), _jsx("div", { children: _jsxs("h1", { className: "text-as-primary text-xl font-bold", children: ["Buy ", selectedDstToken.symbol] }) })] })), _jsx(TabSection, { activeTab: activeTab, setActiveTab: setActiveTab, setSelectedCryptoPaymentMethod: setSelectedCryptoPaymentMethod, setSelectedFiatPaymentMethod: setSelectedFiatPaymentMethod }), _jsxs("div", { className: "relative flex w-full max-w-[calc(100vw-32px)] flex-col gap-2", children: [activeTab === "crypto" ? (_jsx(CryptoPaySection, { selectedSrcChainId: selectedSrcChainId, setSelectedSrcChainId: setSelectedSrcChainId, selectedSrcToken: selectedSrcToken, setSelectedSrcToken: setSelectedSrcToken, srcAmount: srcAmount, setSrcAmount: setSrcAmount, setIsSrcInputDirty: setIsSrcInputDirty, selectedCryptoPaymentMethod: selectedCryptoPaymentMethod, onSelectCryptoPaymentMethod: () => navigateToPanel(PanelView.CRYPTO_PAYMENT_METHOD, "forward"), anyspendQuote: anyspendQuote, onTokenSelect: onTokenSelect })) : (_jsx(motion.div, { initial: { opacity: 0, y: 20, filter: "blur(10px)" }, animate: { opacity: 1, y: 0, filter: "blur(0px)" }, transition: { duration: 0.3, delay: 0, ease: "easeInOut" }, children: _jsx(PanelOnramp, { srcAmountOnRamp: srcAmountOnRamp, setSrcAmountOnRamp: setSrcAmountOnRamp, selectedPaymentMethod: selectedFiatPaymentMethod, setActivePanel: (panelIndex) => {
|
|
721
|
+
// Map panel index to navigation with direction
|
|
722
|
+
const panelsWithForwardNav = [PanelView.FIAT_PAYMENT_METHOD, PanelView.RECIPIENT_SELECTION];
|
|
723
|
+
if (panelsWithForwardNav.includes(panelIndex)) {
|
|
724
|
+
navigateToPanel(panelIndex, "forward");
|
|
725
|
+
}
|
|
726
|
+
else {
|
|
727
|
+
setActivePanel(panelIndex);
|
|
728
|
+
}
|
|
729
|
+
}, _recipientAddress: recipientAddress, destinationToken: selectedDstToken, destinationChainId: selectedDstChainId, destinationAmount: dstAmount, onDestinationTokenChange: setSelectedDstToken, onDestinationChainChange: setSelectedDstChainId, fiatPaymentMethodIndex: PanelView.FIAT_PAYMENT_METHOD, recipientSelectionPanelIndex: PanelView.RECIPIENT_SELECTION, hideDstToken: isBuyMode, anyspendQuote: anyspendQuote, onShowPointsDetail: () => navigateToPanel(PanelView.POINTS_DETAIL, "forward"), customUsdInputValues: customUsdInputValues }) })), _jsx(Button, { variant: "ghost", className: cn("border-as-stroke bg-as-surface-primary absolute left-1/2 top-1/2 z-10 h-10 w-10 -translate-x-1/2 -translate-y-1/2 rounded-xl border-2 sm:h-8 sm:w-8 sm:rounded-xl", isBuyMode && "top-[calc(50%+56px)] cursor-default", activeTab === "fiat" && "hidden"), onClick: () => {
|
|
678
730
|
if (activeTab === "fiat" || isBuyMode) {
|
|
679
731
|
return;
|
|
680
732
|
}
|
|
@@ -693,13 +745,13 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
693
745
|
const tempDstAmount = dstAmount;
|
|
694
746
|
setSrcAmount(tempDstAmount);
|
|
695
747
|
setDstAmount(tempSrcAmount);
|
|
696
|
-
}, children: _jsx("div", { className: "relative flex items-center justify-center transition-opacity", children: _jsx(ArrowDown, { className: "text-as-primary/50 h-5 w-5" }) }) }), activeTab === "crypto" && (_jsx(CryptoReceiveSection, { isDepositMode: false, isBuyMode: isBuyMode, selectedRecipientAddress: recipientAddress, recipientName: recipientName || undefined, onSelectRecipient: () =>
|
|
748
|
+
}, children: _jsx("div", { className: "relative flex items-center justify-center transition-opacity", children: _jsx(ArrowDown, { className: "text-as-primary/50 h-5 w-5" }) }) }), activeTab === "crypto" && (_jsx(CryptoReceiveSection, { isDepositMode: false, isBuyMode: isBuyMode, selectedRecipientAddress: recipientAddress, recipientName: recipientName || undefined, onSelectRecipient: () => navigateToPanel(PanelView.RECIPIENT_SELECTION, "forward"), dstAmount: dstAmount, dstToken: selectedDstToken, selectedDstChainId: selectedDstChainId, setSelectedDstChainId: setSelectedDstChainId, setSelectedDstToken: setSelectedDstToken, onChangeDstAmount: value => {
|
|
697
749
|
setIsSrcInputDirty(false);
|
|
698
750
|
setDstAmount(value);
|
|
699
|
-
}, anyspendQuote: anyspendQuote, onShowPointsDetail: () =>
|
|
751
|
+
}, anyspendQuote: anyspendQuote, onShowPointsDetail: () => navigateToPanel(PanelView.POINTS_DETAIL, "forward") }))] }), _jsx(ErrorSection, { error: getAnyspendQuoteError }), _jsxs(motion.div, { initial: { opacity: 0, y: 20, filter: "blur(10px)" }, animate: { opacity: 1, y: 0, filter: "blur(0px)" }, transition: { duration: 0.3, delay: 0.2, ease: "easeInOut" }, className: cn("mt-4 flex w-full max-w-[460px] flex-col gap-2", getAnyspendQuoteError && "mt-0"), children: [_jsx(ShinyButton, { accentColor: "hsl(var(--as-brand))", disabled: btnInfo.disable, onClick: onMainButtonClick, className: cn("as-main-button relative w-full", btnInfo.error ? "!bg-as-red" : btnInfo.disable ? "!bg-as-on-surface-2" : "!bg-as-brand"), textClassName: cn(btnInfo.error ? "text-white" : btnInfo.disable ? "text-as-secondary" : "text-white"), children: btnInfo.text }), !hideTransactionHistoryButton && (globalAddress || recipientAddress) ? (_jsxs(Button, { variant: "link", onClick: onClickHistory, className: "text-as-primary/50 hover:text-as-primary flex items-center gap-1 transition-colors", children: [_jsx(HistoryIcon, { className: "h-4 w-4" }), " ", _jsx("span", { className: "pr-4", children: "Transaction History" })] })) : null] })] }));
|
|
700
752
|
const onrampPaymentView = (_jsx(PanelOnrampPayment, { srcAmountOnRamp: srcAmountOnRamp, recipientName: recipientName || undefined, recipientAddress: recipientAddress, isBuyMode: isBuyMode, destinationTokenChainId: destinationTokenChainId, destinationTokenAddress: destinationTokenAddress, selectedDstChainId: selectedDstChainId, selectedDstToken: selectedDstToken, orderType: "swap", anyspendQuote: anyspendQuote, globalAddress: globalAddress, onOrderCreated: orderId => {
|
|
701
753
|
setOrderId(orderId);
|
|
702
|
-
|
|
754
|
+
navigateToPanel(PanelView.ORDER_DETAILS, "forward");
|
|
703
755
|
// Add orderId and payment method to URL for persistence
|
|
704
756
|
const params = new URLSearchParams(searchParams.toString()); // Preserve existing params
|
|
705
757
|
params.set("orderId", orderId);
|
|
@@ -711,20 +763,20 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
711
763
|
params.set("paymentMethod", selectedCryptoPaymentMethod);
|
|
712
764
|
}
|
|
713
765
|
router.push(`${window.location.pathname}?${params.toString()}`);
|
|
714
|
-
}, onBack:
|
|
715
|
-
const recipientSelectionView = (_jsx(RecipientSelection, { initialValue: recipientAddress || "", onBack:
|
|
766
|
+
}, onBack: navigateBack, recipientEnsName: globalWallet?.ensName, recipientImageUrl: globalWallet?.meta?.icon }));
|
|
767
|
+
const recipientSelectionView = (_jsx(RecipientSelection, { initialValue: recipientAddress || "", onBack: navigateBack, onConfirm: address => {
|
|
716
768
|
setRecipientAddress(address);
|
|
717
|
-
|
|
769
|
+
navigateBack();
|
|
718
770
|
} }));
|
|
719
|
-
const cryptoPaymentMethodView = (_jsx(CryptoPaymentMethod, { globalAddress: globalAddress, globalWallet: globalWallet, selectedPaymentMethod: selectedCryptoPaymentMethod, setSelectedPaymentMethod: setSelectedCryptoPaymentMethod, isCreatingOrder: isCreatingOrder, onBack:
|
|
771
|
+
const cryptoPaymentMethodView = (_jsx(CryptoPaymentMethod, { globalAddress: globalAddress, globalWallet: globalWallet, selectedPaymentMethod: selectedCryptoPaymentMethod, setSelectedPaymentMethod: setSelectedCryptoPaymentMethod, isCreatingOrder: isCreatingOrder, onBack: navigateBack, onSelectPaymentMethod: (method) => {
|
|
720
772
|
setSelectedCryptoPaymentMethod(method);
|
|
721
|
-
|
|
773
|
+
navigateBack();
|
|
722
774
|
} }));
|
|
723
|
-
const fiatPaymentMethodView = (_jsx(FiatPaymentMethodComponent, { selectedPaymentMethod: selectedFiatPaymentMethod, setSelectedPaymentMethod: setSelectedFiatPaymentMethod, onBack:
|
|
775
|
+
const fiatPaymentMethodView = (_jsx(FiatPaymentMethodComponent, { selectedPaymentMethod: selectedFiatPaymentMethod, setSelectedPaymentMethod: setSelectedFiatPaymentMethod, onBack: navigateBack, onSelectPaymentMethod: (method) => {
|
|
724
776
|
setSelectedFiatPaymentMethod(method);
|
|
725
|
-
|
|
777
|
+
navigateBack(); // Go back to main panel to show updated pricing
|
|
726
778
|
}, srcAmountOnRamp: srcAmountOnRamp }));
|
|
727
|
-
const pointsDetailView = (_jsx(PointsDetailPanel, { pointsAmount: anyspendQuote?.data?.pointsAmount || 0, onBack:
|
|
779
|
+
const pointsDetailView = (_jsx(PointsDetailPanel, { pointsAmount: anyspendQuote?.data?.pointsAmount || 0, onBack: navigateBack }));
|
|
728
780
|
// Add tabs to the main component when no order is loaded
|
|
729
781
|
return (_jsx(StyleRoot, { children: _jsx("div", { className: cn("anyspend-container font-inter mx-auto w-full max-w-[460px]", mode === "page" &&
|
|
730
782
|
"bg-as-surface-primary border-as-border-secondary overflow-hidden rounded-2xl border shadow-xl"), children: _jsx(TransitionPanel, { activeIndex: orderId
|
|
@@ -735,10 +787,16 @@ function AnySpendInner({ destinationTokenAddress, destinationTokenChainId, mode
|
|
|
735
787
|
? PanelView.MAIN
|
|
736
788
|
: activePanel, className: cn("rounded-2xl", {
|
|
737
789
|
"mt-0": mode === "modal",
|
|
738
|
-
}), variants: {
|
|
739
|
-
enter:
|
|
790
|
+
}), custom: animationDirection.current, variants: {
|
|
791
|
+
enter: direction => ({
|
|
792
|
+
x: direction === "back" ? -300 : 300,
|
|
793
|
+
opacity: 0,
|
|
794
|
+
}),
|
|
740
795
|
center: { x: 0, opacity: 1 },
|
|
741
|
-
exit:
|
|
796
|
+
exit: direction => ({
|
|
797
|
+
x: direction === "back" ? 300 : -300,
|
|
798
|
+
opacity: 0,
|
|
799
|
+
}),
|
|
742
800
|
}, transition: { type: "spring", stiffness: 300, damping: 30 }, children: [
|
|
743
801
|
_jsx("div", { className: cn(mode === "page" && "p-6"), children: mainView }, "main-view"),
|
|
744
802
|
_jsx("div", { className: cn(mode === "page" && "p-6"), children: historyView }, "history-view"),
|
|
@@ -274,12 +274,7 @@ export const OrderDetails = memo(function OrderDetails({ mode = "modal", order,
|
|
|
274
274
|
? "0"
|
|
275
275
|
: order.payload.expectedDstAmount.toString();
|
|
276
276
|
const formattedExpectedDstAmount = formatTokenAmount(BigInt(expectedDstAmount), dstToken.decimals);
|
|
277
|
-
const actualDstAmount = order.
|
|
278
|
-
order.type === "join_tournament" ||
|
|
279
|
-
order.type === "fund_tournament" ||
|
|
280
|
-
order.type === "custom"
|
|
281
|
-
? undefined
|
|
282
|
-
: order.payload.actualDstAmount;
|
|
277
|
+
const actualDstAmount = order.settlement?.actualDstAmount;
|
|
283
278
|
const formattedActualDstAmount = actualDstAmount
|
|
284
279
|
? formatTokenAmount(BigInt(actualDstAmount), dstToken.decimals)
|
|
285
280
|
: undefined;
|
|
@@ -481,7 +476,7 @@ export const OrderDetails = memo(function OrderDetails({ mode = "modal", order,
|
|
|
481
476
|
? "Funding Tournament"
|
|
482
477
|
: "Processing Transaction", chainId: order.srcChain, tx: null, isProcessing: true, delay: 0.5 })) : (_jsx(TransactionDetails, { title: order.onrampMetadata?.vendor === "stripe-web2"
|
|
483
478
|
? `Waiting for payment`
|
|
484
|
-
: `Waiting for deposit ${formattedDepositDeficit} ${srcToken.symbol}`, chainId: order.srcChain, tx: null, isProcessing: true, delay: 0.5 }))] }) })] }) }), !depositEnoughAmount && order.status
|
|
479
|
+
: `Waiting for deposit ${formattedDepositDeficit} ${srcToken.symbol}`, chainId: order.srcChain, tx: null, isProcessing: true, delay: 0.5 }))] }) })] }) }), depositTxs?.length > 0 && !depositEnoughAmount && order.status === "scanning_deposit_transaction" && (_jsx(InsufficientDepositPayment, { order: order, srcToken: srcToken, depositDeficit: depositDeficit, phantomWalletAddress: phantomWalletAddress, txLoading: txLoading, isSwitchingOrExecuting: isSwitchingOrExecuting, onPayment: handlePayment }))] }));
|
|
485
480
|
}
|
|
486
481
|
return (_jsxs(_Fragment, { children: [_jsx(OrderStatus, { order: order, selectedCryptoPaymentMethod: effectiveCryptoPaymentMethod }), statusDisplay === "processing" && (_jsx(_Fragment, { children: order.onrampMetadata ? (_jsx(PaymentVendorUI, { order: order, dstTokenSymbol: dstToken.symbol })) : effectiveCryptoPaymentMethod === CryptoPaymentMethodType.CONNECT_WALLET ||
|
|
487
482
|
effectiveCryptoPaymentMethod === CryptoPaymentMethodType.GLOBAL_WALLET ? (_jsx(ConnectWalletPayment, { order: order, onPayment: handlePayment, onCancel: handleBack, txLoading: txLoading, isSwitchingOrExecuting: isSwitchingOrExecuting, phantomWalletAddress: phantomWalletAddress, tournament: tournament, nft: nft, cryptoPaymentMethod: effectiveCryptoPaymentMethod, onPaymentMethodChange: onPaymentMethodChange })) : effectiveCryptoPaymentMethod === CryptoPaymentMethodType.TRANSFER_CRYPTO ? (
|
|
@@ -10,12 +10,7 @@ export function OrderHistoryItem({ order, onSelectOrder, mode }) {
|
|
|
10
10
|
const nft = order.type === "mint_nft" ? order.metadata.nft : undefined;
|
|
11
11
|
const tournament = order.type === "join_tournament" || order.type === "fund_tournament" ? order.metadata.tournament : undefined;
|
|
12
12
|
const dstToken = order.metadata.dstToken;
|
|
13
|
-
const actualDstAmount = order.
|
|
14
|
-
order.type === "join_tournament" ||
|
|
15
|
-
order.type === "fund_tournament" ||
|
|
16
|
-
order.type === "custom"
|
|
17
|
-
? undefined
|
|
18
|
-
: order.payload.actualDstAmount;
|
|
13
|
+
const actualDstAmount = order.settlement?.actualDstAmount;
|
|
19
14
|
const expectedDstAmount = order.type === "mint_nft" ||
|
|
20
15
|
order.type === "join_tournament" ||
|
|
21
16
|
order.type === "fund_tournament" ||
|
|
@@ -36,6 +36,7 @@ export declare function useAnyspendFlow({ paymentType, recipientAddress, loadOrd
|
|
|
36
36
|
relayTxs: components["schemas"]["RelayTx"][];
|
|
37
37
|
executeTx: components["schemas"]["ExecuteTx"] | null;
|
|
38
38
|
refundTxs: components["schemas"]["RefundTx"][];
|
|
39
|
+
points: number | null;
|
|
39
40
|
};
|
|
40
41
|
statusCode: number;
|
|
41
42
|
} | undefined;
|
|
@@ -188,8 +188,8 @@ export function useAnyspendFlow({ paymentType = "crypto", recipientAddress, load
|
|
|
188
188
|
// Handle order completion
|
|
189
189
|
useEffect(() => {
|
|
190
190
|
if (oat?.data?.order.status === "executed") {
|
|
191
|
-
// get the actualDstAmount if available from
|
|
192
|
-
const amount = oat.data.order.
|
|
191
|
+
// get the actualDstAmount if available from settlement
|
|
192
|
+
const amount = oat.data.order.settlement?.actualDstAmount;
|
|
193
193
|
const formattedActualDstAmount = amount
|
|
194
194
|
? formatTokenAmount(BigInt(amount), oat.data.order.metadata.dstToken.decimals)
|
|
195
195
|
: undefined;
|
|
@@ -197,7 +197,7 @@ export function useAnyspendFlow({ paymentType = "crypto", recipientAddress, load
|
|
|
197
197
|
}
|
|
198
198
|
}, [
|
|
199
199
|
oat?.data?.order.status,
|
|
200
|
-
oat?.data?.order.
|
|
200
|
+
oat?.data?.order.settlement?.actualDstAmount,
|
|
201
201
|
onTransactionSuccess,
|
|
202
202
|
oat?.data?.order.metadata.dstToken.decimals,
|
|
203
203
|
]);
|
|
@@ -8,6 +8,7 @@ export declare function useAnyspendOrderAndTransactions(orderId: string | undefi
|
|
|
8
8
|
relayTxs: import("../..").components["schemas"]["RelayTx"][];
|
|
9
9
|
executeTx: import("../..").components["schemas"]["ExecuteTx"] | null;
|
|
10
10
|
refundTxs: import("../..").components["schemas"]["RefundTx"][];
|
|
11
|
+
points: number | null;
|
|
11
12
|
};
|
|
12
13
|
statusCode: number;
|
|
13
14
|
} | undefined;
|
|
@@ -22,6 +23,7 @@ export declare function useAnyspendOrderAndTransactions(orderId: string | undefi
|
|
|
22
23
|
relayTxs: import("../..").components["schemas"]["RelayTx"][];
|
|
23
24
|
executeTx: import("../..").components["schemas"]["ExecuteTx"] | null;
|
|
24
25
|
refundTxs: import("../..").components["schemas"]["RefundTx"][];
|
|
26
|
+
points: number | null;
|
|
25
27
|
};
|
|
26
28
|
statusCode: number;
|
|
27
29
|
}, Error>>;
|
|
@@ -12,11 +12,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
12
12
|
errorDetails: string | null;
|
|
13
13
|
createdAt: number;
|
|
14
14
|
expiredAt: number;
|
|
15
|
+
filledAt: number | null;
|
|
15
16
|
creatorAddress: string | null;
|
|
16
17
|
partnerId: string | null;
|
|
17
18
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
18
19
|
oneClickBuyUrl: string | null;
|
|
19
20
|
stripePaymentIntentId: string | null;
|
|
21
|
+
settlement: {
|
|
22
|
+
actualDstAmount: string | null;
|
|
23
|
+
} | null;
|
|
20
24
|
} & {
|
|
21
25
|
type: "swap";
|
|
22
26
|
payload: import("../..").components["schemas"]["SwapPayload"];
|
|
@@ -34,11 +38,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
34
38
|
errorDetails: string | null;
|
|
35
39
|
createdAt: number;
|
|
36
40
|
expiredAt: number;
|
|
41
|
+
filledAt: number | null;
|
|
37
42
|
creatorAddress: string | null;
|
|
38
43
|
partnerId: string | null;
|
|
39
44
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
40
45
|
oneClickBuyUrl: string | null;
|
|
41
46
|
stripePaymentIntentId: string | null;
|
|
47
|
+
settlement: {
|
|
48
|
+
actualDstAmount: string | null;
|
|
49
|
+
} | null;
|
|
42
50
|
} & {
|
|
43
51
|
type: "hype_duel";
|
|
44
52
|
payload: import("../..").components["schemas"]["HypeDuelPayload"];
|
|
@@ -56,11 +64,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
56
64
|
errorDetails: string | null;
|
|
57
65
|
createdAt: number;
|
|
58
66
|
expiredAt: number;
|
|
67
|
+
filledAt: number | null;
|
|
59
68
|
creatorAddress: string | null;
|
|
60
69
|
partnerId: string | null;
|
|
61
70
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
62
71
|
oneClickBuyUrl: string | null;
|
|
63
72
|
stripePaymentIntentId: string | null;
|
|
73
|
+
settlement: {
|
|
74
|
+
actualDstAmount: string | null;
|
|
75
|
+
} | null;
|
|
64
76
|
} & {
|
|
65
77
|
type: "custom";
|
|
66
78
|
payload: import("../..").components["schemas"]["CustomPayload"];
|
|
@@ -78,11 +90,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
78
90
|
errorDetails: string | null;
|
|
79
91
|
createdAt: number;
|
|
80
92
|
expiredAt: number;
|
|
93
|
+
filledAt: number | null;
|
|
81
94
|
creatorAddress: string | null;
|
|
82
95
|
partnerId: string | null;
|
|
83
96
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
84
97
|
oneClickBuyUrl: string | null;
|
|
85
98
|
stripePaymentIntentId: string | null;
|
|
99
|
+
settlement: {
|
|
100
|
+
actualDstAmount: string | null;
|
|
101
|
+
} | null;
|
|
86
102
|
} & {
|
|
87
103
|
type: "mint_nft";
|
|
88
104
|
payload: import("../..").components["schemas"]["MintNftPayload"];
|
|
@@ -100,11 +116,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
100
116
|
errorDetails: string | null;
|
|
101
117
|
createdAt: number;
|
|
102
118
|
expiredAt: number;
|
|
119
|
+
filledAt: number | null;
|
|
103
120
|
creatorAddress: string | null;
|
|
104
121
|
partnerId: string | null;
|
|
105
122
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
106
123
|
oneClickBuyUrl: string | null;
|
|
107
124
|
stripePaymentIntentId: string | null;
|
|
125
|
+
settlement: {
|
|
126
|
+
actualDstAmount: string | null;
|
|
127
|
+
} | null;
|
|
108
128
|
} & {
|
|
109
129
|
type: "join_tournament";
|
|
110
130
|
payload: import("../..").components["schemas"]["JoinTournamentPayload"];
|
|
@@ -122,11 +142,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
122
142
|
errorDetails: string | null;
|
|
123
143
|
createdAt: number;
|
|
124
144
|
expiredAt: number;
|
|
145
|
+
filledAt: number | null;
|
|
125
146
|
creatorAddress: string | null;
|
|
126
147
|
partnerId: string | null;
|
|
127
148
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
128
149
|
oneClickBuyUrl: string | null;
|
|
129
150
|
stripePaymentIntentId: string | null;
|
|
151
|
+
settlement: {
|
|
152
|
+
actualDstAmount: string | null;
|
|
153
|
+
} | null;
|
|
130
154
|
} & {
|
|
131
155
|
type: "fund_tournament";
|
|
132
156
|
payload: import("../..").components["schemas"]["FundTournamentPayload"];
|
|
@@ -147,11 +171,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
147
171
|
errorDetails: string | null;
|
|
148
172
|
createdAt: number;
|
|
149
173
|
expiredAt: number;
|
|
174
|
+
filledAt: number | null;
|
|
150
175
|
creatorAddress: string | null;
|
|
151
176
|
partnerId: string | null;
|
|
152
177
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
153
178
|
oneClickBuyUrl: string | null;
|
|
154
179
|
stripePaymentIntentId: string | null;
|
|
180
|
+
settlement: {
|
|
181
|
+
actualDstAmount: string | null;
|
|
182
|
+
} | null;
|
|
155
183
|
} & {
|
|
156
184
|
type: "swap";
|
|
157
185
|
payload: import("../..").components["schemas"]["SwapPayload"];
|
|
@@ -169,11 +197,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
169
197
|
errorDetails: string | null;
|
|
170
198
|
createdAt: number;
|
|
171
199
|
expiredAt: number;
|
|
200
|
+
filledAt: number | null;
|
|
172
201
|
creatorAddress: string | null;
|
|
173
202
|
partnerId: string | null;
|
|
174
203
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
175
204
|
oneClickBuyUrl: string | null;
|
|
176
205
|
stripePaymentIntentId: string | null;
|
|
206
|
+
settlement: {
|
|
207
|
+
actualDstAmount: string | null;
|
|
208
|
+
} | null;
|
|
177
209
|
} & {
|
|
178
210
|
type: "hype_duel";
|
|
179
211
|
payload: import("../..").components["schemas"]["HypeDuelPayload"];
|
|
@@ -191,11 +223,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
191
223
|
errorDetails: string | null;
|
|
192
224
|
createdAt: number;
|
|
193
225
|
expiredAt: number;
|
|
226
|
+
filledAt: number | null;
|
|
194
227
|
creatorAddress: string | null;
|
|
195
228
|
partnerId: string | null;
|
|
196
229
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
197
230
|
oneClickBuyUrl: string | null;
|
|
198
231
|
stripePaymentIntentId: string | null;
|
|
232
|
+
settlement: {
|
|
233
|
+
actualDstAmount: string | null;
|
|
234
|
+
} | null;
|
|
199
235
|
} & {
|
|
200
236
|
type: "custom";
|
|
201
237
|
payload: import("../..").components["schemas"]["CustomPayload"];
|
|
@@ -213,11 +249,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
213
249
|
errorDetails: string | null;
|
|
214
250
|
createdAt: number;
|
|
215
251
|
expiredAt: number;
|
|
252
|
+
filledAt: number | null;
|
|
216
253
|
creatorAddress: string | null;
|
|
217
254
|
partnerId: string | null;
|
|
218
255
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
219
256
|
oneClickBuyUrl: string | null;
|
|
220
257
|
stripePaymentIntentId: string | null;
|
|
258
|
+
settlement: {
|
|
259
|
+
actualDstAmount: string | null;
|
|
260
|
+
} | null;
|
|
221
261
|
} & {
|
|
222
262
|
type: "mint_nft";
|
|
223
263
|
payload: import("../..").components["schemas"]["MintNftPayload"];
|
|
@@ -235,11 +275,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
235
275
|
errorDetails: string | null;
|
|
236
276
|
createdAt: number;
|
|
237
277
|
expiredAt: number;
|
|
278
|
+
filledAt: number | null;
|
|
238
279
|
creatorAddress: string | null;
|
|
239
280
|
partnerId: string | null;
|
|
240
281
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
241
282
|
oneClickBuyUrl: string | null;
|
|
242
283
|
stripePaymentIntentId: string | null;
|
|
284
|
+
settlement: {
|
|
285
|
+
actualDstAmount: string | null;
|
|
286
|
+
} | null;
|
|
243
287
|
} & {
|
|
244
288
|
type: "join_tournament";
|
|
245
289
|
payload: import("../..").components["schemas"]["JoinTournamentPayload"];
|
|
@@ -257,11 +301,15 @@ export declare function useAnyspendOrderHistory(creatorAddress: string | undefin
|
|
|
257
301
|
errorDetails: string | null;
|
|
258
302
|
createdAt: number;
|
|
259
303
|
expiredAt: number;
|
|
304
|
+
filledAt: number | null;
|
|
260
305
|
creatorAddress: string | null;
|
|
261
306
|
partnerId: string | null;
|
|
262
307
|
onrampMetadata: import("../..").components["schemas"]["OnrampMetadata"] | null;
|
|
263
308
|
oneClickBuyUrl: string | null;
|
|
264
309
|
stripePaymentIntentId: string | null;
|
|
310
|
+
settlement: {
|
|
311
|
+
actualDstAmount: string | null;
|
|
312
|
+
} | null;
|
|
265
313
|
} & {
|
|
266
314
|
type: "fund_tournament";
|
|
267
315
|
payload: import("../..").components["schemas"]["FundTournamentPayload"];
|
|
@@ -434,6 +434,11 @@ export interface paths {
|
|
|
434
434
|
executeTx: components["schemas"]["ExecuteTx"] | null;
|
|
435
435
|
/** @description Refund transactions if order failed */
|
|
436
436
|
refundTxs: components["schemas"]["RefundTx"][];
|
|
437
|
+
/**
|
|
438
|
+
* @description Points awarded for this order (only present when order status is executed)
|
|
439
|
+
* @example 100
|
|
440
|
+
*/
|
|
441
|
+
points: number | null;
|
|
437
442
|
};
|
|
438
443
|
/** @example 200 */
|
|
439
444
|
statusCode: number;
|
|
@@ -1112,16 +1117,6 @@ export interface components {
|
|
|
1112
1117
|
* @example 990000
|
|
1113
1118
|
*/
|
|
1114
1119
|
expectedDstAmount: string;
|
|
1115
|
-
/**
|
|
1116
|
-
* @description Actual received amount (null for new orders)
|
|
1117
|
-
* @example 990000
|
|
1118
|
-
*/
|
|
1119
|
-
actualDstAmount: string | null;
|
|
1120
|
-
/**
|
|
1121
|
-
* @description Amount in after fee
|
|
1122
|
-
* @example 990000
|
|
1123
|
-
*/
|
|
1124
|
-
amountInAfterFee: string | null;
|
|
1125
1120
|
};
|
|
1126
1121
|
/** @description HypeDuel-specific payload */
|
|
1127
1122
|
HypeDuelPayload: {
|
|
@@ -1130,16 +1125,6 @@ export interface components {
|
|
|
1130
1125
|
* @example 990000
|
|
1131
1126
|
*/
|
|
1132
1127
|
expectedDstAmount: string;
|
|
1133
|
-
/**
|
|
1134
|
-
* @description Actual received amount (null for new orders)
|
|
1135
|
-
* @example 990000
|
|
1136
|
-
*/
|
|
1137
|
-
actualDstAmount: string | null;
|
|
1138
|
-
/**
|
|
1139
|
-
* @description Amount in after fee
|
|
1140
|
-
* @example 990000
|
|
1141
|
-
*/
|
|
1142
|
-
amountInAfterFee: string | null;
|
|
1143
1128
|
};
|
|
1144
1129
|
/** @description Custom execution payload */
|
|
1145
1130
|
CustomPayload: {
|
|
@@ -1307,6 +1292,8 @@ export interface components {
|
|
|
1307
1292
|
* @example 1752506694679
|
|
1308
1293
|
*/
|
|
1309
1294
|
expiredAt: number;
|
|
1295
|
+
/** @description Timestamp when the order was filled/executed */
|
|
1296
|
+
filledAt: number | null;
|
|
1310
1297
|
/**
|
|
1311
1298
|
* @description Optional creator address
|
|
1312
1299
|
* @example 0xb34facb90a200251318e8841c05102366f2158cf
|
|
@@ -1323,6 +1310,14 @@ export interface components {
|
|
|
1323
1310
|
* @example pi_3Rko0sJnoDg53PsP0PDLsHkR
|
|
1324
1311
|
*/
|
|
1325
1312
|
stripePaymentIntentId: string | null;
|
|
1313
|
+
/** @description Settlement information for executed orders */
|
|
1314
|
+
settlement: {
|
|
1315
|
+
/**
|
|
1316
|
+
* @description Actual received amount after execution
|
|
1317
|
+
* @example 990000
|
|
1318
|
+
*/
|
|
1319
|
+
actualDstAmount: string | null;
|
|
1320
|
+
} | null;
|
|
1326
1321
|
};
|
|
1327
1322
|
SwapOrder: components["schemas"]["BaseOrder"] & {
|
|
1328
1323
|
/**
|