@0xsequence/marketplace-sdk 0.5.4 → 0.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist/{chunk-WGGZEQHL.js → chunk-3BLBZYQX.js} +2 -2
  2. package/dist/{chunk-JWNONWD6.js → chunk-AXTDPTRD.js} +278 -154
  3. package/dist/chunk-AXTDPTRD.js.map +1 -0
  4. package/dist/{chunk-ZGVCOQ4I.js → chunk-CIPPTQDA.js} +89 -32
  5. package/dist/chunk-CIPPTQDA.js.map +1 -0
  6. package/dist/{chunk-TLNRD4BQ.js → chunk-P7UNMRZ5.js} +2 -2
  7. package/dist/{chunk-WSCUPAGR.js → chunk-SA3U25NU.js} +2 -1
  8. package/dist/{chunk-WSCUPAGR.js.map → chunk-SA3U25NU.js.map} +1 -1
  9. package/dist/index.js +6 -6
  10. package/dist/react/_internal/api/index.d.ts +1 -0
  11. package/dist/react/_internal/api/index.js +1 -1
  12. package/dist/react/_internal/databeat/index.js +4 -4
  13. package/dist/react/_internal/index.js +1 -1
  14. package/dist/react/hooks/index.d.ts +149 -1
  15. package/dist/react/hooks/index.js +13 -3
  16. package/dist/react/index.d.ts +1 -1
  17. package/dist/react/index.js +16 -6
  18. package/dist/react/ssr/index.js +1 -0
  19. package/dist/react/ssr/index.js.map +1 -1
  20. package/dist/react/ui/components/collectible-card/index.js +6 -6
  21. package/dist/react/ui/index.js +6 -6
  22. package/dist/react/ui/modals/_internal/components/actionModal/index.js +4 -4
  23. package/dist/types/index.js +1 -1
  24. package/dist/utils/abi/index.js +5 -5
  25. package/dist/utils/index.js +6 -6
  26. package/package.json +1 -1
  27. package/src/react/_internal/api/query-keys.ts +1 -0
  28. package/src/react/hooks/__tests__/useComparePrices.test.tsx +215 -0
  29. package/src/react/hooks/__tests__/useConvertPriceToUSD.test.tsx +173 -0
  30. package/src/react/hooks/index.ts +2 -0
  31. package/src/react/hooks/useComparePrices.tsx +106 -0
  32. package/src/react/hooks/useConvertPriceToUSD.tsx +102 -0
  33. package/src/react/ui/components/collectible-card/CollectibleCard.tsx +1 -0
  34. package/src/react/ui/components/collectible-card/Footer.tsx +10 -2
  35. package/src/react/ui/modals/BuyModal/hooks/useBuyCollectable.ts +30 -3
  36. package/src/react/ui/modals/_internal/components/floorPriceText/index.tsx +30 -12
  37. package/src/react/ui/modals/_internal/components/priceInput/__tests__/index.test.tsx +51 -4
  38. package/src/react/ui/modals/_internal/components/priceInput/index.tsx +24 -3
  39. package/tsconfig.tsbuildinfo +1 -1
  40. package/dist/chunk-JWNONWD6.js.map +0 -1
  41. package/dist/chunk-ZGVCOQ4I.js.map +0 -1
  42. /package/dist/{chunk-WGGZEQHL.js.map → chunk-3BLBZYQX.js.map} +0 -0
  43. /package/dist/{chunk-TLNRD4BQ.js.map → chunk-P7UNMRZ5.js.map} +0 -0
  44. /package/src/react/ui/modals/BuyModal/hooks/__tests__/{useBuyCollectable.test.tsx → useBuyCollectable.test.tsx.bak} +0 -0
