@medialane/sdk 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -15
- package/dist/index.cjs +23 -547
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +38 -599
- package/dist/index.d.ts +38 -599
- package/dist/index.js +25 -543
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -415,21 +415,6 @@ Built with:
|
|
|
415
415
|
|
|
416
416
|
## Changelog
|
|
417
417
|
|
|
418
|
-
### v0.6.1
|
|
419
|
-
- **Collection Drop** — new `DropService` (`client.services.drop`) with full on-chain drop management: `claim`, `adminMint`, `setClaimConditions`, `setAllowlistEnabled`, `addToAllowlist`, `batchAddToAllowlist`, `setPaused`, `withdrawPayments`, `createDrop`
|
|
420
|
-
- **`client.api.getDropCollections(opts?)`** — list all `COLLECTION_DROP` collections
|
|
421
|
-
- **`client.api.getDropMintStatus(collection, wallet)`** — returns `{ mintedByWallet, totalMinted }`
|
|
422
|
-
- **`DropMintStatus`**, **`ClaimConditions`**, **`CreateDropParams`** types exported
|
|
423
|
-
- **`DropCollectionABI`** and **`DropFactoryABI`** exported from `@medialane/sdk`
|
|
424
|
-
- **`DROP_FACTORY_CONTRACT_MAINNET`** and **`DROP_COLLECTION_CLASS_HASH_MAINNET`** constants exported
|
|
425
|
-
- **`CollectionSource`** union extended with `"COLLECTION_DROP"`
|
|
426
|
-
|
|
427
|
-
### v0.6.0
|
|
428
|
-
- **POP Protocol** — `PopService` (`client.services.pop`): `claim`, `adminMint`, `addToAllowlist`, `batchAddToAllowlist`, `removeFromAllowlist`, `setTokenUri`, `setPaused`, `createCollection`
|
|
429
|
-
- **`client.api.getPopCollections(opts?)`** and **`client.api.getPopEligibility(collection, wallet)`**
|
|
430
|
-
- **`POPCollectionABI`** and **`POPFactoryABI`** exported
|
|
431
|
-
- **`POP_FACTORY_CONTRACT_MAINNET`** and **`POP_COLLECTION_CLASS_HASH_MAINNET`** constants exported
|
|
432
|
-
|
|
433
418
|
### v0.5.7
|
|
434
419
|
- **`ApiCollectionProfile.hasGatedContent: boolean`** — whether the collection has token-gated content configured
|
|
435
420
|
- **`ApiCollectionProfile.gatedContentTitle: string | null`** — public title of gated content (shown to all users; URL is accessible to holders only via the backend gated-content endpoint)
|
package/dist/index.cjs
CHANGED
|
@@ -8,6 +8,8 @@ var starknet = require('starknet');
|
|
|
8
8
|
// src/constants.ts
|
|
9
9
|
var MARKETPLACE_CONTRACT_MAINNET = "0x04299b51289aa700de4ce19cc77bcea8430bfd1aef04193efab09d60a3a7ee0f";
|
|
10
10
|
var COLLECTION_CONTRACT_MAINNET = "0x05e73b7be06d82beeb390a0e0d655f2c9e7cf519658e04f05d9c690ccc41da03";
|
|
11
|
+
var DROP_FACTORY_CONTRACT_MAINNET = "0x03587f42e29daee1b193f6cf83bf8627908ed6632d0d83fcb26225c50547d800";
|
|
12
|
+
var POP_FACTORY_CONTRACT_MAINNET = "0x00b32c34b427d8f346b5843ada6a37bd3368d879fc752cd52b68a87287f60111";
|
|
11
13
|
var MARKETPLACE_CONTRACT_SEPOLIA = "";
|
|
12
14
|
var COLLECTION_CONTRACT_SEPOLIA = "";
|
|
13
15
|
var SUPPORTED_TOKENS = [
|
|
@@ -49,10 +51,6 @@ var DEFAULT_RPC_URLS = {
|
|
|
49
51
|
mainnet: "https://rpc.starknet.lava.build",
|
|
50
52
|
sepolia: "https://rpc.starknet-sepolia.lava.build"
|
|
51
53
|
};
|
|
52
|
-
var POP_FACTORY_CONTRACT_MAINNET = "0x00b32c34b427d8f346b5843ada6a37bd3368d879fc752cd52b68a87287f60111";
|
|
53
|
-
var POP_COLLECTION_CLASS_HASH_MAINNET = "0x077c421686f10851872561953ea16898d933364b7f8937a5d7e2b1ba0a36263f";
|
|
54
|
-
var DROP_FACTORY_CONTRACT_MAINNET = "0x03587f42e29daee1b193f6cf83bf8627908ed6632d0d83fcb26225c50547d800";
|
|
55
|
-
var DROP_COLLECTION_CLASS_HASH_MAINNET = "0x00092e72cdb63067521e803aaf7d4101c3e3ce026ae6bc045ec4228027e58282";
|
|
56
54
|
|
|
57
55
|
// src/abis.ts
|
|
58
56
|
var IPMarketplaceABI = [
|
|
@@ -361,106 +359,43 @@ var IPMarketplaceABI = [
|
|
|
361
359
|
]
|
|
362
360
|
}
|
|
363
361
|
];
|
|
364
|
-
var
|
|
362
|
+
var DropFactoryABI = [
|
|
365
363
|
{
|
|
366
364
|
type: "struct",
|
|
367
|
-
name: "
|
|
365
|
+
name: "launchpad::types::ClaimConditions",
|
|
368
366
|
members: [
|
|
369
|
-
{ name: "
|
|
370
|
-
{ name: "
|
|
371
|
-
{ name: "
|
|
367
|
+
{ name: "start_time", type: "core::integer::u64" },
|
|
368
|
+
{ name: "end_time", type: "core::integer::u64" },
|
|
369
|
+
{ name: "price", type: "core::integer::u256" },
|
|
370
|
+
{ name: "payment_token", type: "core::starknet::contract_address::ContractAddress" },
|
|
371
|
+
{ name: "max_quantity_per_wallet", type: "core::integer::u256" }
|
|
372
372
|
]
|
|
373
373
|
},
|
|
374
374
|
{
|
|
375
375
|
type: "function",
|
|
376
|
-
name: "
|
|
377
|
-
inputs: [],
|
|
378
|
-
outputs: [],
|
|
379
|
-
state_mutability: "external"
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
type: "function",
|
|
383
|
-
name: "admin_mint",
|
|
384
|
-
inputs: [
|
|
385
|
-
{ name: "recipient", type: "core::starknet::contract_address::ContractAddress" },
|
|
386
|
-
{ name: "custom_uri", type: "core::byte_array::ByteArray" }
|
|
387
|
-
],
|
|
388
|
-
outputs: [],
|
|
389
|
-
state_mutability: "external"
|
|
390
|
-
},
|
|
391
|
-
{
|
|
392
|
-
type: "function",
|
|
393
|
-
name: "add_to_allowlist",
|
|
394
|
-
inputs: [{ name: "address", type: "core::starknet::contract_address::ContractAddress" }],
|
|
395
|
-
outputs: [],
|
|
396
|
-
state_mutability: "external"
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
type: "function",
|
|
400
|
-
name: "batch_add_to_allowlist",
|
|
401
|
-
inputs: [{ name: "addresses", type: "core::array::Array::<core::starknet::contract_address::ContractAddress>" }],
|
|
402
|
-
outputs: [],
|
|
403
|
-
state_mutability: "external"
|
|
404
|
-
},
|
|
405
|
-
{
|
|
406
|
-
type: "function",
|
|
407
|
-
name: "remove_from_allowlist",
|
|
408
|
-
inputs: [{ name: "address", type: "core::starknet::contract_address::ContractAddress" }],
|
|
409
|
-
outputs: [],
|
|
410
|
-
state_mutability: "external"
|
|
411
|
-
},
|
|
412
|
-
{
|
|
413
|
-
type: "function",
|
|
414
|
-
name: "set_token_uri",
|
|
376
|
+
name: "create_drop",
|
|
415
377
|
inputs: [
|
|
416
|
-
{ name: "
|
|
417
|
-
{ name: "
|
|
378
|
+
{ name: "name", type: "core::byte_array::ByteArray" },
|
|
379
|
+
{ name: "symbol", type: "core::byte_array::ByteArray" },
|
|
380
|
+
{ name: "base_uri", type: "core::byte_array::ByteArray" },
|
|
381
|
+
{ name: "max_supply", type: "core::integer::u256" },
|
|
382
|
+
{ name: "claim_conditions", type: "launchpad::types::ClaimConditions" }
|
|
418
383
|
],
|
|
419
|
-
outputs: [],
|
|
420
|
-
state_mutability: "external"
|
|
421
|
-
},
|
|
422
|
-
{
|
|
423
|
-
type: "function",
|
|
424
|
-
name: "set_paused",
|
|
425
|
-
inputs: [{ name: "paused", type: "core::bool" }],
|
|
426
|
-
outputs: [],
|
|
384
|
+
outputs: [{ type: "core::starknet::contract_address::ContractAddress" }],
|
|
427
385
|
state_mutability: "external"
|
|
428
386
|
},
|
|
429
387
|
{
|
|
430
388
|
type: "function",
|
|
431
|
-
name: "
|
|
432
|
-
inputs: [{ name: "
|
|
433
|
-
outputs: [{ type: "core::bool" }],
|
|
434
|
-
state_mutability: "view"
|
|
435
|
-
},
|
|
436
|
-
{
|
|
437
|
-
type: "function",
|
|
438
|
-
name: "has_claimed",
|
|
439
|
-
inputs: [{ name: "address", type: "core::starknet::contract_address::ContractAddress" }],
|
|
389
|
+
name: "is_active_organizer",
|
|
390
|
+
inputs: [{ name: "organizer", type: "core::starknet::contract_address::ContractAddress" }],
|
|
440
391
|
outputs: [{ type: "core::bool" }],
|
|
441
392
|
state_mutability: "view"
|
|
442
|
-
},
|
|
443
|
-
{
|
|
444
|
-
type: "function",
|
|
445
|
-
name: "total_minted",
|
|
446
|
-
inputs: [],
|
|
447
|
-
outputs: [{ type: "core::integer::u256" }],
|
|
448
|
-
state_mutability: "view"
|
|
449
393
|
}
|
|
450
394
|
];
|
|
451
395
|
var POPFactoryABI = [
|
|
452
|
-
{
|
|
453
|
-
type: "struct",
|
|
454
|
-
name: "core::byte_array::ByteArray",
|
|
455
|
-
members: [
|
|
456
|
-
{ name: "data", type: "core::array::Array::<core::felt252>" },
|
|
457
|
-
{ name: "pending_word", type: "core::felt252" },
|
|
458
|
-
{ name: "pending_word_len", type: "core::integer::u32" }
|
|
459
|
-
]
|
|
460
|
-
},
|
|
461
396
|
{
|
|
462
397
|
type: "enum",
|
|
463
|
-
name: "
|
|
398
|
+
name: "launchpad::pop::EventType",
|
|
464
399
|
variants: [
|
|
465
400
|
{ name: "Conference", type: "()" },
|
|
466
401
|
{ name: "Bootcamp", type: "()" },
|
|
@@ -479,286 +414,19 @@ var POPFactoryABI = [
|
|
|
479
414
|
{ name: "symbol", type: "core::byte_array::ByteArray" },
|
|
480
415
|
{ name: "base_uri", type: "core::byte_array::ByteArray" },
|
|
481
416
|
{ name: "claim_end_time", type: "core::integer::u64" },
|
|
482
|
-
{ name: "event_type", type: "
|
|
417
|
+
{ name: "event_type", type: "launchpad::pop::EventType" }
|
|
483
418
|
],
|
|
484
419
|
outputs: [{ type: "core::starknet::contract_address::ContractAddress" }],
|
|
485
420
|
state_mutability: "external"
|
|
486
421
|
},
|
|
487
422
|
{
|
|
488
423
|
type: "function",
|
|
489
|
-
name: "
|
|
490
|
-
inputs: [
|
|
491
|
-
{ name: "provider", type: "core::starknet::contract_address::ContractAddress" },
|
|
492
|
-
{ name: "name", type: "core::byte_array::ByteArray" },
|
|
493
|
-
{ name: "website_url", type: "core::byte_array::ByteArray" }
|
|
494
|
-
],
|
|
495
|
-
outputs: [],
|
|
496
|
-
state_mutability: "external"
|
|
497
|
-
},
|
|
498
|
-
{
|
|
499
|
-
type: "function",
|
|
500
|
-
name: "set_pop_collection_class_hash",
|
|
501
|
-
inputs: [{ name: "new_class_hash", type: "core::starknet::class_hash::ClassHash" }],
|
|
502
|
-
outputs: [],
|
|
503
|
-
state_mutability: "external"
|
|
504
|
-
}
|
|
505
|
-
];
|
|
506
|
-
var DropCollectionABI = [
|
|
507
|
-
{
|
|
508
|
-
type: "struct",
|
|
509
|
-
name: "core::byte_array::ByteArray",
|
|
510
|
-
members: [
|
|
511
|
-
{ name: "data", type: "core::array::Array::<core::felt252>" },
|
|
512
|
-
{ name: "pending_word", type: "core::felt252" },
|
|
513
|
-
{ name: "pending_word_len", type: "core::integer::u32" }
|
|
514
|
-
]
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
type: "struct",
|
|
518
|
-
name: "collection_drop::types::ClaimConditions",
|
|
519
|
-
members: [
|
|
520
|
-
{ name: "start_time", type: "core::integer::u64" },
|
|
521
|
-
{ name: "end_time", type: "core::integer::u64" },
|
|
522
|
-
{ name: "price", type: "core::integer::u256" },
|
|
523
|
-
{ name: "payment_token", type: "core::starknet::contract_address::ContractAddress" },
|
|
524
|
-
{ name: "max_quantity_per_wallet", type: "core::integer::u256" }
|
|
525
|
-
]
|
|
526
|
-
},
|
|
527
|
-
{
|
|
528
|
-
type: "function",
|
|
529
|
-
name: "claim",
|
|
530
|
-
inputs: [{ name: "quantity", type: "core::integer::u256" }],
|
|
531
|
-
outputs: [],
|
|
532
|
-
state_mutability: "external"
|
|
533
|
-
},
|
|
534
|
-
{
|
|
535
|
-
type: "function",
|
|
536
|
-
name: "admin_mint",
|
|
537
|
-
inputs: [
|
|
538
|
-
{ name: "recipient", type: "core::starknet::contract_address::ContractAddress" },
|
|
539
|
-
{ name: "quantity", type: "core::integer::u256" },
|
|
540
|
-
{ name: "custom_uri", type: "core::byte_array::ByteArray" }
|
|
541
|
-
],
|
|
542
|
-
outputs: [],
|
|
543
|
-
state_mutability: "external"
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
type: "function",
|
|
547
|
-
name: "set_claim_conditions",
|
|
548
|
-
inputs: [{ name: "conditions", type: "collection_drop::types::ClaimConditions" }],
|
|
549
|
-
outputs: [],
|
|
550
|
-
state_mutability: "external"
|
|
551
|
-
},
|
|
552
|
-
{
|
|
553
|
-
type: "function",
|
|
554
|
-
name: "get_claim_conditions",
|
|
555
|
-
inputs: [],
|
|
556
|
-
outputs: [{ type: "collection_drop::types::ClaimConditions" }],
|
|
557
|
-
state_mutability: "view"
|
|
558
|
-
},
|
|
559
|
-
{
|
|
560
|
-
type: "function",
|
|
561
|
-
name: "set_allowlist_enabled",
|
|
562
|
-
inputs: [{ name: "enabled", type: "core::bool" }],
|
|
563
|
-
outputs: [],
|
|
564
|
-
state_mutability: "external"
|
|
565
|
-
},
|
|
566
|
-
{
|
|
567
|
-
type: "function",
|
|
568
|
-
name: "is_allowlist_enabled",
|
|
569
|
-
inputs: [],
|
|
570
|
-
outputs: [{ type: "core::bool" }],
|
|
571
|
-
state_mutability: "view"
|
|
572
|
-
},
|
|
573
|
-
{
|
|
574
|
-
type: "function",
|
|
575
|
-
name: "add_to_allowlist",
|
|
576
|
-
inputs: [{ name: "address", type: "core::starknet::contract_address::ContractAddress" }],
|
|
577
|
-
outputs: [],
|
|
578
|
-
state_mutability: "external"
|
|
579
|
-
},
|
|
580
|
-
{
|
|
581
|
-
type: "function",
|
|
582
|
-
name: "batch_add_to_allowlist",
|
|
583
|
-
inputs: [{ name: "addresses", type: "core::array::Array::<core::starknet::contract_address::ContractAddress>" }],
|
|
584
|
-
outputs: [],
|
|
585
|
-
state_mutability: "external"
|
|
586
|
-
},
|
|
587
|
-
{
|
|
588
|
-
type: "function",
|
|
589
|
-
name: "remove_from_allowlist",
|
|
590
|
-
inputs: [{ name: "address", type: "core::starknet::contract_address::ContractAddress" }],
|
|
591
|
-
outputs: [],
|
|
592
|
-
state_mutability: "external"
|
|
593
|
-
},
|
|
594
|
-
{
|
|
595
|
-
type: "function",
|
|
596
|
-
name: "is_allowlisted",
|
|
597
|
-
inputs: [{ name: "address", type: "core::starknet::contract_address::ContractAddress" }],
|
|
598
|
-
outputs: [{ type: "core::bool" }],
|
|
599
|
-
state_mutability: "view"
|
|
600
|
-
},
|
|
601
|
-
{
|
|
602
|
-
type: "function",
|
|
603
|
-
name: "set_base_uri",
|
|
604
|
-
inputs: [{ name: "new_uri", type: "core::byte_array::ByteArray" }],
|
|
605
|
-
outputs: [],
|
|
606
|
-
state_mutability: "external"
|
|
607
|
-
},
|
|
608
|
-
{
|
|
609
|
-
type: "function",
|
|
610
|
-
name: "set_token_uri",
|
|
611
|
-
inputs: [
|
|
612
|
-
{ name: "token_id", type: "core::integer::u256" },
|
|
613
|
-
{ name: "uri", type: "core::byte_array::ByteArray" }
|
|
614
|
-
],
|
|
615
|
-
outputs: [],
|
|
616
|
-
state_mutability: "external"
|
|
617
|
-
},
|
|
618
|
-
{
|
|
619
|
-
type: "function",
|
|
620
|
-
name: "set_paused",
|
|
621
|
-
inputs: [{ name: "paused", type: "core::bool" }],
|
|
622
|
-
outputs: [],
|
|
623
|
-
state_mutability: "external"
|
|
624
|
-
},
|
|
625
|
-
{
|
|
626
|
-
type: "function",
|
|
627
|
-
name: "withdraw_payments",
|
|
628
|
-
inputs: [],
|
|
629
|
-
outputs: [],
|
|
630
|
-
state_mutability: "external"
|
|
631
|
-
},
|
|
632
|
-
{
|
|
633
|
-
type: "function",
|
|
634
|
-
name: "get_drop_id",
|
|
635
|
-
inputs: [],
|
|
636
|
-
outputs: [{ type: "core::integer::u256" }],
|
|
637
|
-
state_mutability: "view"
|
|
638
|
-
},
|
|
639
|
-
{
|
|
640
|
-
type: "function",
|
|
641
|
-
name: "get_max_supply",
|
|
642
|
-
inputs: [],
|
|
643
|
-
outputs: [{ type: "core::integer::u256" }],
|
|
644
|
-
state_mutability: "view"
|
|
645
|
-
},
|
|
646
|
-
{
|
|
647
|
-
type: "function",
|
|
648
|
-
name: "total_minted",
|
|
649
|
-
inputs: [],
|
|
650
|
-
outputs: [{ type: "core::integer::u256" }],
|
|
651
|
-
state_mutability: "view"
|
|
652
|
-
},
|
|
653
|
-
{
|
|
654
|
-
type: "function",
|
|
655
|
-
name: "remaining_supply",
|
|
656
|
-
inputs: [],
|
|
657
|
-
outputs: [{ type: "core::integer::u256" }],
|
|
658
|
-
state_mutability: "view"
|
|
659
|
-
},
|
|
660
|
-
{
|
|
661
|
-
type: "function",
|
|
662
|
-
name: "minted_by_wallet",
|
|
663
|
-
inputs: [{ name: "wallet", type: "core::starknet::contract_address::ContractAddress" }],
|
|
664
|
-
outputs: [{ type: "core::integer::u256" }],
|
|
665
|
-
state_mutability: "view"
|
|
666
|
-
},
|
|
667
|
-
{
|
|
668
|
-
type: "function",
|
|
669
|
-
name: "is_paused",
|
|
670
|
-
inputs: [],
|
|
424
|
+
name: "is_active_provider",
|
|
425
|
+
inputs: [{ name: "provider", type: "core::starknet::contract_address::ContractAddress" }],
|
|
671
426
|
outputs: [{ type: "core::bool" }],
|
|
672
427
|
state_mutability: "view"
|
|
673
428
|
}
|
|
674
429
|
];
|
|
675
|
-
var DropFactoryABI = [
|
|
676
|
-
{
|
|
677
|
-
type: "struct",
|
|
678
|
-
name: "core::byte_array::ByteArray",
|
|
679
|
-
members: [
|
|
680
|
-
{ name: "data", type: "core::array::Array::<core::felt252>" },
|
|
681
|
-
{ name: "pending_word", type: "core::felt252" },
|
|
682
|
-
{ name: "pending_word_len", type: "core::integer::u32" }
|
|
683
|
-
]
|
|
684
|
-
},
|
|
685
|
-
{
|
|
686
|
-
type: "struct",
|
|
687
|
-
name: "collection_drop::types::ClaimConditions",
|
|
688
|
-
members: [
|
|
689
|
-
{ name: "start_time", type: "core::integer::u64" },
|
|
690
|
-
{ name: "end_time", type: "core::integer::u64" },
|
|
691
|
-
{ name: "price", type: "core::integer::u256" },
|
|
692
|
-
{ name: "payment_token", type: "core::starknet::contract_address::ContractAddress" },
|
|
693
|
-
{ name: "max_quantity_per_wallet", type: "core::integer::u256" }
|
|
694
|
-
]
|
|
695
|
-
},
|
|
696
|
-
{
|
|
697
|
-
type: "function",
|
|
698
|
-
name: "register_organizer",
|
|
699
|
-
inputs: [
|
|
700
|
-
{ name: "organizer", type: "core::starknet::contract_address::ContractAddress" },
|
|
701
|
-
{ name: "name", type: "core::byte_array::ByteArray" }
|
|
702
|
-
],
|
|
703
|
-
outputs: [],
|
|
704
|
-
state_mutability: "external"
|
|
705
|
-
},
|
|
706
|
-
{
|
|
707
|
-
type: "function",
|
|
708
|
-
name: "revoke_organizer",
|
|
709
|
-
inputs: [{ name: "organizer", type: "core::starknet::contract_address::ContractAddress" }],
|
|
710
|
-
outputs: [],
|
|
711
|
-
state_mutability: "external"
|
|
712
|
-
},
|
|
713
|
-
{
|
|
714
|
-
type: "function",
|
|
715
|
-
name: "is_active_organizer",
|
|
716
|
-
inputs: [{ name: "organizer", type: "core::starknet::contract_address::ContractAddress" }],
|
|
717
|
-
outputs: [{ type: "core::bool" }],
|
|
718
|
-
state_mutability: "view"
|
|
719
|
-
},
|
|
720
|
-
{
|
|
721
|
-
type: "function",
|
|
722
|
-
name: "create_drop",
|
|
723
|
-
inputs: [
|
|
724
|
-
{ name: "name", type: "core::byte_array::ByteArray" },
|
|
725
|
-
{ name: "symbol", type: "core::byte_array::ByteArray" },
|
|
726
|
-
{ name: "base_uri", type: "core::byte_array::ByteArray" },
|
|
727
|
-
{ name: "max_supply", type: "core::integer::u256" },
|
|
728
|
-
{ name: "initial_conditions", type: "collection_drop::types::ClaimConditions" }
|
|
729
|
-
],
|
|
730
|
-
outputs: [{ type: "core::starknet::contract_address::ContractAddress" }],
|
|
731
|
-
state_mutability: "external"
|
|
732
|
-
},
|
|
733
|
-
{
|
|
734
|
-
type: "function",
|
|
735
|
-
name: "get_drop_address",
|
|
736
|
-
inputs: [{ name: "drop_id", type: "core::integer::u256" }],
|
|
737
|
-
outputs: [{ type: "core::starknet::contract_address::ContractAddress" }],
|
|
738
|
-
state_mutability: "view"
|
|
739
|
-
},
|
|
740
|
-
{
|
|
741
|
-
type: "function",
|
|
742
|
-
name: "get_last_drop_id",
|
|
743
|
-
inputs: [],
|
|
744
|
-
outputs: [{ type: "core::integer::u256" }],
|
|
745
|
-
state_mutability: "view"
|
|
746
|
-
},
|
|
747
|
-
{
|
|
748
|
-
type: "function",
|
|
749
|
-
name: "get_organizer_drop_count",
|
|
750
|
-
inputs: [{ name: "organizer", type: "core::starknet::contract_address::ContractAddress" }],
|
|
751
|
-
outputs: [{ type: "core::integer::u32" }],
|
|
752
|
-
state_mutability: "view"
|
|
753
|
-
},
|
|
754
|
-
{
|
|
755
|
-
type: "function",
|
|
756
|
-
name: "set_drop_collection_class_hash",
|
|
757
|
-
inputs: [{ name: "new_class_hash", type: "core::starknet::class_hash::ClassHash" }],
|
|
758
|
-
outputs: [],
|
|
759
|
-
state_mutability: "external"
|
|
760
|
-
}
|
|
761
|
-
];
|
|
762
430
|
|
|
763
431
|
// src/utils/bigint.ts
|
|
764
432
|
function stringifyBigInts(obj) {
|
|
@@ -1475,11 +1143,10 @@ var ApiClient = class {
|
|
|
1475
1143
|
);
|
|
1476
1144
|
}
|
|
1477
1145
|
// ─── Collections ───────────────────────────────────────────────────────────
|
|
1478
|
-
getCollections(page = 1, limit = 20, isKnown, sort
|
|
1146
|
+
getCollections(page = 1, limit = 20, isKnown, sort) {
|
|
1479
1147
|
const params = new URLSearchParams({ page: String(page), limit: String(limit) });
|
|
1480
1148
|
if (isKnown !== void 0) params.set("isKnown", String(isKnown));
|
|
1481
1149
|
if (sort) params.set("sort", sort);
|
|
1482
|
-
if (source) params.set("source", source);
|
|
1483
1150
|
return this.get(`/v1/collections?${params}`);
|
|
1484
1151
|
}
|
|
1485
1152
|
getCollectionsByOwner(owner, page = 1, limit = 50) {
|
|
@@ -1674,14 +1341,6 @@ var ApiClient = class {
|
|
|
1674
1341
|
});
|
|
1675
1342
|
return res.json();
|
|
1676
1343
|
}
|
|
1677
|
-
async getGatedContent(contractAddress, clerkToken) {
|
|
1678
|
-
const url = `${this.baseUrl.replace(/\/$/, "")}/v1/collections/${normalizeAddress(contractAddress)}/gated-content`;
|
|
1679
|
-
const res = await fetch(url, {
|
|
1680
|
-
headers: { ...this.baseHeaders, "Authorization": `Bearer ${clerkToken}` }
|
|
1681
|
-
});
|
|
1682
|
-
if (res.status === 403 || res.status === 404) return null;
|
|
1683
|
-
return res.json();
|
|
1684
|
-
}
|
|
1685
1344
|
// ─── Creator Profiles ───────────────────────────────────────────────────────
|
|
1686
1345
|
/** List all creators with an approved username. */
|
|
1687
1346
|
async getCreators(opts = {}) {
|
|
@@ -1851,179 +1510,6 @@ var ApiClient = class {
|
|
|
1851
1510
|
headers: { "Authorization": `Bearer ${clerkToken}` }
|
|
1852
1511
|
});
|
|
1853
1512
|
}
|
|
1854
|
-
// ─── POP Protocol ──────────────────────────────────────────────────────────
|
|
1855
|
-
getPopCollections(opts = {}) {
|
|
1856
|
-
return this.getCollections(opts.page ?? 1, opts.limit ?? 20, void 0, opts.sort, "POP_PROTOCOL");
|
|
1857
|
-
}
|
|
1858
|
-
async getPopEligibility(collection, wallet) {
|
|
1859
|
-
const res = await this.get(
|
|
1860
|
-
`/v1/pop/eligibility/${normalizeAddress(collection)}/${normalizeAddress(wallet)}`
|
|
1861
|
-
);
|
|
1862
|
-
return res.data;
|
|
1863
|
-
}
|
|
1864
|
-
async getPopEligibilityBatch(collection, wallets) {
|
|
1865
|
-
const params = new URLSearchParams({ wallets: wallets.map(normalizeAddress).join(",") });
|
|
1866
|
-
const res = await this.get(
|
|
1867
|
-
`/v1/pop/eligibility/${normalizeAddress(collection)}?${params}`
|
|
1868
|
-
);
|
|
1869
|
-
return res.data;
|
|
1870
|
-
}
|
|
1871
|
-
// ─── Collection Drop ────────────────────────────────────────────────────────
|
|
1872
|
-
getDropCollections(opts = {}) {
|
|
1873
|
-
return this.getCollections(opts.page ?? 1, opts.limit ?? 20, void 0, opts.sort, "COLLECTION_DROP");
|
|
1874
|
-
}
|
|
1875
|
-
async getDropMintStatus(collection, wallet) {
|
|
1876
|
-
const res = await this.get(
|
|
1877
|
-
`/v1/drop/mint-status/${normalizeAddress(collection)}/${normalizeAddress(wallet)}`
|
|
1878
|
-
);
|
|
1879
|
-
return res.data;
|
|
1880
|
-
}
|
|
1881
|
-
};
|
|
1882
|
-
var PopService = class {
|
|
1883
|
-
constructor(_config) {
|
|
1884
|
-
this.factoryAddress = POP_FACTORY_CONTRACT_MAINNET;
|
|
1885
|
-
}
|
|
1886
|
-
_collection(address, account) {
|
|
1887
|
-
return new starknet.Contract(POPCollectionABI, normalizeAddress(address), account);
|
|
1888
|
-
}
|
|
1889
|
-
async claim(account, collectionAddress) {
|
|
1890
|
-
const call = this._collection(collectionAddress, account).populate("claim", []);
|
|
1891
|
-
const res = await account.execute([call]);
|
|
1892
|
-
return { txHash: res.transaction_hash };
|
|
1893
|
-
}
|
|
1894
|
-
async adminMint(account, params) {
|
|
1895
|
-
const call = this._collection(params.collection, account).populate("admin_mint", [
|
|
1896
|
-
params.recipient,
|
|
1897
|
-
params.customUri ?? ""
|
|
1898
|
-
]);
|
|
1899
|
-
const res = await account.execute([call]);
|
|
1900
|
-
return { txHash: res.transaction_hash };
|
|
1901
|
-
}
|
|
1902
|
-
async addToAllowlist(account, params) {
|
|
1903
|
-
const call = this._collection(params.collection, account).populate("add_to_allowlist", [params.address]);
|
|
1904
|
-
const res = await account.execute([call]);
|
|
1905
|
-
return { txHash: res.transaction_hash };
|
|
1906
|
-
}
|
|
1907
|
-
async batchAddToAllowlist(account, params) {
|
|
1908
|
-
const collection = this._collection(params.collection, account);
|
|
1909
|
-
const CHUNK = 200;
|
|
1910
|
-
const calls = [];
|
|
1911
|
-
for (let i = 0; i < params.addresses.length; i += CHUNK) {
|
|
1912
|
-
calls.push(collection.populate("batch_add_to_allowlist", [params.addresses.slice(i, i + CHUNK)]));
|
|
1913
|
-
}
|
|
1914
|
-
const res = await account.execute(calls);
|
|
1915
|
-
return { txHash: res.transaction_hash };
|
|
1916
|
-
}
|
|
1917
|
-
async removeFromAllowlist(account, params) {
|
|
1918
|
-
const call = this._collection(params.collection, account).populate("remove_from_allowlist", [params.address]);
|
|
1919
|
-
const res = await account.execute([call]);
|
|
1920
|
-
return { txHash: res.transaction_hash };
|
|
1921
|
-
}
|
|
1922
|
-
async setTokenUri(account, params) {
|
|
1923
|
-
const call = this._collection(params.collection, account).populate("set_token_uri", [
|
|
1924
|
-
BigInt(params.tokenId),
|
|
1925
|
-
params.uri
|
|
1926
|
-
]);
|
|
1927
|
-
const res = await account.execute([call]);
|
|
1928
|
-
return { txHash: res.transaction_hash };
|
|
1929
|
-
}
|
|
1930
|
-
async setPaused(account, params) {
|
|
1931
|
-
const call = this._collection(params.collection, account).populate("set_paused", [params.paused]);
|
|
1932
|
-
const res = await account.execute([call]);
|
|
1933
|
-
return { txHash: res.transaction_hash };
|
|
1934
|
-
}
|
|
1935
|
-
async createCollection(account, params) {
|
|
1936
|
-
const factory = new starknet.Contract(POPFactoryABI, this.factoryAddress, account);
|
|
1937
|
-
const call = factory.populate("create_collection", [
|
|
1938
|
-
params.name,
|
|
1939
|
-
params.symbol,
|
|
1940
|
-
params.baseUri,
|
|
1941
|
-
params.claimEndTime,
|
|
1942
|
-
{ [params.eventType]: {} }
|
|
1943
|
-
]);
|
|
1944
|
-
const res = await account.execute([call]);
|
|
1945
|
-
return { txHash: res.transaction_hash };
|
|
1946
|
-
}
|
|
1947
|
-
};
|
|
1948
|
-
function toContractConditions(c) {
|
|
1949
|
-
return {
|
|
1950
|
-
start_time: c.startTime,
|
|
1951
|
-
end_time: c.endTime,
|
|
1952
|
-
price: BigInt(c.price),
|
|
1953
|
-
payment_token: c.paymentToken,
|
|
1954
|
-
max_quantity_per_wallet: BigInt(c.maxQuantityPerWallet)
|
|
1955
|
-
};
|
|
1956
|
-
}
|
|
1957
|
-
var DropService = class {
|
|
1958
|
-
constructor(_config) {
|
|
1959
|
-
this.factoryAddress = DROP_FACTORY_CONTRACT_MAINNET;
|
|
1960
|
-
}
|
|
1961
|
-
_collection(address, account) {
|
|
1962
|
-
return new starknet.Contract(DropCollectionABI, normalizeAddress(address), account);
|
|
1963
|
-
}
|
|
1964
|
-
async claim(account, collectionAddress, quantity = 1) {
|
|
1965
|
-
const call = this._collection(collectionAddress, account).populate("claim", [BigInt(quantity)]);
|
|
1966
|
-
const res = await account.execute([call]);
|
|
1967
|
-
return { txHash: res.transaction_hash };
|
|
1968
|
-
}
|
|
1969
|
-
async adminMint(account, params) {
|
|
1970
|
-
const call = this._collection(params.collection, account).populate("admin_mint", [
|
|
1971
|
-
params.recipient,
|
|
1972
|
-
BigInt(params.quantity ?? 1),
|
|
1973
|
-
params.customUri ?? ""
|
|
1974
|
-
]);
|
|
1975
|
-
const res = await account.execute([call]);
|
|
1976
|
-
return { txHash: res.transaction_hash };
|
|
1977
|
-
}
|
|
1978
|
-
async setClaimConditions(account, params) {
|
|
1979
|
-
const call = this._collection(params.collection, account).populate("set_claim_conditions", [
|
|
1980
|
-
toContractConditions(params.conditions)
|
|
1981
|
-
]);
|
|
1982
|
-
const res = await account.execute([call]);
|
|
1983
|
-
return { txHash: res.transaction_hash };
|
|
1984
|
-
}
|
|
1985
|
-
async setAllowlistEnabled(account, params) {
|
|
1986
|
-
const call = this._collection(params.collection, account).populate("set_allowlist_enabled", [params.enabled]);
|
|
1987
|
-
const res = await account.execute([call]);
|
|
1988
|
-
return { txHash: res.transaction_hash };
|
|
1989
|
-
}
|
|
1990
|
-
async addToAllowlist(account, params) {
|
|
1991
|
-
const call = this._collection(params.collection, account).populate("add_to_allowlist", [params.address]);
|
|
1992
|
-
const res = await account.execute([call]);
|
|
1993
|
-
return { txHash: res.transaction_hash };
|
|
1994
|
-
}
|
|
1995
|
-
async batchAddToAllowlist(account, params) {
|
|
1996
|
-
const collection = this._collection(params.collection, account);
|
|
1997
|
-
const CHUNK = 200;
|
|
1998
|
-
const calls = [];
|
|
1999
|
-
for (let i = 0; i < params.addresses.length; i += CHUNK) {
|
|
2000
|
-
calls.push(collection.populate("batch_add_to_allowlist", [params.addresses.slice(i, i + CHUNK)]));
|
|
2001
|
-
}
|
|
2002
|
-
const res = await account.execute(calls);
|
|
2003
|
-
return { txHash: res.transaction_hash };
|
|
2004
|
-
}
|
|
2005
|
-
async setPaused(account, params) {
|
|
2006
|
-
const call = this._collection(params.collection, account).populate("set_paused", [params.paused]);
|
|
2007
|
-
const res = await account.execute([call]);
|
|
2008
|
-
return { txHash: res.transaction_hash };
|
|
2009
|
-
}
|
|
2010
|
-
async withdrawPayments(account, params) {
|
|
2011
|
-
const call = this._collection(params.collection, account).populate("withdraw_payments", []);
|
|
2012
|
-
const res = await account.execute([call]);
|
|
2013
|
-
return { txHash: res.transaction_hash };
|
|
2014
|
-
}
|
|
2015
|
-
async createDrop(account, params) {
|
|
2016
|
-
const factory = new starknet.Contract(DropFactoryABI, this.factoryAddress, account);
|
|
2017
|
-
const call = factory.populate("create_drop", [
|
|
2018
|
-
params.name,
|
|
2019
|
-
params.symbol,
|
|
2020
|
-
params.baseUri,
|
|
2021
|
-
BigInt(params.maxSupply),
|
|
2022
|
-
toContractConditions(params.initialConditions)
|
|
2023
|
-
]);
|
|
2024
|
-
const res = await account.execute([call]);
|
|
2025
|
-
return { txHash: res.transaction_hash };
|
|
2026
|
-
}
|
|
2027
1513
|
};
|
|
2028
1514
|
|
|
2029
1515
|
// src/client.ts
|
|
@@ -2031,10 +1517,6 @@ var MedialaneClient = class {
|
|
|
2031
1517
|
constructor(rawConfig = {}) {
|
|
2032
1518
|
this.config = resolveConfig(rawConfig);
|
|
2033
1519
|
this.marketplace = new MarketplaceModule(this.config);
|
|
2034
|
-
this.services = {
|
|
2035
|
-
pop: new PopService(this.config),
|
|
2036
|
-
drop: new DropService(this.config)
|
|
2037
|
-
};
|
|
2038
1520
|
if (!this.config.backendUrl) {
|
|
2039
1521
|
this.api = new Proxy({}, {
|
|
2040
1522
|
get(_target, prop) {
|
|
@@ -2066,11 +1548,8 @@ var OPEN_LICENSES = ["CC0", "CC BY", "CC BY-SA", "CC BY-NC"];
|
|
|
2066
1548
|
exports.ApiClient = ApiClient;
|
|
2067
1549
|
exports.COLLECTION_CONTRACT_MAINNET = COLLECTION_CONTRACT_MAINNET;
|
|
2068
1550
|
exports.DEFAULT_RPC_URLS = DEFAULT_RPC_URLS;
|
|
2069
|
-
exports.DROP_COLLECTION_CLASS_HASH_MAINNET = DROP_COLLECTION_CLASS_HASH_MAINNET;
|
|
2070
1551
|
exports.DROP_FACTORY_CONTRACT_MAINNET = DROP_FACTORY_CONTRACT_MAINNET;
|
|
2071
|
-
exports.DropCollectionABI = DropCollectionABI;
|
|
2072
1552
|
exports.DropFactoryABI = DropFactoryABI;
|
|
2073
|
-
exports.DropService = DropService;
|
|
2074
1553
|
exports.IPMarketplaceABI = IPMarketplaceABI;
|
|
2075
1554
|
exports.MARKETPLACE_CONTRACT_MAINNET = MARKETPLACE_CONTRACT_MAINNET;
|
|
2076
1555
|
exports.MarketplaceModule = MarketplaceModule;
|
|
@@ -2078,11 +1557,8 @@ exports.MedialaneApiError = MedialaneApiError;
|
|
|
2078
1557
|
exports.MedialaneClient = MedialaneClient;
|
|
2079
1558
|
exports.MedialaneError = MedialaneError;
|
|
2080
1559
|
exports.OPEN_LICENSES = OPEN_LICENSES;
|
|
2081
|
-
exports.POPCollectionABI = POPCollectionABI;
|
|
2082
1560
|
exports.POPFactoryABI = POPFactoryABI;
|
|
2083
|
-
exports.POP_COLLECTION_CLASS_HASH_MAINNET = POP_COLLECTION_CLASS_HASH_MAINNET;
|
|
2084
1561
|
exports.POP_FACTORY_CONTRACT_MAINNET = POP_FACTORY_CONTRACT_MAINNET;
|
|
2085
|
-
exports.PopService = PopService;
|
|
2086
1562
|
exports.SUPPORTED_NETWORKS = SUPPORTED_NETWORKS;
|
|
2087
1563
|
exports.SUPPORTED_TOKENS = SUPPORTED_TOKENS;
|
|
2088
1564
|
exports.buildCancellationTypedData = buildCancellationTypedData;
|