@0xsequence/marketplace-sdk 0.8.1 → 0.8.3
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/flat-parks-clean.md +8 -0
- package/.changeset/red-buckets-deny.md +6 -0
- package/CHANGELOG.md +17 -0
- package/dist/{builder-types-QlHwc9bI.d.ts → builder-types-BY6eD6vD.d.ts} +1 -1
- package/dist/{chunk-IZ44XPBH.js → chunk-25CAMYCG.js} +2 -2
- package/dist/{chunk-ABSYNRT5.js → chunk-5ATGT5S4.js} +3 -11
- package/dist/chunk-5ATGT5S4.js.map +1 -0
- package/dist/{chunk-BNAUZXPV.js → chunk-ALICO7NG.js} +3 -3
- package/dist/chunk-ALICO7NG.js.map +1 -0
- package/dist/{chunk-Q5RKAMYF.js → chunk-BGY4WXER.js} +43 -1
- package/dist/chunk-BGY4WXER.js.map +1 -0
- package/dist/{chunk-X3QNSQER.js → chunk-DFI52A2E.js} +56 -86
- package/dist/chunk-DFI52A2E.js.map +1 -0
- package/dist/{chunk-A5ACY5YV.js → chunk-FH4TZRDV.js} +2 -2
- package/dist/{chunk-3JU7SQVE.js → chunk-FSJKN4YN.js} +61 -24
- package/dist/chunk-FSJKN4YN.js.map +1 -0
- package/dist/{chunk-3II5GLHE.js → chunk-HGKWWZWY.js} +2 -2
- package/dist/{chunk-BN36GABQ.js → chunk-QTV77W42.js} +89 -65
- package/dist/chunk-QTV77W42.js.map +1 -0
- package/dist/{chunk-BCO4CYE4.js → chunk-SJU6QZHM.js} +2 -2
- package/dist/{chunk-2VHHJNXY.js → chunk-WXKV5N4T.js} +3 -3
- package/dist/{chunk-GBQVYNCD.js → chunk-XUNDLCEH.js} +3 -3
- package/dist/{create-config-ClkUr27C.d.ts → create-config-qDML4ZNn.d.ts} +1 -1
- package/dist/{index-CnaFSNE9.d.ts → index-DtWR0b_l.d.ts} +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +12 -10
- package/dist/{listCollectibles-B0tbqnRd.d.ts → lowestListing-DUZ_nYml.d.ts} +49 -42
- package/dist/{marketplace.gen-BTHxxhG2.d.ts → marketplace.gen-DS-MmGEB.d.ts} +35 -4
- package/dist/react/_internal/api/index.d.ts +2 -2
- package/dist/react/_internal/api/index.js +1 -1
- package/dist/react/_internal/databeat/index.d.ts +1 -1
- package/dist/react/_internal/databeat/index.js +10 -10
- package/dist/react/_internal/index.d.ts +5 -5
- package/dist/react/_internal/index.js +2 -2
- package/dist/react/_internal/wagmi/index.d.ts +3 -3
- package/dist/react/_internal/wagmi/index.js +2 -2
- package/dist/react/hooks/index.d.ts +68 -183
- package/dist/react/hooks/index.js +11 -13
- package/dist/react/hooks/options/index.d.ts +3 -3
- package/dist/react/hooks/options/index.js +4 -4
- package/dist/react/index.d.ts +8 -8
- package/dist/react/index.js +15 -17
- package/dist/react/queries/index.d.ts +2 -2
- package/dist/react/queries/index.js +11 -28
- package/dist/react/queries/index.js.map +1 -1
- package/dist/react/ssr/index.d.ts +2 -2
- package/dist/react/ssr/index.js +3 -3
- package/dist/react/ui/components/collectible-card/index.d.ts +1 -1
- package/dist/react/ui/components/collectible-card/index.js +13 -13
- package/dist/react/ui/icons/index.js +6 -6
- package/dist/react/ui/index.d.ts +1 -1
- package/dist/react/ui/index.js +13 -13
- package/dist/react/ui/modals/_internal/components/actionModal/index.js +10 -10
- package/dist/{services-ybGoDJd9.d.ts → services-BOX67E7W.d.ts} +1 -1
- package/dist/types/index.d.ts +3 -3
- package/dist/types/index.js +2 -4
- package/dist/{types-o_pKUpQG.d.ts → types-CJLhc2VZ.d.ts} +2 -2
- package/dist/utils/abi/index.js +5 -5
- package/dist/utils/index.d.ts +54 -2
- package/dist/utils/index.js +12 -8
- package/package.json +4 -2
- package/src/react/_internal/api/__mocks__/marketplace.msw.ts +5 -2
- package/src/react/_internal/api/marketplace.gen.ts +39 -6
- package/src/react/_internal/api/zod-schema.ts +7 -18
- package/src/react/hooks/__tests__/useGenerateListingTransaction.test.tsx +10 -2
- package/src/react/hooks/__tests__/useGenerateOfferTransaction.test.tsx +10 -2
- package/src/react/hooks/__tests__/useGenerateSellTransaction.test.tsx +5 -1
- package/src/react/hooks/__tests__/useHighestOffer.test.tsx +7 -8
- package/src/react/hooks/__tests__/useLowestListing.test.tsx +4 -5
- package/src/react/hooks/useCancelTransactionSteps.tsx +2 -2
- package/src/react/hooks/useHighestOffer.tsx +1 -39
- package/src/react/hooks/useLowestListing.tsx +4 -51
- package/src/react/queries/highestOffer.ts +25 -30
- package/src/react/queries/index.ts +1 -0
- package/src/react/queries/lowestListing.ts +52 -0
- package/src/react/ui/modals/BuyModal/ERC1155QuantityModal.tsx +6 -9
- package/src/react/ui/modals/BuyModal/Modal.tsx +26 -8
- package/src/react/ui/modals/BuyModal/hooks/usePaymentModalParams.ts +6 -2
- package/src/react/ui/modals/CreateListingModal/hooks/useTransactionSteps.tsx +2 -2
- package/src/react/ui/modals/MakeOfferModal/Modal.tsx +4 -4
- package/src/react/ui/modals/MakeOfferModal/hooks/useTransactionSteps.tsx +2 -2
- package/src/react/ui/modals/SellModal/hooks/useTransactionSteps.tsx +2 -2
- package/src/react/ui/modals/_internal/components/actionModal/ActionModal.tsx +1 -5
- package/src/react/ui/modals/_internal/components/floorPriceText/index.tsx +4 -4
- package/src/react/ui/modals/_internal/components/selectWaasFeeOptions/index.tsx +1 -1
- package/src/react/ui/modals/_internal/components/transactionDetails/index.tsx +18 -14
- package/src/types/api-types.ts +1 -2
- package/src/types/types.ts +5 -0
- package/src/utils/price.ts +103 -0
- package/dist/chunk-3JU7SQVE.js.map +0 -1
- package/dist/chunk-ABSYNRT5.js.map +0 -1
- package/dist/chunk-BN36GABQ.js.map +0 -1
- package/dist/chunk-BNAUZXPV.js.map +0 -1
- package/dist/chunk-Q5RKAMYF.js.map +0 -1
- package/dist/chunk-X3QNSQER.js.map +0 -1
- /package/dist/{chunk-IZ44XPBH.js.map → chunk-25CAMYCG.js.map} +0 -0
- /package/dist/{chunk-A5ACY5YV.js.map → chunk-FH4TZRDV.js.map} +0 -0
- /package/dist/{chunk-3II5GLHE.js.map → chunk-HGKWWZWY.js.map} +0 -0
- /package/dist/{chunk-BCO4CYE4.js.map → chunk-SJU6QZHM.js.map} +0 -0
- /package/dist/{chunk-2VHHJNXY.js.map → chunk-WXKV5N4T.js.map} +0 -0
- /package/dist/{chunk-GBQVYNCD.js.map → chunk-XUNDLCEH.js.map} +0 -0
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
2
|
import * as _0xsequence_indexer from '@0xsequence/indexer';
|
|
3
3
|
import { GetTokenBalancesDetailsReturn } from '@0xsequence/indexer';
|
|
4
|
-
import { U as UseBalanceOfCollectibleArgs,
|
|
4
|
+
import { U as UseBalanceOfCollectibleArgs, d as UseHighestOfferArgs, g as UseListBalancesArgs, a as UseListCollectiblesArgs, k as UseLowestListingArgs } from '../../lowestListing-DUZ_nYml.js';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
import { S as SdkConfig } from '../../sdk-config-DIzJk_tI.js';
|
|
7
|
-
import { P as PropertyType, M as MarketplaceKind, b as OrderSide,
|
|
7
|
+
import { P as PropertyType, M as MarketplaceKind, b as OrderSide, Y as CurrencyStatus, w as Currency, o as CollectibleOrder, k as Order, S as SortOrder, q as Activity, i as Page, b7 as ListCollectiblesReturn, aV as ListCollectibleOffersReturn, aJ as GetCountOfOffersForCollectibleReturn, aT as ListCollectibleListingsReturn, aH as GetCountOfListingsForCollectibleReturn, z as Step, D as CreateReq, a_ as GenerateListingTransactionArgs, b0 as GenerateOfferTransactionArgs, aY as GenerateSellTransactionArgs, g as StepType, b2 as GenerateCancelTransactionArgs, C as ContractType, bt as CheckoutOptionsMarketplaceReturn, r as Collection } from '../../marketplace.gen-DS-MmGEB.js';
|
|
8
8
|
import * as _0xsequence_metadata from '@0xsequence/metadata';
|
|
9
9
|
import { PropertyFilter } from '@0xsequence/metadata';
|
|
10
|
-
export { U as UseCollectionArgs, a as UseCollectionReturn, m as marketplaceConfigOptions, u as useCollection } from '../../index-
|
|
11
|
-
import { c as getMarketplaceClient } from '../../services-
|
|
12
|
-
import { g as MarketplaceConfig } from '../../builder-types-
|
|
10
|
+
export { U as UseCollectionArgs, a as UseCollectionReturn, m as marketplaceConfigOptions, u as useCollection } from '../../index-DtWR0b_l.js';
|
|
11
|
+
import { c as getMarketplaceClient } from '../../services-BOX67E7W.js';
|
|
12
|
+
import { g as MarketplaceConfig } from '../../builder-types-BY6eD6vD.js';
|
|
13
13
|
import * as viem from 'viem';
|
|
14
14
|
import { Hex, Address } from 'viem';
|
|
15
|
-
import { Q as QueryArgSchema } from '../../types-
|
|
15
|
+
import { Q as QueryArgSchema } from '../../types-CJLhc2VZ.js';
|
|
16
16
|
import 'wagmi/query';
|
|
17
17
|
|
|
18
18
|
type FeeOption = {
|
|
@@ -997,43 +997,6 @@ declare const floorOrderOptions: (args: UseFloorOrderArgs, config: SdkConfig) =>
|
|
|
997
997
|
};
|
|
998
998
|
declare const useFloorOrder: (args: UseFloorOrderArgs) => _tanstack_react_query.UseQueryResult<CollectibleOrder, Error>;
|
|
999
999
|
|
|
1000
|
-
/**
|
|
1001
|
-
* Type for the highest offer hook parameters
|
|
1002
|
-
* @property {string} collectionAddress - The contract address of the collection
|
|
1003
|
-
* @property {string} tokenId - The ID of the specific token
|
|
1004
|
-
* @property {string} chainId - The chain ID where the collection exists
|
|
1005
|
-
* @property {object} [query] - Optional query configuration parameters
|
|
1006
|
-
*/
|
|
1007
|
-
type UseHighestOfferArgs = {
|
|
1008
|
-
collectionAddress: string;
|
|
1009
|
-
tokenId: string;
|
|
1010
|
-
chainId: number;
|
|
1011
|
-
query?: {
|
|
1012
|
-
enabled?: boolean;
|
|
1013
|
-
staleTime?: number;
|
|
1014
|
-
gcTime?: number;
|
|
1015
|
-
refetchInterval?: number;
|
|
1016
|
-
};
|
|
1017
|
-
};
|
|
1018
|
-
/**
|
|
1019
|
-
* Hook to fetch the highest offer for a specific collectible
|
|
1020
|
-
*
|
|
1021
|
-
* @param args - The arguments for fetching the highest offer
|
|
1022
|
-
* @returns Query result containing the highest offer data
|
|
1023
|
-
*
|
|
1024
|
-
* @example
|
|
1025
|
-
* ```tsx
|
|
1026
|
-
* const { data, isLoading, error } = useHighestOffer({
|
|
1027
|
-
* collectionAddress: '0x123...',
|
|
1028
|
-
* tokenId: '1',
|
|
1029
|
-
* chainId: 1,
|
|
1030
|
-
* query: {
|
|
1031
|
-
* enabled: true,
|
|
1032
|
-
* refetchInterval: 10000,
|
|
1033
|
-
* }
|
|
1034
|
-
* });
|
|
1035
|
-
* ```
|
|
1036
|
-
*/
|
|
1037
1000
|
declare function useHighestOffer(args: UseHighestOfferArgs): _tanstack_react_query.UseQueryResult<Order | null, Error>;
|
|
1038
1001
|
|
|
1039
1002
|
/**
|
|
@@ -2545,105 +2508,7 @@ declare const countListingsForCollectibleOptions: (args: UseCountListingsForColl
|
|
|
2545
2508
|
};
|
|
2546
2509
|
declare const useCountListingsForCollectible: (args: UseCountListingsForCollectibleArgs) => _tanstack_react_query.UseQueryResult<GetCountOfListingsForCollectibleReturn, Error>;
|
|
2547
2510
|
|
|
2548
|
-
declare
|
|
2549
|
-
contractAddress: z.ZodString;
|
|
2550
|
-
tokenId: z.ZodString;
|
|
2551
|
-
filters: z.ZodOptional<z.ZodObject<{
|
|
2552
|
-
createdBy: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2553
|
-
marketplace: z.ZodOptional<z.ZodArray<z.ZodNativeEnum<typeof MarketplaceKind>, "many">>;
|
|
2554
|
-
currencies: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
2555
|
-
}, "strip", z.ZodTypeAny, {
|
|
2556
|
-
currencies?: string[] | undefined;
|
|
2557
|
-
marketplace?: MarketplaceKind[] | undefined;
|
|
2558
|
-
createdBy?: string[] | undefined;
|
|
2559
|
-
}, {
|
|
2560
|
-
currencies?: string[] | undefined;
|
|
2561
|
-
marketplace?: MarketplaceKind[] | undefined;
|
|
2562
|
-
createdBy?: string[] | undefined;
|
|
2563
|
-
}>>;
|
|
2564
|
-
}, "contractAddress">, {
|
|
2565
|
-
collectionAddress: z.ZodEffects<z.ZodString, `0x${string}`, string>;
|
|
2566
|
-
chainId: z.ZodNumber;
|
|
2567
|
-
query: z.ZodOptional<z.ZodObject<{
|
|
2568
|
-
enabled: z.ZodOptional<z.ZodBoolean>;
|
|
2569
|
-
}, "strip", z.ZodTypeAny, {
|
|
2570
|
-
enabled?: boolean | undefined;
|
|
2571
|
-
}, {
|
|
2572
|
-
enabled?: boolean | undefined;
|
|
2573
|
-
}>>;
|
|
2574
|
-
}>, "strip", z.ZodTypeAny, {
|
|
2575
|
-
chainId: number;
|
|
2576
|
-
collectionAddress: `0x${string}`;
|
|
2577
|
-
tokenId: string;
|
|
2578
|
-
query?: {
|
|
2579
|
-
enabled?: boolean | undefined;
|
|
2580
|
-
} | undefined;
|
|
2581
|
-
filters?: {
|
|
2582
|
-
currencies?: string[] | undefined;
|
|
2583
|
-
marketplace?: MarketplaceKind[] | undefined;
|
|
2584
|
-
createdBy?: string[] | undefined;
|
|
2585
|
-
} | undefined;
|
|
2586
|
-
}, {
|
|
2587
|
-
chainId: number;
|
|
2588
|
-
collectionAddress: string;
|
|
2589
|
-
tokenId: string;
|
|
2590
|
-
query?: {
|
|
2591
|
-
enabled?: boolean | undefined;
|
|
2592
|
-
} | undefined;
|
|
2593
|
-
filters?: {
|
|
2594
|
-
currencies?: string[] | undefined;
|
|
2595
|
-
marketplace?: MarketplaceKind[] | undefined;
|
|
2596
|
-
createdBy?: string[] | undefined;
|
|
2597
|
-
} | undefined;
|
|
2598
|
-
}>;
|
|
2599
|
-
type UseLowestListingArgs = z.infer<typeof UseLowestListingSchema>;
|
|
2600
|
-
type UseLowestListingReturn = Awaited<ReturnType<typeof fetchLowestListing>>;
|
|
2601
|
-
declare const fetchLowestListing: (args: UseLowestListingArgs, config: SdkConfig) => Promise<GetCollectibleLowestListingReturn>;
|
|
2602
|
-
declare const lowestListingOptions: (args: UseLowestListingArgs, config: SdkConfig) => _tanstack_react_query.OmitKeyof<_tanstack_react_query.UseQueryOptions<GetCollectibleLowestListingReturn, Error, GetCollectibleLowestListingReturn, ("collectable" | "details" | "lowestListings" | SdkConfig | {
|
|
2603
|
-
chainId: number;
|
|
2604
|
-
collectionAddress: `0x${string}`;
|
|
2605
|
-
tokenId: string;
|
|
2606
|
-
query?: {
|
|
2607
|
-
enabled?: boolean | undefined;
|
|
2608
|
-
} | undefined;
|
|
2609
|
-
filters?: {
|
|
2610
|
-
currencies?: string[] | undefined;
|
|
2611
|
-
marketplace?: MarketplaceKind[] | undefined;
|
|
2612
|
-
createdBy?: string[] | undefined;
|
|
2613
|
-
} | undefined;
|
|
2614
|
-
})[]>, "queryFn"> & {
|
|
2615
|
-
queryFn?: _tanstack_react_query.QueryFunction<GetCollectibleLowestListingReturn, ("collectable" | "details" | "lowestListings" | SdkConfig | {
|
|
2616
|
-
chainId: number;
|
|
2617
|
-
collectionAddress: `0x${string}`;
|
|
2618
|
-
tokenId: string;
|
|
2619
|
-
query?: {
|
|
2620
|
-
enabled?: boolean | undefined;
|
|
2621
|
-
} | undefined;
|
|
2622
|
-
filters?: {
|
|
2623
|
-
currencies?: string[] | undefined;
|
|
2624
|
-
marketplace?: MarketplaceKind[] | undefined;
|
|
2625
|
-
createdBy?: string[] | undefined;
|
|
2626
|
-
} | undefined;
|
|
2627
|
-
})[], never> | undefined;
|
|
2628
|
-
} & {
|
|
2629
|
-
queryKey: ("collectable" | "details" | "lowestListings" | SdkConfig | {
|
|
2630
|
-
chainId: number;
|
|
2631
|
-
collectionAddress: `0x${string}`;
|
|
2632
|
-
tokenId: string;
|
|
2633
|
-
query?: {
|
|
2634
|
-
enabled?: boolean | undefined;
|
|
2635
|
-
} | undefined;
|
|
2636
|
-
filters?: {
|
|
2637
|
-
currencies?: string[] | undefined;
|
|
2638
|
-
marketplace?: MarketplaceKind[] | undefined;
|
|
2639
|
-
createdBy?: string[] | undefined;
|
|
2640
|
-
} | undefined;
|
|
2641
|
-
})[] & {
|
|
2642
|
-
[dataTagSymbol]: GetCollectibleLowestListingReturn;
|
|
2643
|
-
[dataTagErrorSymbol]: Error;
|
|
2644
|
-
};
|
|
2645
|
-
};
|
|
2646
|
-
declare const useLowestListing: (args: UseLowestListingArgs) => _tanstack_react_query.UseQueryResult<GetCollectibleLowestListingReturn, Error>;
|
|
2511
|
+
declare function useLowestListing(args: UseLowestListingArgs): _tanstack_react_query.UseQueryResult<Order | null | undefined, Error>;
|
|
2647
2512
|
|
|
2648
2513
|
declare const useMarketplaceConfig: () => _tanstack_react_query.UseQueryResult<MarketplaceConfig, Error>;
|
|
2649
2514
|
|
|
@@ -3023,9 +2888,10 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3023
2888
|
chainId: z.ZodNumber;
|
|
3024
2889
|
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3025
2890
|
id: z.ZodNativeEnum<typeof StepType>;
|
|
3026
|
-
data: z.ZodString
|
|
3027
|
-
to: z.ZodString
|
|
3028
|
-
value: z.ZodString
|
|
2891
|
+
data: z.ZodOptional<z.ZodString>;
|
|
2892
|
+
to: z.ZodOptional<z.ZodString>;
|
|
2893
|
+
value: z.ZodOptional<z.ZodString>;
|
|
2894
|
+
price: z.ZodOptional<z.ZodString>;
|
|
3029
2895
|
signature: z.ZodOptional<z.ZodObject<{
|
|
3030
2896
|
domain: z.ZodObject<{
|
|
3031
2897
|
name: z.ZodString;
|
|
@@ -3080,12 +2946,16 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3080
2946
|
endpoint: string;
|
|
3081
2947
|
body?: any;
|
|
3082
2948
|
}>>;
|
|
3083
|
-
|
|
2949
|
+
method: z.ZodOptional<z.ZodString>;
|
|
2950
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
|
3084
2951
|
}, "strip", z.ZodTypeAny, {
|
|
3085
|
-
value: string;
|
|
3086
|
-
data: string;
|
|
3087
2952
|
id: StepType;
|
|
3088
|
-
|
|
2953
|
+
method?: string | undefined;
|
|
2954
|
+
value?: string | undefined;
|
|
2955
|
+
data?: string | undefined;
|
|
2956
|
+
to?: string | undefined;
|
|
2957
|
+
endpoint?: string | undefined;
|
|
2958
|
+
price?: string | undefined;
|
|
3089
2959
|
signature?: {
|
|
3090
2960
|
domain: {
|
|
3091
2961
|
chainId: number;
|
|
@@ -3097,17 +2967,19 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3097
2967
|
value?: any;
|
|
3098
2968
|
types?: any;
|
|
3099
2969
|
} | undefined;
|
|
3100
|
-
executeType?: ExecuteType | undefined;
|
|
3101
2970
|
post?: {
|
|
3102
2971
|
method: string;
|
|
3103
2972
|
endpoint: string;
|
|
3104
2973
|
body?: any;
|
|
3105
2974
|
} | undefined;
|
|
3106
2975
|
}, {
|
|
3107
|
-
value: string;
|
|
3108
|
-
data: string;
|
|
3109
2976
|
id: StepType;
|
|
3110
|
-
|
|
2977
|
+
method?: string | undefined;
|
|
2978
|
+
value?: string | undefined;
|
|
2979
|
+
data?: string | undefined;
|
|
2980
|
+
to?: string | undefined;
|
|
2981
|
+
endpoint?: string | undefined;
|
|
2982
|
+
price?: string | undefined;
|
|
3111
2983
|
signature?: {
|
|
3112
2984
|
domain: {
|
|
3113
2985
|
chainId: number;
|
|
@@ -3119,7 +2991,6 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3119
2991
|
value?: any;
|
|
3120
2992
|
types?: any;
|
|
3121
2993
|
} | undefined;
|
|
3122
|
-
executeType?: ExecuteType | undefined;
|
|
3123
2994
|
post?: {
|
|
3124
2995
|
method: string;
|
|
3125
2996
|
endpoint: string;
|
|
@@ -3129,10 +3000,13 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3129
3000
|
}, "strip", z.ZodTypeAny, {
|
|
3130
3001
|
chainId: number;
|
|
3131
3002
|
onSuccess?: ((args_0: {
|
|
3132
|
-
value: string;
|
|
3133
|
-
data: string;
|
|
3134
3003
|
id: StepType;
|
|
3135
|
-
|
|
3004
|
+
method?: string | undefined;
|
|
3005
|
+
value?: string | undefined;
|
|
3006
|
+
data?: string | undefined;
|
|
3007
|
+
to?: string | undefined;
|
|
3008
|
+
endpoint?: string | undefined;
|
|
3009
|
+
price?: string | undefined;
|
|
3136
3010
|
signature?: {
|
|
3137
3011
|
domain: {
|
|
3138
3012
|
chainId: number;
|
|
@@ -3144,7 +3018,6 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3144
3018
|
value?: any;
|
|
3145
3019
|
types?: any;
|
|
3146
3020
|
} | undefined;
|
|
3147
|
-
executeType?: ExecuteType | undefined;
|
|
3148
3021
|
post?: {
|
|
3149
3022
|
method: string;
|
|
3150
3023
|
endpoint: string;
|
|
@@ -3154,10 +3027,13 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3154
3027
|
}, {
|
|
3155
3028
|
chainId: number;
|
|
3156
3029
|
onSuccess?: ((args_0: {
|
|
3157
|
-
value: string;
|
|
3158
|
-
data: string;
|
|
3159
3030
|
id: StepType;
|
|
3160
|
-
|
|
3031
|
+
method?: string | undefined;
|
|
3032
|
+
value?: string | undefined;
|
|
3033
|
+
data?: string | undefined;
|
|
3034
|
+
to?: string | undefined;
|
|
3035
|
+
endpoint?: string | undefined;
|
|
3036
|
+
price?: string | undefined;
|
|
3161
3037
|
signature?: {
|
|
3162
3038
|
domain: {
|
|
3163
3039
|
chainId: number;
|
|
@@ -3169,7 +3045,6 @@ declare const UserGeneratSellTransactionArgsSchema: z.ZodObject<{
|
|
|
3169
3045
|
value?: any;
|
|
3170
3046
|
types?: any;
|
|
3171
3047
|
} | undefined;
|
|
3172
|
-
executeType?: ExecuteType | undefined;
|
|
3173
3048
|
post?: {
|
|
3174
3049
|
method: string;
|
|
3175
3050
|
endpoint: string;
|
|
@@ -3253,9 +3128,10 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3253
3128
|
chainId: z.ZodNumber;
|
|
3254
3129
|
onSuccess: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3255
3130
|
id: z.ZodNativeEnum<typeof StepType>;
|
|
3256
|
-
data: z.ZodString
|
|
3257
|
-
to: z.ZodString
|
|
3258
|
-
value: z.ZodString
|
|
3131
|
+
data: z.ZodOptional<z.ZodString>;
|
|
3132
|
+
to: z.ZodOptional<z.ZodString>;
|
|
3133
|
+
value: z.ZodOptional<z.ZodString>;
|
|
3134
|
+
price: z.ZodOptional<z.ZodString>;
|
|
3259
3135
|
signature: z.ZodOptional<z.ZodObject<{
|
|
3260
3136
|
domain: z.ZodObject<{
|
|
3261
3137
|
name: z.ZodString;
|
|
@@ -3310,12 +3186,16 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3310
3186
|
endpoint: string;
|
|
3311
3187
|
body?: any;
|
|
3312
3188
|
}>>;
|
|
3313
|
-
|
|
3189
|
+
method: z.ZodOptional<z.ZodString>;
|
|
3190
|
+
endpoint: z.ZodOptional<z.ZodString>;
|
|
3314
3191
|
}, "strip", z.ZodTypeAny, {
|
|
3315
|
-
value: string;
|
|
3316
|
-
data: string;
|
|
3317
3192
|
id: StepType;
|
|
3318
|
-
|
|
3193
|
+
method?: string | undefined;
|
|
3194
|
+
value?: string | undefined;
|
|
3195
|
+
data?: string | undefined;
|
|
3196
|
+
to?: string | undefined;
|
|
3197
|
+
endpoint?: string | undefined;
|
|
3198
|
+
price?: string | undefined;
|
|
3319
3199
|
signature?: {
|
|
3320
3200
|
domain: {
|
|
3321
3201
|
chainId: number;
|
|
@@ -3327,17 +3207,19 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3327
3207
|
value?: any;
|
|
3328
3208
|
types?: any;
|
|
3329
3209
|
} | undefined;
|
|
3330
|
-
executeType?: ExecuteType | undefined;
|
|
3331
3210
|
post?: {
|
|
3332
3211
|
method: string;
|
|
3333
3212
|
endpoint: string;
|
|
3334
3213
|
body?: any;
|
|
3335
3214
|
} | undefined;
|
|
3336
3215
|
}, {
|
|
3337
|
-
value: string;
|
|
3338
|
-
data: string;
|
|
3339
3216
|
id: StepType;
|
|
3340
|
-
|
|
3217
|
+
method?: string | undefined;
|
|
3218
|
+
value?: string | undefined;
|
|
3219
|
+
data?: string | undefined;
|
|
3220
|
+
to?: string | undefined;
|
|
3221
|
+
endpoint?: string | undefined;
|
|
3222
|
+
price?: string | undefined;
|
|
3341
3223
|
signature?: {
|
|
3342
3224
|
domain: {
|
|
3343
3225
|
chainId: number;
|
|
@@ -3349,7 +3231,6 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3349
3231
|
value?: any;
|
|
3350
3232
|
types?: any;
|
|
3351
3233
|
} | undefined;
|
|
3352
|
-
executeType?: ExecuteType | undefined;
|
|
3353
3234
|
post?: {
|
|
3354
3235
|
method: string;
|
|
3355
3236
|
endpoint: string;
|
|
@@ -3359,10 +3240,13 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3359
3240
|
}, "strip", z.ZodTypeAny, {
|
|
3360
3241
|
chainId: number;
|
|
3361
3242
|
onSuccess?: ((args_0: {
|
|
3362
|
-
value: string;
|
|
3363
|
-
data: string;
|
|
3364
3243
|
id: StepType;
|
|
3365
|
-
|
|
3244
|
+
method?: string | undefined;
|
|
3245
|
+
value?: string | undefined;
|
|
3246
|
+
data?: string | undefined;
|
|
3247
|
+
to?: string | undefined;
|
|
3248
|
+
endpoint?: string | undefined;
|
|
3249
|
+
price?: string | undefined;
|
|
3366
3250
|
signature?: {
|
|
3367
3251
|
domain: {
|
|
3368
3252
|
chainId: number;
|
|
@@ -3374,7 +3258,6 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3374
3258
|
value?: any;
|
|
3375
3259
|
types?: any;
|
|
3376
3260
|
} | undefined;
|
|
3377
|
-
executeType?: ExecuteType | undefined;
|
|
3378
3261
|
post?: {
|
|
3379
3262
|
method: string;
|
|
3380
3263
|
endpoint: string;
|
|
@@ -3384,10 +3267,13 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3384
3267
|
}, {
|
|
3385
3268
|
chainId: number;
|
|
3386
3269
|
onSuccess?: ((args_0: {
|
|
3387
|
-
value: string;
|
|
3388
|
-
data: string;
|
|
3389
3270
|
id: StepType;
|
|
3390
|
-
|
|
3271
|
+
method?: string | undefined;
|
|
3272
|
+
value?: string | undefined;
|
|
3273
|
+
data?: string | undefined;
|
|
3274
|
+
to?: string | undefined;
|
|
3275
|
+
endpoint?: string | undefined;
|
|
3276
|
+
price?: string | undefined;
|
|
3391
3277
|
signature?: {
|
|
3392
3278
|
domain: {
|
|
3393
3279
|
chainId: number;
|
|
@@ -3399,7 +3285,6 @@ declare const UserGenerateCancelTransactionArgsSchema: z.ZodObject<{
|
|
|
3399
3285
|
value?: any;
|
|
3400
3286
|
types?: any;
|
|
3401
3287
|
} | undefined;
|
|
3402
|
-
executeType?: ExecuteType | undefined;
|
|
3403
3288
|
post?: {
|
|
3404
3289
|
method: string;
|
|
3405
3290
|
endpoint: string;
|
|
@@ -3691,4 +3576,4 @@ declare const collectionDetailsPollingOptions: (args: UseCollectionDetailsPollin
|
|
|
3691
3576
|
};
|
|
3692
3577
|
declare const useCollectionDetailsPolling: (args: UseCollectionDetailsPolling) => _tanstack_react_query.UseQueryResult<Collection, Error>;
|
|
3693
3578
|
|
|
3694
|
-
export { type CollectionBalanceFilter, type CreateReqWithDateExpiry$1 as CreateReqWithDateExpiry, type GenerateListingTransactionProps, type GenerateOfferTransactionProps, type TransactionStep, type TransferTokensParams, type UseCheckoutOptionsArgs, type UseCheckoutOptionsReturn, type UseCollectibleArgs, type UseCollectibleReturn, type UseCollectionBalanceDetailsArgs, type UseComparePricesReturn, type UseContOfCollectableReturn, type UseConvertPriceToUSDArgs, type UseConvertPriceToUSDReturn, type UseCountListingsForCollectibleArgs, type UseCountListingsForCollectibleReturn, type UseCountOfCollectablesArgs, type UseCountOffersForCollectibleArgs, type UseCountOffersForCollectibleReturn, type UseCurrenciesReturn, type UseCurrencyReturn, type UseFilterReturn, type UseFiltersArgs, type UseFloorOrderArgs, type UseFloorOrderReturn, type UseGenerateListingTransactionArgs, type UseGenerateOfferTransactionArgs, type
|
|
3579
|
+
export { type CollectionBalanceFilter, type CreateReqWithDateExpiry$1 as CreateReqWithDateExpiry, type GenerateListingTransactionProps, type GenerateOfferTransactionProps, type TransactionStep, type TransferTokensParams, type UseCheckoutOptionsArgs, type UseCheckoutOptionsReturn, type UseCollectibleArgs, type UseCollectibleReturn, type UseCollectionBalanceDetailsArgs, type UseComparePricesReturn, type UseContOfCollectableReturn, type UseConvertPriceToUSDArgs, type UseConvertPriceToUSDReturn, type UseCountListingsForCollectibleArgs, type UseCountListingsForCollectibleReturn, type UseCountOfCollectablesArgs, type UseCountOffersForCollectibleArgs, type UseCountOffersForCollectibleReturn, type UseCurrenciesReturn, type UseCurrencyReturn, type UseFilterReturn, type UseFiltersArgs, type UseFloorOrderArgs, type UseFloorOrderReturn, type UseGenerateListingTransactionArgs, type UseGenerateOfferTransactionArgs, type UseListCollectibleActivitiesArgs, type UseListCollectibleActivitiesReturn, type UseListCollectiblesPaginatedArgs, type UseListCollectiblesPaginatedReturn, type UseListCollectionActivitiesArgs, type UseListCollectionActivitiesReturn, type UseListCollectionsArgs, type UseListCollectionsReturn, type UseListListingsForCollectibleReturn, type UseListOffersForCollectibleReturn, checkoutOptionsOptions, collectibleOptions, collectionBalanceDetailsOptions, collectionDetailsOptions, collectionDetailsPollingOptions, comparePricesOptions, convertPriceToUSD, convertPriceToUSDOptions, countListingsForCollectibleOptions, countOfCollectablesOptions, countOffersForCollectibleOptions, currenciesOptions, currencyOptions, fetchFilters, filtersOptions, floorOrderOptions, generateCancelTransaction, generateListingTransaction, generateOfferTransaction, generateSellTransaction, listCollectibleActivitiesOptions, listCollectiblesPaginatedOptions, listCollectionActivitiesOptions, listCollectionsOptions, listListingsForCollectibleOptions, listOffersForCollectibleOptions, useAutoSelectFeeOption, useBalanceOfCollectible, useCancelOrder, useCheckoutOptions, useCollectible, useCollectionBalanceDetails, useCollectionDetails, useCollectionDetailsPolling, useComparePrices, useConfig, useConvertPriceToUSD, useCountListingsForCollectible, useCountOfCollectables, useCountOffersForCollectible, useCurrencies, useCurrency, useFilters, useFloorOrder, useGenerateCancelTransaction, useGenerateListingTransaction, useGenerateOfferTransaction, useGenerateSellTransaction, useHighestOffer, useListBalances, useListCollectibleActivities, useListCollectibles, useListCollectiblesPaginated, useListCollectionActivities, useListCollections, useListListingsForCollectible, useListOffersForCollectible, useLowestListing, useMarketplaceConfig, useRoyalty, useTransferTokens };
|
|
@@ -25,7 +25,6 @@ import {
|
|
|
25
25
|
listCollectionsOptions,
|
|
26
26
|
listListingsForCollectibleOptions,
|
|
27
27
|
listOffersForCollectibleOptions,
|
|
28
|
-
lowestListingOptions,
|
|
29
28
|
useAutoSelectFeeOption,
|
|
30
29
|
useBalanceOfCollectible,
|
|
31
30
|
useCancelOrder,
|
|
@@ -62,21 +61,21 @@ import {
|
|
|
62
61
|
useMarketplaceConfig,
|
|
63
62
|
useRoyalty,
|
|
64
63
|
useTransferTokens
|
|
65
|
-
} from "../../chunk-
|
|
66
|
-
import "../../chunk-
|
|
67
|
-
import
|
|
68
|
-
marketplaceConfigOptions
|
|
69
|
-
} from "../../chunk-3II5GLHE.js";
|
|
70
|
-
import "../../chunk-BCO4CYE4.js";
|
|
64
|
+
} from "../../chunk-DFI52A2E.js";
|
|
65
|
+
import "../../chunk-XUNDLCEH.js";
|
|
66
|
+
import "../../chunk-SJU6QZHM.js";
|
|
71
67
|
import "../../chunk-Y63BOO6M.js";
|
|
72
|
-
import "../../chunk-
|
|
68
|
+
import "../../chunk-BGY4WXER.js";
|
|
73
69
|
import "../../chunk-FMEEJFAF.js";
|
|
74
70
|
import "../../chunk-UISBTKFF.js";
|
|
75
|
-
import "../../chunk-XX4EVWBF.js";
|
|
76
71
|
import "../../chunk-FUM4OGOQ.js";
|
|
77
|
-
import "../../chunk-
|
|
78
|
-
import "../../chunk-
|
|
79
|
-
import
|
|
72
|
+
import "../../chunk-XX4EVWBF.js";
|
|
73
|
+
import "../../chunk-FSJKN4YN.js";
|
|
74
|
+
import {
|
|
75
|
+
marketplaceConfigOptions
|
|
76
|
+
} from "../../chunk-HGKWWZWY.js";
|
|
77
|
+
import "../../chunk-25CAMYCG.js";
|
|
78
|
+
import "../../chunk-ALICO7NG.js";
|
|
80
79
|
export {
|
|
81
80
|
checkoutOptionsOptions,
|
|
82
81
|
collectibleOptions,
|
|
@@ -104,7 +103,6 @@ export {
|
|
|
104
103
|
listCollectionsOptions,
|
|
105
104
|
listListingsForCollectibleOptions,
|
|
106
105
|
listOffersForCollectibleOptions,
|
|
107
|
-
lowestListingOptions,
|
|
108
106
|
marketplaceConfigOptions,
|
|
109
107
|
useAutoSelectFeeOption,
|
|
110
108
|
useBalanceOfCollectible,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export { c as collectionOptions, f as fetchCollection, m as marketplaceConfigOptions } from '../../../index-
|
|
1
|
+
export { c as collectionOptions, f as fetchCollection, m as marketplaceConfigOptions } from '../../../index-DtWR0b_l.js';
|
|
2
2
|
import '@tanstack/react-query';
|
|
3
3
|
import '@0xsequence/metadata';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import '../../../sdk-config-DIzJk_tI.js';
|
|
6
|
-
import '../../../builder-types-
|
|
7
|
-
import '../../../marketplace.gen-
|
|
6
|
+
import '../../../builder-types-BY6eD6vD.js';
|
|
7
|
+
import '../../../marketplace.gen-DS-MmGEB.js';
|
|
@@ -2,12 +2,12 @@ import "../../../chunk-JKCF7HEA.js";
|
|
|
2
2
|
import {
|
|
3
3
|
collectionOptions,
|
|
4
4
|
fetchCollection
|
|
5
|
-
} from "../../../chunk-
|
|
5
|
+
} from "../../../chunk-XUNDLCEH.js";
|
|
6
6
|
import {
|
|
7
7
|
marketplaceConfigOptions
|
|
8
|
-
} from "../../../chunk-
|
|
9
|
-
import "../../../chunk-
|
|
10
|
-
import "../../../chunk-
|
|
8
|
+
} from "../../../chunk-HGKWWZWY.js";
|
|
9
|
+
import "../../../chunk-25CAMYCG.js";
|
|
10
|
+
import "../../../chunk-ALICO7NG.js";
|
|
11
11
|
export {
|
|
12
12
|
collectionOptions,
|
|
13
13
|
fetchCollection,
|
package/dist/react/index.d.ts
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React$1 from 'react';
|
|
3
3
|
import { S as SdkConfig } from '../sdk-config-DIzJk_tI.js';
|
|
4
|
-
export { CollectionBalanceFilter, CreateReqWithDateExpiry, GenerateListingTransactionProps, GenerateOfferTransactionProps, TransactionStep, TransferTokensParams, UseCheckoutOptionsArgs, UseCheckoutOptionsReturn, UseCollectibleArgs, UseCollectibleReturn, UseCollectionBalanceDetailsArgs, UseComparePricesReturn, UseContOfCollectableReturn, UseConvertPriceToUSDArgs, UseConvertPriceToUSDReturn, UseCountListingsForCollectibleArgs, UseCountListingsForCollectibleReturn, UseCountOfCollectablesArgs, UseCountOffersForCollectibleArgs, UseCountOffersForCollectibleReturn, UseCurrenciesReturn, UseCurrencyReturn, UseFilterReturn, UseFiltersArgs, UseFloorOrderArgs, UseFloorOrderReturn, UseGenerateListingTransactionArgs, UseGenerateOfferTransactionArgs,
|
|
5
|
-
export { U as UseCollectionArgs, a as UseCollectionReturn, c as collectionOptions, f as fetchCollection, m as marketplaceConfigOptions, u as useCollection } from '../index-
|
|
4
|
+
export { CollectionBalanceFilter, CreateReqWithDateExpiry, GenerateListingTransactionProps, GenerateOfferTransactionProps, TransactionStep, TransferTokensParams, UseCheckoutOptionsArgs, UseCheckoutOptionsReturn, UseCollectibleArgs, UseCollectibleReturn, UseCollectionBalanceDetailsArgs, UseComparePricesReturn, UseContOfCollectableReturn, UseConvertPriceToUSDArgs, UseConvertPriceToUSDReturn, UseCountListingsForCollectibleArgs, UseCountListingsForCollectibleReturn, UseCountOfCollectablesArgs, UseCountOffersForCollectibleArgs, UseCountOffersForCollectibleReturn, UseCurrenciesReturn, UseCurrencyReturn, UseFilterReturn, UseFiltersArgs, UseFloorOrderArgs, UseFloorOrderReturn, UseGenerateListingTransactionArgs, UseGenerateOfferTransactionArgs, UseListCollectibleActivitiesArgs, UseListCollectibleActivitiesReturn, UseListCollectiblesPaginatedArgs, UseListCollectiblesPaginatedReturn, UseListCollectionActivitiesArgs, UseListCollectionActivitiesReturn, UseListCollectionsArgs, UseListCollectionsReturn, UseListListingsForCollectibleReturn, UseListOffersForCollectibleReturn, checkoutOptionsOptions, collectibleOptions, collectionBalanceDetailsOptions, collectionDetailsOptions, collectionDetailsPollingOptions, comparePricesOptions, convertPriceToUSD, convertPriceToUSDOptions, countListingsForCollectibleOptions, countOfCollectablesOptions, countOffersForCollectibleOptions, currenciesOptions, currencyOptions, fetchFilters, filtersOptions, floorOrderOptions, generateCancelTransaction, generateListingTransaction, generateOfferTransaction, generateSellTransaction, listCollectibleActivitiesOptions, listCollectiblesPaginatedOptions, listCollectionActivitiesOptions, listCollectionsOptions, listListingsForCollectibleOptions, listOffersForCollectibleOptions, useAutoSelectFeeOption, useBalanceOfCollectible, useCancelOrder, useCheckoutOptions, useCollectible, useCollectionBalanceDetails, useCollectionDetails, useCollectionDetailsPolling, useComparePrices, useConfig, useConvertPriceToUSD, useCountListingsForCollectible, useCountOfCollectables, useCountOffersForCollectible, useCurrencies, useCurrency, useFilters, useFloorOrder, useGenerateCancelTransaction, useGenerateListingTransaction, useGenerateOfferTransaction, useGenerateSellTransaction, useHighestOffer, useListBalances, useListCollectibleActivities, useListCollectibles, useListCollectiblesPaginated, useListCollectionActivities, useListCollections, useListListingsForCollectible, useListOffersForCollectible, useLowestListing, useMarketplaceConfig, useRoyalty, useTransferTokens } from './hooks/index.js';
|
|
5
|
+
export { U as UseCollectionArgs, a as UseCollectionReturn, c as collectionOptions, f as fetchCollection, m as marketplaceConfigOptions, u as useCollection } from '../index-DtWR0b_l.js';
|
|
6
6
|
export { g as getQueryClient } from '../get-query-client-D46hbjk6.js';
|
|
7
|
-
export { c as createWagmiConfig } from '../create-config-
|
|
7
|
+
export { c as createWagmiConfig } from '../create-config-qDML4ZNn.js';
|
|
8
8
|
export { ModalProvider, useBuyModal, useCreateListingModal, useMakeOfferModal, useSellModal, useSuccessfulPurchaseModal, useTransferModal } from './ui/index.js';
|
|
9
9
|
export { CollectibleCard } from './ui/components/collectible-card/index.js';
|
|
10
10
|
import '@tanstack/react-query';
|
|
11
11
|
import '@0xsequence/indexer';
|
|
12
|
-
import '../
|
|
12
|
+
import '../lowestListing-DUZ_nYml.js';
|
|
13
13
|
import 'viem';
|
|
14
14
|
import 'wagmi/query';
|
|
15
|
-
import '../marketplace.gen-
|
|
15
|
+
import '../marketplace.gen-DS-MmGEB.js';
|
|
16
16
|
import 'zod';
|
|
17
17
|
import '@0xsequence/metadata';
|
|
18
|
-
import '../services-
|
|
19
|
-
import '../builder-types-
|
|
20
|
-
import '../types-
|
|
18
|
+
import '../services-BOX67E7W.js';
|
|
19
|
+
import '../builder-types-BY6eD6vD.js';
|
|
20
|
+
import '../types-CJLhc2VZ.js';
|
|
21
21
|
import 'wagmi';
|
|
22
22
|
import '@0xsequence/design-system';
|
|
23
23
|
|
package/dist/react/index.js
CHANGED
|
@@ -7,11 +7,11 @@ import {
|
|
|
7
7
|
useSellModal,
|
|
8
8
|
useSuccessfulPurchaseModal,
|
|
9
9
|
useTransferModal
|
|
10
|
-
} from "../chunk-
|
|
11
|
-
import "../chunk-
|
|
12
|
-
import "../chunk-
|
|
10
|
+
} from "../chunk-QTV77W42.js";
|
|
11
|
+
import "../chunk-5ATGT5S4.js";
|
|
12
|
+
import "../chunk-FH4TZRDV.js";
|
|
13
13
|
import "../chunk-JKCF7HEA.js";
|
|
14
|
-
import "../chunk-
|
|
14
|
+
import "../chunk-WXKV5N4T.js";
|
|
15
15
|
import {
|
|
16
16
|
MarketplaceProvider,
|
|
17
17
|
MarketplaceQueryClientProvider,
|
|
@@ -42,7 +42,6 @@ import {
|
|
|
42
42
|
listCollectionsOptions,
|
|
43
43
|
listListingsForCollectibleOptions,
|
|
44
44
|
listOffersForCollectibleOptions,
|
|
45
|
-
lowestListingOptions,
|
|
46
45
|
useAutoSelectFeeOption,
|
|
47
46
|
useBalanceOfCollectible,
|
|
48
47
|
useCancelOrder,
|
|
@@ -79,28 +78,28 @@ import {
|
|
|
79
78
|
useMarketplaceConfig,
|
|
80
79
|
useRoyalty,
|
|
81
80
|
useTransferTokens
|
|
82
|
-
} from "../chunk-
|
|
81
|
+
} from "../chunk-DFI52A2E.js";
|
|
83
82
|
import {
|
|
84
83
|
collectionOptions,
|
|
85
84
|
fetchCollection
|
|
86
|
-
} from "../chunk-
|
|
87
|
-
import
|
|
88
|
-
marketplaceConfigOptions
|
|
89
|
-
} from "../chunk-3II5GLHE.js";
|
|
90
|
-
import "../chunk-BCO4CYE4.js";
|
|
85
|
+
} from "../chunk-XUNDLCEH.js";
|
|
86
|
+
import "../chunk-SJU6QZHM.js";
|
|
91
87
|
import "../chunk-Y63BOO6M.js";
|
|
92
|
-
import "../chunk-
|
|
88
|
+
import "../chunk-BGY4WXER.js";
|
|
93
89
|
import "../chunk-FMEEJFAF.js";
|
|
94
90
|
import "../chunk-UISBTKFF.js";
|
|
95
|
-
import "../chunk-XX4EVWBF.js";
|
|
96
91
|
import "../chunk-FUM4OGOQ.js";
|
|
97
|
-
import "../chunk-
|
|
92
|
+
import "../chunk-XX4EVWBF.js";
|
|
93
|
+
import "../chunk-FSJKN4YN.js";
|
|
94
|
+
import {
|
|
95
|
+
marketplaceConfigOptions
|
|
96
|
+
} from "../chunk-HGKWWZWY.js";
|
|
98
97
|
import {
|
|
99
98
|
createWagmiConfig
|
|
100
|
-
} from "../chunk-
|
|
99
|
+
} from "../chunk-25CAMYCG.js";
|
|
101
100
|
import {
|
|
102
101
|
getQueryClient
|
|
103
|
-
} from "../chunk-
|
|
102
|
+
} from "../chunk-ALICO7NG.js";
|
|
104
103
|
export {
|
|
105
104
|
CollectibleCard,
|
|
106
105
|
MarketplaceProvider,
|
|
@@ -137,7 +136,6 @@ export {
|
|
|
137
136
|
listCollectionsOptions,
|
|
138
137
|
listListingsForCollectibleOptions,
|
|
139
138
|
listOffersForCollectibleOptions,
|
|
140
|
-
lowestListingOptions,
|
|
141
139
|
marketplaceConfigOptions,
|
|
142
140
|
useAutoSelectFeeOption,
|
|
143
141
|
useBalanceOfCollectible,
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { U as UseBalanceOfCollectibleArgs, d as UseHighestOfferArgs, g as UseListBalancesArgs, a as UseListCollectiblesArgs, k as UseLowestListingArgs, b as balanceOfCollectibleOptions, f as fetchBalanceOfCollectible, i as fetchBalances, c as fetchCollectibles, e as fetchHighestOffer, m as fetchLowestListing, h as highestOfferOptions, j as listBalancesOptions, l as listCollectiblesOptions, n as lowestListingOptions } from '../../lowestListing-DUZ_nYml.js';
|
|
2
2
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
3
3
|
import * as _0xsequence_indexer from '@0xsequence/indexer';
|
|
4
4
|
import { S as SdkConfig } from '../../sdk-config-DIzJk_tI.js';
|
|
5
5
|
import 'viem';
|
|
6
6
|
import 'wagmi/query';
|
|
7
|
-
import '../../marketplace.gen-
|
|
7
|
+
import '../../marketplace.gen-DS-MmGEB.js';
|
|
8
8
|
|
|
9
9
|
type UseGetTokenSuppliesArgs = {
|
|
10
10
|
chainId: number;
|