@medialane/sdk 0.37.0 → 0.39.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/index.d.ts CHANGED
@@ -260,6 +260,12 @@ interface MintParams {
260
260
  collectionId: string;
261
261
  recipient: string;
262
262
  tokenUri: string;
263
+ /**
264
+ * EIP-2981 secondary-sale royalty in basis points (0–10_000). Set once at mint;
265
+ * the receiver is the immutable creator (the minting collection owner). Required
266
+ * since MIP v0.4.0 — pass 0 for no royalty.
267
+ */
268
+ royaltyBps: number;
263
269
  /** Optional: override the collection contract from config */
264
270
  collectionContract?: string;
265
271
  }
@@ -666,8 +672,9 @@ interface ApiCollection {
666
672
  owner: string | null;
667
673
  startBlock: string;
668
674
  metadataStatus: "PENDING" | "FETCHING" | "FETCHED" | "FAILED";
669
- /** Token standard detected via ERC-165. */
670
- standard: "ERC721" | "ERC1155" | "UNKNOWN";
675
+ /** Token standard detected via ERC-165. Collection is NFT-only since the
676
+ * 2026-06-14 coin split fungible coins are `ApiCoin`, served by getCoins(). */
677
+ standard: "ERC721" | "ERC1155";
671
678
  isKnown: boolean;
672
679
  /** Hidden by ops/admin (content moderation). When true, list endpoints
673
680
  * already filter the row out; single-collection fetches still return
@@ -687,6 +694,35 @@ interface ApiCollection {
687
694
  createdAt: string;
688
695
  updatedAt: string;
689
696
  }
697
+ /** A fungible coin (ERC-20 today; SPL/etc. later). Distinct from ApiCollection:
698
+ * a coin has a supply + decimals + a market price (read live from Ekubo), no
699
+ * tokens, no orders. Served by getCoins()/getCoin() (spec 2026-06-14). */
700
+ interface ApiCoin {
701
+ id: string;
702
+ chain: string;
703
+ contractAddress: string;
704
+ standard: "ERC20";
705
+ /** "creator-coin" | "external-erc20" */
706
+ service: string;
707
+ name: string | null;
708
+ symbol: string | null;
709
+ decimals: number;
710
+ /** Fungible supply as a decimal string — NOT an item count. */
711
+ totalSupply: string | null;
712
+ description: string | null;
713
+ image: string | null;
714
+ creator: string | null;
715
+ startBlock: string;
716
+ isHidden: boolean;
717
+ createdAt: string;
718
+ updatedAt: string;
719
+ }
720
+ interface ApiCoinsQuery {
721
+ page?: number;
722
+ limit?: number;
723
+ /** Filter by coin service id ("creator-coin" | "external-erc20"). */
724
+ service?: string;
725
+ }
690
726
  interface ApiActivityPrice {
691
727
  raw: string | null;
692
728
  formatted: string | null;
@@ -853,6 +889,11 @@ interface CreateMintIntentParams {
853
889
  collectionId: string;
854
890
  recipient: string;
855
891
  tokenUri: string;
892
+ /**
893
+ * EIP-2981 secondary-sale royalty in basis points (0–10_000). Set once at mint;
894
+ * receiver is the immutable creator. Required since MIP v0.4.0 — pass 0 for none.
895
+ */
896
+ royaltyBps: number;
856
897
  /** Optional: override the default collection contract address */
857
898
  collectionContract?: string;
858
899
  }
@@ -1333,6 +1374,10 @@ declare class ApiClient {
1333
1374
  }): Promise<ApiResponse<ApiCollection[]>>;
1334
1375
  getPopEligibility(collection: string, wallet: string): Promise<PopClaimStatus>;
1335
1376
  getPopEligibilityBatch(collection: string, wallets: string[]): Promise<PopBatchEligibilityItem[]>;
1377
+ getCoins(opts?: ApiCoinsQuery): Promise<ApiResponse<ApiCoin[]>>;
1378
+ getCoin(contract: string): Promise<{
1379
+ data: ApiCoin;
1380
+ }>;
1336
1381
  getDropCollections(opts?: {
1337
1382
  page?: number;
1338
1383
  limit?: number;
@@ -4063,7 +4108,7 @@ declare const IPCollectionABI: readonly [{
4063
4108
  readonly name: "total_archived";
4064
4109
  readonly type: "core::integer::u256";
4065
4110
  }, {
4066
- readonly name: "total_transfers";
4111
+ readonly name: "protocol_routed_transfers";
4067
4112
  readonly type: "core::integer::u256";
4068
4113
  }, {
4069
4114
  readonly name: "last_mint_time";
@@ -4129,6 +4174,9 @@ declare const IPCollectionABI: readonly [{
4129
4174
  }, {
4130
4175
  readonly name: "token_uri";
4131
4176
  readonly type: "core::byte_array::ByteArray";
4177
+ }, {
4178
+ readonly name: "royalty_bps";
4179
+ readonly type: "core::integer::u128";
4132
4180
  }];
4133
4181
  readonly outputs: readonly [{
4134
4182
  readonly type: "core::integer::u256";
@@ -4146,6 +4194,9 @@ declare const IPCollectionABI: readonly [{
4146
4194
  }, {
4147
4195
  readonly name: "token_uris";
4148
4196
  readonly type: "core::array::Array::<core::byte_array::ByteArray>";
4197
+ }, {
4198
+ readonly name: "royalty_bps";
4199
+ readonly type: "core::array::Array::<core::integer::u128>";
4149
4200
  }];
4150
4201
  readonly outputs: readonly [{
4151
4202
  readonly type: "core::array::Span::<core::integer::u256>";
@@ -4167,8 +4218,11 @@ declare const IPCollectionABI: readonly [{
4167
4218
  readonly type: "function";
4168
4219
  readonly name: "archive";
4169
4220
  readonly inputs: readonly [{
4170
- readonly name: "token";
4171
- readonly type: "core::byte_array::ByteArray";
4221
+ readonly name: "collection_id";
4222
+ readonly type: "core::integer::u256";
4223
+ }, {
4224
+ readonly name: "token_id";
4225
+ readonly type: "core::integer::u256";
4172
4226
  }];
4173
4227
  readonly outputs: readonly [];
4174
4228
  readonly state_mutability: "external";
@@ -4176,8 +4230,11 @@ declare const IPCollectionABI: readonly [{
4176
4230
  readonly type: "function";
4177
4231
  readonly name: "batch_archive";
4178
4232
  readonly inputs: readonly [{
4179
- readonly name: "tokens";
4180
- readonly type: "core::array::Array::<core::byte_array::ByteArray>";
4233
+ readonly name: "collection_ids";
4234
+ readonly type: "core::array::Array::<core::integer::u256>";
4235
+ }, {
4236
+ readonly name: "token_ids";
4237
+ readonly type: "core::array::Array::<core::integer::u256>";
4181
4238
  }];
4182
4239
  readonly outputs: readonly [];
4183
4240
  readonly state_mutability: "external";
@@ -4185,14 +4242,14 @@ declare const IPCollectionABI: readonly [{
4185
4242
  readonly type: "function";
4186
4243
  readonly name: "transfer_token";
4187
4244
  readonly inputs: readonly [{
4188
- readonly name: "from";
4189
- readonly type: "core::starknet::contract_address::ContractAddress";
4190
- }, {
4191
4245
  readonly name: "to";
4192
4246
  readonly type: "core::starknet::contract_address::ContractAddress";
4193
4247
  }, {
4194
- readonly name: "token";
4195
- readonly type: "core::byte_array::ByteArray";
4248
+ readonly name: "collection_id";
4249
+ readonly type: "core::integer::u256";
4250
+ }, {
4251
+ readonly name: "token_id";
4252
+ readonly type: "core::integer::u256";
4196
4253
  }];
4197
4254
  readonly outputs: readonly [];
4198
4255
  readonly state_mutability: "external";
@@ -4206,8 +4263,11 @@ declare const IPCollectionABI: readonly [{
4206
4263
  readonly name: "to";
4207
4264
  readonly type: "core::starknet::contract_address::ContractAddress";
4208
4265
  }, {
4209
- readonly name: "tokens";
4210
- readonly type: "core::array::Array::<core::byte_array::ByteArray>";
4266
+ readonly name: "collection_ids";
4267
+ readonly type: "core::array::Array::<core::integer::u256>";
4268
+ }, {
4269
+ readonly name: "token_ids";
4270
+ readonly type: "core::array::Array::<core::integer::u256>";
4211
4271
  }];
4212
4272
  readonly outputs: readonly [];
4213
4273
  readonly state_mutability: "external";
@@ -4255,6 +4315,14 @@ declare const IPCollectionABI: readonly [{
4255
4315
  readonly type: "core::integer::u256";
4256
4316
  }];
4257
4317
  readonly state_mutability: "view";
4318
+ }, {
4319
+ readonly type: "function";
4320
+ readonly name: "version";
4321
+ readonly inputs: readonly [];
4322
+ readonly outputs: readonly [{
4323
+ readonly type: "core::byte_array::ByteArray";
4324
+ }];
4325
+ readonly state_mutability: "view";
4258
4326
  }, {
4259
4327
  readonly type: "function";
4260
4328
  readonly name: "is_valid_collection";
@@ -4295,8 +4363,11 @@ declare const IPCollectionABI: readonly [{
4295
4363
  readonly type: "function";
4296
4364
  readonly name: "get_token";
4297
4365
  readonly inputs: readonly [{
4298
- readonly name: "token";
4299
- readonly type: "core::byte_array::ByteArray";
4366
+ readonly name: "collection_id";
4367
+ readonly type: "core::integer::u256";
4368
+ }, {
4369
+ readonly name: "token_id";
4370
+ readonly type: "core::integer::u256";
4300
4371
  }];
4301
4372
  readonly outputs: readonly [{
4302
4373
  readonly type: "ip_collection_erc_721::types::TokenData";
@@ -4306,8 +4377,11 @@ declare const IPCollectionABI: readonly [{
4306
4377
  readonly type: "function";
4307
4378
  readonly name: "is_valid_token";
4308
4379
  readonly inputs: readonly [{
4309
- readonly name: "token";
4310
- readonly type: "core::byte_array::ByteArray";
4380
+ readonly name: "collection_id";
4381
+ readonly type: "core::integer::u256";
4382
+ }, {
4383
+ readonly name: "token_id";
4384
+ readonly type: "core::integer::u256";
4311
4385
  }];
4312
4386
  readonly outputs: readonly [{
4313
4387
  readonly type: "core::bool";
@@ -4317,8 +4391,11 @@ declare const IPCollectionABI: readonly [{
4317
4391
  readonly type: "function";
4318
4392
  readonly name: "is_transferable_token";
4319
4393
  readonly inputs: readonly [{
4320
- readonly name: "token";
4321
- readonly type: "core::byte_array::ByteArray";
4394
+ readonly name: "collection_id";
4395
+ readonly type: "core::integer::u256";
4396
+ }, {
4397
+ readonly name: "token_id";
4398
+ readonly type: "core::integer::u256";
4322
4399
  }];
4323
4400
  readonly outputs: readonly [{
4324
4401
  readonly type: "core::bool";
@@ -4398,6 +4475,10 @@ declare const IPCollectionABI: readonly [{
4398
4475
  readonly name: "metadata_uri";
4399
4476
  readonly type: "core::byte_array::ByteArray";
4400
4477
  readonly kind: "data";
4478
+ }, {
4479
+ readonly name: "royalty_bps";
4480
+ readonly type: "core::integer::u128";
4481
+ readonly kind: "data";
4401
4482
  }];
4402
4483
  }, {
4403
4484
  readonly type: "event";
@@ -4415,6 +4496,10 @@ declare const IPCollectionABI: readonly [{
4415
4496
  readonly name: "owners";
4416
4497
  readonly type: "core::array::Array::<core::starknet::contract_address::ContractAddress>";
4417
4498
  readonly kind: "data";
4499
+ }, {
4500
+ readonly name: "metadata_uris";
4501
+ readonly type: "core::array::Array::<core::byte_array::ByteArray>";
4502
+ readonly kind: "data";
4418
4503
  }, {
4419
4504
  readonly name: "operator";
4420
4505
  readonly type: "core::starknet::contract_address::ContractAddress";
@@ -4450,8 +4535,12 @@ declare const IPCollectionABI: readonly [{
4450
4535
  readonly name: "ip_collection_erc_721::IPCollection::IPCollection::TokenArchivedBatch";
4451
4536
  readonly kind: "struct";
4452
4537
  readonly members: readonly [{
4453
- readonly name: "tokens";
4454
- readonly type: "core::array::Array::<core::byte_array::ByteArray>";
4538
+ readonly name: "collection_ids";
4539
+ readonly type: "core::array::Span::<core::integer::u256>";
4540
+ readonly kind: "data";
4541
+ }, {
4542
+ readonly name: "token_ids";
4543
+ readonly type: "core::array::Span::<core::integer::u256>";
4455
4544
  readonly kind: "data";
4456
4545
  }, {
4457
4546
  readonly name: "operator";
@@ -4504,8 +4593,12 @@ declare const IPCollectionABI: readonly [{
4504
4593
  readonly type: "core::starknet::contract_address::ContractAddress";
4505
4594
  readonly kind: "data";
4506
4595
  }, {
4507
- readonly name: "tokens";
4508
- readonly type: "core::array::Array::<core::byte_array::ByteArray>";
4596
+ readonly name: "collection_ids";
4597
+ readonly type: "core::array::Span::<core::integer::u256>";
4598
+ readonly kind: "data";
4599
+ }, {
4600
+ readonly name: "token_ids";
4601
+ readonly type: "core::array::Span::<core::integer::u256>";
4509
4602
  readonly kind: "data";
4510
4603
  }, {
4511
4604
  readonly name: "operator";
@@ -4671,6 +4764,9 @@ declare const IPNftABI: readonly [{
4671
4764
  }, {
4672
4765
  readonly name: "creator";
4673
4766
  readonly type: "core::starknet::contract_address::ContractAddress";
4767
+ }, {
4768
+ readonly name: "royalty_bps";
4769
+ readonly type: "core::integer::u128";
4674
4770
  }];
4675
4771
  readonly outputs: readonly [];
4676
4772
  readonly state_mutability: "external";
@@ -4710,6 +4806,14 @@ declare const IPNftABI: readonly [{
4710
4806
  readonly type: "core::starknet::contract_address::ContractAddress";
4711
4807
  }];
4712
4808
  readonly state_mutability: "view";
4809
+ }, {
4810
+ readonly type: "function";
4811
+ readonly name: "version";
4812
+ readonly inputs: readonly [];
4813
+ readonly outputs: readonly [{
4814
+ readonly type: "core::byte_array::ByteArray";
4815
+ }];
4816
+ readonly state_mutability: "view";
4713
4817
  }, {
4714
4818
  readonly type: "function";
4715
4819
  readonly name: "base_uri";
@@ -5053,6 +5157,55 @@ declare const IPNftABI: readonly [{
5053
5157
  }];
5054
5158
  readonly state_mutability: "view";
5055
5159
  }];
5160
+ }, {
5161
+ readonly type: "impl";
5162
+ readonly name: "ERC2981Impl";
5163
+ readonly interface_name: "openzeppelin_token::common::erc2981::interface::IERC2981";
5164
+ }, {
5165
+ readonly type: "interface";
5166
+ readonly name: "openzeppelin_token::common::erc2981::interface::IERC2981";
5167
+ readonly items: readonly [{
5168
+ readonly type: "function";
5169
+ readonly name: "royalty_info";
5170
+ readonly inputs: readonly [{
5171
+ readonly name: "token_id";
5172
+ readonly type: "core::integer::u256";
5173
+ }, {
5174
+ readonly name: "sale_price";
5175
+ readonly type: "core::integer::u256";
5176
+ }];
5177
+ readonly outputs: readonly [{
5178
+ readonly type: "(core::starknet::contract_address::ContractAddress, core::integer::u256)";
5179
+ }];
5180
+ readonly state_mutability: "view";
5181
+ }];
5182
+ }, {
5183
+ readonly type: "impl";
5184
+ readonly name: "ERC2981InfoImpl";
5185
+ readonly interface_name: "openzeppelin_token::common::erc2981::interface::IERC2981Info";
5186
+ }, {
5187
+ readonly type: "interface";
5188
+ readonly name: "openzeppelin_token::common::erc2981::interface::IERC2981Info";
5189
+ readonly items: readonly [{
5190
+ readonly type: "function";
5191
+ readonly name: "default_royalty";
5192
+ readonly inputs: readonly [];
5193
+ readonly outputs: readonly [{
5194
+ readonly type: "(core::starknet::contract_address::ContractAddress, core::integer::u128, core::integer::u128)";
5195
+ }];
5196
+ readonly state_mutability: "view";
5197
+ }, {
5198
+ readonly type: "function";
5199
+ readonly name: "token_royalty";
5200
+ readonly inputs: readonly [{
5201
+ readonly name: "token_id";
5202
+ readonly type: "core::integer::u256";
5203
+ }];
5204
+ readonly outputs: readonly [{
5205
+ readonly type: "(core::starknet::contract_address::ContractAddress, core::integer::u128, core::integer::u128)";
5206
+ }];
5207
+ readonly state_mutability: "view";
5208
+ }];
5056
5209
  }, {
5057
5210
  readonly type: "constructor";
5058
5211
  readonly name: "constructor";
@@ -5150,6 +5303,11 @@ declare const IPNftABI: readonly [{
5150
5303
  readonly name: "openzeppelin_token::erc721::extensions::erc721_enumerable::erc721_enumerable::ERC721EnumerableComponent::Event";
5151
5304
  readonly kind: "enum";
5152
5305
  readonly variants: readonly [];
5306
+ }, {
5307
+ readonly type: "event";
5308
+ readonly name: "openzeppelin_token::common::erc2981::erc2981::ERC2981Component::Event";
5309
+ readonly kind: "enum";
5310
+ readonly variants: readonly [];
5153
5311
  }, {
5154
5312
  readonly type: "event";
5155
5313
  readonly name: "ip_collection_erc_721::IPNft::IPNft::Event";
@@ -5166,6 +5324,10 @@ declare const IPNftABI: readonly [{
5166
5324
  readonly name: "ERC721EnumerableEvent";
5167
5325
  readonly type: "openzeppelin_token::erc721::extensions::erc721_enumerable::erc721_enumerable::ERC721EnumerableComponent::Event";
5168
5326
  readonly kind: "flat";
5327
+ }, {
5328
+ readonly name: "ERC2981Event";
5329
+ readonly type: "openzeppelin_token::common::erc2981::erc2981::ERC2981Component::Event";
5330
+ readonly kind: "flat";
5169
5331
  }];
5170
5332
  }];
5171
5333
 
@@ -5948,4 +6110,4 @@ declare function build1155OrderTypedData(message: Record<string, unknown>, chain
5948
6110
  declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
5949
6111
  declare function build1155CancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
5950
6112
 
5951
- export { type ActivityType, type AddSupplyParams, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, type ApiAppSource, type ApiChain, ApiClient, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionSlugClaim, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOfferPrice, type ApiRemixOffersQuery, type ApiResponse, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenBalance, type ApiTokenMetadata, type ApiUsageDay, type ApiUserWallet, type ApiWalletType, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, type BatchMintEditionParams, type BuildFeeCallParams, CHAINS, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, COLLECTION_1155_CLASS_HASH_MAINNET, COLLECTION_1155_CONTRACT_MAINNET, COLLECTION_1155_FACTORY_CLASS_HASH_MAINNET, COLLECTION_1155_START_BLOCK_MAINNET, COLLECTION_721_CONTRACT_MAINNET, COLLECTION_721_START_BLOCK_MAINNET, CREATOR_COIN_CLASS_HASH_MAINNET, CREATOR_COIN_EKUBO_LAUNCHER_MAINNET, CREATOR_COIN_FACTORY_CLASS_HASH_MAINNET, CREATOR_COIN_FACTORY_CONTRACT_MAINNET, CREATOR_COIN_START_BLOCK_MAINNET, type CancelOrder1155Params, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type Chain, type ChainCoordinates, type ClaimConditions, CollectionRegistryABI, type CollectionSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type CreateCollectionIntentParams, type CreateCollectionParams, type CreateCounterOfferIntentParams, type CreateCreatorCoinParams, type CreateDropParams, type CreateListing1155Params, type CreateListingIntentParams, type CreateListingParams, type CreateMintIntentParams, type CreatePopCollectionParams, type CreateRemixOfferParams, type CreateWebhookParams, CreatorCoinFactoryABI, type CreatorCoinPrice, type CreatorCoinReceiptLike, CreatorCoinService, DEFAULT_CHAIN, DROP_COLLECTION_CLASS_HASH_MAINNET, DROP_FACTORY_CONTRACT_MAINNET, type DeployCollectionParams, DropCollectionABI, DropFactoryABI, type DropMintStatus, DropService, EKUBO_CORE_MAINNET, ERC1155CollectionService, type EkuboLaunchParams, type EkuboPoolParams, type EnforcementDeclaration, type FailoverFetchOptions, type FeeConfig, FeeConfigSchema, type FeeSurface, type FulfillOrder1155Params, type FulfillOrderIntentParams, type FulfillOrderParams, IPCOLLECTION_CLASS_HASH_MAINNET, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPMarketplaceABI, IPNFT_CLASS_HASH_MAINNET, IPNftABI, type IPType, type IntentCall, type IntentStatus, type IntentType, type IpAttribute, type IpNftMetadata, LAUNCH_PRICE_QUOTE_PER_COIN, MARKETPLACE_1155_CLASS_HASH_MAINNET, MARKETPLACE_1155_CONTRACT_MAINNET, MARKETPLACE_1155_START_BLOCK_MAINNET, MARKETPLACE_721_CLASS_HASH_MAINNET, MARKETPLACE_721_CONTRACT_MAINNET, MARKETPLACE_721_START_BLOCK_MAINNET, type MakeOffer1155Params, type MakeOfferIntentParams, type MakeOfferParams, MarketplaceModule, Medialane1155ABI, Medialane1155Module, MedialaneApiError, MedialaneClient, type MedialaneConfig, MedialaneError, type MedialaneErrorCode, type MintEditionParams, type MintParams, NFTCOMMENTS_CONTRACT_MAINNET, OPEN_LICENSES, type OfferItem, type OpenLicense, type Order, type OrderDetails, type OrderParameters, type OrderStatus, POPCollectionABI, POPFactoryABI, POP_COLLECTION_CLASS_HASH_MAINNET, POP_FACTORY_CONTRACT_MAINNET, PUBLIC_RPC_FALLBACKS, type PopBatchEligibilityItem, type PopClaimStatus, type PopEventType, PopService, type RemixOfferStatus, type ResolvedConfig, type ResolvedFeeConfig, type RetryOptions, SUPPORTED_TOKENS, type ServiceCapability, type ServiceDefinition, type ServiceEventDeclaration, type ServiceId, type SortOrder, type SupportedToken, type SupportedTokenSymbol, type TenantPlan, type TxResult, VALIDATED_EKUBO_PARAMS, type WebhookEventType, type WebhookStatus, build1155CancellationTypedData, build1155OrderTypedData, buildCancellationTypedData, buildCreateCreatorCoinCall, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buybackQuoteRaw, toRaw as coinToRaw, createFailoverFetch, encodeByteArray, fdvHuman, formatAmount, getCoordinates, getCreatorCoinPrice, getListableTokens, getService, getServicesByCapability, getTokenByAddress, getTokenBySymbol, isServiceId, isTransientRpcError, listServices, normalizeAddress, normalizeHash, parseAmount, parseCreatorCoinCreated, resolveConfig, resolveFeeConfig, shortenAddress, stringifyBigInts, teamCoinsRaw, u256ToBigInt, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol };
6113
+ export { type ActivityType, type AddSupplyParams, type ApiActivitiesQuery, type ApiActivity, type ApiActivityPrice, type ApiAdminCollectionClaim, type ApiAppSource, type ApiChain, ApiClient, type ApiCoin, type ApiCoinsQuery, type ApiCollection, type ApiCollectionClaim, type ApiCollectionProfile, type ApiCollectionSlugClaim, type ApiCollectionsQuery, type ApiComment, type ApiCounterOffersQuery, type ApiCreatorListResult, type ApiCreatorProfile, type ApiIntent, type ApiIntentCreated, type ApiKeyStatus, type ApiMeta, type ApiMetadataSignedUrl, type ApiMetadataUpload, type ApiOrder, type ApiOrderConsideration, type ApiOrderOffer, type ApiOrderPrice, type ApiOrderTokenMeta, type ApiOrderTxHash, type ApiOrdersQuery, type ApiPortalKey, type ApiPortalKeyCreated, type ApiPortalMe, type ApiPublicRemix, type ApiRemixOffer, type ApiRemixOfferPrice, type ApiRemixOffersQuery, type ApiResponse, type ApiSearchCollectionResult, type ApiSearchCreatorResult, type ApiSearchResult, type ApiSearchTokenResult, type ApiToken, type ApiTokenBalance, type ApiTokenMetadata, type ApiUsageDay, type ApiUserWallet, type ApiWalletType, type ApiWebhookCreated, type ApiWebhookEndpoint, type AutoRemixOfferParams, type BatchMintEditionParams, type BuildFeeCallParams, CHAINS, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, COLLECTION_1155_CLASS_HASH_MAINNET, COLLECTION_1155_CONTRACT_MAINNET, COLLECTION_1155_FACTORY_CLASS_HASH_MAINNET, COLLECTION_1155_START_BLOCK_MAINNET, COLLECTION_721_CONTRACT_MAINNET, COLLECTION_721_START_BLOCK_MAINNET, CREATOR_COIN_CLASS_HASH_MAINNET, CREATOR_COIN_EKUBO_LAUNCHER_MAINNET, CREATOR_COIN_FACTORY_CLASS_HASH_MAINNET, CREATOR_COIN_FACTORY_CONTRACT_MAINNET, CREATOR_COIN_START_BLOCK_MAINNET, type CancelOrder1155Params, type CancelOrderIntentParams, type CancelOrderParams, type Cancelation, type CartItem, type Chain, type ChainCoordinates, type ClaimConditions, CollectionRegistryABI, type CollectionSort, type ConfirmRemixOfferParams, type ConfirmSelfRemixParams, type ConsiderationItem, type CreateCollectionIntentParams, type CreateCollectionParams, type CreateCounterOfferIntentParams, type CreateCreatorCoinParams, type CreateDropParams, type CreateListing1155Params, type CreateListingIntentParams, type CreateListingParams, type CreateMintIntentParams, type CreatePopCollectionParams, type CreateRemixOfferParams, type CreateWebhookParams, CreatorCoinFactoryABI, type CreatorCoinPrice, type CreatorCoinReceiptLike, CreatorCoinService, DEFAULT_CHAIN, DROP_COLLECTION_CLASS_HASH_MAINNET, DROP_FACTORY_CONTRACT_MAINNET, type DeployCollectionParams, DropCollectionABI, DropFactoryABI, type DropMintStatus, DropService, EKUBO_CORE_MAINNET, ERC1155CollectionService, type EkuboLaunchParams, type EkuboPoolParams, type EnforcementDeclaration, type FailoverFetchOptions, type FeeConfig, FeeConfigSchema, type FeeSurface, type FulfillOrder1155Params, type FulfillOrderIntentParams, type FulfillOrderParams, IPCOLLECTION_CLASS_HASH_MAINNET, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPMarketplaceABI, IPNFT_CLASS_HASH_MAINNET, IPNftABI, type IPType, type IntentCall, type IntentStatus, type IntentType, type IpAttribute, type IpNftMetadata, LAUNCH_PRICE_QUOTE_PER_COIN, MARKETPLACE_1155_CLASS_HASH_MAINNET, MARKETPLACE_1155_CONTRACT_MAINNET, MARKETPLACE_1155_START_BLOCK_MAINNET, MARKETPLACE_721_CLASS_HASH_MAINNET, MARKETPLACE_721_CONTRACT_MAINNET, MARKETPLACE_721_START_BLOCK_MAINNET, type MakeOffer1155Params, type MakeOfferIntentParams, type MakeOfferParams, MarketplaceModule, Medialane1155ABI, Medialane1155Module, MedialaneApiError, MedialaneClient, type MedialaneConfig, MedialaneError, type MedialaneErrorCode, type MintEditionParams, type MintParams, NFTCOMMENTS_CONTRACT_MAINNET, OPEN_LICENSES, type OfferItem, type OpenLicense, type Order, type OrderDetails, type OrderParameters, type OrderStatus, POPCollectionABI, POPFactoryABI, POP_COLLECTION_CLASS_HASH_MAINNET, POP_FACTORY_CONTRACT_MAINNET, PUBLIC_RPC_FALLBACKS, type PopBatchEligibilityItem, type PopClaimStatus, type PopEventType, PopService, type RemixOfferStatus, type ResolvedConfig, type ResolvedFeeConfig, type RetryOptions, SUPPORTED_TOKENS, type ServiceCapability, type ServiceDefinition, type ServiceEventDeclaration, type ServiceId, type SortOrder, type SupportedToken, type SupportedTokenSymbol, type TenantPlan, type TxResult, VALIDATED_EKUBO_PARAMS, type WebhookEventType, type WebhookStatus, build1155CancellationTypedData, build1155OrderTypedData, buildCancellationTypedData, buildCreateCreatorCoinCall, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buybackQuoteRaw, toRaw as coinToRaw, createFailoverFetch, encodeByteArray, fdvHuman, formatAmount, getCoordinates, getCreatorCoinPrice, getListableTokens, getService, getServicesByCapability, getTokenByAddress, getTokenBySymbol, isServiceId, isTransientRpcError, listServices, normalizeAddress, normalizeHash, parseAmount, parseCreatorCoinCreated, resolveConfig, resolveFeeConfig, shortenAddress, stringifyBigInts, teamCoinsRaw, u256ToBigInt, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol };