@medialane/sdk 0.55.0 → 0.57.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/dist/evm/index.d.cts +1 -1
- package/dist/evm/index.d.ts +1 -1
- package/dist/{index-Dq4AXt2m.d.ts → index-Bv81mkG7.d.ts} +28 -16
- package/dist/{index-uBEA-1JF.d.cts → index-q-f4hxV5.d.cts} +28 -16
- package/dist/index.cjs +406 -314
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +407 -315
- package/dist/index.js.map +1 -1
- package/dist/solana/index.d.cts +1 -1
- package/dist/solana/index.d.ts +1 -1
- package/dist/starknet/index.cjs +425 -341
- package/dist/starknet/index.cjs.map +1 -1
- package/dist/starknet/index.d.cts +3 -3
- package/dist/starknet/index.d.ts +3 -3
- package/dist/starknet/index.js +426 -342
- package/dist/starknet/index.js.map +1 -1
- package/dist/stellar/index.d.cts +1 -1
- package/dist/stellar/index.d.ts +1 -1
- package/dist/{types-D3PWgk3x.d.cts → types-DNJNR50M.d.cts} +20 -3
- package/dist/{types-D3PWgk3x.d.ts → types-DNJNR50M.d.ts} +20 -3
- package/package.json +1 -1
package/dist/evm/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypedDataDomain, WalletClient, PublicClient } from 'viem';
|
|
2
|
-
import { V as VenueAdapter, C as Chain, R as RegisterOrderParams, A as AdapterTxResult, O as OrderRef, I as IssuanceAdapter,
|
|
2
|
+
import { V as VenueAdapter, C as Chain, R as RegisterOrderParams, A as AdapterTxResult, O as OrderRef, I as IssuanceAdapter, e as CreateCollectionInput, M as MintInput } from '../types-DNJNR50M.cjs';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* EIP-712 order typing for the Medialane EVM venues — byte-identical to the
|
package/dist/evm/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypedDataDomain, WalletClient, PublicClient } from 'viem';
|
|
2
|
-
import { V as VenueAdapter, C as Chain, R as RegisterOrderParams, A as AdapterTxResult, O as OrderRef, I as IssuanceAdapter,
|
|
2
|
+
import { V as VenueAdapter, C as Chain, R as RegisterOrderParams, A as AdapterTxResult, O as OrderRef, I as IssuanceAdapter, e as CreateCollectionInput, M as MintInput } from '../types-DNJNR50M.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* EIP-712 order typing for the Medialane EVM venues — byte-identical to the
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { C as Chain, V as VenueAdapter, O as OrderRef, A as AdapterTxResult, R as RegisterOrderParams } from './types-
|
|
2
|
+
import { C as Chain, V as VenueAdapter, O as OrderRef, A as AdapterTxResult, R as RegisterOrderParams, h as VenueSigner } from './types-DNJNR50M.js';
|
|
3
3
|
import { AccountInterface, constants, TypedData, Call, ProviderInterface } from 'starknet';
|
|
4
4
|
|
|
5
5
|
interface RetryOptions {
|
|
@@ -1925,8 +1925,9 @@ declare class MedialaneClient {
|
|
|
1925
1925
|
interface ResolvedOrder {
|
|
1926
1926
|
/** ERC-20 consideration token address. */
|
|
1927
1927
|
paymentToken: string;
|
|
1928
|
-
/**
|
|
1929
|
-
|
|
1928
|
+
/** Per-unit price in raw token units, as a decimal string. The total paid is
|
|
1929
|
+
* `unitPrice × quantity` (quantity is 1 for ERC-721). */
|
|
1930
|
+
unitPrice: string;
|
|
1930
1931
|
/** Which venue the order lives on. */
|
|
1931
1932
|
standard: "ERC721" | "ERC1155";
|
|
1932
1933
|
}
|
|
@@ -1938,34 +1939,43 @@ interface ResolvedOrder {
|
|
|
1938
1939
|
*/
|
|
1939
1940
|
interface StarknetVenueDeps {
|
|
1940
1941
|
config: ResolvedConfig;
|
|
1942
|
+
/** Read provider for building (counter/approval reads) and the post-tx receipt. */
|
|
1941
1943
|
provider: ProviderInterface;
|
|
1942
|
-
/** Resolve a registered order (payment token,
|
|
1944
|
+
/** Resolve a registered order (payment token, per-unit price, venue) from its digest. */
|
|
1943
1945
|
resolveOrder: (orderRef: OrderRef) => Promise<ResolvedOrder>;
|
|
1944
1946
|
/** Resolve a collection's token standard (from the indexer). */
|
|
1945
1947
|
resolveStandard: (contract: string) => Promise<"ERC721" | "ERC1155">;
|
|
1946
1948
|
}
|
|
1947
1949
|
/**
|
|
1948
|
-
* First-class Starknet venue adapter.
|
|
1949
|
-
*
|
|
1950
|
-
*
|
|
1950
|
+
* First-class Starknet venue adapter. It orchestrates the marketplace protocol
|
|
1951
|
+
* over the chain-neutral {@link StarknetVenueSigner} capability port: it *builds*
|
|
1952
|
+
* typed data + calldata via the pure marketplace builders and *reads* chain state
|
|
1953
|
+
* (counter, approvals, receipt) on `deps.provider`, but it never signs or executes
|
|
1954
|
+
* itself — the app's signer does that (sign + submit + confirm). This is what lets
|
|
1955
|
+
* a single adapter drive every wallet (injected/Cartridge/Privy) and the AVNU
|
|
1956
|
+
* paymaster without knowing they differ.
|
|
1951
1957
|
*/
|
|
1952
|
-
declare class StarknetVenue implements VenueAdapter<
|
|
1958
|
+
declare class StarknetVenue implements VenueAdapter<StarknetVenueSigner> {
|
|
1953
1959
|
private readonly deps;
|
|
1954
1960
|
readonly chain: "STARKNET";
|
|
1955
|
-
private readonly m721;
|
|
1956
|
-
private readonly m1155;
|
|
1957
1961
|
constructor(deps: StarknetVenueDeps);
|
|
1958
|
-
incrementCounter(signer:
|
|
1962
|
+
incrementCounter(signer: StarknetVenueSigner): Promise<AdapterTxResult>;
|
|
1959
1963
|
getOrderDetails(orderRef: OrderRef): Promise<unknown>;
|
|
1960
1964
|
getCounter(address: string): Promise<bigint>;
|
|
1961
|
-
fulfillOrder(signer:
|
|
1965
|
+
fulfillOrder(signer: StarknetVenueSigner, orderRef: OrderRef, opts?: {
|
|
1962
1966
|
quantity?: string;
|
|
1963
1967
|
} & Record<string, string | undefined>): Promise<AdapterTxResult>;
|
|
1964
|
-
cancelOrder(signer:
|
|
1965
|
-
registerOrder(signer:
|
|
1968
|
+
cancelOrder(signer: StarknetVenueSigner, orderRef: OrderRef): Promise<AdapterTxResult>;
|
|
1969
|
+
registerOrder(signer: StarknetVenueSigner, p: RegisterOrderParams): Promise<AdapterTxResult & {
|
|
1966
1970
|
orderRef: OrderRef;
|
|
1967
1971
|
}>;
|
|
1968
|
-
private
|
|
1972
|
+
private readCounter;
|
|
1973
|
+
/** 721 listing approval: `get_approved(tokenId) == marketplace` ⇒ no approve. */
|
|
1974
|
+
private approval721ForListing;
|
|
1975
|
+
/** 1155 listing approval: `is_approved_for_all(owner, marketplace)`. */
|
|
1976
|
+
private approval1155ForListing;
|
|
1977
|
+
/** Offers always approve the ERC-20 spend (no read). */
|
|
1978
|
+
private approvalForErc20;
|
|
1969
1979
|
/** The canonical Starknet order id = the contract-emitted `OrderCreated`
|
|
1970
1980
|
* hash (`keys[1]`), which is exactly what the indexer stores. */
|
|
1971
1981
|
private orderRefFromReceipt;
|
|
@@ -8887,4 +8897,6 @@ declare function build1155OrderTypedData(message: Record<string, unknown>, chain
|
|
|
8887
8897
|
declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
8888
8898
|
declare function build1155CancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
8889
8899
|
|
|
8890
|
-
|
|
8900
|
+
type StarknetVenueSigner = VenueSigner<TypedData, Call>;
|
|
8901
|
+
|
|
8902
|
+
export { type ApiRewardsConfig as $, ADMIN_HEADERS as A, type ApiCreatorProfile as B, type ApiIntent as C, type ApiIntentCreated as D, type ApiKeyStatus as E, type ApiMeta as F, type ApiMetadataSignedUrl as G, type ApiMetadataUpload as H, type ApiOrder as I, type ApiOrderConsideration as J, type ApiOrderOffer as K, type ApiOrderPrice as L, type ApiOrderTokenMeta as M, type ApiOrderTxHash as N, type ApiOrdersQuery as O, type ApiPointEvent as P, type ApiPortalKey as Q, type ApiPortalKeyCreated as R, type ServiceDefinition as S, type ApiPortalMe as T, type ApiPublicRemix as U, type ApiRemixOffer as V, type ApiRemixOfferPrice as W, type ApiRemixOffersQuery as X, type ApiResponse as Y, type ApiRewardsBadge as Z, type ApiRewardsBatchEntry as _, type ServiceCapability as a, type FeeSurface as a$, type ApiRewardsLeaderboardEntry as a0, type ApiRewardsLevel as a1, type ApiSearchCollectionResult as a2, type ApiSearchCreatorResult as a3, type ApiSearchResult as a4, type ApiSearchTokenResult as a5, type ApiToken as a6, type ApiTokenBalance as a7, type ApiTokenMetadata as a8, type ApiUsageDay as a9, type CreateCreatorCoinParams as aA, type CreateDropParams as aB, type CreateGrantOpts as aC, type CreateListing1155Params as aD, type CreateListingIntentParams as aE, type CreateListingParams as aF, type CreateMintIntentParams as aG, type CreatePopCollectionParams as aH, type CreateRemixOfferParams as aI, type CreateSponsorshipOfferParams as aJ, type CreateTicketCollectionParams as aK, type CreateWebhookParams as aL, CreatorCoinFactoryABI as aM, type CreatorCoinPrice as aN, type CreatorCoinReceiptLike as aO, CreatorCoinService as aP, type DeployCollectionParams as aQ, DropCollectionABI as aR, DropFactoryABI as aS, type DropMintStatus as aT, DropService as aU, ERC1155CollectionService as aV, type EkuboLaunchParams as aW, type EkuboPoolParams as aX, type EnforcementDeclaration as aY, type FeeConfig as aZ, FeeConfigSchema as a_, type ApiUserRewards as aa, type ApiUserWallet as ab, type ApiWebhookCreated as ac, type ApiWebhookEndpoint as ad, type AutoRemixOfferParams as ae, type BatchMintEditionParams as af, type BuildFeeCallParams as ag, MAX_SUPPLY as ah, MIN_SUPPLY as ai, type CancelOrder1155Params as aj, type CancelOrderIntentParams as ak, type CancelOrderParams as al, type Cancelation as am, type CartItem as an, type ChainFilter as ao, type ClaimConditions as ap, ClubService as aq, type CollectionSort as ar, type CollectionTokensSort as as, type ConfirmRemixOfferParams as at, type ConfirmSelfRemixParams as au, type ConsiderationItem as av, type CreateClubParams as aw, type CreateCollectionIntentParams as ax, type CreateCollectionParams as ay, type CreateCounterOfferIntentParams as az, ADMIN_SCOPE as b, type TxResult as b$, type FulfillOrder1155Params as b0, type FulfillOrderIntentParams as b1, type FulfillOrderParams as b2, IPClubABI as b3, IPClubNFTABI as b4, IPCollection1155ABI as b5, IPCollection1155FactoryABI as b6, IPCollectionABI as b7, IPGenesisABI as b8, IPMarketplaceABI as b9, type OpenLicense as bA, type Order as bB, type OrderDetails as bC, type OrderParameters as bD, type OrderStatus as bE, POPCollectionABI as bF, POPFactoryABI as bG, type ParsedAdminHeaders as bH, type PopBatchEligibilityItem as bI, type PopClaimStatus as bJ, type PopEventType as bK, PopService as bL, type RemixOfferStatus as bM, type RequestSiwsTokenArgs as bN, type ResolvedConfig as bO, type ResolvedFeeConfig as bP, type ResolvedOrder as bQ, type RetryOptions as bR, type ServiceEventDeclaration as bS, type SiwsSigner as bT, type SortOrder as bU, SponsorshipService as bV, StarknetVenue as bW, type StarknetVenueDeps as bX, type StarknetVenueSigner as bY, type TenantPlan as bZ, TicketService as b_, IPNftABI as ba, IPSponsorshipABI as bb, IPTicketCollectionABI as bc, IPTicketCollectionFactoryABI as bd, type IPType as be, type IntentCall as bf, type IntentStatus as bg, type IntentType as bh, type IpAttribute as bi, type IpNftMetadata as bj, LAUNCH_PRICE_QUOTE_PER_COIN as bk, type MakeOffer1155Params as bl, type MakeOfferIntentParams as bm, type MakeOfferParams as bn, MarketplaceModule as bo, Medialane1155ABI as bp, Medialane1155Module as bq, MedialaneApiError as br, MedialaneClient as bs, type MedialaneConfig as bt, MedialaneError as bu, type MedialaneErrorCode as bv, type MintEditionParams as bw, type MintParams as bx, OPEN_LICENSES as by, type OfferItem as bz, type ActivityType as c, VALIDATED_EKUBO_PARAMS as c0, type WebhookEventType as c1, type WebhookStatus as c2, adminRequestDigest as c3, build1155CancellationTypedData as c4, build1155OrderTypedData as c5, buildAdminSessionTypedData as c6, buildCancellationTypedData as c7, buildCreateCreatorCoinCall as c8, buildFeeCall as c9, verifyAdminRequestSig as cA, buildLaunchOnEkuboCalls as ca, buildOrderTypedData as cb, buybackQuoteRaw as cc, toRaw as cd, createAdminSessionGrant as ce, encodeAdminHeaders as cf, encodeByteArray as cg, fdvHuman as ch, getCreatorCoinPrice as ci, getSiwsStorageKey as cj, getStoredSiwsToken as ck, isSiwsTokenValid as cl, normalizeSiwsSignature as cm, parseAdminHeaders as cn, parseCreatorCoinCreated as co, randomNonce as cp, requestSiwsToken as cq, resolveConfig as cr, resolveFeeConfig as cs, sessionKeyHashOf as ct, signAdminRequest as cu, storeSiwsToken as cv, teamCoinsRaw as cw, validateName as cx, validateSupply as cy, validateSymbol as cz, type AddSupplyParams as d, type AdminGrant as e, type AdminRequest as f, type AdminRequestSig as g, type AdminSession as h, type AdminSessionTypedDataInput as i, type ApiActivitiesQuery as j, type ApiActivity as k, type ApiActivityPrice as l, type ApiAdminCollectionClaim as m, type ApiAppSource as n, type ApiChain as o, ApiClient as p, type ApiCoin as q, type ApiCoinsQuery as r, type ApiCollection as s, type ApiCollectionClaim as t, type ApiCollectionProfile as u, type ApiCollectionSlugClaim as v, type ApiCollectionsQuery as w, type ApiComment as x, type ApiCounterOffersQuery as y, type ApiCreatorListResult as z };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { C as Chain, V as VenueAdapter, O as OrderRef, A as AdapterTxResult, R as RegisterOrderParams } from './types-
|
|
2
|
+
import { C as Chain, V as VenueAdapter, O as OrderRef, A as AdapterTxResult, R as RegisterOrderParams, h as VenueSigner } from './types-DNJNR50M.cjs';
|
|
3
3
|
import { AccountInterface, constants, TypedData, Call, ProviderInterface } from 'starknet';
|
|
4
4
|
|
|
5
5
|
interface RetryOptions {
|
|
@@ -1925,8 +1925,9 @@ declare class MedialaneClient {
|
|
|
1925
1925
|
interface ResolvedOrder {
|
|
1926
1926
|
/** ERC-20 consideration token address. */
|
|
1927
1927
|
paymentToken: string;
|
|
1928
|
-
/**
|
|
1929
|
-
|
|
1928
|
+
/** Per-unit price in raw token units, as a decimal string. The total paid is
|
|
1929
|
+
* `unitPrice × quantity` (quantity is 1 for ERC-721). */
|
|
1930
|
+
unitPrice: string;
|
|
1930
1931
|
/** Which venue the order lives on. */
|
|
1931
1932
|
standard: "ERC721" | "ERC1155";
|
|
1932
1933
|
}
|
|
@@ -1938,34 +1939,43 @@ interface ResolvedOrder {
|
|
|
1938
1939
|
*/
|
|
1939
1940
|
interface StarknetVenueDeps {
|
|
1940
1941
|
config: ResolvedConfig;
|
|
1942
|
+
/** Read provider for building (counter/approval reads) and the post-tx receipt. */
|
|
1941
1943
|
provider: ProviderInterface;
|
|
1942
|
-
/** Resolve a registered order (payment token,
|
|
1944
|
+
/** Resolve a registered order (payment token, per-unit price, venue) from its digest. */
|
|
1943
1945
|
resolveOrder: (orderRef: OrderRef) => Promise<ResolvedOrder>;
|
|
1944
1946
|
/** Resolve a collection's token standard (from the indexer). */
|
|
1945
1947
|
resolveStandard: (contract: string) => Promise<"ERC721" | "ERC1155">;
|
|
1946
1948
|
}
|
|
1947
1949
|
/**
|
|
1948
|
-
* First-class Starknet venue adapter.
|
|
1949
|
-
*
|
|
1950
|
-
*
|
|
1950
|
+
* First-class Starknet venue adapter. It orchestrates the marketplace protocol
|
|
1951
|
+
* over the chain-neutral {@link StarknetVenueSigner} capability port: it *builds*
|
|
1952
|
+
* typed data + calldata via the pure marketplace builders and *reads* chain state
|
|
1953
|
+
* (counter, approvals, receipt) on `deps.provider`, but it never signs or executes
|
|
1954
|
+
* itself — the app's signer does that (sign + submit + confirm). This is what lets
|
|
1955
|
+
* a single adapter drive every wallet (injected/Cartridge/Privy) and the AVNU
|
|
1956
|
+
* paymaster without knowing they differ.
|
|
1951
1957
|
*/
|
|
1952
|
-
declare class StarknetVenue implements VenueAdapter<
|
|
1958
|
+
declare class StarknetVenue implements VenueAdapter<StarknetVenueSigner> {
|
|
1953
1959
|
private readonly deps;
|
|
1954
1960
|
readonly chain: "STARKNET";
|
|
1955
|
-
private readonly m721;
|
|
1956
|
-
private readonly m1155;
|
|
1957
1961
|
constructor(deps: StarknetVenueDeps);
|
|
1958
|
-
incrementCounter(signer:
|
|
1962
|
+
incrementCounter(signer: StarknetVenueSigner): Promise<AdapterTxResult>;
|
|
1959
1963
|
getOrderDetails(orderRef: OrderRef): Promise<unknown>;
|
|
1960
1964
|
getCounter(address: string): Promise<bigint>;
|
|
1961
|
-
fulfillOrder(signer:
|
|
1965
|
+
fulfillOrder(signer: StarknetVenueSigner, orderRef: OrderRef, opts?: {
|
|
1962
1966
|
quantity?: string;
|
|
1963
1967
|
} & Record<string, string | undefined>): Promise<AdapterTxResult>;
|
|
1964
|
-
cancelOrder(signer:
|
|
1965
|
-
registerOrder(signer:
|
|
1968
|
+
cancelOrder(signer: StarknetVenueSigner, orderRef: OrderRef): Promise<AdapterTxResult>;
|
|
1969
|
+
registerOrder(signer: StarknetVenueSigner, p: RegisterOrderParams): Promise<AdapterTxResult & {
|
|
1966
1970
|
orderRef: OrderRef;
|
|
1967
1971
|
}>;
|
|
1968
|
-
private
|
|
1972
|
+
private readCounter;
|
|
1973
|
+
/** 721 listing approval: `get_approved(tokenId) == marketplace` ⇒ no approve. */
|
|
1974
|
+
private approval721ForListing;
|
|
1975
|
+
/** 1155 listing approval: `is_approved_for_all(owner, marketplace)`. */
|
|
1976
|
+
private approval1155ForListing;
|
|
1977
|
+
/** Offers always approve the ERC-20 spend (no read). */
|
|
1978
|
+
private approvalForErc20;
|
|
1969
1979
|
/** The canonical Starknet order id = the contract-emitted `OrderCreated`
|
|
1970
1980
|
* hash (`keys[1]`), which is exactly what the indexer stores. */
|
|
1971
1981
|
private orderRefFromReceipt;
|
|
@@ -8887,4 +8897,6 @@ declare function build1155OrderTypedData(message: Record<string, unknown>, chain
|
|
|
8887
8897
|
declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
8888
8898
|
declare function build1155CancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
8889
8899
|
|
|
8890
|
-
|
|
8900
|
+
type StarknetVenueSigner = VenueSigner<TypedData, Call>;
|
|
8901
|
+
|
|
8902
|
+
export { type ApiRewardsConfig as $, ADMIN_HEADERS as A, type ApiCreatorProfile as B, type ApiIntent as C, type ApiIntentCreated as D, type ApiKeyStatus as E, type ApiMeta as F, type ApiMetadataSignedUrl as G, type ApiMetadataUpload as H, type ApiOrder as I, type ApiOrderConsideration as J, type ApiOrderOffer as K, type ApiOrderPrice as L, type ApiOrderTokenMeta as M, type ApiOrderTxHash as N, type ApiOrdersQuery as O, type ApiPointEvent as P, type ApiPortalKey as Q, type ApiPortalKeyCreated as R, type ServiceDefinition as S, type ApiPortalMe as T, type ApiPublicRemix as U, type ApiRemixOffer as V, type ApiRemixOfferPrice as W, type ApiRemixOffersQuery as X, type ApiResponse as Y, type ApiRewardsBadge as Z, type ApiRewardsBatchEntry as _, type ServiceCapability as a, type FeeSurface as a$, type ApiRewardsLeaderboardEntry as a0, type ApiRewardsLevel as a1, type ApiSearchCollectionResult as a2, type ApiSearchCreatorResult as a3, type ApiSearchResult as a4, type ApiSearchTokenResult as a5, type ApiToken as a6, type ApiTokenBalance as a7, type ApiTokenMetadata as a8, type ApiUsageDay as a9, type CreateCreatorCoinParams as aA, type CreateDropParams as aB, type CreateGrantOpts as aC, type CreateListing1155Params as aD, type CreateListingIntentParams as aE, type CreateListingParams as aF, type CreateMintIntentParams as aG, type CreatePopCollectionParams as aH, type CreateRemixOfferParams as aI, type CreateSponsorshipOfferParams as aJ, type CreateTicketCollectionParams as aK, type CreateWebhookParams as aL, CreatorCoinFactoryABI as aM, type CreatorCoinPrice as aN, type CreatorCoinReceiptLike as aO, CreatorCoinService as aP, type DeployCollectionParams as aQ, DropCollectionABI as aR, DropFactoryABI as aS, type DropMintStatus as aT, DropService as aU, ERC1155CollectionService as aV, type EkuboLaunchParams as aW, type EkuboPoolParams as aX, type EnforcementDeclaration as aY, type FeeConfig as aZ, FeeConfigSchema as a_, type ApiUserRewards as aa, type ApiUserWallet as ab, type ApiWebhookCreated as ac, type ApiWebhookEndpoint as ad, type AutoRemixOfferParams as ae, type BatchMintEditionParams as af, type BuildFeeCallParams as ag, MAX_SUPPLY as ah, MIN_SUPPLY as ai, type CancelOrder1155Params as aj, type CancelOrderIntentParams as ak, type CancelOrderParams as al, type Cancelation as am, type CartItem as an, type ChainFilter as ao, type ClaimConditions as ap, ClubService as aq, type CollectionSort as ar, type CollectionTokensSort as as, type ConfirmRemixOfferParams as at, type ConfirmSelfRemixParams as au, type ConsiderationItem as av, type CreateClubParams as aw, type CreateCollectionIntentParams as ax, type CreateCollectionParams as ay, type CreateCounterOfferIntentParams as az, ADMIN_SCOPE as b, type TxResult as b$, type FulfillOrder1155Params as b0, type FulfillOrderIntentParams as b1, type FulfillOrderParams as b2, IPClubABI as b3, IPClubNFTABI as b4, IPCollection1155ABI as b5, IPCollection1155FactoryABI as b6, IPCollectionABI as b7, IPGenesisABI as b8, IPMarketplaceABI as b9, type OpenLicense as bA, type Order as bB, type OrderDetails as bC, type OrderParameters as bD, type OrderStatus as bE, POPCollectionABI as bF, POPFactoryABI as bG, type ParsedAdminHeaders as bH, type PopBatchEligibilityItem as bI, type PopClaimStatus as bJ, type PopEventType as bK, PopService as bL, type RemixOfferStatus as bM, type RequestSiwsTokenArgs as bN, type ResolvedConfig as bO, type ResolvedFeeConfig as bP, type ResolvedOrder as bQ, type RetryOptions as bR, type ServiceEventDeclaration as bS, type SiwsSigner as bT, type SortOrder as bU, SponsorshipService as bV, StarknetVenue as bW, type StarknetVenueDeps as bX, type StarknetVenueSigner as bY, type TenantPlan as bZ, TicketService as b_, IPNftABI as ba, IPSponsorshipABI as bb, IPTicketCollectionABI as bc, IPTicketCollectionFactoryABI as bd, type IPType as be, type IntentCall as bf, type IntentStatus as bg, type IntentType as bh, type IpAttribute as bi, type IpNftMetadata as bj, LAUNCH_PRICE_QUOTE_PER_COIN as bk, type MakeOffer1155Params as bl, type MakeOfferIntentParams as bm, type MakeOfferParams as bn, MarketplaceModule as bo, Medialane1155ABI as bp, Medialane1155Module as bq, MedialaneApiError as br, MedialaneClient as bs, type MedialaneConfig as bt, MedialaneError as bu, type MedialaneErrorCode as bv, type MintEditionParams as bw, type MintParams as bx, OPEN_LICENSES as by, type OfferItem as bz, type ActivityType as c, VALIDATED_EKUBO_PARAMS as c0, type WebhookEventType as c1, type WebhookStatus as c2, adminRequestDigest as c3, build1155CancellationTypedData as c4, build1155OrderTypedData as c5, buildAdminSessionTypedData as c6, buildCancellationTypedData as c7, buildCreateCreatorCoinCall as c8, buildFeeCall as c9, verifyAdminRequestSig as cA, buildLaunchOnEkuboCalls as ca, buildOrderTypedData as cb, buybackQuoteRaw as cc, toRaw as cd, createAdminSessionGrant as ce, encodeAdminHeaders as cf, encodeByteArray as cg, fdvHuman as ch, getCreatorCoinPrice as ci, getSiwsStorageKey as cj, getStoredSiwsToken as ck, isSiwsTokenValid as cl, normalizeSiwsSignature as cm, parseAdminHeaders as cn, parseCreatorCoinCreated as co, randomNonce as cp, requestSiwsToken as cq, resolveConfig as cr, resolveFeeConfig as cs, sessionKeyHashOf as ct, signAdminRequest as cu, storeSiwsToken as cv, teamCoinsRaw as cw, validateName as cx, validateSupply as cy, validateSymbol as cz, type AddSupplyParams as d, type AdminGrant as e, type AdminRequest as f, type AdminRequestSig as g, type AdminSession as h, type AdminSessionTypedDataInput as i, type ApiActivitiesQuery as j, type ApiActivity as k, type ApiActivityPrice as l, type ApiAdminCollectionClaim as m, type ApiAppSource as n, type ApiChain as o, ApiClient as p, type ApiCoin as q, type ApiCoinsQuery as r, type ApiCollection as s, type ApiCollectionClaim as t, type ApiCollectionProfile as u, type ApiCollectionSlugClaim as v, type ApiCollectionsQuery as w, type ApiComment as x, type ApiCounterOffersQuery as y, type ApiCreatorListResult as z };
|