@medialane/sdk 0.59.0 → 0.61.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-D-sFKbtL.d.ts → index-DfgwOqxs.d.ts} +25 -14
- package/dist/{index-DjraRZJ1.d.cts → index-Dgw8Wl8U.d.cts} +25 -14
- package/dist/index.cjs +414 -324
- 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 +415 -325
- 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 +433 -351
- 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 +434 -352
- 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-V6imkXvR.d.cts → types-Bx3ax9lW.d.cts} +20 -3
- package/dist/{types-V6imkXvR.d.ts → types-Bx3ax9lW.d.ts} +20 -3
- package/package.json +3 -3
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-Bx3ax9lW.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-Bx3ax9lW.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-Bx3ax9lW.js';
|
|
3
3
|
import { AccountInterface, constants, TypedData, Call, ProviderInterface } from 'starknet';
|
|
4
4
|
|
|
5
5
|
interface RetryOptions {
|
|
@@ -1973,34 +1973,43 @@ interface ResolvedOrder {
|
|
|
1973
1973
|
*/
|
|
1974
1974
|
interface StarknetVenueDeps {
|
|
1975
1975
|
config: ResolvedConfig;
|
|
1976
|
+
/** Read provider for building (counter/approval reads) and the post-tx receipt. */
|
|
1976
1977
|
provider: ProviderInterface;
|
|
1977
|
-
/** Resolve a registered order (payment token,
|
|
1978
|
+
/** Resolve a registered order (payment token, per-unit price, venue) from its digest. */
|
|
1978
1979
|
resolveOrder: (orderRef: OrderRef) => Promise<ResolvedOrder>;
|
|
1979
1980
|
/** Resolve a collection's token standard (from the indexer). */
|
|
1980
1981
|
resolveStandard: (contract: string) => Promise<"ERC721" | "ERC1155">;
|
|
1981
1982
|
}
|
|
1982
1983
|
/**
|
|
1983
|
-
* First-class Starknet venue adapter.
|
|
1984
|
-
*
|
|
1985
|
-
*
|
|
1984
|
+
* First-class Starknet venue adapter. It orchestrates the marketplace protocol
|
|
1985
|
+
* over the chain-neutral {@link StarknetVenueSigner} capability port: it *builds*
|
|
1986
|
+
* typed data + calldata via the pure marketplace builders and *reads* chain state
|
|
1987
|
+
* (counter, approvals, receipt) on `deps.provider`, but it never signs or executes
|
|
1988
|
+
* itself — the app's signer does that (sign + submit + confirm). This is what lets
|
|
1989
|
+
* a single adapter drive every wallet (injected/Cartridge/Privy) and the AVNU
|
|
1990
|
+
* paymaster without knowing they differ.
|
|
1986
1991
|
*/
|
|
1987
|
-
declare class StarknetVenue implements VenueAdapter<
|
|
1992
|
+
declare class StarknetVenue implements VenueAdapter<StarknetVenueSigner> {
|
|
1988
1993
|
private readonly deps;
|
|
1989
1994
|
readonly chain: "STARKNET";
|
|
1990
|
-
private readonly m721;
|
|
1991
|
-
private readonly m1155;
|
|
1992
1995
|
constructor(deps: StarknetVenueDeps);
|
|
1993
|
-
incrementCounter(signer:
|
|
1996
|
+
incrementCounter(signer: StarknetVenueSigner): Promise<AdapterTxResult>;
|
|
1994
1997
|
getOrderDetails(orderRef: OrderRef): Promise<unknown>;
|
|
1995
1998
|
getCounter(address: string): Promise<bigint>;
|
|
1996
|
-
fulfillOrder(signer:
|
|
1999
|
+
fulfillOrder(signer: StarknetVenueSigner, orderRef: OrderRef, opts?: {
|
|
1997
2000
|
quantity?: string;
|
|
1998
2001
|
} & Record<string, string | undefined>): Promise<AdapterTxResult>;
|
|
1999
|
-
cancelOrder(signer:
|
|
2000
|
-
registerOrder(signer:
|
|
2002
|
+
cancelOrder(signer: StarknetVenueSigner, orderRef: OrderRef): Promise<AdapterTxResult>;
|
|
2003
|
+
registerOrder(signer: StarknetVenueSigner, p: RegisterOrderParams): Promise<AdapterTxResult & {
|
|
2001
2004
|
orderRef: OrderRef;
|
|
2002
2005
|
}>;
|
|
2003
|
-
private
|
|
2006
|
+
private readCounter;
|
|
2007
|
+
/** 721 listing approval: `get_approved(tokenId) == marketplace` ⇒ no approve. */
|
|
2008
|
+
private approval721ForListing;
|
|
2009
|
+
/** 1155 listing approval: `is_approved_for_all(owner, marketplace)`. */
|
|
2010
|
+
private approval1155ForListing;
|
|
2011
|
+
/** Offers always approve the ERC-20 spend (no read). */
|
|
2012
|
+
private approvalForErc20;
|
|
2004
2013
|
/** The canonical Starknet order id = the contract-emitted `OrderCreated`
|
|
2005
2014
|
* hash (`keys[1]`), which is exactly what the indexer stores. */
|
|
2006
2015
|
private orderRefFromReceipt;
|
|
@@ -10373,4 +10382,6 @@ declare function build1155OrderTypedData(message: Record<string, unknown>, chain
|
|
|
10373
10382
|
declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
10374
10383
|
declare function build1155CancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
10375
10384
|
|
|
10376
|
-
|
|
10385
|
+
type StarknetVenueSigner = VenueSigner<TypedData, Call>;
|
|
10386
|
+
|
|
10387
|
+
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, FeeConfigSchema 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 DeployClubParams as aQ, type DeployCollectionParams as aR, DropCollectionABI as aS, DropFactoryABI as aT, type DropMintStatus as aU, DropService as aV, ERC1155CollectionService as aW, type EkuboLaunchParams as aX, type EkuboPoolParams as aY, type EnforcementDeclaration as aZ, type FeeConfig 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 StarknetVenueDeps as b$, type FeeSurface as b0, type FulfillOrder1155Params as b1, type FulfillOrderIntentParams as b2, type FulfillOrderParams as b3, IPClubABI as b4, IPClubCollectionABI as b5, IPClubFactoryABI as b6, IPClubNFTABI as b7, IPCollection1155ABI as b8, IPCollection1155FactoryABI as b9, type MintEditionParams as bA, type MintParams as bB, OPEN_LICENSES as bC, type OfferItem as bD, type OpenLicense as bE, type Order as bF, type OrderDetails as bG, type OrderParameters as bH, type OrderStatus as bI, POPCollectionABI as bJ, POPFactoryABI as bK, type ParsedAdminHeaders as bL, type PopBatchEligibilityItem as bM, type PopClaimStatus as bN, type PopEventType as bO, PopService as bP, type RemixOfferStatus as bQ, type RequestSiwsTokenArgs as bR, type ResolvedConfig as bS, type ResolvedFeeConfig as bT, type ResolvedOrder as bU, type RetryOptions as bV, type ServiceEventDeclaration as bW, type SiwsSigner as bX, type SortOrder as bY, SponsorshipService as bZ, StarknetVenue as b_, IPCollectionABI as ba, IPGenesisABI as bb, IPMarketplaceABI as bc, IPNftABI as bd, IPSponsorshipABI as be, IPSponsorshipLicenseABI as bf, IPTicketCollectionABI as bg, IPTicketCollectionFactoryABI as bh, type IPType as bi, type IntentCall as bj, type IntentStatus as bk, type IntentType as bl, type IpAttribute as bm, type IpNftMetadata as bn, LAUNCH_PRICE_QUOTE_PER_COIN as bo, type MakeOffer1155Params as bp, type MakeOfferIntentParams as bq, type MakeOfferParams as br, MarketplaceModule as bs, Medialane1155ABI as bt, Medialane1155Module as bu, MedialaneApiError as bv, MedialaneClient as bw, type MedialaneConfig as bx, MedialaneError as by, type MedialaneErrorCode as bz, type ActivityType as c, type StarknetVenueSigner as c0, type TenantPlan as c1, TicketService as c2, type TxResult as c3, VALIDATED_EKUBO_PARAMS as c4, type WebhookEventType as c5, type WebhookStatus as c6, adminRequestDigest as c7, build1155CancellationTypedData as c8, build1155OrderTypedData as c9, teamCoinsRaw as cA, validateName as cB, validateSupply as cC, validateSymbol as cD, verifyAdminRequestSig as cE, buildAdminSessionTypedData as ca, buildCancellationTypedData as cb, buildCreateCreatorCoinCall as cc, buildFeeCall as cd, buildLaunchOnEkuboCalls as ce, buildOrderTypedData as cf, buybackQuoteRaw as cg, toRaw as ch, createAdminSessionGrant as ci, encodeAdminHeaders as cj, encodeByteArray as ck, fdvHuman as cl, getCreatorCoinPrice as cm, getSiwsStorageKey as cn, getStoredSiwsToken as co, isSiwsTokenValid as cp, normalizeSiwsSignature as cq, parseAdminHeaders as cr, parseCreatorCoinCreated as cs, randomNonce as ct, requestSiwsToken as cu, resolveConfig as cv, resolveFeeConfig as cw, sessionKeyHashOf as cx, signAdminRequest as cy, storeSiwsToken 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-Bx3ax9lW.cjs';
|
|
3
3
|
import { AccountInterface, constants, TypedData, Call, ProviderInterface } from 'starknet';
|
|
4
4
|
|
|
5
5
|
interface RetryOptions {
|
|
@@ -1973,34 +1973,43 @@ interface ResolvedOrder {
|
|
|
1973
1973
|
*/
|
|
1974
1974
|
interface StarknetVenueDeps {
|
|
1975
1975
|
config: ResolvedConfig;
|
|
1976
|
+
/** Read provider for building (counter/approval reads) and the post-tx receipt. */
|
|
1976
1977
|
provider: ProviderInterface;
|
|
1977
|
-
/** Resolve a registered order (payment token,
|
|
1978
|
+
/** Resolve a registered order (payment token, per-unit price, venue) from its digest. */
|
|
1978
1979
|
resolveOrder: (orderRef: OrderRef) => Promise<ResolvedOrder>;
|
|
1979
1980
|
/** Resolve a collection's token standard (from the indexer). */
|
|
1980
1981
|
resolveStandard: (contract: string) => Promise<"ERC721" | "ERC1155">;
|
|
1981
1982
|
}
|
|
1982
1983
|
/**
|
|
1983
|
-
* First-class Starknet venue adapter.
|
|
1984
|
-
*
|
|
1985
|
-
*
|
|
1984
|
+
* First-class Starknet venue adapter. It orchestrates the marketplace protocol
|
|
1985
|
+
* over the chain-neutral {@link StarknetVenueSigner} capability port: it *builds*
|
|
1986
|
+
* typed data + calldata via the pure marketplace builders and *reads* chain state
|
|
1987
|
+
* (counter, approvals, receipt) on `deps.provider`, but it never signs or executes
|
|
1988
|
+
* itself — the app's signer does that (sign + submit + confirm). This is what lets
|
|
1989
|
+
* a single adapter drive every wallet (injected/Cartridge/Privy) and the AVNU
|
|
1990
|
+
* paymaster without knowing they differ.
|
|
1986
1991
|
*/
|
|
1987
|
-
declare class StarknetVenue implements VenueAdapter<
|
|
1992
|
+
declare class StarknetVenue implements VenueAdapter<StarknetVenueSigner> {
|
|
1988
1993
|
private readonly deps;
|
|
1989
1994
|
readonly chain: "STARKNET";
|
|
1990
|
-
private readonly m721;
|
|
1991
|
-
private readonly m1155;
|
|
1992
1995
|
constructor(deps: StarknetVenueDeps);
|
|
1993
|
-
incrementCounter(signer:
|
|
1996
|
+
incrementCounter(signer: StarknetVenueSigner): Promise<AdapterTxResult>;
|
|
1994
1997
|
getOrderDetails(orderRef: OrderRef): Promise<unknown>;
|
|
1995
1998
|
getCounter(address: string): Promise<bigint>;
|
|
1996
|
-
fulfillOrder(signer:
|
|
1999
|
+
fulfillOrder(signer: StarknetVenueSigner, orderRef: OrderRef, opts?: {
|
|
1997
2000
|
quantity?: string;
|
|
1998
2001
|
} & Record<string, string | undefined>): Promise<AdapterTxResult>;
|
|
1999
|
-
cancelOrder(signer:
|
|
2000
|
-
registerOrder(signer:
|
|
2002
|
+
cancelOrder(signer: StarknetVenueSigner, orderRef: OrderRef): Promise<AdapterTxResult>;
|
|
2003
|
+
registerOrder(signer: StarknetVenueSigner, p: RegisterOrderParams): Promise<AdapterTxResult & {
|
|
2001
2004
|
orderRef: OrderRef;
|
|
2002
2005
|
}>;
|
|
2003
|
-
private
|
|
2006
|
+
private readCounter;
|
|
2007
|
+
/** 721 listing approval: `get_approved(tokenId) == marketplace` ⇒ no approve. */
|
|
2008
|
+
private approval721ForListing;
|
|
2009
|
+
/** 1155 listing approval: `is_approved_for_all(owner, marketplace)`. */
|
|
2010
|
+
private approval1155ForListing;
|
|
2011
|
+
/** Offers always approve the ERC-20 spend (no read). */
|
|
2012
|
+
private approvalForErc20;
|
|
2004
2013
|
/** The canonical Starknet order id = the contract-emitted `OrderCreated`
|
|
2005
2014
|
* hash (`keys[1]`), which is exactly what the indexer stores. */
|
|
2006
2015
|
private orderRefFromReceipt;
|
|
@@ -10373,4 +10382,6 @@ declare function build1155OrderTypedData(message: Record<string, unknown>, chain
|
|
|
10373
10382
|
declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
10374
10383
|
declare function build1155CancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
|
|
10375
10384
|
|
|
10376
|
-
|
|
10385
|
+
type StarknetVenueSigner = VenueSigner<TypedData, Call>;
|
|
10386
|
+
|
|
10387
|
+
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, FeeConfigSchema 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 DeployClubParams as aQ, type DeployCollectionParams as aR, DropCollectionABI as aS, DropFactoryABI as aT, type DropMintStatus as aU, DropService as aV, ERC1155CollectionService as aW, type EkuboLaunchParams as aX, type EkuboPoolParams as aY, type EnforcementDeclaration as aZ, type FeeConfig 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 StarknetVenueDeps as b$, type FeeSurface as b0, type FulfillOrder1155Params as b1, type FulfillOrderIntentParams as b2, type FulfillOrderParams as b3, IPClubABI as b4, IPClubCollectionABI as b5, IPClubFactoryABI as b6, IPClubNFTABI as b7, IPCollection1155ABI as b8, IPCollection1155FactoryABI as b9, type MintEditionParams as bA, type MintParams as bB, OPEN_LICENSES as bC, type OfferItem as bD, type OpenLicense as bE, type Order as bF, type OrderDetails as bG, type OrderParameters as bH, type OrderStatus as bI, POPCollectionABI as bJ, POPFactoryABI as bK, type ParsedAdminHeaders as bL, type PopBatchEligibilityItem as bM, type PopClaimStatus as bN, type PopEventType as bO, PopService as bP, type RemixOfferStatus as bQ, type RequestSiwsTokenArgs as bR, type ResolvedConfig as bS, type ResolvedFeeConfig as bT, type ResolvedOrder as bU, type RetryOptions as bV, type ServiceEventDeclaration as bW, type SiwsSigner as bX, type SortOrder as bY, SponsorshipService as bZ, StarknetVenue as b_, IPCollectionABI as ba, IPGenesisABI as bb, IPMarketplaceABI as bc, IPNftABI as bd, IPSponsorshipABI as be, IPSponsorshipLicenseABI as bf, IPTicketCollectionABI as bg, IPTicketCollectionFactoryABI as bh, type IPType as bi, type IntentCall as bj, type IntentStatus as bk, type IntentType as bl, type IpAttribute as bm, type IpNftMetadata as bn, LAUNCH_PRICE_QUOTE_PER_COIN as bo, type MakeOffer1155Params as bp, type MakeOfferIntentParams as bq, type MakeOfferParams as br, MarketplaceModule as bs, Medialane1155ABI as bt, Medialane1155Module as bu, MedialaneApiError as bv, MedialaneClient as bw, type MedialaneConfig as bx, MedialaneError as by, type MedialaneErrorCode as bz, type ActivityType as c, type StarknetVenueSigner as c0, type TenantPlan as c1, TicketService as c2, type TxResult as c3, VALIDATED_EKUBO_PARAMS as c4, type WebhookEventType as c5, type WebhookStatus as c6, adminRequestDigest as c7, build1155CancellationTypedData as c8, build1155OrderTypedData as c9, teamCoinsRaw as cA, validateName as cB, validateSupply as cC, validateSymbol as cD, verifyAdminRequestSig as cE, buildAdminSessionTypedData as ca, buildCancellationTypedData as cb, buildCreateCreatorCoinCall as cc, buildFeeCall as cd, buildLaunchOnEkuboCalls as ce, buildOrderTypedData as cf, buybackQuoteRaw as cg, toRaw as ch, createAdminSessionGrant as ci, encodeAdminHeaders as cj, encodeByteArray as ck, fdvHuman as cl, getCreatorCoinPrice as cm, getSiwsStorageKey as cn, getStoredSiwsToken as co, isSiwsTokenValid as cp, normalizeSiwsSignature as cq, parseAdminHeaders as cr, parseCreatorCoinCreated as cs, randomNonce as ct, requestSiwsToken as cu, resolveConfig as cv, resolveFeeConfig as cw, sessionKeyHashOf as cx, signAdminRequest as cy, storeSiwsToken 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 };
|