@medialane/sdk 0.33.0 → 0.35.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
@@ -56,13 +56,15 @@ type Network = (typeof SUPPORTED_NETWORKS)[number];
56
56
  declare const DEFAULT_RPC_URL = "https://rpc.starknet.lava.build";
57
57
  declare const POP_COLLECTION_CLASS_HASH_MAINNET = "0x077c421686f10851872561953ea16898d933364b7f8937a5d7e2b1ba0a36263f";
58
58
  declare const DROP_COLLECTION_CLASS_HASH_MAINNET = "0x00092e72cdb63067521e803aaf7d4101c3e3ce026ae6bc045ec4228027e58282";
59
- declare const COLLECTION_1155_CONTRACT_MAINNET = "0x067064adcaaed61e17bf50ea802ea6482336126aec5b4d032b4ff8fbb5009131";
60
- /** Class hash of the IPCollectionFactory implementation. */
61
- declare const COLLECTION_1155_FACTORY_CLASS_HASH_MAINNET = "0x188321a7c9ca972cc63e352e3b3a4cdf33781852d957f4b4b62249310fe4c75";
62
- /** Class hash of the IPCollection ERC-1155 implementation. */
63
- declare const COLLECTION_1155_CLASS_HASH_MAINNET = "0x281e13803c906f20bbe158efb44b7a0273c56fdebbeeb55b2ba59530ddb1c80";
64
- /** First mainnet block for the current ERC-1155 factory deployment. */
65
- declare const COLLECTION_1155_START_BLOCK_MAINNET = 10045611;
59
+ /** IPCollectionFactory v0.3.0 (deployed mainnet 2026-06-10): sequential on-chain
60
+ * edition ids, ownerless/immutable. New collections deploy from here. */
61
+ declare const COLLECTION_1155_CONTRACT_MAINNET = "0x0083543c3ee15040a419fc539fa6889f5b956e7d071bcfa97842cb0ae42ad6cc";
62
+ /** Class hash of the IPCollectionFactory v0.3.0 implementation. */
63
+ declare const COLLECTION_1155_FACTORY_CLASS_HASH_MAINNET = "0x331a69da8655a882ba1fbcb55188b8fa09116521db901bbbaafc9fead0689f8";
64
+ /** Class hash of the IPCollection ERC-1155 v0.3.0 implementation. */
65
+ declare const COLLECTION_1155_CLASS_HASH_MAINNET = "0x4e110b59af240ae6c7742999964c4eae13fb2ed935c47fe97653ec017ebea34";
66
+ /** First mainnet block of the v0.3.0 ERC-1155 factory deployment. */
67
+ declare const COLLECTION_1155_START_BLOCK_MAINNET = 10665319;
66
68
  /** Creator Coin Factory — entrypoint: create_creator_coin + launch_on_ekubo. */
67
69
  declare const CREATOR_COIN_FACTORY_CONTRACT_MAINNET = "0x50fa807b5274079fb19374673d7bab6d2dc3af7e1032ea43eb6e44bcbde4c3c";
68
70
  /** EkuboLauncher — permanently holds (locks) each Creator Coin's LP position. */
@@ -1488,32 +1490,41 @@ interface DeployCollectionParams {
1488
1490
  */
1489
1491
  baseUri: string;
1490
1492
  }