@@ -0,0 +1,102 @@
1
+ import { queryOptions, useQuery } from '@tanstack/react-query';
2
+ import { formatUnits } from 'viem';
3
+ import { z } from 'zod';
4
+ import type { SdkConfig } from '../../types';
5
+ import {
6
+ AddressSchema,
7
+ ChainIdSchema,
8
+ QueryArgSchema,
9
+ currencyKeys,
10
+ getQueryClient,
11
+ } from '../_internal';
12
+ import { useConfig } from './useConfig';
13
+ import { currenciesOptions } from './useCurrencies';
14
+
15
+ const ChainIdCoerce = ChainIdSchema.transform((val) => val.toString());
16
+
17
+ const UseConvertPriceToUSDArgsSchema = z.object({
18
+ chainId: ChainIdCoerce,
19
+ currencyAddress: AddressSchema,
20
+ amountRaw: z.string(),
21
+ query: QueryArgSchema,
22
+ });
23
+
24
+ export type UseConvertPriceToUSDArgs = z.input<
25
+ typeof UseConvertPriceToUSDArgsSchema
26
+ >;
27
+
28
+ export type UseConvertPriceToUSDReturn = {
29
+ usdAmount: number;
30
+ usdAmountFormatted: string;
31
+ };
32
+
33
+ export const convertPriceToUSD = async (
34
+ args: UseConvertPriceToUSDArgs,
35
+ config: SdkConfig,
36
+ ): Promise<UseConvertPriceToUSDReturn> => {
37
+ const parsedArgs = UseConvertPriceToUSDArgsSchema.parse(args);
38
+ const queryClient = getQueryClient();
39
+ const currencies = await queryClient.fetchQuery(
40
+ currenciesOptions(
41
+ {
42
+ chainId: parsedArgs.chainId,
43
+ },
44
+ config,
45
+ ),
46
+ );
47
+ const currencyDetails = currencies.find(
48
+ (c) =>
49
+ c.contractAddress.toLowerCase() ===
50
+ parsedArgs.currencyAddress.toLowerCase(),
51
+ );
52
+
53
+ if (!currencyDetails) {
54
+ throw new Error('Currency not found');
55
+ }
56
+
57
+ const amountDecimal = Number(
58
+ formatUnits(BigInt(parsedArgs.amountRaw), currencyDetails.decimals),
59
+ );
60
+ const usdAmount = amountDecimal * currencyDetails.exchangeRate;
61
+
62
+ return {
63
+ usdAmount,
64
+ usdAmountFormatted: usdAmount.toFixed(2),
65
+ };
66
+ };
67
+
68
+ export const convertPriceToUSDOptions = (
69
+ args: UseConvertPriceToUSDArgs,
70
+ config: SdkConfig,
71
+ ) => {
72
+ return queryOptions({
73
+ ...args.query,
74
+ queryKey: [
75
+ ...currencyKeys.conversion,
76
+ args.chainId,
77
+ args.currencyAddress,
78
+ args.amountRaw,
79
+ ],
80
+ queryFn: () => convertPriceToUSD(args, config),
81
+ });
82
+ };
83
+
84
+ /**
85
+ * Hook to convert a price amount from a specific currency to USD
86
+ * @returns The price amount in USD and formatted USD amount
87
+ * @example
88
+ * ```ts
89
+ * const { data } = useConvertPriceToUSD({
90
+ * chainId: 1,
91
+ * currencyAddress: "0x0000000000000000000000000000000000000000",
92
+ * amountRaw: "1000000000000000000",
93
+ * });
94
+ *
95
+ * console.log(data);
96
+ * // { usdAmount: 1000, usdAmountFormatted: "1000.00" }
97
+ * ```
98
+ */
99
+ export const useConvertPriceToUSD = (args: UseConvertPriceToUSDArgs) => {
100
+ const config = useConfig();
101
+ return useQuery(convertPriceToUSDOptions(args, config));
102
+ };
@@ -184,6 +184,7 @@ export function CollectibleCard({
184
184
  lowestListingPriceAmount={lowestListing?.order?.priceAmount}
185
185
  lowestListingCurrency={lowestListingCurrency}
186
186
  balance={balance}
187
+ decimals={collectibleMetadata?.decimals}
187
188
  />
188
189
 
189
190
  {(highestOffer || lowestListing) && (
@@ -15,6 +15,7 @@ const formatPrice = (amount: string, currency: Currency): string => {
15
15
  type FooterProps = {
16
16
  name: string;
17
17
  type?: ContractType;
18
+ decimals?: number;
18
19
  onOfferClick?: () => void;
19
20
  highestOffer?: Order;
20
21
  lowestListingPriceAmount?: string;
@@ -25,6 +26,7 @@ type FooterProps = {
25
26
  export const Footer = ({
26
27
  name,
27
28
  type,
29
+ decimals,
28
30
  onOfferClick,
29
31
  highestOffer,
30
32
  lowestListingPriceAmount,
@@ -104,7 +106,11 @@ export const Footer = ({
104
106
  </Text>
105
107
  </Box>
106
108
 
107
- <TokenTypeBalancePill balance={balance} type={type as ContractType} />
109
+ <TokenTypeBalancePill
110
+ balance={balance}
111
+ type={type as ContractType}
112
+ decimals={decimals}
113
+ />
108
114
  </Box>
109
115
  );
110
116
  };
@@ -112,14 +118,16 @@ export const Footer = ({
112
118
  const TokenTypeBalancePill = ({
113
119
  balance,
114
120
  type,
121
+ decimals,
115
122
  }: {
116
123
  balance?: string;
117
124
  type: ContractType;
125
+ decimals?: number;
118
126
  }) => {
119
127
  const displayText =
120
128
  type === ContractType.ERC1155
121
129
  ? balance
122
- ? `Owned: ${balance}`
130
+ ? `Owned: ${formatUnits(BigInt(balance), decimals ?? 0)}`
123
131
  : 'ERC-1155'
124
132
  : 'ERC-721';
125
133
 
@@ -1,9 +1,10 @@
1
1
  import { useSelectPaymentModal } from '@0xsequence/kit-checkout';
2
2
  import type { QueryKey } from '@tanstack/react-query';
3
- import type { Hash, Hex } from 'viem';
3
+ import { type Hash, type Hex, zeroAddress } from 'viem';
4
4
  import {
5
5
  type CheckoutOptions,
6
6
  type MarketplaceKind,
7
+ StepType,
7
8
  WalletKind,
8
9
  balanceQueries,
9
10
  collectableKeys,
@@ -92,11 +93,37 @@ export const useBuyCollectable = ({
92
93
  walletType: WalletKind.unknown,
93
94
  });
94
95
 
96
+ const order = await marketplaceClient.getOrders({
97
+ input: [
98
+ {
99
+ orderId: input.orderId,
100
+ contractAddress: collectionAddress,
101
+ marketplace: input.marketplace,
102
+ },
103
+ ],
104
+ });
105
+
95
106
  // these states are necessary to manage appearance of the quantity modal
96
107
  setCheckoutModalLoaded(true);
97
108
  setCheckoutModalIsLoading(false);
98
109
 
99
- const step = steps[0];
110
+ const step = steps.find((step) => step.id === StepType.buy);
111
+
112
+ if (!step) {
113
+ throw new Error('Buy step not found');
114
+ }
115
+
116
+ const feesBps = BigInt(fees.amount);
117
+ let price = String(
118
+ (BigInt(order.orders[0].priceAmount) *
119
+ BigInt(input.quantity) *
120
+ (10000n + feesBps)) /
121
+ 10000n,
122
+ );
123
+
124
+ if (order.orders[0].priceCurrencyAddress !== zeroAddress) {
125
+ price = '0';
126
+ }
100
127
 
101
128
  openSelectPaymentModal({
102
129
  chain: chainId,
@@ -108,7 +135,7 @@ export const useBuyCollectable = ({
108
135
  },
109
136
  ],
110
137
  currencyAddress: priceCurrencyAddress,
111
- price: step.value,
138
+ price,
112
139
  targetContractAddress: step.to,
113
140
  txData: step.data as Hex,
114
141
  collectionAddress,
@@ -1,8 +1,7 @@
1
1
  import { Text } from '@0xsequence/design-system';
2
2
  import type { Hex } from 'viem';
3
3
  import type { Price } from '../../../../../../types';
4
- import { calculatePriceDifferencePercentage } from '../../../../../../utils';
5
- import { useLowestListing } from '../../../../../hooks';
4
+ import { useComparePrices, useLowestListing } from '../../../../../hooks';
6
5
 
7
6
  export default function FloorPriceText({
8
7
  chainId,
@@ -26,20 +25,39 @@ export default function FloorPriceText({
26
25
 
27
26
  const floorPriceRaw = listing?.order?.priceAmount;
28
27
 
29
- if (!floorPriceRaw || listingLoading || price.amountRaw === '0') {
28
+ const { data: priceComparison, isLoading: comparisonLoading } =
29
+ useComparePrices({
30
+ chainId,
31
+ priceAmountRaw: price.amountRaw || '0',
32
+ priceCurrencyAddress: price.currency.contractAddress,
33
+ compareToPriceAmountRaw: floorPriceRaw || '0',
34
+ compareToPriceCurrencyAddress:
35
+ listing?.order?.priceCurrencyAddress || price.currency.contractAddress,
36
+ query: {
37
+ enabled: !!floorPriceRaw && !listingLoading && price.amountRaw !== '0',
38
+ },
39
+ });
40
+
41
+ if (
42
+ !floorPriceRaw ||
43
+ listingLoading ||
44
+ price.amountRaw === '0' ||
45
+ comparisonLoading
46
+ ) {
30
47
  return null;
31
48
  }
32
49
 
33
- const floorPriceDifference = calculatePriceDifferencePercentage({
34
- inputPriceRaw: BigInt(price.amountRaw),
35
- basePriceRaw: BigInt(floorPriceRaw),
36
- decimals: price.currency.decimals,
37
- });
50
+ let floorPriceDifferenceText = 'Same as floor price';
38
51
 
39
- const floorPriceDifferenceText =
40
- floorPriceRaw === price.amountRaw
41
- ? 'Same as floor price'
42
- : `${floorPriceDifference}% ${floorPriceRaw > price.amountRaw ? 'below' : 'above'} floor price`;
52
+ if (priceComparison) {
53
+ if (priceComparison.status === 'same') {
54
+ floorPriceDifferenceText = 'Same as floor price';
55
+ } else {
56
+ floorPriceDifferenceText = `${priceComparison.percentageDifferenceFormatted}% ${
57
+ priceComparison.status === 'below' ? 'below' : 'above'
58
+ } floor price`;
59
+ }
60
+ }
43
61
 
44
62
  return (
45
63
  <Text
@@ -1,14 +1,16 @@
1
- import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest';
2
1
  import { observable } from '@legendapp/state';
2
+ import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
3
3
  import PriceInput from '..';
4
4
  import type { Currency, Price } from '../../../../../../../types';
5
+ import { CurrencyStatus } from '../../../../../../_internal';
5
6
  import {
6
- render,
7
- screen,
7
+ act,
8
8
  cleanup,
9
9
  fireEvent,
10
+ render,
11
+ screen,
12
+ waitFor,
10
13
  } from '../../../../../../_internal/test-utils';
11
- import { CurrencyStatus } from '../../../../../../_internal';
12
14
 
13
15
  vi.mock('../hooks/usePriceInput', () => ({
14
16
  usePriceInput: vi.fn(({ onPriceChange }) => ({
@@ -34,6 +36,7 @@ vi.mock('../../../../../hooks/useCurrencyBalance', () => ({
34
36
  })),
35
37
  }));
36
38
 
39
+ // TODO: Remove local mocks
37
40
  // Mock currency data
38
41
  const MOCK_CURRENCY: Currency = {
39
42
  symbol: 'USDC',
@@ -50,6 +53,15 @@ const MOCK_CURRENCY: Currency = {
50
53
  updatedAt: new Date().toISOString(),
51
54
  };
52
55
 
56
+ // Mock currency with different decimals
57
+ const MOCK_CURRENCY_HIGH_DECIMALS: Currency = {
58
+ ...MOCK_CURRENCY,
59
+ symbol: 'aPOL',
60
+ contractAddress: '0x5678' as `0x${string}`,
61
+ name: 'aPOL Token',
62
+ decimals: 18,
63
+ };
64
+
53
65
  // Mock price data
54
66
  const createMockPrice = (amount = '0'): Price => ({
55
67
  amountRaw: amount,
@@ -121,4 +133,39 @@ describe('PriceInput', () => {
121
133
 
122
134
  expect(onPriceChange).not.toHaveBeenCalled();
123
135
  });
136
+
137
+ it('should adjust raw amount when currency decimals change', async () => {
138
+ // Create a price observable with initial currency (6 decimals)
139
+ const price$ = observable<Price | undefined>(createMockPrice());
140
+ const onPriceChange = vi.fn();
141
+
142
+ render(
143
+ <PriceInput
144
+ {...defaultProps}
145
+ $price={price$}
146
+ onPriceChange={onPriceChange}
147
+ />,
148
+ );
149
+
150
+ // Enter a price value
151
+ const input = screen.getByRole('textbox', { name: /price/i });
152
+
153
+ act(() => {
154
+ fireEvent.change(input, { target: { value: '1000' } });
155
+ });
156
+
157
+ // Verify initial raw amount (with 6 decimals)
158
+ expect(price$.get()?.amountRaw).toBe('1000000000');
159
+
160
+ // Change currency to one with 18 decimals
161
+ act(() => {
162
+ price$.currency.set(MOCK_CURRENCY_HIGH_DECIMALS);
163
+ });
164
+
165
+ // Wait for the effect to process
166
+ await waitFor(() => {
167
+ // The raw amount should be adjusted for the new currency's decimals
168
+ expect(price$.get()?.amountRaw).toBe('1000000000000000000000');
169
+ });
170
+ });
124
171
  });
@@ -1,14 +1,14 @@
1
1
  import { Box, NumericInput, Text } from '@0xsequence/design-system';
2
2
  import type { Observable } from '@legendapp/state';
3
+ import { use$ } from '@legendapp/state/react';
4
+ import { useEffect, useRef, useState } from 'react';
3
5
  import { type Hex, parseUnits } from 'viem';
4
6
  import { useAccount } from 'wagmi';
5
7
  import type { Price } from '../../../../../../types';
8
+ import { useCurrencyBalance } from '../../../../../hooks/useCurrencyBalance';
6
9
  import CurrencyImage from '../currencyImage';
7
10
  import CurrencyOptionsSelect from '../currencyOptionsSelect';
8
11
  import { priceInputCurrencyImage, priceInputWrapper } from './styles.css';
9
- import { use$ } from '@legendapp/state/react';
10
- import { useCurrencyBalance } from '../../../../../hooks/useCurrencyBalance';
11
- import { useState } from 'react';
12
12
 
13
13
  type PriceInputProps = {
14
14
  collectionAddress: Hex;
@@ -55,6 +55,27 @@ export default function PriceInput({
55
55
  }
56
56
 
57
57
  const [value, setValue] = useState('0');
58
+ const prevCurrencyDecimals = useRef(currencyDecimals);
59
+
60
+ // Handle currency changes and adjust the raw amount accordingly
61
+ useEffect(() => {
62
+ if (prevCurrencyDecimals.current !== currencyDecimals && value !== '0') {
63
+ try {
64
+ // If the user has entered a value and the currency decimals have changed,
65
+ // we need to adjust the raw amount to maintain the same displayed value
66
+ const parsedAmount = parseUnits(value, Number(currencyDecimals));
67
+ $price.amountRaw.set(parsedAmount.toString());
68
+
69
+ if (onPriceChange && parsedAmount !== 0n) {
70
+ onPriceChange();
71
+ }
72
+ } catch {
73
+ $price.amountRaw.set('0');
74
+ }
75
+ }
76
+
77
+ prevCurrencyDecimals.current = currencyDecimals;
78
+ }, [currencyDecimals, $price.amountRaw, value, onPriceChange]);
58
79
 
59
80
  const handleChange = (event: React.ChangeEvent<HTMLInputElement>) => {
60
81
  const newValue = event.target.value;
@@ -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/test-utils.tsx","./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/test/setup.ts","./src/react/_internal/test/mocks/publicclient.ts","./src/react/_internal/test/mocks/wagmi.ts","./src/react/_internal/test/mocks/wallet.ts","./src/react/_internal/wagmi/create-config.ts","./src/react/_internal/wagmi/embedded.ts","./src/react/_internal/wagmi/index.ts","./src/react/_internal/wagmi/universal.ts","./src/react/_internal/wagmi/__tests__/create-config.test.ts","./src/react/_internal/wallet/usewallet.ts","./src/react/_internal/wallet/wallet.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/useconfig.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/useroyaltypercentage.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__/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__/useroyaltypercentage.test.tsx","./src/react/hooks/options/marketplaceconfigoptions.ts","./src/react/hooks/options/__mocks__/marketplaceconfig.msw.ts","./src/react/hooks/options/__tests__/marketplaceconfigoptions.test.tsx","./src/react/ssr/create-ssr-client.ts","./src/react/ssr/index.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/styles.css.ts","./src/react/ui/components/_internals/action-button/types.ts","./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-network-image/customnetworkimage.tsx","./src/react/ui/components/_internals/custom-network-image/styles.css.ts","./src/react/ui/components/_internals/custom-select/customselect.tsx","./src/react/ui/components/_internals/custom-select/styles.css.ts","./src/react/ui/components/_internals/custom-select/__tests__/customselect.test.tsx","./src/react/ui/components/_internals/pill/pill.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/styles.css.ts","./src/react/ui/components/marketplace-logos/index.ts","./src/react/ui/components/marketplace-logos/marketplace-logos.tsx","./src/react/ui/icons/arrowup.tsx","./src/react/ui/icons/bell.tsx","./src/react/ui/icons/calendaricon.tsx","./src/react/ui/icons/carticon.tsx","./src/react/ui/icons/diamondeye.tsx","./src/react/ui/icons/infoicon.tsx","./src/react/ui/icons/inventoryicon.tsx","./src/react/ui/icons/minusicon.tsx","./src/react/ui/icons/plusicon.tsx","./src/react/ui/icons/positivecircleicon.tsx","./src/react/ui/icons/index.ts","./src/react/ui/icons/styles.css.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/styles.css.ts","./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/styles.css.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/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/actionmodal/styles.css.ts","./src/react/ui/modals/_internal/components/alertmessage/index.tsx","./src/react/ui/modals/_internal/components/alertmessage/styles.css.ts","./src/react/ui/modals/_internal/components/calendar/index.tsx","./src/react/ui/modals/_internal/components/calendarpopover/index.tsx","./src/react/ui/modals/_internal/components/calendarpopover/styles.css.ts","./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/styles.css.ts","./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/styles.css.ts","./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/styles.css.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/tokenpreview/styles.css.ts","./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/styles.css.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/waasfeeoptionsbox/styles.css.ts","./src/react/ui/modals/_internal/components/waasfeeoptionsselect/waasfeeoptionsselect.tsx","./src/react/ui/modals/_internal/stores/accountmodal.ts","./src/react/ui/styles/index.ts","./src/react/ui/styles/modal.css.ts","./src/styles/index.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/date.ts","./src/utils/get-public-rpc-client.ts","./src/utils/getmarketplacedetails.ts","./src/utils/index.ts","./src/utils/network.ts","./src/utils/price.ts","./src/utils/__tests__/address.test.ts","./src/utils/__tests__/date.test.ts","./src/utils/__tests__/get-public-rpc-client.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","./tsup.config.ts"],"version":"5.7.3"}
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/test-utils.tsx","./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/test/setup.ts","./src/react/_internal/test/mocks/publicclient.ts","./src/react/_internal/test/mocks/wagmi.ts","./src/react/_internal/test/mocks/wallet.ts","./src/react/_internal/wagmi/create-config.ts","./src/react/_internal/wagmi/embedded.ts","./src/react/_internal/wagmi/index.ts","./src/react/_internal/wagmi/universal.ts","./src/react/_internal/wagmi/__tests__/create-config.test.ts","./src/react/_internal/wallet/usewallet.ts","./src/react/_internal/wallet/wallet.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/useroyaltypercentage.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__/useroyaltypercentage.test.tsx","./src/react/hooks/options/marketplaceconfigoptions.ts","./src/react/hooks/options/__mocks__/marketplaceconfig.msw.ts","./src/react/hooks/options/__tests__/marketplaceconfigoptions.test.tsx","./src/react/ssr/create-ssr-client.ts","./src/react/ssr/index.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/styles.css.ts","./src/react/ui/components/_internals/action-button/types.ts","./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-network-image/customnetworkimage.tsx","./src/react/ui/components/_internals/custom-network-image/styles.css.ts","./src/react/ui/components/_internals/custom-select/customselect.tsx","./src/react/ui/components/_internals/custom-select/styles.css.ts","./src/react/ui/components/_internals/custom-select/__tests__/customselect.test.tsx","./src/react/ui/components/_internals/pill/pill.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/styles.css.ts","./src/react/ui/components/marketplace-logos/index.ts","./src/react/ui/components/marketplace-logos/marketplace-logos.tsx","./src/react/ui/icons/arrowup.tsx","./src/react/ui/icons/bell.tsx","./src/react/ui/icons/calendaricon.tsx","./src/react/ui/icons/carticon.tsx","./src/react/ui/icons/diamondeye.tsx","./src/react/ui/icons/infoicon.tsx","./src/react/ui/icons/inventoryicon.tsx","./src/react/ui/icons/minusicon.tsx","./src/react/ui/icons/plusicon.tsx","./src/react/ui/icons/positivecircleicon.tsx","./src/react/ui/icons/index.ts","./src/react/ui/icons/styles.css.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__/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/styles.css.ts","./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/styles.css.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/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/actionmodal/styles.css.ts","./src/react/ui/modals/_internal/components/alertmessage/index.tsx","./src/react/ui/modals/_internal/components/alertmessage/styles.css.ts","./src/react/ui/modals/_internal/components/calendar/index.tsx","./src/react/ui/modals/_internal/components/calendarpopover/index.tsx","./src/react/ui/modals/_internal/components/calendarpopover/styles.css.ts","./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/styles.css.ts","./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/styles.css.ts","./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/styles.css.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/tokenpreview/styles.css.ts","./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/styles.css.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/waasfeeoptionsbox/styles.css.ts","./src/react/ui/modals/_internal/components/waasfeeoptionsselect/waasfeeoptionsselect.tsx","./src/react/ui/modals/_internal/stores/accountmodal.ts","./src/react/ui/styles/index.ts","./src/react/ui/styles/modal.css.ts","./src/styles/index.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/date.ts","./src/utils/get-public-rpc-client.ts","./src/utils/getmarketplacedetails.ts","./src/utils/index.ts","./src/utils/network.ts","./src/utils/price.ts","./src/utils/__tests__/address.test.ts","./src/utils/__tests__/date.test.ts","./src/utils/__tests__/get-public-rpc-client.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","./tsup.config.ts"],"version":"5.7.3"}