@0xsequence/marketplace-sdk 0.7.0 → 0.8.0
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/.changeset/README.md +8 -0
- package/.changeset/config.json +11 -0
- package/.changeset/fuzzy-forks-smoke.md +5 -0
- package/CHANGELOG.md +7 -0
- package/dist/chunk-2MSBZYLW.js +128 -0
- package/dist/chunk-2MSBZYLW.js.map +1 -0
- package/dist/{chunk-MPBN3E54.js → chunk-2VHHJNXY.js} +3 -3
- package/dist/{chunk-FBUMNJQ4.js → chunk-3II5GLHE.js} +2 -2
- package/dist/chunk-3JU7SQVE.js +182 -0
- package/dist/chunk-3JU7SQVE.js.map +1 -0
- package/dist/{chunk-XNA64MZQ.js → chunk-BCO4CYE4.js} +2 -2
- package/dist/{chunk-4XK7XNJ7.js → chunk-BNAUZXPV.js} +73 -2
- package/dist/chunk-BNAUZXPV.js.map +1 -0
- package/dist/{chunk-Q5URKSC4.js → chunk-FMEEJFAF.js} +1 -1
- package/dist/{chunk-BBASZVT3.js → chunk-GBQVYNCD.js} +5 -6
- package/dist/chunk-GBQVYNCD.js.map +1 -0
- package/dist/{chunk-3AKOPSON.js → chunk-IZ44XPBH.js} +2 -9
- package/dist/chunk-IZ44XPBH.js.map +1 -0
- package/dist/{chunk-EAJ5K7QV.js → chunk-Q5RKAMYF.js} +3 -4
- package/dist/chunk-Q5RKAMYF.js.map +1 -0
- package/dist/{chunk-RBEPPVLT.js → chunk-QKGZXS4T.js} +147 -357
- package/dist/chunk-QKGZXS4T.js.map +1 -0
- package/dist/{chunk-HTFORA4Q.js → chunk-SBI52HTX.js} +1880 -1010
- package/dist/chunk-SBI52HTX.js.map +1 -0
- package/dist/{chunk-XTGMMNV5.js → chunk-WHFXVREI.js} +2 -2
- package/dist/{index-CzTANLaA.d.ts → index-CnaFSNE9.d.ts} +6 -7
- package/dist/index.css +113 -31
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +2 -4
- package/dist/index.js +9 -9
- package/dist/listCollectibles-B0tbqnRd.d.ts +155 -0
- package/dist/react/_internal/api/index.d.ts +28 -2
- package/dist/react/_internal/api/index.js +3 -1
- package/dist/react/_internal/databeat/index.js +11 -10
- package/dist/react/_internal/index.d.ts +2 -3
- package/dist/react/_internal/index.js +4 -4
- package/dist/react/_internal/wagmi/index.js +2 -2
- package/dist/react/hooks/index.d.ts +259 -674
- package/dist/react/hooks/index.js +10 -19
- package/dist/react/hooks/options/index.d.ts +1 -2
- package/dist/react/hooks/options/index.js +4 -4
- package/dist/react/index.d.ts +7 -7
- package/dist/react/index.js +14 -23
- package/dist/react/queries/index.d.ts +25 -0
- package/dist/react/queries/index.js +48 -0
- package/dist/react/queries/index.js.map +1 -0
- package/dist/react/ssr/index.js +3 -3
- package/dist/react/ui/components/collectible-card/index.d.ts +1 -6
- package/dist/react/ui/components/collectible-card/index.js +14 -13
- package/dist/react/ui/components/marketplace-logos/index.js +1 -1
- package/dist/react/ui/icons/index.js +7 -7
- package/dist/react/ui/index.d.ts +18 -22
- package/dist/react/ui/index.js +14 -13
- package/dist/react/ui/modals/_internal/components/actionModal/index.d.ts +6 -11
- package/dist/react/ui/modals/_internal/components/actionModal/index.js +11 -10
- package/dist/types/index.js +2 -2
- package/dist/{types-Ct1uCT3M.d.ts → types-o_pKUpQG.d.ts} +2 -5
- package/dist/utils/abi/index.js +5 -5
- package/dist/utils/index.d.ts +1 -5
- package/dist/utils/index.js +9 -9
- package/package.json +22 -16
- package/src/react/_internal/api/__mocks__/indexer.msw.ts +3 -1
- package/src/react/_internal/api/__mocks__/marketplace.msw.ts +1 -1
- package/src/react/_internal/api/__mocks__/metadata.msw.ts +14 -12
- package/src/react/_internal/api/index.ts +1 -0
- package/src/react/_internal/api/laos-api.ts +103 -0
- package/src/react/_internal/api/zod-schema.ts +3 -3
- package/src/react/_internal/types.ts +1 -10
- package/src/react/_internal/wallet/__tests__/wallet.test.ts +43 -0
- package/src/react/_internal/wallet/useWallet.ts +6 -3
- package/src/react/hooks/__tests__/useAutoSelectFeeOption.test.tsx +1 -1
- package/src/react/hooks/__tests__/useCancelOrder.test.tsx +1 -1
- package/src/react/hooks/__tests__/useCancelTransactionSteps.test.tsx +1 -1
- package/src/react/hooks/__tests__/useCollectible.test.tsx +2 -2
- package/src/react/hooks/__tests__/useCollection.test.tsx +2 -2
- package/src/react/hooks/__tests__/useComparePrices.test.tsx +1 -1
- package/src/react/hooks/__tests__/useConvertPriceToUSD.test.tsx +1 -1
- package/src/react/hooks/__tests__/useCountListingsForCollectible.test.tsx +1 -1
- package/src/react/hooks/__tests__/useCountOfCollectables.test.tsx +2 -2
- package/src/react/hooks/__tests__/useCountOffersForCollectible.test.tsx +1 -1
- package/src/react/hooks/__tests__/useCurrencies.test.tsx +2 -2
- package/src/react/hooks/__tests__/useCurrency.test.tsx +2 -2
- package/src/react/hooks/__tests__/useFilters.test.tsx +2 -2
- package/src/react/hooks/__tests__/useFloorOrder.test.tsx +2 -2
- package/src/react/hooks/__tests__/useGenerateCancelTransaction.test.tsx +1 -1
- package/src/react/hooks/__tests__/useGenerateListingTransaction.test.tsx +1 -1
- package/src/react/hooks/__tests__/useGenerateOfferTransaction.test.tsx +1 -1
- package/src/react/hooks/__tests__/useGenerateSellTransaction.test.tsx +1 -1
- package/src/react/hooks/__tests__/useListCollectibleActivities.test.tsx +2 -2
- package/src/react/hooks/__tests__/useListCollectibles.test.tsx +3 -2
- package/src/react/hooks/__tests__/useListCollectiblesPaginated.test.tsx +1 -1
- package/src/react/hooks/__tests__/useListCollectionActivities.test.tsx +1 -1
- package/src/react/hooks/__tests__/useListListingsForCollectible.test.tsx +1 -1
- package/src/react/hooks/__tests__/useListOffersForCollectible.test.tsx +1 -1
- package/src/react/hooks/__tests__/useLowestListing.test.tsx +1 -1
- package/src/react/hooks/__tests__/useRoyalty.test.tsx +1 -2
- package/src/react/hooks/index.ts +0 -1
- package/src/react/hooks/options/collectionOptions.ts +2 -3
- package/src/react/hooks/useAutoSelectFeeOption.tsx +1 -1
- package/src/react/hooks/useCancelOrder.tsx +3 -3
- package/src/react/hooks/useCancelTransactionSteps.tsx +1 -1
- package/src/react/hooks/useCheckoutOptions.tsx +1 -2
- package/src/react/hooks/useCollectible.tsx +2 -3
- package/src/react/hooks/useCollectionBalanceDetails.tsx +1 -2
- package/src/react/hooks/useComparePrices.tsx +2 -9
- package/src/react/hooks/useConvertPriceToUSD.tsx +1 -4
- package/src/react/hooks/useCountListingsForCollectible.tsx +1 -2
- package/src/react/hooks/useCountOfCollectables.tsx +1 -2
- package/src/react/hooks/useCountOffersForCollectible.tsx +1 -2
- package/src/react/hooks/useCurrencies.tsx +1 -4
- package/src/react/hooks/useCurrency.tsx +3 -8
- package/src/react/hooks/useFilters.tsx +5 -4
- package/src/react/hooks/useFloorOrder.tsx +1 -2
- package/src/react/hooks/useGenerateCancelTransaction.tsx +3 -6
- package/src/react/hooks/useGenerateListingTransaction.tsx +2 -3
- package/src/react/hooks/useGenerateOfferTransaction.tsx +2 -3
- package/src/react/hooks/useGenerateSellTransaction.tsx +3 -6
- package/src/react/hooks/useHighestOffer.tsx +1 -1
- package/src/react/hooks/useListCollectibles.tsx +33 -61
- package/src/react/hooks/useListCollectiblesPaginated.tsx +2 -6
- package/src/react/hooks/useListListingsForCollectible.tsx +1 -2
- package/src/react/hooks/useListOffersForCollectible.tsx +1 -2
- package/src/react/hooks/useLowestListing.tsx +1 -2
- package/src/react/hooks/useRoyalty.tsx +3 -8
- package/src/react/hooks/useTransferTokens.tsx +2 -2
- package/src/react/queries/balanceOfCollectible.ts +9 -32
- package/src/react/queries/getTokenSupplies.ts +38 -0
- package/src/react/queries/index.ts +5 -0
- package/src/react/queries/listCollectibles.ts +96 -0
- package/src/react/ui/components/_internals/action-button/ActionButton.tsx +1 -1
- package/src/react/ui/components/_internals/action-button/__tests__/ActionButton.test.tsx +1 -1
- package/src/react/ui/components/_internals/action-button/components/NonOwnerActions.tsx +4 -3
- package/src/react/ui/components/_internals/action-button/components/OwnerActions.tsx +1 -1
- package/src/react/ui/components/collectible-card/CollectibleCard.tsx +2 -3
- package/src/react/ui/components/collectible-card/__tests__/CollectibleCard.test.tsx +1 -1
- package/src/react/ui/modals/BuyModal/ERC1155QuantityModal.tsx +127 -0
- package/src/react/ui/modals/BuyModal/Modal.tsx +67 -85
- package/src/react/ui/modals/BuyModal/__tests__/Modal.test.tsx +85 -226
- package/src/react/ui/modals/BuyModal/__tests__/Modal1155.test.tsx +140 -0
- package/src/react/ui/modals/BuyModal/__tests__/store.test.ts +67 -76
- package/src/react/ui/modals/BuyModal/hooks/__tests__/useCheckoutOptions.test.tsx +1 -60
- package/src/react/ui/modals/BuyModal/hooks/__tests__/useFees.test.tsx +1 -1
- package/src/react/ui/modals/BuyModal/hooks/useCheckoutOptions.ts +29 -13
- package/src/react/ui/modals/BuyModal/hooks/useLoadData.ts +26 -21
- package/src/react/ui/modals/BuyModal/hooks/usePaymentModalParams.ts +200 -0
- package/src/react/ui/modals/BuyModal/index.tsx +4 -14
- package/src/react/ui/modals/BuyModal/store.ts +71 -76
- package/src/react/ui/modals/CreateListingModal/Modal.tsx +71 -7
- package/src/react/ui/modals/CreateListingModal/__tests__/Modal.test.tsx +2 -2
- package/src/react/ui/modals/CreateListingModal/hooks/useCreateListing.tsx +1 -1
- package/src/react/ui/modals/CreateListingModal/hooks/useGetTokenApproval.ts +1 -1
- package/src/react/ui/modals/CreateListingModal/hooks/useTransactionSteps.tsx +9 -5
- package/src/react/ui/modals/CreateListingModal/store.ts +7 -2
- package/src/react/ui/modals/MakeOfferModal/Modal.tsx +103 -6
- package/src/react/ui/modals/MakeOfferModal/__tests__/Modal.test.tsx +1 -1
- package/src/react/ui/modals/MakeOfferModal/hooks/useGetTokenApproval.tsx +1 -1
- package/src/react/ui/modals/MakeOfferModal/hooks/useMakeOffer.tsx +1 -1
- package/src/react/ui/modals/MakeOfferModal/hooks/useTransactionSteps.tsx +8 -4
- package/src/react/ui/modals/MakeOfferModal/store.ts +5 -3
- package/src/react/ui/modals/SellModal/Modal.tsx +76 -4
- package/src/react/ui/modals/SellModal/__tests__/Modal.test.tsx +1 -1
- package/src/react/ui/modals/SellModal/hooks/useGetTokenApproval.tsx +1 -1
- package/src/react/ui/modals/SellModal/hooks/useSell.tsx +1 -1
- package/src/react/ui/modals/SellModal/hooks/useTransactionSteps.tsx +16 -8
- package/src/react/ui/modals/SellModal/store.ts +5 -3
- package/src/react/ui/modals/TransferModal/_store.ts +15 -3
- package/src/react/ui/modals/TransferModal/_views/enterWalletAddress/_components/TokenQuantityInput.tsx +58 -0
- package/src/react/ui/modals/TransferModal/_views/enterWalletAddress/_components/TransferButton.tsx +56 -0
- package/src/react/ui/modals/TransferModal/_views/enterWalletAddress/_components/WalletAddressInput.tsx +50 -0
- package/src/react/ui/modals/TransferModal/_views/enterWalletAddress/index.tsx +94 -66
- package/src/react/ui/modals/TransferModal/_views/enterWalletAddress/useHandleTransfer.tsx +22 -14
- package/src/react/ui/modals/TransferModal/index.tsx +72 -38
- package/src/react/ui/modals/_internal/components/actionModal/ActionModal.tsx +43 -42
- package/src/react/ui/modals/_internal/components/actionModal/store.ts +1 -2
- package/src/react/ui/modals/_internal/components/currencyOptionsSelect/index.tsx +2 -2
- package/src/react/ui/modals/_internal/components/expirationDateSelect/index.tsx +9 -1
- package/src/react/ui/modals/_internal/components/floorPriceText/index.tsx +27 -12
- package/src/react/ui/modals/_internal/components/priceInput/__tests__/index.test.tsx +1 -1
- package/src/react/ui/modals/_internal/components/priceInput/index.tsx +19 -3
- package/src/react/ui/modals/_internal/components/quantityInput/index.tsx +3 -0
- package/src/react/ui/modals/_internal/components/selectWaasFeeOptions/_components/ActionButtons.tsx +60 -0
- package/src/react/ui/modals/_internal/components/selectWaasFeeOptions/_components/BalanceIndicator.tsx +30 -0
- package/src/react/ui/modals/_internal/components/selectWaasFeeOptions/index.tsx +126 -0
- package/src/react/ui/modals/_internal/components/selectWaasFeeOptions/store.ts +25 -0
- package/src/react/ui/modals/_internal/components/selectWaasFeeOptions/useWaasFeeOptionManager.tsx +74 -0
- package/src/react/ui/modals/_internal/components/switchChainModal/index.tsx +1 -2
- package/src/react/ui/modals/_internal/components/switchChainModal/store.ts +1 -2
- package/src/react/ui/modals/_internal/components/tokenPreview/index.tsx +1 -1
- package/src/react/ui/modals/_internal/components/transaction-footer/index.tsx +4 -7
- package/src/react/ui/modals/_internal/components/transactionDetails/index.tsx +1 -1
- package/src/react/ui/modals/_internal/components/transactionPreview/index.tsx +1 -1
- package/src/react/ui/modals/_internal/components/transactionStatusModal/__tests__/TransactionStatusModal.test.tsx +1 -1
- package/src/react/ui/modals/_internal/components/transactionStatusModal/hooks/useTransactionStatus.ts +1 -1
- package/src/react/ui/modals/_internal/components/transactionStatusModal/index.tsx +6 -1
- package/src/react/ui/modals/_internal/components/transactionStatusModal/store.ts +2 -2
- package/src/react/ui/modals/_internal/components/waasFeeOptionsSelect/WaasFeeOptionsSelect.tsx +10 -31
- package/src/react/ui/modals/_internal/hooks/useSelectWaasFeeOptions.ts +53 -0
- package/src/react/ui/modals/_internal/types.ts +2 -1
- package/src/types/waas-types.ts +38 -0
- package/src/utils/network.ts +2 -4
- package/test/const.ts +1 -1
- package/test/setup.ts +10 -0
- package/test/test-utils.tsx +31 -5
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/chunk-3AKOPSON.js.map +0 -1
- package/dist/chunk-4XK7XNJ7.js.map +0 -1
- package/dist/chunk-BBASZVT3.js.map +0 -1
- package/dist/chunk-EAJ5K7QV.js.map +0 -1
- package/dist/chunk-HTFORA4Q.js.map +0 -1
- package/dist/chunk-OFY7OFTL.js +0 -458
- package/dist/chunk-OFY7OFTL.js.map +0 -1
- package/dist/chunk-RBEPPVLT.js.map +0 -1
- package/src/react/hooks/__tests__/useGenerateBuyTransaction.test.tsx +0 -172
- package/src/react/hooks/useGenerateBuyTransaction.tsx +0 -80
- package/src/react/ui/modals/BuyModal/hooks/__tests__/useBuyCollectable.test.tsx +0 -349
- package/src/react/ui/modals/BuyModal/hooks/__tests__/useLoadData.test.tsx +0 -185
- package/src/react/ui/modals/BuyModal/hooks/useBuyCollectable.ts +0 -170
- package/src/react/ui/modals/BuyModal/modals/CheckoutModal.tsx +0 -47
- package/src/react/ui/modals/BuyModal/modals/Modal1155.tsx +0 -140
- package/src/react/ui/modals/BuyModal/modals/__tests__/CheckoutModal.test.tsx +0 -162
- package/src/react/ui/modals/BuyModal/modals/__tests__/Modal1155.test.tsx +0 -327
- package/src/react/ui/modals/_internal/components/waasFeeOptionsBox/index.tsx +0 -124
- package/src/react/ui/modals/_internal/components/waasFeeOptionsBox/store.ts +0 -12
- /package/dist/{chunk-MPBN3E54.js.map → chunk-2VHHJNXY.js.map} +0 -0
- /package/dist/{chunk-FBUMNJQ4.js.map → chunk-3II5GLHE.js.map} +0 -0
- /package/dist/{chunk-XNA64MZQ.js.map → chunk-BCO4CYE4.js.map} +0 -0
- /package/dist/{chunk-Q5URKSC4.js.map → chunk-FMEEJFAF.js.map} +0 -0
- /package/dist/{chunk-XTGMMNV5.js.map → chunk-WHFXVREI.js.map} +0 -0
package/src/react/ui/modals/_internal/components/selectWaasFeeOptions/useWaasFeeOptionManager.tsx
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { useWaasFeeOptions } from '@0xsequence/connect';
|
|
2
|
+
import { useEffect, useState } from 'react';
|
|
3
|
+
import { type Address, zeroAddress } from 'viem';
|
|
4
|
+
import { useAccount } from 'wagmi';
|
|
5
|
+
import type { FeeOption } from '../../../../../../types/waas-types';
|
|
6
|
+
import { useCurrencyBalance } from '../../../../../hooks/useCurrencyBalance';
|
|
7
|
+
import { selectWaasFeeOptions$ } from './store';
|
|
8
|
+
|
|
9
|
+
const useWaasFeeOptionManager = (chainId: number) => {
|
|
10
|
+
const { address: userAddress } = useAccount();
|
|
11
|
+
const selectedFeeOption$ = selectWaasFeeOptions$.selectedFeeOption;
|
|
12
|
+
const [pendingFeeOptionConfirmation, confirmPendingFeeOption] =
|
|
13
|
+
useWaasFeeOptions();
|
|
14
|
+
const [feeOptionsConfirmed, setFeeOptionsConfirmed] = useState(false);
|
|
15
|
+
const selectedFeeOption = selectedFeeOption$.get();
|
|
16
|
+
|
|
17
|
+
const { data: currencyBalance, isLoading: currencyBalanceLoading } =
|
|
18
|
+
useCurrencyBalance({
|
|
19
|
+
chainId,
|
|
20
|
+
currencyAddress: (selectedFeeOption?.token.contractAddress ||
|
|
21
|
+
zeroAddress) as Address,
|
|
22
|
+
userAddress: userAddress as Address,
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
// biome-ignore lint/correctness/useExhaustiveDependencies: it causes a loop
|
|
26
|
+
useEffect(() => {
|
|
27
|
+
if (!selectedFeeOption && pendingFeeOptionConfirmation) {
|
|
28
|
+
selectedFeeOption$.set(
|
|
29
|
+
pendingFeeOptionConfirmation.options[0] as FeeOption,
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
}, [pendingFeeOptionConfirmation]);
|
|
33
|
+
|
|
34
|
+
const insufficientBalance = (() => {
|
|
35
|
+
if (!selectedFeeOption?.value || !selectedFeeOption.token.decimals) {
|
|
36
|
+
return false;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if (!currencyBalance?.value && currencyBalance?.value !== 0n) {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
try {
|
|
44
|
+
const feeValue = BigInt(selectedFeeOption.value);
|
|
45
|
+
return currencyBalance.value === 0n || currencyBalance.value < feeValue;
|
|
46
|
+
} catch {
|
|
47
|
+
return true;
|
|
48
|
+
}
|
|
49
|
+
})();
|
|
50
|
+
|
|
51
|
+
const handleConfirmFeeOption = () => {
|
|
52
|
+
if (!selectedFeeOption?.token || !pendingFeeOptionConfirmation?.id) return;
|
|
53
|
+
|
|
54
|
+
confirmPendingFeeOption(
|
|
55
|
+
pendingFeeOptionConfirmation?.id,
|
|
56
|
+
selectedFeeOption.token.contractAddress || zeroAddress,
|
|
57
|
+
);
|
|
58
|
+
|
|
59
|
+
setFeeOptionsConfirmed(true);
|
|
60
|
+
};
|
|
61
|
+
|
|
62
|
+
return {
|
|
63
|
+
selectedFeeOption$,
|
|
64
|
+
selectedFeeOption,
|
|
65
|
+
pendingFeeOptionConfirmation,
|
|
66
|
+
currencyBalance,
|
|
67
|
+
currencyBalanceLoading,
|
|
68
|
+
insufficientBalance,
|
|
69
|
+
feeOptionsConfirmed,
|
|
70
|
+
handleConfirmFeeOption,
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export default useWaasFeeOptionManager;
|
|
@@ -5,13 +5,12 @@ import { observer } from '@legendapp/state/react';
|
|
|
5
5
|
import type { SwitchChainError } from 'viem';
|
|
6
6
|
import { useSwitchChain } from 'wagmi';
|
|
7
7
|
import { getPresentableChainName } from '../../../../../../utils/network';
|
|
8
|
-
import type { ChainId } from '../../../../../_internal';
|
|
9
8
|
import AlertMessage from '../alertMessage';
|
|
10
9
|
import { MODAL_OVERLAY_PROPS } from '../consts';
|
|
11
10
|
import { switchChainModal$ } from './store';
|
|
12
11
|
|
|
13
12
|
export type ShowSwitchChainModalArgs = {
|
|
14
|
-
chainIdToSwitchTo:
|
|
13
|
+
chainIdToSwitchTo: number;
|
|
15
14
|
onSuccess?: () => void;
|
|
16
15
|
onError?: (error: SwitchChainError) => void;
|
|
17
16
|
onClose?: () => void;
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { observable } from '@legendapp/state';
|
|
2
2
|
import type { SwitchChainError } from 'viem';
|
|
3
3
|
import type { ShowSwitchChainModalArgs } from '.';
|
|
4
|
-
import type { ChainId } from '../../../../../_internal';
|
|
5
4
|
|
|
6
5
|
export interface SwitchChainModalState {
|
|
7
6
|
isOpen: boolean;
|
|
8
7
|
open: (args: ShowSwitchChainModalArgs) => void;
|
|
9
8
|
close: () => void;
|
|
10
9
|
state: {
|
|
11
|
-
chainIdToSwitchTo:
|
|
10
|
+
chainIdToSwitchTo: number | undefined;
|
|
12
11
|
isSwitching: boolean;
|
|
13
12
|
onSuccess: (() => void) | undefined;
|
|
14
13
|
onError: undefined | ((error: SwitchChainError) => void);
|
|
@@ -10,7 +10,7 @@ type TransactionFooterProps = {
|
|
|
10
10
|
isConfirmed: boolean;
|
|
11
11
|
isFailed: boolean;
|
|
12
12
|
isTimeout: boolean;
|
|
13
|
-
chainId:
|
|
13
|
+
chainId: number;
|
|
14
14
|
};
|
|
15
15
|
|
|
16
16
|
export default function TransactionFooter({
|
|
@@ -37,24 +37,21 @@ export default function TransactionFooter({
|
|
|
37
37
|
<div className="flex items-center">
|
|
38
38
|
{icon}
|
|
39
39
|
<Text
|
|
40
|
-
className="ml-2 font-body text-
|
|
40
|
+
className="ml-2 grow font-body text-sm"
|
|
41
41
|
color="text50"
|
|
42
42
|
fontWeight="medium"
|
|
43
43
|
>
|
|
44
44
|
{title}
|
|
45
45
|
</Text>
|
|
46
46
|
<a
|
|
47
|
-
className="ml-2
|
|
47
|
+
className="ml-2 text-right no-underline"
|
|
48
48
|
href={transactionUrl}
|
|
49
49
|
target="_blank"
|
|
50
50
|
rel="noopener noreferrer"
|
|
51
51
|
>
|
|
52
52
|
<Text
|
|
53
|
-
className="text-right font-body text-
|
|
53
|
+
className="text-right font-body text-sm text-violet-400"
|
|
54
54
|
fontWeight="medium"
|
|
55
|
-
style={{
|
|
56
|
-
color: 'hsla(247, 100%, 75%, 1)',
|
|
57
|
-
}}
|
|
58
55
|
>
|
|
59
56
|
{transactionHash && truncateMiddle(transactionHash, 4, 4)}
|
|
60
57
|
</Text>
|
|
@@ -9,7 +9,7 @@ import { useMarketplaceConfig, useRoyalty } from '../../../../../hooks';
|
|
|
9
9
|
type TransactionDetailsProps = {
|
|
10
10
|
collectibleId: string;
|
|
11
11
|
collectionAddress: Hex;
|
|
12
|
-
chainId:
|
|
12
|
+
chainId: number;
|
|
13
13
|
price?: Price;
|
|
14
14
|
currencyImageUrl?: string;
|
|
15
15
|
includeMarketplaceFee: boolean;
|
|
@@ -9,7 +9,7 @@ import { transactionStatusModal$ } from '../store';
|
|
|
9
9
|
const mockTransactionArgs: ShowTransactionStatusModalArgs = {
|
|
10
10
|
hash: '0x123' as `0x${string}`,
|
|
11
11
|
collectionAddress: '0x456' as `0x${string}`,
|
|
12
|
-
chainId:
|
|
12
|
+
chainId: 1,
|
|
13
13
|
collectibleId: '1',
|
|
14
14
|
type: TransactionType.BUY,
|
|
15
15
|
};
|
|
@@ -11,6 +11,7 @@ import type { TransactionType } from '../../../../../_internal/types';
|
|
|
11
11
|
import { useCollectible } from '../../../../../hooks';
|
|
12
12
|
import type { ModalCallbacks } from '../../types';
|
|
13
13
|
import { MODAL_OVERLAY_PROPS } from '../consts';
|
|
14
|
+
import { selectWaasFeeOptions$ } from '../selectWaasFeeOptions/store';
|
|
14
15
|
import TransactionFooter from '../transaction-footer';
|
|
15
16
|
import TransactionPreview from '../transactionPreview';
|
|
16
17
|
import useTransactionStatus from './hooks/useTransactionStatus';
|
|
@@ -23,7 +24,7 @@ export type ShowTransactionStatusModalArgs = {
|
|
|
23
24
|
orderId?: string;
|
|
24
25
|
price?: Price;
|
|
25
26
|
collectionAddress: Hex;
|
|
26
|
-
chainId:
|
|
27
|
+
chainId: number;
|
|
27
28
|
collectibleId: string;
|
|
28
29
|
type: TransactionType;
|
|
29
30
|
callbacks?: ModalCallbacks;
|
|
@@ -93,6 +94,10 @@ function TransactionStatusModalContent() {
|
|
|
93
94
|
|
|
94
95
|
const handleClose = () => {
|
|
95
96
|
invalidateQueries(queriesToInvalidate);
|
|
97
|
+
if (selectWaasFeeOptions$.isVisible.get()) {
|
|
98
|
+
selectWaasFeeOptions$.hide();
|
|
99
|
+
}
|
|
100
|
+
|
|
96
101
|
transactionStatusModal$.close();
|
|
97
102
|
};
|
|
98
103
|
|
|
@@ -26,7 +26,7 @@ export interface TransactionStatusModalState {
|
|
|
26
26
|
type: TransactionType;
|
|
27
27
|
price: Price | undefined;
|
|
28
28
|
collectionAddress: Hex;
|
|
29
|
-
chainId:
|
|
29
|
+
chainId: number;
|
|
30
30
|
collectibleId: string;
|
|
31
31
|
callbacks?: ModalCallbacks;
|
|
32
32
|
queriesToInvalidate?: QueryKey[];
|
|
@@ -72,7 +72,7 @@ export const initialState: TransactionStatusModalState = {
|
|
|
72
72
|
status: 'PENDING',
|
|
73
73
|
price: undefined,
|
|
74
74
|
collectionAddress: '' as Hex,
|
|
75
|
-
chainId:
|
|
75
|
+
chainId: 0,
|
|
76
76
|
collectibleId: '',
|
|
77
77
|
type: undefined as unknown as TransactionType,
|
|
78
78
|
callbacks: undefined,
|
package/src/react/ui/modals/_internal/components/waasFeeOptionsSelect/WaasFeeOptionsSelect.tsx
CHANGED
|
@@ -1,31 +1,12 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
|
-
import { Image, Text } from '@0xsequence/design-system';
|
|
3
|
+
import { Image, Select, Text } from '@0xsequence/design-system';
|
|
4
4
|
import type { Observable } from '@legendapp/state';
|
|
5
5
|
import { observer } from '@legendapp/state/react';
|
|
6
6
|
import { useEffect } from 'react';
|
|
7
7
|
import { formatUnits, zeroAddress } from 'viem';
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
type SelectItem,
|
|
11
|
-
} from '../../../../components/_internals/custom-select/CustomSelect';
|
|
12
|
-
|
|
13
|
-
export type FeeOption = {
|
|
14
|
-
gasLimit: number;
|
|
15
|
-
to: string;
|
|
16
|
-
token: {
|
|
17
|
-
chainId: number;
|
|
18
|
-
contractAddress: string | null;
|
|
19
|
-
decimals: number;
|
|
20
|
-
logoURL: string;
|
|
21
|
-
name: string;
|
|
22
|
-
symbol: string;
|
|
23
|
-
tokenID: string | null;
|
|
24
|
-
type: string;
|
|
25
|
-
};
|
|
26
|
-
value: string;
|
|
27
|
-
};
|
|
28
|
-
|
|
8
|
+
import type { FeeOption } from '../../../../../../types/waas-types';
|
|
9
|
+
import type { SelectItem } from '../../../../components/_internals/custom-select/CustomSelect';
|
|
29
10
|
const WaasFeeOptionsSelect = observer(
|
|
30
11
|
({
|
|
31
12
|
options,
|
|
@@ -57,8 +38,13 @@ const WaasFeeOptionsSelect = observer(
|
|
|
57
38
|
if (options.length === 0 || !selectedFeeOption$.get()?.token) return null;
|
|
58
39
|
|
|
59
40
|
return (
|
|
60
|
-
<
|
|
41
|
+
<Select
|
|
61
42
|
items={feeOptions}
|
|
43
|
+
name="fee-option"
|
|
44
|
+
options={feeOptions.map((option) => ({
|
|
45
|
+
label: option.content,
|
|
46
|
+
value: option.value,
|
|
47
|
+
}))}
|
|
62
48
|
onValueChange={(value) => {
|
|
63
49
|
const selectedOption = options.find(
|
|
64
50
|
(option) => option.token.contractAddress === value,
|
|
@@ -66,14 +52,7 @@ const WaasFeeOptionsSelect = observer(
|
|
|
66
52
|
|
|
67
53
|
selectedFeeOption$.set(selectedOption);
|
|
68
54
|
}}
|
|
69
|
-
defaultValue={
|
|
70
|
-
selectedFeeOption$.get()?.token.contractAddress
|
|
71
|
-
? FeeOptionSelectItem({
|
|
72
|
-
value: selectedFeeOption$.get()?.token.contractAddress ?? '',
|
|
73
|
-
option: selectedFeeOption$.get() ?? options[0],
|
|
74
|
-
})
|
|
75
|
-
: undefined
|
|
76
|
-
}
|
|
55
|
+
defaultValue={options[0].token.contractAddress ?? undefined}
|
|
77
56
|
/>
|
|
78
57
|
);
|
|
79
58
|
},
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { getNetwork } from '@0xsequence/connect';
|
|
2
|
+
import { NetworkType } from '@0xsequence/network';
|
|
3
|
+
import type { FeeOption } from '../../../../../types/waas-types';
|
|
4
|
+
import { useWallet } from '../../../../_internal/wallet/useWallet';
|
|
5
|
+
|
|
6
|
+
interface UseSelectWaasFeeOptionsProps {
|
|
7
|
+
chainId: string | number;
|
|
8
|
+
isProcessing: boolean;
|
|
9
|
+
feeOptionsVisible: boolean;
|
|
10
|
+
selectedFeeOption: FeeOption;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export const useSelectWaasFeeOptions = ({
|
|
14
|
+
chainId,
|
|
15
|
+
isProcessing,
|
|
16
|
+
feeOptionsVisible,
|
|
17
|
+
selectedFeeOption,
|
|
18
|
+
}: UseSelectWaasFeeOptionsProps) => {
|
|
19
|
+
const { wallet } = useWallet();
|
|
20
|
+
const network = chainId ? getNetwork(Number(chainId)) : undefined;
|
|
21
|
+
const isTestnet = network?.type === NetworkType.TESTNET;
|
|
22
|
+
const isWaaS = wallet?.isWaaS;
|
|
23
|
+
const isProcessingWithWaaS = isProcessing && isWaaS;
|
|
24
|
+
|
|
25
|
+
const shouldHideActionButton =
|
|
26
|
+
!isTestnet &&
|
|
27
|
+
isProcessingWithWaaS &&
|
|
28
|
+
feeOptionsVisible === true &&
|
|
29
|
+
!!selectedFeeOption;
|
|
30
|
+
|
|
31
|
+
const waasFeeOptionsShown =
|
|
32
|
+
wallet?.isWaaS && isProcessing && feeOptionsVisible;
|
|
33
|
+
|
|
34
|
+
const getActionLabel = (
|
|
35
|
+
defaultLabel: string,
|
|
36
|
+
loadingLabel = 'Loading fee options',
|
|
37
|
+
) => {
|
|
38
|
+
if (isProcessing) {
|
|
39
|
+
return isWaaS && !isTestnet ? loadingLabel : defaultLabel;
|
|
40
|
+
}
|
|
41
|
+
return defaultLabel;
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
return {
|
|
45
|
+
isWaaS,
|
|
46
|
+
isTestnet,
|
|
47
|
+
feeOptionsVisible,
|
|
48
|
+
shouldHideActionButton,
|
|
49
|
+
waasFeeOptionsShown,
|
|
50
|
+
isProcessingWithWaaS,
|
|
51
|
+
getActionLabel,
|
|
52
|
+
};
|
|
53
|
+
};
|
|
@@ -3,11 +3,12 @@ import type { Hash, Hex } from 'viem';
|
|
|
3
3
|
export type ModalCallbacks = {
|
|
4
4
|
onSuccess?: ({ hash, orderId }: { hash?: Hash; orderId?: string }) => void;
|
|
5
5
|
onError?: (error: Error) => void;
|
|
6
|
+
onBuyAtFloorPrice?: () => void;
|
|
6
7
|
};
|
|
7
8
|
|
|
8
9
|
export type BaseModalState = {
|
|
9
10
|
isOpen: boolean;
|
|
10
|
-
chainId:
|
|
11
|
+
chainId: number;
|
|
11
12
|
collectionAddress: Hex;
|
|
12
13
|
callbacks?: ModalCallbacks;
|
|
13
14
|
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// TODO: Get these from the @0xsequence/connect package
|
|
2
|
+
|
|
3
|
+
// Copied from @0xsequence/connect
|
|
4
|
+
export type FeeOption = {
|
|
5
|
+
gasLimit: number;
|
|
6
|
+
to: string;
|
|
7
|
+
token: {
|
|
8
|
+
chainId: number;
|
|
9
|
+
contractAddress: string | null;
|
|
10
|
+
decimals: number;
|
|
11
|
+
logoURL: string;
|
|
12
|
+
name: string;
|
|
13
|
+
symbol: string;
|
|
14
|
+
tokenID: string | null;
|
|
15
|
+
type: string;
|
|
16
|
+
};
|
|
17
|
+
value: string;
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
export type FeeOptionExtended = FeeOption & {
|
|
21
|
+
/** Raw balance string */
|
|
22
|
+
balance: string;
|
|
23
|
+
/** Formatted balance with proper decimals */
|
|
24
|
+
balanceFormatted: string;
|
|
25
|
+
/** Indicates if the wallet has enough balance to pay the fee */
|
|
26
|
+
hasEnoughBalanceForFee: boolean;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Fee option confirmation data structure
|
|
30
|
+
*/
|
|
31
|
+
export type WaasFeeOptionConfirmation = {
|
|
32
|
+
/** Unique identifier for the fee confirmation */
|
|
33
|
+
id: string;
|
|
34
|
+
/** Available fee options with balance information */
|
|
35
|
+
options: FeeOptionExtended[] | FeeOption[];
|
|
36
|
+
/** Chain ID where the transaction will be executed */
|
|
37
|
+
chainId: number;
|
|
38
|
+
};
|
package/src/utils/network.ts
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { networks } from '@0xsequence/network';
|
|
2
|
-
import type { ChainId } from '../react/_internal';
|
|
3
2
|
|
|
4
|
-
export const getPresentableChainName = (chainId:
|
|
5
|
-
|
|
6
|
-
return networks[id as keyof typeof networks]?.title ?? 'Unknown Network';
|
|
3
|
+
export const getPresentableChainName = (chainId: number) => {
|
|
4
|
+
return networks[chainId as keyof typeof networks]?.title ?? 'Unknown Network';
|
|
7
5
|
};
|
package/test/const.ts
CHANGED
package/test/setup.ts
CHANGED
|
@@ -6,6 +6,16 @@ import { server } from './test-utils';
|
|
|
6
6
|
// https://github.com/jsdom/jsdom/issues/1695
|
|
7
7
|
window.HTMLElement.prototype.scrollIntoView = () => {};
|
|
8
8
|
|
|
9
|
+
// jsdom does not support replaceSync yet, so we need to polyfill it for web-sdk
|
|
10
|
+
if (!('replaceSync' in CSSStyleSheet.prototype)) {
|
|
11
|
+
Object.defineProperty(CSSStyleSheet.prototype, 'replaceSync', {
|
|
12
|
+
value(cssText: string) {
|
|
13
|
+
this.cssText = cssText;
|
|
14
|
+
return cssText;
|
|
15
|
+
},
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
|
|
9
19
|
beforeAll(async () => {
|
|
10
20
|
server.listen({
|
|
11
21
|
onUnhandledRequest(request, print) {
|
package/test/test-utils.tsx
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
+
import { SequenceCheckoutProvider } from '@0xsequence/checkout';
|
|
2
|
+
import {
|
|
3
|
+
SequenceConnect,
|
|
4
|
+
createConfig as createSequenceConnectConfig,
|
|
5
|
+
} from '@0xsequence/connect';
|
|
1
6
|
import { ThemeProvider } from '@0xsequence/design-system';
|
|
2
7
|
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
|
|
3
8
|
import { renderHook, render as rtlRender } from '@testing-library/react';
|
|
4
9
|
import type { RenderOptions } from '@testing-library/react';
|
|
5
|
-
import type { ReactElement } from 'react';
|
|
6
|
-
import { http, type Config, WagmiProvider, createConfig } from 'wagmi';
|
|
7
|
-
|
|
8
|
-
import { mock } from 'wagmi/connectors';
|
|
9
|
-
|
|
10
10
|
import { HttpResponse, http as mswHttp } from 'msw';
|
|
11
11
|
import { setupServer } from 'msw/node';
|
|
12
|
+
import type { ReactElement } from 'react';
|
|
12
13
|
import {
|
|
13
14
|
type Client,
|
|
14
15
|
createTestClient,
|
|
@@ -16,6 +17,8 @@ import {
|
|
|
16
17
|
walletActions,
|
|
17
18
|
} from 'viem';
|
|
18
19
|
import { mainnet as wagmiMainet, polygon as wagmiPolygon } from 'viem/chains';
|
|
20
|
+
import { http, type Config, WagmiProvider, createConfig } from 'wagmi';
|
|
21
|
+
import { mock } from 'wagmi/connectors';
|
|
19
22
|
import { handlers as indexerHandlers } from '../src/react/_internal/api/__mocks__/indexer.msw';
|
|
20
23
|
import { handlers as marketplaceHandlers } from '../src/react/_internal/api/__mocks__/marketplace.msw';
|
|
21
24
|
import { handlers as metadataHandlers } from '../src/react/_internal/api/__mocks__/metadata.msw';
|
|
@@ -73,6 +76,10 @@ export const wagmiConfig = createConfig({
|
|
|
73
76
|
connectors: [
|
|
74
77
|
mock({
|
|
75
78
|
accounts: [TEST_ACCOUNTS[0]],
|
|
79
|
+
features: {
|
|
80
|
+
defaultConnected: true,
|
|
81
|
+
reconnect: true,
|
|
82
|
+
},
|
|
76
83
|
}),
|
|
77
84
|
],
|
|
78
85
|
transports: {
|
|
@@ -133,6 +140,25 @@ function renderHookWithClient<P, R>(
|
|
|
133
140
|
});
|
|
134
141
|
}
|
|
135
142
|
|
|
143
|
+
// TODO: move make this more configurable, maybe use our own hook to create the config
|
|
144
|
+
const sequenceConnectConfig = createSequenceConnectConfig('universal', {
|
|
145
|
+
projectAccessKey: 'test',
|
|
146
|
+
chainIds: [1, 137],
|
|
147
|
+
defaultChainId: 1,
|
|
148
|
+
appName: 'Demo Dapp',
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
// The web sdk breaks the reloding of vitest, so we only use it when needed
|
|
152
|
+
function WebSdkWrapper({ children }: { children: ReactElement }) {
|
|
153
|
+
return (
|
|
154
|
+
<SequenceConnect config={sequenceConnectConfig}>
|
|
155
|
+
<SequenceCheckoutProvider>{children}</SequenceCheckoutProvider>
|
|
156
|
+
</SequenceConnect>
|
|
157
|
+
);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export { WebSdkWrapper };
|
|
161
|
+
|
|
136
162
|
export * from '@testing-library/react';
|
|
137
163
|
|
|
138
164
|
export { renderWithClient as render };
|
package/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/consts.ts","./src/index.ts","./src/react/index.ts","./src/react/provider.tsx","./src/react/__tests__/provider.test.tsx","./src/react/_internal/consts.ts","./src/react/_internal/get-provider.ts","./src/react/_internal/index.ts","./src/react/_internal/logger.ts","./src/react/_internal/types.ts","./src/react/_internal/utils.ts","./src/react/_internal/api/get-query-client.ts","./src/react/_internal/api/index.ts","./src/react/_internal/api/marketplace-api.ts","./src/react/_internal/api/marketplace.gen.ts","./src/react/_internal/api/query-keys.ts","./src/react/_internal/api/services.ts","./src/react/_internal/api/zod-schema.ts","./src/react/_internal/api/__mocks__/indexer.msw.ts","./src/react/_internal/api/__mocks__/marketplace.msw.ts","./src/react/_internal/api/__mocks__/metadata.msw.ts","./src/react/_internal/databeat/index.ts","./src/react/_internal/databeat/types.ts","./src/react/_internal/wagmi/create-config.ts","./src/react/_internal/wagmi/get-connectors.ts","./src/react/_internal/wagmi/index.ts","./src/react/_internal/wagmi/__tests__/create-config.test.ts","./src/react/_internal/wallet/usewallet.ts","./src/react/_internal/wallet/wallet.ts","./src/react/_internal/wallet/__tests__/wallet.test.ts","./src/react/hooks/index.ts","./src/react/hooks/useautoselectfeeoption.tsx","./src/react/hooks/usebalanceofcollectible.tsx","./src/react/hooks/usecancelorder.tsx","./src/react/hooks/usecanceltransactionsteps.tsx","./src/react/hooks/usecheckoutoptions.tsx","./src/react/hooks/usecollectible.tsx","./src/react/hooks/usecollection.tsx","./src/react/hooks/usecollectionbalancedetails.tsx","./src/react/hooks/usecollectiondetails.tsx","./src/react/hooks/usecollectiondetailspolling.tsx","./src/react/hooks/usecompareprices.tsx","./src/react/hooks/useconfig.tsx","./src/react/hooks/useconvertpricetousd.tsx","./src/react/hooks/usecountlistingsforcollectible.tsx","./src/react/hooks/usecountofcollectables.tsx","./src/react/hooks/usecountoffersforcollectible.tsx","./src/react/hooks/usecurrencies.tsx","./src/react/hooks/usecurrency.tsx","./src/react/hooks/usecurrencybalance.tsx","./src/react/hooks/usefilters.tsx","./src/react/hooks/usefloororder.tsx","./src/react/hooks/usegeneratebuytransaction.tsx","./src/react/hooks/usegeneratecanceltransaction.tsx","./src/react/hooks/usegeneratelistingtransaction.tsx","./src/react/hooks/usegenerateoffertransaction.tsx","./src/react/hooks/usegenerateselltransaction.tsx","./src/react/hooks/usegetreceiptfromhash.tsx","./src/react/hooks/usehighestoffer.tsx","./src/react/hooks/uselistbalances.tsx","./src/react/hooks/uselistcollectibleactivities.tsx","./src/react/hooks/uselistcollectibles.tsx","./src/react/hooks/uselistcollectiblespaginated.tsx","./src/react/hooks/uselistcollectionactivities.tsx","./src/react/hooks/uselistcollections.tsx","./src/react/hooks/uselistlistingsforcollectible.tsx","./src/react/hooks/uselistoffersforcollectible.tsx","./src/react/hooks/uselowestlisting.tsx","./src/react/hooks/usemarketplaceconfig.tsx","./src/react/hooks/useroyalty.tsx","./src/react/hooks/usetransfertokens.tsx","./src/react/hooks/__tests__/useautoselectfeeoption.test.tsx","./src/react/hooks/__tests__/usebalanceofcollectible.test.tsx","./src/react/hooks/__tests__/usecancelorder.test.tsx","./src/react/hooks/__tests__/usecanceltransactionsteps.test.tsx","./src/react/hooks/__tests__/usecollectible.test.tsx","./src/react/hooks/__tests__/usecollection.test.tsx","./src/react/hooks/__tests__/usecollectionbalancedetails.test.tsx","./src/react/hooks/__tests__/usecollectiondetails.test.tsx","./src/react/hooks/__tests__/usecollectiondetailspolling.test.tsx","./src/react/hooks/__tests__/usecompareprices.test.tsx","./src/react/hooks/__tests__/useconvertpricetousd.test.tsx","./src/react/hooks/__tests__/usecountlistingsforcollectible.test.tsx","./src/react/hooks/__tests__/usecountofcollectables.test.tsx","./src/react/hooks/__tests__/usecountoffersforcollectible.test.tsx","./src/react/hooks/__tests__/usecurrencies.test.tsx","./src/react/hooks/__tests__/usecurrency.test.tsx","./src/react/hooks/__tests__/usecurrencybalance.test.tsx","./src/react/hooks/__tests__/usefilters.test.tsx","./src/react/hooks/__tests__/usefloororder.test.tsx","./src/react/hooks/__tests__/usegeneratebuytransaction.test.tsx","./src/react/hooks/__tests__/usegeneratecanceltransaction.test.tsx","./src/react/hooks/__tests__/usegeneratelistingtransaction.test.tsx","./src/react/hooks/__tests__/usegenerateoffertransaction.test.tsx","./src/react/hooks/__tests__/usegenerateselltransaction.test.tsx","./src/react/hooks/__tests__/usehighestoffer.test.tsx","./src/react/hooks/__tests__/uselistbalances.test.tsx","./src/react/hooks/__tests__/uselistcollectibleactivities.test.tsx","./src/react/hooks/__tests__/uselistcollectibles.test.tsx","./src/react/hooks/__tests__/uselistcollectiblespaginated.test.tsx","./src/react/hooks/__tests__/uselistcollectionactivities.test.tsx","./src/react/hooks/__tests__/uselistcollections.test.tsx","./src/react/hooks/__tests__/uselistlistingsforcollectible.test.tsx","./src/react/hooks/__tests__/uselistoffersforcollectible.test.tsx","./src/react/hooks/__tests__/uselowestlisting.test.tsx","./src/react/hooks/__tests__/usemarketplaceconfig.test.tsx","./src/react/hooks/__tests__/useroyalty.test.tsx","./src/react/hooks/options/collectionoptions.ts","./src/react/hooks/options/index.ts","./src/react/hooks/options/marketplaceconfigoptions.ts","./src/react/hooks/options/__mocks__/marketplaceconfig.msw.ts","./src/react/hooks/options/__tests__/marketplaceconfigoptions.test.tsx","./src/react/queries/balanceofcollectible.ts","./src/react/queries/highestoffer.ts","./src/react/queries/listbalances.ts","./src/react/ssr/create-ssr-client.ts","./src/react/ssr/index.ts","./src/react/ssr/__tests__/create-ssr-client.test.ts","./src/react/ui/index.ts","./src/react/ui/components/_internals/action-button/actionbutton.tsx","./src/react/ui/components/_internals/action-button/store.ts","./src/react/ui/components/_internals/action-button/types.ts","./src/react/ui/components/_internals/action-button/__tests__/actionbutton.test.tsx","./src/react/ui/components/_internals/action-button/__tests__/actionbuttonbody.test.tsx","./src/react/ui/components/_internals/action-button/components/actionbuttonbody.tsx","./src/react/ui/components/_internals/action-button/components/nonowneractions.tsx","./src/react/ui/components/_internals/action-button/components/owneractions.tsx","./src/react/ui/components/_internals/action-button/hooks/useactionbuttonlogic.ts","./src/react/ui/components/_internals/custom-select/customselect.tsx","./src/react/ui/components/_internals/custom-select/__tests__/customselect.test.tsx","./src/react/ui/components/_internals/pill/pill.tsx","./src/react/ui/components/_internals/pill/__tests__/pill.test.tsx","./src/react/ui/components/collectible-card/collectibleasset.tsx","./src/react/ui/components/collectible-card/collectiblecard.tsx","./src/react/ui/components/collectible-card/footer.tsx","./src/react/ui/components/collectible-card/index.ts","./src/react/ui/components/collectible-card/__tests__/collectiblecard.test.tsx","./src/react/ui/components/marketplace-logos/index.ts","./src/react/ui/components/marketplace-logos/marketplace-logos.tsx","./src/react/ui/icons/bellicon.tsx","./src/react/ui/icons/calendaricon.tsx","./src/react/ui/icons/carticon.tsx","./src/react/ui/icons/infoicon.tsx","./src/react/ui/icons/iconvariants.ts","./src/react/ui/icons/index.ts","./src/react/ui/modals/modal-provider.tsx","./src/react/ui/modals/buymodal/modal.tsx","./src/react/ui/modals/buymodal/index.tsx","./src/react/ui/modals/buymodal/store.ts","./src/react/ui/modals/buymodal/__tests__/modal.test.tsx","./src/react/ui/modals/buymodal/__tests__/store.test.ts","./src/react/ui/modals/buymodal/hooks/usebuycollectable.ts","./src/react/ui/modals/buymodal/hooks/usecheckoutoptions.ts","./src/react/ui/modals/buymodal/hooks/usefees.ts","./src/react/ui/modals/buymodal/hooks/useloaddata.ts","./src/react/ui/modals/buymodal/hooks/__tests__/usebuycollectable.test.tsx","./src/react/ui/modals/buymodal/hooks/__tests__/usecheckoutoptions.test.tsx","./src/react/ui/modals/buymodal/hooks/__tests__/usefees.test.tsx","./src/react/ui/modals/buymodal/hooks/__tests__/useloaddata.test.tsx","./src/react/ui/modals/buymodal/modals/checkoutmodal.tsx","./src/react/ui/modals/buymodal/modals/modal1155.tsx","./src/react/ui/modals/buymodal/modals/__tests__/checkoutmodal.test.tsx","./src/react/ui/modals/buymodal/modals/__tests__/modal1155.test.tsx","./src/react/ui/modals/createlistingmodal/modal.tsx","./src/react/ui/modals/createlistingmodal/index.tsx","./src/react/ui/modals/createlistingmodal/store.ts","./src/react/ui/modals/createlistingmodal/__tests__/modal.test.tsx","./src/react/ui/modals/createlistingmodal/hooks/usecreatelisting.tsx","./src/react/ui/modals/createlistingmodal/hooks/usegettokenapproval.ts","./src/react/ui/modals/createlistingmodal/hooks/usetransactionsteps.tsx","./src/react/ui/modals/makeoffermodal/modal.tsx","./src/react/ui/modals/makeoffermodal/index.tsx","./src/react/ui/modals/makeoffermodal/store.ts","./src/react/ui/modals/makeoffermodal/__tests__/modal.test.tsx","./src/react/ui/modals/makeoffermodal/hooks/usegettokenapproval.tsx","./src/react/ui/modals/makeoffermodal/hooks/usemakeoffer.tsx","./src/react/ui/modals/makeoffermodal/hooks/usetransactionsteps.tsx","./src/react/ui/modals/sellmodal/modal.tsx","./src/react/ui/modals/sellmodal/index.tsx","./src/react/ui/modals/sellmodal/store.ts","./src/react/ui/modals/sellmodal/utils.ts","./src/react/ui/modals/sellmodal/__tests__/modal.test.tsx","./src/react/ui/modals/sellmodal/hooks/usegettokenapproval.tsx","./src/react/ui/modals/sellmodal/hooks/usesell.tsx","./src/react/ui/modals/sellmodal/hooks/usetransactionsteps.tsx","./src/react/ui/modals/successfulpurchasemodal/_store.ts","./src/react/ui/modals/successfulpurchasemodal/index.tsx","./src/react/ui/modals/successfulpurchasemodal/__tests__/modal.test.tsx","./src/react/ui/modals/transfermodal/_store.ts","./src/react/ui/modals/transfermodal/index.tsx","./src/react/ui/modals/transfermodal/messages.ts","./src/react/ui/modals/transfermodal/_views/enterwalletaddress/index.tsx","./src/react/ui/modals/transfermodal/_views/enterwalletaddress/usehandletransfer.tsx","./src/react/ui/modals/transfermodal/_views/followwalletinstructions/index.tsx","./src/react/ui/modals/_internal/types.ts","./src/react/ui/modals/_internal/components/consts.ts","./src/react/ui/modals/_internal/components/actionmodal/actionmodal.tsx","./src/react/ui/modals/_internal/components/actionmodal/errormodal.tsx","./src/react/ui/modals/_internal/components/actionmodal/loadingmodal.tsx","./src/react/ui/modals/_internal/components/actionmodal/index.ts","./src/react/ui/modals/_internal/components/actionmodal/store.ts","./src/react/ui/modals/_internal/components/alertmessage/index.tsx","./src/react/ui/modals/_internal/components/calendar/index.tsx","./src/react/ui/modals/_internal/components/calendardropdown/index.tsx","./src/react/ui/modals/_internal/components/currencyimage/index.tsx","./src/react/ui/modals/_internal/components/currencyoptionsselect/index.tsx","./src/react/ui/modals/_internal/components/currencyoptionsselect/__tests__/index.test.tsx","./src/react/ui/modals/_internal/components/expirationdateselect/index.tsx","./src/react/ui/modals/_internal/components/floorpricetext/index.tsx","./src/react/ui/modals/_internal/components/priceinput/index.tsx","./src/react/ui/modals/_internal/components/priceinput/types.ts","./src/react/ui/modals/_internal/components/priceinput/__tests__/index.test.tsx","./src/react/ui/modals/_internal/components/quantityinput/index.tsx","./src/react/ui/modals/_internal/components/quantityinput/__tests__/index.test.tsx","./src/react/ui/modals/_internal/components/switchchainmodal/index.tsx","./src/react/ui/modals/_internal/components/switchchainmodal/store.ts","./src/react/ui/modals/_internal/components/switchchainmodal/__tests__/switchchainmodal.test.tsx","./src/react/ui/modals/_internal/components/timeago/index.tsx","./src/react/ui/modals/_internal/components/tokenpreview/index.tsx","./src/react/ui/modals/_internal/components/transaction-footer/index.tsx","./src/react/ui/modals/_internal/components/transactiondetails/index.tsx","./src/react/ui/modals/_internal/components/transactionheader/index.tsx","./src/react/ui/modals/_internal/components/transactionpreview/consts.ts","./src/react/ui/modals/_internal/components/transactionpreview/index.tsx","./src/react/ui/modals/_internal/components/transactionpreview/usetransactionpreviewtitle.tsx","./src/react/ui/modals/_internal/components/transactionstatusmodal/index.tsx","./src/react/ui/modals/_internal/components/transactionstatusmodal/store.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/__tests__/transactionstatusmodal.test.tsx","./src/react/ui/modals/_internal/components/transactionstatusmodal/__tests__/utils.test.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/hooks/usetransactionstatus.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/util/getformattedtype.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/util/getmessage.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/util/gettitle.ts","./src/react/ui/modals/_internal/components/waasfeeoptionsbox/index.tsx","./src/react/ui/modals/_internal/components/waasfeeoptionsbox/store.ts","./src/react/ui/modals/_internal/components/waasfeeoptionsselect/waasfeeoptionsselect.tsx","./src/react/ui/modals/_internal/stores/accountmodal.ts","./src/types/api-types.ts","./src/types/builder-types.ts","./src/types/custom.d.ts","./src/types/index.ts","./src/types/messages.ts","./src/types/sdk-config.ts","./src/types/types.ts","./src/utils/address.ts","./src/utils/cn.ts","./src/utils/date.ts","./src/utils/getmarketplacedetails.ts","./src/utils/index.ts","./src/utils/network.ts","./src/utils/networkconfigtowagmichain.ts","./src/utils/price.ts","./src/utils/__tests__/address.test.ts","./src/utils/__tests__/date.test.ts","./src/utils/__tests__/getmarketplacedetails.test.ts","./src/utils/__tests__/price.test.ts","./src/utils/_internal/error/base.ts","./src/utils/_internal/error/config.ts","./src/utils/_internal/error/context.ts","./src/utils/_internal/error/transaction.ts","./src/utils/abi/index.ts","./src/utils/abi/marketplace/eip2981.ts","./src/utils/abi/marketplace/index.ts","./src/utils/abi/marketplace/sequence-marketplace-v1.ts","./src/utils/abi/marketplace/sequence-marketplace-v2.ts","./src/utils/abi/token/erc1155.ts","./src/utils/abi/token/erc20.ts","./src/utils/abi/token/erc721.ts","./src/utils/abi/token/index.ts","./src/utils/decode/erc20.ts","./tsup.config.ts","./test/const.ts","./test/globalsetup.ts","./test/index.ts","./test/setup.ts","./test/test-utils.tsx","./test/mocks/wallet.ts"],"version":"5.8.2"}
|
|
1
|
+
{"root":["./src/consts.ts","./src/index.ts","./src/react/index.ts","./src/react/provider.tsx","./src/react/__tests__/provider.test.tsx","./src/react/_internal/consts.ts","./src/react/_internal/get-provider.ts","./src/react/_internal/index.ts","./src/react/_internal/logger.ts","./src/react/_internal/types.ts","./src/react/_internal/utils.ts","./src/react/_internal/api/get-query-client.ts","./src/react/_internal/api/index.ts","./src/react/_internal/api/laos-api.ts","./src/react/_internal/api/marketplace-api.ts","./src/react/_internal/api/marketplace.gen.ts","./src/react/_internal/api/query-keys.ts","./src/react/_internal/api/services.ts","./src/react/_internal/api/zod-schema.ts","./src/react/_internal/api/__mocks__/indexer.msw.ts","./src/react/_internal/api/__mocks__/marketplace.msw.ts","./src/react/_internal/api/__mocks__/metadata.msw.ts","./src/react/_internal/databeat/index.ts","./src/react/_internal/databeat/types.ts","./src/react/_internal/wagmi/create-config.ts","./src/react/_internal/wagmi/get-connectors.ts","./src/react/_internal/wagmi/index.ts","./src/react/_internal/wagmi/__tests__/create-config.test.ts","./src/react/_internal/wallet/usewallet.ts","./src/react/_internal/wallet/wallet.ts","./src/react/_internal/wallet/__tests__/wallet.test.ts","./src/react/hooks/index.ts","./src/react/hooks/useautoselectfeeoption.tsx","./src/react/hooks/usebalanceofcollectible.tsx","./src/react/hooks/usecancelorder.tsx","./src/react/hooks/usecanceltransactionsteps.tsx","./src/react/hooks/usecheckoutoptions.tsx","./src/react/hooks/usecollectible.tsx","./src/react/hooks/usecollection.tsx","./src/react/hooks/usecollectionbalancedetails.tsx","./src/react/hooks/usecollectiondetails.tsx","./src/react/hooks/usecollectiondetailspolling.tsx","./src/react/hooks/usecompareprices.tsx","./src/react/hooks/useconfig.tsx","./src/react/hooks/useconvertpricetousd.tsx","./src/react/hooks/usecountlistingsforcollectible.tsx","./src/react/hooks/usecountofcollectables.tsx","./src/react/hooks/usecountoffersforcollectible.tsx","./src/react/hooks/usecurrencies.tsx","./src/react/hooks/usecurrency.tsx","./src/react/hooks/usecurrencybalance.tsx","./src/react/hooks/usefilters.tsx","./src/react/hooks/usefloororder.tsx","./src/react/hooks/usegeneratecanceltransaction.tsx","./src/react/hooks/usegeneratelistingtransaction.tsx","./src/react/hooks/usegenerateoffertransaction.tsx","./src/react/hooks/usegenerateselltransaction.tsx","./src/react/hooks/usegetreceiptfromhash.tsx","./src/react/hooks/usehighestoffer.tsx","./src/react/hooks/uselistbalances.tsx","./src/react/hooks/uselistcollectibleactivities.tsx","./src/react/hooks/uselistcollectibles.tsx","./src/react/hooks/uselistcollectiblespaginated.tsx","./src/react/hooks/uselistcollectionactivities.tsx","./src/react/hooks/uselistcollections.tsx","./src/react/hooks/uselistlistingsforcollectible.tsx","./src/react/hooks/uselistoffersforcollectible.tsx","./src/react/hooks/uselowestlisting.tsx","./src/react/hooks/usemarketplaceconfig.tsx","./src/react/hooks/useroyalty.tsx","./src/react/hooks/usetransfertokens.tsx","./src/react/hooks/__tests__/useautoselectfeeoption.test.tsx","./src/react/hooks/__tests__/usebalanceofcollectible.test.tsx","./src/react/hooks/__tests__/usecancelorder.test.tsx","./src/react/hooks/__tests__/usecanceltransactionsteps.test.tsx","./src/react/hooks/__tests__/usecollectible.test.tsx","./src/react/hooks/__tests__/usecollection.test.tsx","./src/react/hooks/__tests__/usecollectionbalancedetails.test.tsx","./src/react/hooks/__tests__/usecollectiondetails.test.tsx","./src/react/hooks/__tests__/usecollectiondetailspolling.test.tsx","./src/react/hooks/__tests__/usecompareprices.test.tsx","./src/react/hooks/__tests__/useconvertpricetousd.test.tsx","./src/react/hooks/__tests__/usecountlistingsforcollectible.test.tsx","./src/react/hooks/__tests__/usecountofcollectables.test.tsx","./src/react/hooks/__tests__/usecountoffersforcollectible.test.tsx","./src/react/hooks/__tests__/usecurrencies.test.tsx","./src/react/hooks/__tests__/usecurrency.test.tsx","./src/react/hooks/__tests__/usecurrencybalance.test.tsx","./src/react/hooks/__tests__/usefilters.test.tsx","./src/react/hooks/__tests__/usefloororder.test.tsx","./src/react/hooks/__tests__/usegeneratecanceltransaction.test.tsx","./src/react/hooks/__tests__/usegeneratelistingtransaction.test.tsx","./src/react/hooks/__tests__/usegenerateoffertransaction.test.tsx","./src/react/hooks/__tests__/usegenerateselltransaction.test.tsx","./src/react/hooks/__tests__/usehighestoffer.test.tsx","./src/react/hooks/__tests__/uselistbalances.test.tsx","./src/react/hooks/__tests__/uselistcollectibleactivities.test.tsx","./src/react/hooks/__tests__/uselistcollectibles.test.tsx","./src/react/hooks/__tests__/uselistcollectiblespaginated.test.tsx","./src/react/hooks/__tests__/uselistcollectionactivities.test.tsx","./src/react/hooks/__tests__/uselistcollections.test.tsx","./src/react/hooks/__tests__/uselistlistingsforcollectible.test.tsx","./src/react/hooks/__tests__/uselistoffersforcollectible.test.tsx","./src/react/hooks/__tests__/uselowestlisting.test.tsx","./src/react/hooks/__tests__/usemarketplaceconfig.test.tsx","./src/react/hooks/__tests__/useroyalty.test.tsx","./src/react/hooks/options/collectionoptions.ts","./src/react/hooks/options/index.ts","./src/react/hooks/options/marketplaceconfigoptions.ts","./src/react/hooks/options/__mocks__/marketplaceconfig.msw.ts","./src/react/hooks/options/__tests__/marketplaceconfigoptions.test.tsx","./src/react/queries/balanceofcollectible.ts","./src/react/queries/gettokensupplies.ts","./src/react/queries/highestoffer.ts","./src/react/queries/index.ts","./src/react/queries/listbalances.ts","./src/react/queries/listcollectibles.ts","./src/react/ssr/create-ssr-client.ts","./src/react/ssr/index.ts","./src/react/ssr/__tests__/create-ssr-client.test.ts","./src/react/ui/index.ts","./src/react/ui/components/_internals/action-button/actionbutton.tsx","./src/react/ui/components/_internals/action-button/store.ts","./src/react/ui/components/_internals/action-button/types.ts","./src/react/ui/components/_internals/action-button/__tests__/actionbutton.test.tsx","./src/react/ui/components/_internals/action-button/__tests__/actionbuttonbody.test.tsx","./src/react/ui/components/_internals/action-button/components/actionbuttonbody.tsx","./src/react/ui/components/_internals/action-button/components/nonowneractions.tsx","./src/react/ui/components/_internals/action-button/components/owneractions.tsx","./src/react/ui/components/_internals/action-button/hooks/useactionbuttonlogic.ts","./src/react/ui/components/_internals/custom-select/customselect.tsx","./src/react/ui/components/_internals/custom-select/__tests__/customselect.test.tsx","./src/react/ui/components/_internals/pill/pill.tsx","./src/react/ui/components/_internals/pill/__tests__/pill.test.tsx","./src/react/ui/components/collectible-card/collectibleasset.tsx","./src/react/ui/components/collectible-card/collectiblecard.tsx","./src/react/ui/components/collectible-card/footer.tsx","./src/react/ui/components/collectible-card/index.ts","./src/react/ui/components/collectible-card/__tests__/collectiblecard.test.tsx","./src/react/ui/components/marketplace-logos/index.ts","./src/react/ui/components/marketplace-logos/marketplace-logos.tsx","./src/react/ui/icons/bellicon.tsx","./src/react/ui/icons/calendaricon.tsx","./src/react/ui/icons/carticon.tsx","./src/react/ui/icons/infoicon.tsx","./src/react/ui/icons/iconvariants.ts","./src/react/ui/icons/index.ts","./src/react/ui/modals/modal-provider.tsx","./src/react/ui/modals/buymodal/erc1155quantitymodal.tsx","./src/react/ui/modals/buymodal/modal.tsx","./src/react/ui/modals/buymodal/index.tsx","./src/react/ui/modals/buymodal/store.ts","./src/react/ui/modals/buymodal/__tests__/modal.test.tsx","./src/react/ui/modals/buymodal/__tests__/modal1155.test.tsx","./src/react/ui/modals/buymodal/__tests__/store.test.ts","./src/react/ui/modals/buymodal/hooks/usecheckoutoptions.ts","./src/react/ui/modals/buymodal/hooks/usefees.ts","./src/react/ui/modals/buymodal/hooks/useloaddata.ts","./src/react/ui/modals/buymodal/hooks/usepaymentmodalparams.ts","./src/react/ui/modals/buymodal/hooks/__tests__/usecheckoutoptions.test.tsx","./src/react/ui/modals/buymodal/hooks/__tests__/usefees.test.tsx","./src/react/ui/modals/createlistingmodal/modal.tsx","./src/react/ui/modals/createlistingmodal/index.tsx","./src/react/ui/modals/createlistingmodal/store.ts","./src/react/ui/modals/createlistingmodal/__tests__/modal.test.tsx","./src/react/ui/modals/createlistingmodal/hooks/usecreatelisting.tsx","./src/react/ui/modals/createlistingmodal/hooks/usegettokenapproval.ts","./src/react/ui/modals/createlistingmodal/hooks/usetransactionsteps.tsx","./src/react/ui/modals/makeoffermodal/modal.tsx","./src/react/ui/modals/makeoffermodal/index.tsx","./src/react/ui/modals/makeoffermodal/store.ts","./src/react/ui/modals/makeoffermodal/__tests__/modal.test.tsx","./src/react/ui/modals/makeoffermodal/hooks/usegettokenapproval.tsx","./src/react/ui/modals/makeoffermodal/hooks/usemakeoffer.tsx","./src/react/ui/modals/makeoffermodal/hooks/usetransactionsteps.tsx","./src/react/ui/modals/sellmodal/modal.tsx","./src/react/ui/modals/sellmodal/index.tsx","./src/react/ui/modals/sellmodal/store.ts","./src/react/ui/modals/sellmodal/utils.ts","./src/react/ui/modals/sellmodal/__tests__/modal.test.tsx","./src/react/ui/modals/sellmodal/hooks/usegettokenapproval.tsx","./src/react/ui/modals/sellmodal/hooks/usesell.tsx","./src/react/ui/modals/sellmodal/hooks/usetransactionsteps.tsx","./src/react/ui/modals/successfulpurchasemodal/_store.ts","./src/react/ui/modals/successfulpurchasemodal/index.tsx","./src/react/ui/modals/successfulpurchasemodal/__tests__/modal.test.tsx","./src/react/ui/modals/transfermodal/_store.ts","./src/react/ui/modals/transfermodal/index.tsx","./src/react/ui/modals/transfermodal/messages.ts","./src/react/ui/modals/transfermodal/_views/enterwalletaddress/index.tsx","./src/react/ui/modals/transfermodal/_views/enterwalletaddress/usehandletransfer.tsx","./src/react/ui/modals/transfermodal/_views/enterwalletaddress/_components/tokenquantityinput.tsx","./src/react/ui/modals/transfermodal/_views/enterwalletaddress/_components/transferbutton.tsx","./src/react/ui/modals/transfermodal/_views/enterwalletaddress/_components/walletaddressinput.tsx","./src/react/ui/modals/transfermodal/_views/followwalletinstructions/index.tsx","./src/react/ui/modals/_internal/types.ts","./src/react/ui/modals/_internal/components/consts.ts","./src/react/ui/modals/_internal/components/actionmodal/actionmodal.tsx","./src/react/ui/modals/_internal/components/actionmodal/errormodal.tsx","./src/react/ui/modals/_internal/components/actionmodal/loadingmodal.tsx","./src/react/ui/modals/_internal/components/actionmodal/index.ts","./src/react/ui/modals/_internal/components/actionmodal/store.ts","./src/react/ui/modals/_internal/components/alertmessage/index.tsx","./src/react/ui/modals/_internal/components/calendar/index.tsx","./src/react/ui/modals/_internal/components/calendardropdown/index.tsx","./src/react/ui/modals/_internal/components/currencyimage/index.tsx","./src/react/ui/modals/_internal/components/currencyoptionsselect/index.tsx","./src/react/ui/modals/_internal/components/currencyoptionsselect/__tests__/index.test.tsx","./src/react/ui/modals/_internal/components/expirationdateselect/index.tsx","./src/react/ui/modals/_internal/components/floorpricetext/index.tsx","./src/react/ui/modals/_internal/components/priceinput/index.tsx","./src/react/ui/modals/_internal/components/priceinput/types.ts","./src/react/ui/modals/_internal/components/priceinput/__tests__/index.test.tsx","./src/react/ui/modals/_internal/components/quantityinput/index.tsx","./src/react/ui/modals/_internal/components/quantityinput/__tests__/index.test.tsx","./src/react/ui/modals/_internal/components/selectwaasfeeoptions/index.tsx","./src/react/ui/modals/_internal/components/selectwaasfeeoptions/store.ts","./src/react/ui/modals/_internal/components/selectwaasfeeoptions/usewaasfeeoptionmanager.tsx","./src/react/ui/modals/_internal/components/selectwaasfeeoptions/_components/actionbuttons.tsx","./src/react/ui/modals/_internal/components/selectwaasfeeoptions/_components/balanceindicator.tsx","./src/react/ui/modals/_internal/components/switchchainmodal/index.tsx","./src/react/ui/modals/_internal/components/switchchainmodal/store.ts","./src/react/ui/modals/_internal/components/switchchainmodal/__tests__/switchchainmodal.test.tsx","./src/react/ui/modals/_internal/components/timeago/index.tsx","./src/react/ui/modals/_internal/components/tokenpreview/index.tsx","./src/react/ui/modals/_internal/components/transaction-footer/index.tsx","./src/react/ui/modals/_internal/components/transactiondetails/index.tsx","./src/react/ui/modals/_internal/components/transactionheader/index.tsx","./src/react/ui/modals/_internal/components/transactionpreview/consts.ts","./src/react/ui/modals/_internal/components/transactionpreview/index.tsx","./src/react/ui/modals/_internal/components/transactionpreview/usetransactionpreviewtitle.tsx","./src/react/ui/modals/_internal/components/transactionstatusmodal/index.tsx","./src/react/ui/modals/_internal/components/transactionstatusmodal/store.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/__tests__/transactionstatusmodal.test.tsx","./src/react/ui/modals/_internal/components/transactionstatusmodal/__tests__/utils.test.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/hooks/usetransactionstatus.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/util/getformattedtype.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/util/getmessage.ts","./src/react/ui/modals/_internal/components/transactionstatusmodal/util/gettitle.ts","./src/react/ui/modals/_internal/components/waasfeeoptionsselect/waasfeeoptionsselect.tsx","./src/react/ui/modals/_internal/hooks/useselectwaasfeeoptions.ts","./src/react/ui/modals/_internal/stores/accountmodal.ts","./src/types/api-types.ts","./src/types/builder-types.ts","./src/types/custom.d.ts","./src/types/index.ts","./src/types/messages.ts","./src/types/sdk-config.ts","./src/types/types.ts","./src/types/waas-types.ts","./src/utils/address.ts","./src/utils/cn.ts","./src/utils/date.ts","./src/utils/getmarketplacedetails.ts","./src/utils/index.ts","./src/utils/network.ts","./src/utils/networkconfigtowagmichain.ts","./src/utils/price.ts","./src/utils/__tests__/address.test.ts","./src/utils/__tests__/date.test.ts","./src/utils/__tests__/getmarketplacedetails.test.ts","./src/utils/__tests__/price.test.ts","./src/utils/_internal/error/base.ts","./src/utils/_internal/error/config.ts","./src/utils/_internal/error/context.ts","./src/utils/_internal/error/transaction.ts","./src/utils/abi/index.ts","./src/utils/abi/marketplace/eip2981.ts","./src/utils/abi/marketplace/index.ts","./src/utils/abi/marketplace/sequence-marketplace-v1.ts","./src/utils/abi/marketplace/sequence-marketplace-v2.ts","./src/utils/abi/token/erc1155.ts","./src/utils/abi/token/erc20.ts","./src/utils/abi/token/erc721.ts","./src/utils/abi/token/index.ts","./src/utils/decode/erc20.ts","./tsup.config.ts","./test/const.ts","./test/globalsetup.ts","./test/index.ts","./test/setup.ts","./test/test-utils.tsx","./test/mocks/wallet.ts"],"version":"5.8.2"}
|