@rareprotocol/rare-cli 1.1.0 → 1.2.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/README.md +1 -1
- package/dist/{addresses-BE3luaB3.d.ts → addresses-CcGI_7v1.d.ts} +5 -1
- package/dist/{batch-listing-Cu5Hoqxs.d.ts → batch-listing-C1CtPTD5.d.ts} +1 -1
- package/dist/client.d.ts +56 -5
- package/dist/client.js +1213 -462
- package/dist/contracts.d.ts +90 -2
- package/dist/contracts.js +140 -3
- package/dist/index.js +1396 -496
- package/dist/utils.d.ts +2 -2
- package/dist/utils.js +11 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -970,7 +970,7 @@ Batch, approval, Liquid Edition, and swap infrastructure:
|
|
|
970
970
|
| Network | Batch Listing | BatchOfferCreator | BatchAuctionHouse | Marketplace Settings | ERC20 Approval Manager | ERC721 Approval Manager | Liquid Factory | Swap Router | V4 Quoter |
|
|
971
971
|
|---|---|---|---|---|---|---|---|---|---|
|
|
972
972
|
| Sepolia | `0xF2bE72d4343beD375Cb6d0E799a3c003163860e0` | `0x371cca54ef859bb0c7b910581a528ee47773fd56` | `0x293AE7701A7830B1d38A7608EdF86A106d9E2645` | `0x972dEe8fa339ad2D9c6cbDA31b67f98Fac242d13` | `0x4619eB29e84392CE91C27FC936A5c94d1D14b93f` | `0x5fa0a461d3a2Ea3bFDf03e8BD37CAbB4ae84205E` | `0xb1777091C953fa2aC1fD67f2b3e2f61343F5Ce5e` | `0x429c3Ee66E7f6CDA12C5BadE4104aF3277aA2305` | `0x61B3f2011A92d183C7dbaDBdA940a7555Ccf9227` |
|
|
973
|
-
| Mainnet | `0x6a190885A806D39A0A8C348bfA1ac762D72E608d` | `0xe15cf80b25272ade261532efdb7912f9104851d4` | `0x71742c7196f1c334C4c038ce6dcDcEE98097F9Da` | `0x61DBF87164d33FD3695256DC8Ba74D3B1d304170` | `0xa837a7eAff154Ab837617Cf7250648D3Ec0A4436` | `0x4bb0Deea6d1A30C601338aAB776d394C2AE5c0F8` | `
|
|
973
|
+
| Mainnet | `0x6a190885A806D39A0A8C348bfA1ac762D72E608d` | `0xe15cf80b25272ade261532efdb7912f9104851d4` | `0x71742c7196f1c334C4c038ce6dcDcEE98097F9Da` | `0x61DBF87164d33FD3695256DC8Ba74D3B1d304170` | `0xa837a7eAff154Ab837617Cf7250648D3Ec0A4436` | `0x4bb0Deea6d1A30C601338aAB776d394C2AE5c0F8` | `0x25f993C222fE5e891128a782A5168f1C78629540` | `0xEBd58EdA8408d9EA409f2c2bE8898BD9738f3583` | `0x52F0E24D1c21C8A0cB1e5a5dD6198556BD9E1203` |
|
|
974
974
|
| Base Sepolia | — | — | — | — | — | — | — | — | — |
|
|
975
975
|
| Base | — | — | — | — | — | — | — | — | — |
|
|
976
976
|
|
|
@@ -16,6 +16,7 @@ type CanonicalV4Pool = {
|
|
|
16
16
|
type ContractAddresses = {
|
|
17
17
|
factory: Address;
|
|
18
18
|
auction: Address;
|
|
19
|
+
rareBridge?: Address;
|
|
19
20
|
sovereignFactory?: Address;
|
|
20
21
|
lazySovereignFactory?: Address;
|
|
21
22
|
rareMinter?: Address;
|
|
@@ -35,6 +36,7 @@ type CanonicalV4Pools = {
|
|
|
35
36
|
usdcEthPool?: CanonicalV4Pool;
|
|
36
37
|
};
|
|
37
38
|
declare const contractAddresses: Partial<Record<SupportedChain, ContractAddresses>>;
|
|
39
|
+
declare const ccipChainSelectors: Record<SupportedChain, bigint>;
|
|
38
40
|
declare const canonicalV4Pools: Partial<Record<SupportedChain, CanonicalV4Pools>>;
|
|
39
41
|
declare const currencyNames: readonly ["eth", "rare", "usdc"];
|
|
40
42
|
type CurrencyName = (typeof currencyNames)[number];
|
|
@@ -76,6 +78,8 @@ declare function getBatchListingAddress(chain: SupportedChain): Address;
|
|
|
76
78
|
declare function getErc721ApprovalManagerAddress(chain: SupportedChain): Address;
|
|
77
79
|
declare function getCanonicalV4Pools(chain: SupportedChain): CanonicalV4Pools;
|
|
78
80
|
declare function getRareMinterAddress(chain: SupportedChain): Address;
|
|
81
|
+
declare function getRareBridgeAddress(chain: SupportedChain): Address;
|
|
82
|
+
declare function getCcipChainSelector(chain: SupportedChain): bigint;
|
|
79
83
|
declare function isSupportedChain(value: string): value is SupportedChain;
|
|
80
84
|
declare function getLiquidFactoryAddress(chain: SupportedChain): Address;
|
|
81
85
|
declare function getSwapRouterAddress(chain: SupportedChain): Address;
|
|
@@ -84,4 +88,4 @@ declare function getCanonicalRareEthPool(chain: SupportedChain): CanonicalV4Pool
|
|
|
84
88
|
declare function getCanonicalUsdcEthPool(chain: SupportedChain): CanonicalV4Pool;
|
|
85
89
|
declare function requireContractAddress(chain: SupportedChain, contractName: keyof ContractAddresses): Address;
|
|
86
90
|
|
|
87
|
-
export {
|
|
91
|
+
export { listCurrencies as A, requireContractAddress as B, type CurrencyInput as C, resolveCurrency as D, ETH_ADDRESS as E, resolveCurrencyInfo as F, supportedChains as G, viemChains as H, PUBLIC_LISTING_TARGET as P, type ResolvedCurrency as R, type SupportedChain as S, type CurrencyInfo as a, type CurrencyName as b, type CustomCurrencyInfo as c, type CanonicalV4Pool as d, type CanonicalV4Pools as e, type ContractAddresses as f, type CurrencyResolveResult as g, canonicalV4Pools as h, ccipChainSelectors as i, chainIds as j, contractAddresses as k, currencyNames as l, defaultRpcUrls as m, getBatchListingAddress as n, getCanonicalRareEthPool as o, getCanonicalUsdcEthPool as p, getCanonicalV4Pools as q, getCcipChainSelector as r, getContractAddresses as s, getErc721ApprovalManagerAddress as t, getLiquidFactoryAddress as u, getRareBridgeAddress as v, getRareMinterAddress as w, getSwapRouterAddress as x, getV4QuoterAddress as y, isSupportedChain as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Hash, TransactionReceipt, WalletClient, Hex, Address } from 'viem';
|
|
2
|
-
import { a as CurrencyInfo, c as CustomCurrencyInfo, C as CurrencyInput } from './addresses-
|
|
2
|
+
import { a as CurrencyInfo, c as CustomCurrencyInfo, C as CurrencyInput } from './addresses-CcGI_7v1.js';
|
|
3
3
|
|
|
4
4
|
type IntegerInput = bigint | number | string;
|
|
5
5
|
type AmountInput = bigint | number | string;
|
package/dist/client.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Address, Hex as Hex$1, Hash, PublicClient, WalletClient } from 'viem';
|
|
2
|
-
import { S as SupportedChain, C as CurrencyInput, a as CurrencyInfo, R as ResolvedCurrency } from './addresses-
|
|
3
|
-
export { b as CurrencyName, c as CustomCurrencyInfo } from './addresses-
|
|
4
|
-
import { I as IntegerInput, B as BatchTokenListArtifact, A as AmountInput, T as TimestampInput, a as TransactionResult, b as BatchTokenProofArtifact, c as BatchListingNamespace, d as BuildUtilsTreeParams, U as UtilsTreeArtifact, e as UtilsTreeProofParams, f as UtilsTreeProofArtifact, g as UtilsTreeProofVerifyParams, h as UtilsMerkleProofParams, i as UtilsMerkleProofArtifact, R as ResolvedCurrencyWithDecimals } from './batch-listing-
|
|
5
|
-
export { j as BatchListingBuyParams, k as BatchListingBuyResult, l as BatchListingCancelParams, m as BatchListingCancelResult, n as BatchListingCreateParams, o as BatchListingCreateResult, p as BatchListingProofArtifact, q as BatchListingRootArtifact, r as BatchListingSetAllowListParams, s as BatchListingSetAllowListResult, t as BatchListingStatus, u as BatchListingStatusParams, v as BatchListingTokenEntry, w as UtilsMerkleRootArtifact, x as UtilsMerkleTokenEntry, W as WalletAccount } from './batch-listing-
|
|
2
|
+
import { S as SupportedChain, C as CurrencyInput, a as CurrencyInfo, R as ResolvedCurrency } from './addresses-CcGI_7v1.js';
|
|
3
|
+
export { b as CurrencyName, c as CustomCurrencyInfo } from './addresses-CcGI_7v1.js';
|
|
4
|
+
import { I as IntegerInput, B as BatchTokenListArtifact, A as AmountInput, T as TimestampInput, a as TransactionResult, b as BatchTokenProofArtifact, c as BatchListingNamespace, d as BuildUtilsTreeParams, U as UtilsTreeArtifact, e as UtilsTreeProofParams, f as UtilsTreeProofArtifact, g as UtilsTreeProofVerifyParams, h as UtilsMerkleProofParams, i as UtilsMerkleProofArtifact, R as ResolvedCurrencyWithDecimals } from './batch-listing-C1CtPTD5.js';
|
|
5
|
+
export { j as BatchListingBuyParams, k as BatchListingBuyResult, l as BatchListingCancelParams, m as BatchListingCancelResult, n as BatchListingCreateParams, o as BatchListingCreateResult, p as BatchListingProofArtifact, q as BatchListingRootArtifact, r as BatchListingSetAllowListParams, s as BatchListingSetAllowListResult, t as BatchListingStatus, u as BatchListingStatusParams, v as BatchListingTokenEntry, w as UtilsMerkleRootArtifact, x as UtilsMerkleTokenEntry, W as WalletAccount } from './batch-listing-C1CtPTD5.js';
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* This file was auto-generated by openapi-typescript.
|
|
@@ -1879,6 +1879,38 @@ type AuctionNamespace = AuctionMarketplaceNamespace & {
|
|
|
1879
1879
|
batch: BatchAuctionNamespace;
|
|
1880
1880
|
};
|
|
1881
1881
|
|
|
1882
|
+
type BridgeParams = {
|
|
1883
|
+
amount: AmountInput;
|
|
1884
|
+
destinationChain: SupportedChain;
|
|
1885
|
+
recipient?: Address;
|
|
1886
|
+
};
|
|
1887
|
+
type BridgeSendParams = BridgeParams & {
|
|
1888
|
+
autoApprove?: boolean;
|
|
1889
|
+
};
|
|
1890
|
+
type BridgeQuote = {
|
|
1891
|
+
sourceChain: SupportedChain;
|
|
1892
|
+
sourceChainId: number;
|
|
1893
|
+
destinationChain: SupportedChain;
|
|
1894
|
+
destinationChainId: number;
|
|
1895
|
+
sourceBridgeAddress: Address;
|
|
1896
|
+
destinationBridgeAddress: Address;
|
|
1897
|
+
rareTokenAddress: Address;
|
|
1898
|
+
destinationCcipChainSelector: bigint;
|
|
1899
|
+
amount: bigint;
|
|
1900
|
+
recipient: Address;
|
|
1901
|
+
distributionData: `0x${string}`;
|
|
1902
|
+
nativeFee: bigint;
|
|
1903
|
+
estimatedGas?: bigint;
|
|
1904
|
+
};
|
|
1905
|
+
type BridgeResult = BridgeQuote & TransactionResult & {
|
|
1906
|
+
approvalTxHash?: `0x${string}`;
|
|
1907
|
+
ccipExplorerUrl: string;
|
|
1908
|
+
};
|
|
1909
|
+
type BridgeNamespace = {
|
|
1910
|
+
quote: (params: BridgeParams) => Promise<BridgeQuote>;
|
|
1911
|
+
send: (params: BridgeSendParams) => Promise<BridgeResult>;
|
|
1912
|
+
};
|
|
1913
|
+
|
|
1882
1914
|
declare const lazySovereignCollectionContractTypes: readonly ["lazy", "lazy-royalty-guard", "lazy-deadman-royalty-guard"];
|
|
1883
1915
|
type LazySovereignCollectionContractType = (typeof lazySovereignCollectionContractTypes)[number];
|
|
1884
1916
|
|
|
@@ -2809,6 +2841,7 @@ type RareClientNftGetParams = Omit<NftIdentityParams, 'chain' | 'chainId'>;
|
|
|
2809
2841
|
type RareClientContracts = {
|
|
2810
2842
|
factory: Address;
|
|
2811
2843
|
auction: Address;
|
|
2844
|
+
rareBridge?: Address;
|
|
2812
2845
|
sovereignFactory?: Address;
|
|
2813
2846
|
lazySovereignFactory?: Address;
|
|
2814
2847
|
rareMinter?: Address;
|
|
@@ -2863,6 +2896,7 @@ type RareClient = {
|
|
|
2863
2896
|
*/
|
|
2864
2897
|
contracts: RareClientContracts;
|
|
2865
2898
|
liquidEdition: LiquidEditionNamespace;
|
|
2899
|
+
bridge: BridgeNamespace;
|
|
2866
2900
|
swap: SwapNamespace;
|
|
2867
2901
|
auction: AuctionNamespace;
|
|
2868
2902
|
offer: OfferNamespace;
|
|
@@ -2924,6 +2958,23 @@ type RareClient = {
|
|
|
2924
2958
|
*/
|
|
2925
2959
|
declare function createRareClient(config: RareClientConfig): RareClient;
|
|
2926
2960
|
|
|
2961
|
+
type ApprovalSideEffect = {
|
|
2962
|
+
type: 'nft' | 'erc20' | 'minter' | 'erc20-reset';
|
|
2963
|
+
approvalTxHash: Hash | undefined;
|
|
2964
|
+
target: Address;
|
|
2965
|
+
operator?: Address;
|
|
2966
|
+
spender?: Address;
|
|
2967
|
+
minter?: Address;
|
|
2968
|
+
};
|
|
2969
|
+
declare class ApprovalSideEffectError extends Error {
|
|
2970
|
+
readonly operation: string;
|
|
2971
|
+
readonly approvals: ApprovalSideEffect[];
|
|
2972
|
+
constructor(params: {
|
|
2973
|
+
operation: string;
|
|
2974
|
+
approvals: ApprovalSideEffect[];
|
|
2975
|
+
cause: unknown;
|
|
2976
|
+
});
|
|
2977
|
+
}
|
|
2927
2978
|
declare class NftApprovalRequiredError extends Error {
|
|
2928
2979
|
readonly nftAddress: Address;
|
|
2929
2980
|
readonly operator: Address;
|
|
@@ -2942,4 +2993,4 @@ declare class PaymentApprovalRequiredError extends Error {
|
|
|
2942
2993
|
});
|
|
2943
2994
|
}
|
|
2944
2995
|
|
|
2945
|
-
export { AmountInput, type AuctionBidParams, type AuctionBidResult, type AuctionCancelParams, type AuctionCreateParams, type AuctionCreateResult, type AuctionMarketplaceNamespace, type AuctionNamespace, type AuctionSettleParams, type AuctionStatus, type AuctionStatusParams, type BatchAuctionBidParams, type BatchAuctionBidResult, type BatchAuctionCancelParams, type BatchAuctionCancelResult, type BatchAuctionCreateParams, type BatchAuctionCreateResult, type BatchAuctionNamespace, type BatchAuctionRootSource, type BatchAuctionRootsParams, type BatchAuctionSettleParams, type BatchAuctionSettleResult, type BatchAuctionStatus, type BatchAuctionStatusParams, BatchListingNamespace, type BatchOfferAcceptParams, type BatchOfferAcceptResult, type BatchOfferCreateParams, type BatchOfferCreateResult, type BatchOfferNamespace, type BatchOfferRevokeParams, type BatchOfferRevokeResult, type BatchOfferRootSource, type BatchOfferStatus, type BatchOfferStatusParams, BuildUtilsTreeParams, type BuyRareParams, type BuyRareQuote, type BuyRareResult, type BuyTokenParams, type Collection, type CollectionDeployNamespace, type CollectionLockBaseUriParams, type CollectionLockBaseUriResult, type CollectionMintBatchParams, type CollectionMintBatchResult, type CollectionMintConfigParams, type CollectionMintConfigResult, type CollectionMintParams, type CollectionMintResult, type CollectionNamespace, type CollectionPrepareLazyMintParams, type CollectionPrepareLazyMintResult, type CollectionRoyaltyInfoParams, type CollectionRoyaltyInfoResult, type CollectionSearchParams, type CollectionSetDefaultRoyaltyPercentageParams, type CollectionSetDefaultRoyaltyPercentageResult, type CollectionSetDefaultRoyaltyReceiverParams, type CollectionSetDefaultRoyaltyReceiverResult, type CollectionSetTokenRoyaltyReceiverParams, type CollectionSetTokenRoyaltyReceiverResult, type CollectionStatusParams, type CollectionStatusResult, type CollectionTokenCreatorParams, type CollectionTokenCreatorResult, type CollectionUpdateBaseUriParams, type CollectionUpdateBaseUriResult, type CollectionUpdateTokenUriParams, type CollectionUpdateTokenUriResult, CurrencyInfo, CurrencyInput, type CurrencyNamespace, type CurvePresetKey, type DeployErc721Params, type DeployErc721Result, type DeployLazyBatchMintParams, type DeployLazyBatchMintResult, type DeployLazyErc721Params, type DeployLazyErc721Result, type DeployLiquidEditionParams, type DeployLiquidEditionResult, type EventSearchParams, type GeneratePresetCurvesParams, type GeneratePresetCurvesResult, type ImportErc721Params, type ImportNamespace, IntegerInput, type LiquidCurvePreview, type LiquidCurveSegment, type LiquidEditionCurrentPrice, type LiquidEditionMarketState, type LiquidEditionNamespace, type LiquidEditionPoolInfo, type LiquidEditionPoolKey, type LiquidEditionTelemetry, type LiquidFactoryConfig, type LiquidRouterTokenTradeQuote, type ListingBuyParams, type ListingBuyResult, type ListingCancelParams, type ListingCreateParams, type ListingCreateResult, type ListingMarketplaceNamespace, type ListingNamespace, type ListingStatus, type ListingStatusParams, type MediaNamespace, type Nft, NftApprovalRequiredError, type NftAttribute, type NftEvent, type NftMediaEntry, type NftNamespace, type NftSearchParams, type OfferAcceptParams, type OfferAcceptResult, type OfferCancelParams, type OfferCreateParams, type OfferCreateResult, type OfferMarketplaceNamespace, type OfferNamespace, type OfferStatus, type OfferStatusParams, type Pagination, PaymentApprovalRequiredError, type PinMetadataParams, type RareClient, type RareClientCollectionSearchParams, type RareClientConfig, type RareClientContracts, type RareClientEventSearchParams, type RareClientNftGetParams, type RareClientNftSearchParams, type ReleaseAllowlistArtifact, type ReleaseAllowlistConfig, type ReleaseAllowlistInputFormat, type ReleaseAllowlistNamespace, type ReleaseAllowlistWalletProof, type ReleaseConfigureParams, type ReleaseConfigureResult, type ReleaseLimitConfig, type ReleaseLimitsNamespace, type ReleaseMintDirectSaleParams, type ReleaseMintDirectSaleResult, type ReleaseNamespace, type ReleaseSetAllowlistConfigParams, type ReleaseSetAllowlistConfigResult, type ReleaseSetLimitParams, type ReleaseSetLimitResult, type ReleaseStatus, type ReleaseStatusParams, ResolvedCurrency, ResolvedCurrencyWithDecimals, type RouterBuyParams, type RouterSellParams, type RouterSwapTokensParams, type SearchNamespace, type SearchPageResponse, type SellTokenParams, type SetLiquidEditionRenderContractParams, type SetLiquidEditionRenderContractResult, type SwapNamespace, TimestampInput, type TokenContractInfo, type TokenInfo, type TokenNamespace, type TokenStatus, type TokenTradeBaseParams, type TokenTradeExecution, type TokenTradeExecutionRoute, type TokenTradeQuote, type TokenTradeQuoteBase, type TokenTradeQuoteParams, type TokenTradeRawRouteParams, type TokenTradeResult, type TokenTradeRouteMode, type TokenTradeRouteSource, TransactionResult, type UniswapApiTokenTradeQuote, type UserNamespace, type UserProfile, UtilsMerkleProofArtifact, UtilsMerkleProofParams, type UtilsNamespace, UtilsTreeArtifact, UtilsTreeProofArtifact, UtilsTreeProofParams, UtilsTreeProofVerifyParams, type ValidateLiquidCurvesParams, createRareClient };
|
|
2996
|
+
export { AmountInput, type ApprovalSideEffect, ApprovalSideEffectError, type AuctionBidParams, type AuctionBidResult, type AuctionCancelParams, type AuctionCreateParams, type AuctionCreateResult, type AuctionMarketplaceNamespace, type AuctionNamespace, type AuctionSettleParams, type AuctionStatus, type AuctionStatusParams, type BatchAuctionBidParams, type BatchAuctionBidResult, type BatchAuctionCancelParams, type BatchAuctionCancelResult, type BatchAuctionCreateParams, type BatchAuctionCreateResult, type BatchAuctionNamespace, type BatchAuctionRootSource, type BatchAuctionRootsParams, type BatchAuctionSettleParams, type BatchAuctionSettleResult, type BatchAuctionStatus, type BatchAuctionStatusParams, BatchListingNamespace, type BatchOfferAcceptParams, type BatchOfferAcceptResult, type BatchOfferCreateParams, type BatchOfferCreateResult, type BatchOfferNamespace, type BatchOfferRevokeParams, type BatchOfferRevokeResult, type BatchOfferRootSource, type BatchOfferStatus, type BatchOfferStatusParams, type BridgeNamespace, type BridgeParams, type BridgeQuote, type BridgeResult, type BridgeSendParams, BuildUtilsTreeParams, type BuyRareParams, type BuyRareQuote, type BuyRareResult, type BuyTokenParams, type Collection, type CollectionDeployNamespace, type CollectionLockBaseUriParams, type CollectionLockBaseUriResult, type CollectionMintBatchParams, type CollectionMintBatchResult, type CollectionMintConfigParams, type CollectionMintConfigResult, type CollectionMintParams, type CollectionMintResult, type CollectionNamespace, type CollectionPrepareLazyMintParams, type CollectionPrepareLazyMintResult, type CollectionRoyaltyInfoParams, type CollectionRoyaltyInfoResult, type CollectionSearchParams, type CollectionSetDefaultRoyaltyPercentageParams, type CollectionSetDefaultRoyaltyPercentageResult, type CollectionSetDefaultRoyaltyReceiverParams, type CollectionSetDefaultRoyaltyReceiverResult, type CollectionSetTokenRoyaltyReceiverParams, type CollectionSetTokenRoyaltyReceiverResult, type CollectionStatusParams, type CollectionStatusResult, type CollectionTokenCreatorParams, type CollectionTokenCreatorResult, type CollectionUpdateBaseUriParams, type CollectionUpdateBaseUriResult, type CollectionUpdateTokenUriParams, type CollectionUpdateTokenUriResult, CurrencyInfo, CurrencyInput, type CurrencyNamespace, type CurvePresetKey, type DeployErc721Params, type DeployErc721Result, type DeployLazyBatchMintParams, type DeployLazyBatchMintResult, type DeployLazyErc721Params, type DeployLazyErc721Result, type DeployLiquidEditionParams, type DeployLiquidEditionResult, type EventSearchParams, type GeneratePresetCurvesParams, type GeneratePresetCurvesResult, type ImportErc721Params, type ImportNamespace, IntegerInput, type LiquidCurvePreview, type LiquidCurveSegment, type LiquidEditionCurrentPrice, type LiquidEditionMarketState, type LiquidEditionNamespace, type LiquidEditionPoolInfo, type LiquidEditionPoolKey, type LiquidEditionTelemetry, type LiquidFactoryConfig, type LiquidRouterTokenTradeQuote, type ListingBuyParams, type ListingBuyResult, type ListingCancelParams, type ListingCreateParams, type ListingCreateResult, type ListingMarketplaceNamespace, type ListingNamespace, type ListingStatus, type ListingStatusParams, type MediaNamespace, type Nft, NftApprovalRequiredError, type NftAttribute, type NftEvent, type NftMediaEntry, type NftNamespace, type NftSearchParams, type OfferAcceptParams, type OfferAcceptResult, type OfferCancelParams, type OfferCreateParams, type OfferCreateResult, type OfferMarketplaceNamespace, type OfferNamespace, type OfferStatus, type OfferStatusParams, type Pagination, PaymentApprovalRequiredError, type PinMetadataParams, type RareClient, type RareClientCollectionSearchParams, type RareClientConfig, type RareClientContracts, type RareClientEventSearchParams, type RareClientNftGetParams, type RareClientNftSearchParams, type ReleaseAllowlistArtifact, type ReleaseAllowlistConfig, type ReleaseAllowlistInputFormat, type ReleaseAllowlistNamespace, type ReleaseAllowlistWalletProof, type ReleaseConfigureParams, type ReleaseConfigureResult, type ReleaseLimitConfig, type ReleaseLimitsNamespace, type ReleaseMintDirectSaleParams, type ReleaseMintDirectSaleResult, type ReleaseNamespace, type ReleaseSetAllowlistConfigParams, type ReleaseSetAllowlistConfigResult, type ReleaseSetLimitParams, type ReleaseSetLimitResult, type ReleaseStatus, type ReleaseStatusParams, ResolvedCurrency, ResolvedCurrencyWithDecimals, type RouterBuyParams, type RouterSellParams, type RouterSwapTokensParams, type SearchNamespace, type SearchPageResponse, type SellTokenParams, type SetLiquidEditionRenderContractParams, type SetLiquidEditionRenderContractResult, type SwapNamespace, TimestampInput, type TokenContractInfo, type TokenInfo, type TokenNamespace, type TokenStatus, type TokenTradeBaseParams, type TokenTradeExecution, type TokenTradeExecutionRoute, type TokenTradeQuote, type TokenTradeQuoteBase, type TokenTradeQuoteParams, type TokenTradeRawRouteParams, type TokenTradeResult, type TokenTradeRouteMode, type TokenTradeRouteSource, TransactionResult, type UniswapApiTokenTradeQuote, type UserNamespace, type UserProfile, UtilsMerkleProofArtifact, UtilsMerkleProofParams, type UtilsNamespace, UtilsTreeArtifact, UtilsTreeProofArtifact, UtilsTreeProofParams, UtilsTreeProofVerifyParams, type ValidateLiquidCurvesParams, createRareClient };
|