1491
- interface MintItemParams {
1493
+ interface MintEditionParams {
1492
1494
  /** ERC-1155 collection contract address */
1493
1495
  collection: string;
1494
1496
  /** Recipient wallet address */
1495
1497
  to: string;
1496
- /** Token ID (u256 use a numeric string or bigint) */
1497
- tokenId: bigint | string;
1498
- /** Number of copies to mint */
1498
+ /** Number of copies of this new edition to mint */
1499
1499
  value: bigint | string;
1500
1500
  /**
1501
1501
  * Metadata URI — must start with `ipfs://` or `ar://`.
1502
- * Immutable: validated and stored on first mint of each token_id.
1502
+ * Immutable: validated and stored at mint. The token id is assigned on-chain
1503
+ * (sequential from 1); read it from the `IPMinted` event of the returned tx.
1503
1504
  */
1504
1505
  tokenUri: string;
1505
1506
  }
1506
- interface BatchMintItemParams {
1507
+ interface BatchMintEditionParams {
1507
1508
  /** ERC-1155 collection contract address */
1508
1509
  collection: string;
1509
1510
  /** Recipient wallet address */
1510
1511
  to: string;
1512
+ /** New editions to create; ids are assigned sequentially on-chain. */
1511
1513
  items: Array<{
1512
- tokenId: bigint | string;
1513
1514
  value: bigint | string;
1514
1515
  tokenUri: string;
1515
1516
  }>;
1516
1517
  }
1518
+ interface AddSupplyParams {
1519
+ /** ERC-1155 collection contract address */
1520
+ collection: string;
1521
+ /** Recipient wallet address */
1522
+ to: string;
1523
+ /** Existing edition id to mint more copies of (reverts if it doesn't exist) */
1524
+ tokenId: bigint | string;
1525
+ /** Number of additional copies */
1526
+ value: bigint | string;
1527
+ }
1517
1528
  declare class ERC1155CollectionService {
1518
1529
  private readonly factoryAddress;
1519
1530
  constructor(config: ResolvedConfig);
@@ -1527,17 +1538,24 @@ declare class ERC1155CollectionService {
1527
1538
  */
1528
1539
  deployCollection(account: AccountInterface, params: DeployCollectionParams): Promise<TxResult>;
1529
1540
  /**
1530
- * Mint a single token into an existing ERC-1155 collection.
1531
- * Caller must be the collection owner.
1532
- * The `tokenUri` is immutable validated and stored on the first mint only.
1541
+ * Mint a new edition into an existing ERC-1155 collection.
1542
+ * Caller must be the collection owner. The token id is assigned on-chain
1543
+ * (sequential from 1)read it from the `IPMinted` event of the returned tx.
1544
+ * The `tokenUri` is immutable.
1533
1545
  */
1534
- mintItem(account: AccountInterface, params: MintItemParams): Promise<TxResult>;
1546
+ mintEdition(account: AccountInterface, params: MintEditionParams): Promise<TxResult>;
1535
1547
  /**
1536
- * Batch-mint multiple token IDs into an existing ERC-1155 collection.
1537
- * All items go to the same `to` address.
1548
+ * Batch-mint multiple new editions into an existing ERC-1155 collection.
1549
+ * All editions go to the same `to` address; ids are assigned sequentially
1550
+ * on-chain. Caller must be the collection owner.
1551
+ */
1552
+ batchMintEdition(account: AccountInterface, params: BatchMintEditionParams): Promise<TxResult>;
1553
+ /**
1554
+ * Mint additional copies of an EXISTING edition into an ERC-1155 collection.
1555
+ * Reverts on-chain if `tokenId` has never been minted. Provenance/URI unchanged.
1538
1556
  * Caller must be the collection owner.
1539
1557
  */
1540
- batchMintItem(account: AccountInterface, params: BatchMintItemParams): Promise<TxResult>;
1558
+ addSupply(account: AccountInterface, params: AddSupplyParams): Promise<TxResult>;
1541
1559
  /**
1542
1560
  * Set the default ERC-2981 royalty for the entire collection.
1543
1561
  * `feeNumerator` is out of 10 000 (e.g. 500 = 5%).
@@ -1638,6 +1656,27 @@ interface CreatorCoinPrice {
1638
1656
  * dependency — works for day-one coins that AVNU doesn't index yet.
1639
1657
  */
1640
1658
  declare function getCreatorCoinPrice(coinAddress: string, provider: ProviderInterface): Promise<CreatorCoinPrice | null>;
1659
+ /** Build the `create_creator_coin` call (full supply minted to the Factory). */
1660
+ declare function buildCreateCreatorCoinCall(params: CreateCreatorCoinParams): Call;
1661
+ /**
1662
+ * Build the Ekubo launch multicall: optional quote `transfer` (pre-funds the
1663
+ * Factory for the team-allocation buyback) + `launch_on_ekubo`.
1664
+ */
1665
+ declare function buildLaunchOnEkuboCalls(params: EkuboLaunchParams): Call[];
1666
+ /** Minimal receipt shape — works with any starknet.js receipt version. */
1667
+ interface CreatorCoinReceiptLike {
1668
+ events?: Array<{
1669
+ from_address?: string;
1670
+ keys?: string[];
1671
+ data?: string[];
1672
+ }>;
1673
+ }
1674
+ /**
1675
+ * Pull the deployed coin address from a `create_creator_coin` tx receipt.
1676
+ * Event data = [owner, name, symbol, supply_low, supply_high, coin_address].
1677
+ * Throws when the receipt carries no matching Factory event.
1678
+ */
1679
+ declare function parseCreatorCoinCreated(receipt: CreatorCoinReceiptLike): string;
1641
1680
  /**
1642
1681
  * On-chain Creator Coin interactions (Ekubo-only launchpad).
1643
1682
  * Faithful fork of unruggable.meme — permanent LP lock + team-allocation buyback.
@@ -3022,15 +3061,6 @@ declare const IPCollection1155FactoryABI: readonly [{
3022
3061
  readonly type: "core::byte_array::ByteArray";
3023
3062
  }];
3024
3063
  readonly state_mutability: "view";
3025
- }, {
3026
- readonly type: "function";
3027
- readonly name: "update_collection_class_hash";
3028
- readonly inputs: readonly [{
3029
- readonly name: "new_class_hash";
3030
- readonly type: "core::starknet::class_hash::ClassHash";
3031
- }];
3032
- readonly outputs: readonly [];
3033
- readonly state_mutability: "external";
3034
3064
  }, {
3035
3065
  readonly type: "function";
3036
3066
  readonly name: "deploy_collection";
@@ -3049,101 +3079,13 @@ declare const IPCollection1155FactoryABI: readonly [{
3049
3079
  }];
3050
3080
  readonly state_mutability: "external";
3051
3081
  }];
3052
- }, {
3053
- readonly type: "impl";
3054
- readonly name: "OwnableMixinImpl";
3055
- readonly interface_name: "openzeppelin_access::ownable::interface::OwnableABI";
3056
- }, {
3057
- readonly type: "interface";
3058
- readonly name: "openzeppelin_access::ownable::interface::OwnableABI";
3059
- readonly items: readonly [{
3060
- readonly type: "function";
3061
- readonly name: "owner";
3062
- readonly inputs: readonly [];
3063
- readonly outputs: readonly [{
3064
- readonly type: "core::starknet::contract_address::ContractAddress";
3065
- }];
3066
- readonly state_mutability: "view";
3067
- }, {
3068
- readonly type: "function";
3069
- readonly name: "transfer_ownership";
3070
- readonly inputs: readonly [{
3071
- readonly name: "new_owner";
3072
- readonly type: "core::starknet::contract_address::ContractAddress";
3073
- }];
3074
- readonly outputs: readonly [];
3075
- readonly state_mutability: "external";
3076
- }, {
3077
- readonly type: "function";
3078
- readonly name: "renounce_ownership";
3079
- readonly inputs: readonly [];
3080
- readonly outputs: readonly [];
3081
- readonly state_mutability: "external";
3082
- }, {
3083
- readonly type: "function";
3084
- readonly name: "transferOwnership";
3085
- readonly inputs: readonly [{
3086
- readonly name: "newOwner";
3087
- readonly type: "core::starknet::contract_address::ContractAddress";
3088
- }];
3089
- readonly outputs: readonly [];
3090
- readonly state_mutability: "external";
3091
- }, {
3092
- readonly type: "function";
3093
- readonly name: "renounceOwnership";
3094
- readonly inputs: readonly [];
3095
- readonly outputs: readonly [];
3096
- readonly state_mutability: "external";
3097
- }];
3098
3082
  }, {
3099
3083
  readonly type: "constructor";
3100
3084
  readonly name: "constructor";
3101
3085
  readonly inputs: readonly [{
3102
- readonly name: "owner";
3103
- readonly type: "core::starknet::contract_address::ContractAddress";
3104
- }, {
3105
3086
  readonly name: "collection_class_hash";
3106
3087
  readonly type: "core::starknet::class_hash::ClassHash";
3107
3088
  }];
3108
- }, {
3109
- readonly type: "event";
3110
- readonly name: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferred";
3111
- readonly kind: "struct";
3112
- readonly members: readonly [{
3113
- readonly name: "previous_owner";
3114
- readonly type: "core::starknet::contract_address::ContractAddress";
3115
- readonly kind: "key";
3116
- }, {
3117
- readonly name: "new_owner";
3118
- readonly type: "core::starknet::contract_address::ContractAddress";
3119
- readonly kind: "key";
3120
- }];
3121
- }, {
3122
- readonly type: "event";
3123
- readonly name: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferStarted";
3124
- readonly kind: "struct";
3125
- readonly members: readonly [{
3126
- readonly name: "previous_owner";
3127
- readonly type: "core::starknet::contract_address::ContractAddress";
3128
- readonly kind: "key";
3129
- }, {
3130
- readonly name: "new_owner";
3131
- readonly type: "core::starknet::contract_address::ContractAddress";
3132
- readonly kind: "key";
3133
- }];
3134
- }, {
3135
- readonly type: "event";
3136
- readonly name: "openzeppelin_access::ownable::ownable::OwnableComponent::Event";
3137
- readonly kind: "enum";
3138
- readonly variants: readonly [{
3139
- readonly name: "OwnershipTransferred";
3140
- readonly type: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferred";
3141
- readonly kind: "nested";
3142
- }, {
3143
- readonly name: "OwnershipTransferStarted";
3144
- readonly type: "openzeppelin_access::ownable::ownable::OwnableComponent::OwnershipTransferStarted";
3145
- readonly kind: "nested";
3146
- }];
3147
3089
  }, {
3148
3090
  readonly type: "event";
3149
3091
  readonly name: "ip_programmable_erc1155_collections::IPCollectionFactory::IPCollectionFactory::CollectionDeployed";
@@ -3169,35 +3111,14 @@ declare const IPCollection1155FactoryABI: readonly [{
3169
3111
  readonly type: "core::byte_array::ByteArray";
3170
3112
  readonly kind: "data";
3171
3113
  }];
3172
- }, {
3173
- readonly type: "event";
3174
- readonly name: "ip_programmable_erc1155_collections::IPCollectionFactory::IPCollectionFactory::CollectionClassHashUpdated";
3175
- readonly kind: "struct";
3176
- readonly members: readonly [{
3177
- readonly name: "previous_class_hash";
3178
- readonly type: "core::starknet::class_hash::ClassHash";
3179
- readonly kind: "data";
3180
- }, {
3181
- readonly name: "new_class_hash";
3182
- readonly type: "core::starknet::class_hash::ClassHash";
3183
- readonly kind: "data";
3184
- }];
3185
3114
  }, {
3186
3115
  readonly type: "event";
3187
3116
  readonly name: "ip_programmable_erc1155_collections::IPCollectionFactory::IPCollectionFactory::Event";
3188
3117
  readonly kind: "enum";
3189
3118
  readonly variants: readonly [{
3190
- readonly name: "OwnableEvent";
3191
- readonly type: "openzeppelin_access::ownable::ownable::OwnableComponent::Event";
3192
- readonly kind: "flat";
3193
- }, {
3194
3119
  readonly name: "CollectionDeployed";
3195
3120
  readonly type: "ip_programmable_erc1155_collections::IPCollectionFactory::IPCollectionFactory::CollectionDeployed";
3196
3121
  readonly kind: "nested";
3197
- }, {
3198
- readonly name: "CollectionClassHashUpdated";
3199
- readonly type: "ip_programmable_erc1155_collections::IPCollectionFactory::IPCollectionFactory::CollectionClassHashUpdated";
3200
- readonly kind: "nested";
3201
3122
  }];
3202
3123
  }];
3203
3124
 
@@ -3270,6 +3191,16 @@ declare const IPCollection1155ABI: readonly [{
3270
3191
  readonly name: "registered_at";
3271
3192
  readonly type: "core::integer::u64";
3272
3193
  }];
3194
+ }, {
3195
+ readonly type: "enum";
3196
+ readonly name: "core::bool";
3197
+ readonly variants: readonly [{
3198
+ readonly name: "False";
3199
+ readonly type: "()";
3200
+ }, {
3201
+ readonly name: "True";
3202
+ readonly type: "()";
3203
+ }];
3273
3204
  }, {
3274
3205
  readonly type: "interface";
3275
3206
  readonly name: "ip_programmable_erc1155_collections::interfaces::IIPCollection::IIPCollection";
@@ -3307,13 +3238,10 @@ declare const IPCollection1155ABI: readonly [{
3307
3238
  readonly state_mutability: "view";
3308
3239
  }, {
3309
3240
  readonly type: "function";
3310
- readonly name: "mint_item";
3241
+ readonly name: "mint_edition";
3311
3242
  readonly inputs: readonly [{
3312
3243
  readonly name: "to";
3313
3244
  readonly type: "core::starknet::contract_address::ContractAddress";
3314
- }, {
3315
- readonly name: "token_id";
3316
- readonly type: "core::integer::u256";
3317
3245
  }, {
3318
3246
  readonly name: "value";
3319
3247
  readonly type: "core::integer::u256";
@@ -3321,17 +3249,16 @@ declare const IPCollection1155ABI: readonly [{
3321
3249
  readonly name: "token_uri";
3322
3250
  readonly type: "core::byte_array::ByteArray";
3323
3251
  }];
3324
- readonly outputs: readonly [];
3252
+ readonly outputs: readonly [{
3253
+ readonly type: "core::integer::u256";
3254
+ }];
3325
3255
  readonly state_mutability: "external";
3326
3256
  }, {
3327
3257
  readonly type: "function";
3328
- readonly name: "batch_mint_item";
3258
+ readonly name: "batch_mint_edition";
3329
3259
  readonly inputs: readonly [{
3330
3260
  readonly name: "to";
3331
3261
  readonly type: "core::starknet::contract_address::ContractAddress";
3332
- }, {
3333
- readonly name: "token_ids";
3334
- readonly type: "core::array::Span::<core::integer::u256>";
3335
3262
  }, {
3336
3263
  readonly name: "values";
3337
3264
  readonly type: "core::array::Span::<core::integer::u256>";
@@ -3339,6 +3266,23 @@ declare const IPCollection1155ABI: readonly [{
3339
3266
  readonly name: "token_uris";
3340
3267
  readonly type: "core::array::Array::<core::byte_array::ByteArray>";
3341
3268
  }];
3269
+ readonly outputs: readonly [{
3270
+ readonly type: "core::array::Span::<core::integer::u256>";
3271
+ }];
3272
+ readonly state_mutability: "external";
3273
+ }, {
3274
+ readonly type: "function";
3275
+ readonly name: "add_supply";
3276
+ readonly inputs: readonly [{
3277
+ readonly name: "to";
3278
+ readonly type: "core::starknet::contract_address::ContractAddress";
3279
+ }, {
3280
+ readonly name: "token_id";
3281
+ readonly type: "core::integer::u256";
3282
+ }, {
3283
+ readonly name: "value";
3284
+ readonly type: "core::integer::u256";
3285
+ }];
3342
3286
  readonly outputs: readonly [];
3343
3287
  readonly state_mutability: "external";
3344
3288
  }, {
@@ -3382,6 +3326,25 @@ declare const IPCollection1155ABI: readonly [{
3382
3326
  readonly type: "ip_programmable_erc1155_collections::types::TokenData";
3383
3327
  }];
3384
3328
  readonly state_mutability: "view";
3329
+ }, {
3330
+ readonly type: "function";
3331
+ readonly name: "total_editions";
3332
+ readonly inputs: readonly [];
3333
+ readonly outputs: readonly [{
3334
+ readonly type: "core::integer::u256";
3335
+ }];
3336
+ readonly state_mutability: "view";
3337
+ }, {
3338
+ readonly type: "function";
3339
+ readonly name: "token_exists";
3340
+ readonly inputs: readonly [{
3341
+ readonly name: "token_id";
3342
+ readonly type: "core::integer::u256";
3343
+ }];
3344
+ readonly outputs: readonly [{
3345
+ readonly type: "core::bool";
3346
+ }];
3347
+ readonly state_mutability: "view";
3385
3348
  }];
3386
3349
  }, {
3387
3350
  readonly type: "impl";
@@ -3433,16 +3396,6 @@ declare const IPCollection1155ABI: readonly [{
3433
3396
  readonly type: "impl";
3434
3397
  readonly name: "SRC5Impl";
3435
3398
  readonly interface_name: "openzeppelin_introspection::interface::ISRC5";
3436
- }, {
3437
- readonly type: "enum";
3438
- readonly name: "core::bool";
3439
- readonly variants: readonly [{
3440
- readonly name: "False";
3441
- readonly type: "()";
3442
- }, {
3443
- readonly name: "True";
3444
- readonly type: "()";
3445
- }];
3446
3399
  }, {
3447
3400
  readonly type: "interface";
3448
3401
  readonly name: "openzeppelin_introspection::interface::ISRC5";
@@ -5610,9 +5563,9 @@ declare const SERVICES: {
5610
5563
  readonly standard: "ERC1155";
5611
5564
  readonly provenance: "MEDIALANE";
5612
5565
  readonly onchain: {
5613
- readonly factoryAddress: "0x067064adcaaed61e17bf50ea802ea6482336126aec5b4d032b4ff8fbb5009131";
5614
- readonly classHash: "0x281e13803c906f20bbe158efb44b7a0273c56fdebbeeb55b2ba59530ddb1c80";
5615
- readonly startBlock: 10045611;
5566
+ readonly factoryAddress: "0x0083543c3ee15040a419fc539fa6889f5b956e7d071bcfa97842cb0ae42ad6cc";
5567
+ readonly classHash: "0x4e110b59af240ae6c7742999964c4eae13fb2ed935c47fe97653ec017ebea34";
5568
+ readonly startBlock: 10665319;
5616
5569
  };
5617
5570
  readonly uiVariant: "edition";
5618
5571
  readonly capabilities: ["list", "buy", "make_offer", "cancel", "transfer", "mint", "remix", "license"];
@@ -5930,4 +5883,4 @@ declare function build1155OrderTypedData(message: Record<string, unknown>, chain
5930
5883
  declare function buildCancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
5931
5884
  declare function build1155CancellationTypedData(message: Record<string, unknown>, chainId: constants.StarknetChainId | string): TypedData;
5932
5885
 
5933
- export { type ActivityType, 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 BatchMintItemParams, type BuildFeeCallParams, 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 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, CreatorCoinService, DEFAULT_RPC_URL, 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, 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 MintItemParams, type MintParams, NFTCOMMENTS_CONTRACT_MAINNET, type Network, 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_NETWORKS, 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, buildFeeCall, buildOrderTypedData, createFailoverFetch, encodeByteArray, formatAmount, getCreatorCoinPrice, getListableTokens, getService, getServicesByCapability, getTokenByAddress, getTokenBySymbol, isServiceId, isTransientRpcError, listServices, normalizeAddress, normalizeHash, parseAmount, resolveConfig, resolveFeeConfig, shortenAddress, stringifyBigInts, u256ToBigInt };
5886
+ 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, 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 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_RPC_URL, 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, 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, type Network, 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_NETWORKS, 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, createFailoverFetch, encodeByteArray, formatAmount, getCreatorCoinPrice, getListableTokens, getService, getServicesByCapability, getTokenByAddress, getTokenBySymbol, isServiceId, isTransientRpcError, listServices, normalizeAddress, normalizeHash, parseAmount, parseCreatorCoinCreated, resolveConfig, resolveFeeConfig, shortenAddress, stringifyBigInts, u256ToBigInt };