@medialane/sdk 0.85.7 → 0.85.9

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.
@@ -7856,6 +7856,49 @@ declare function buildChangeOwnersCall(accountAddress: string, removeOwnerPubkey
7856
7856
 
7857
7857
  declare function buildDeployAccountParams(ownerPubkey: BigNumberish, salt?: BigNumberish): DeployAccountContractPayload;
7858
7858
 
7859
+ declare const SIGNER_TYPE_NAMES: readonly ["Starknet", "Secp256k1", "Secp256r1"];
7860
+ type SignerTypeName = (typeof SIGNER_TYPE_NAMES)[number];
7861
+ interface GuardianInfo {
7862
+ type: SignerTypeName;
7863
+ guid: string;
7864
+ storedValue: string;
7865
+ }
7866
+ declare function buildSetFirstGuardianCall(address: string, guardianPubkey: string): Call;
7867
+ declare function buildTriggerEscapeOwnerCall(targetAddress: string, newOwnerPubkey: string): Call;
7868
+ declare function buildCompleteEscapeOwnerCall(targetAddress: string): Call;
7869
+ declare function buildCancelEscapeCall(address: string): Call;
7870
+ declare function decodeGuardiansInfo(res: string[]): GuardianInfo[];
7871
+ type EscapeTypeName = "None" | "Guardian" | "Owner";
7872
+ type EscapeStatusName = "None" | "NotReady" | "Ready" | "Expired";
7873
+ interface EscapeInfo {
7874
+ readyAt: number;
7875
+ escapeType: EscapeTypeName;
7876
+ status: EscapeStatusName;
7877
+ }
7878
+ declare function decodeEscapeAndStatus(res: string[]): EscapeInfo;
7879
+ declare function getGuardians(provider: ProviderInterface, address: string): Promise<GuardianInfo[]>;
7880
+ declare function getEscape(provider: ProviderInterface, address: string): Promise<EscapeInfo>;
7881
+ declare function getEscapeSecurityPeriod(provider: ProviderInterface, address: string): Promise<number>;
7882
+
7883
+ /**
7884
+ * Pure crypto primitives behind a passkey-sealed Starknet wallet — HKDF key
7885
+ * derivation, AES-GCM seal/unseal, Stark keypair generation, Stark-curve
7886
+ * signing. Deliberately excludes the WebAuthn calls (`navigator.credentials`)
7887
+ * that produce the PRF secret these functions consume — that stays app-local
7888
+ * because it's untestable in this SDK's Node-based test environment and
7889
+ * because RP_NAME/PRF_SALT are legitimately per-app identity, not protocol
7890
+ * facts. `hkdfInfo` is always an explicit caller-supplied parameter, never
7891
+ * defaulted — see the design doc's "load-bearing constraint" for why.
7892
+ */
7893
+ declare function deriveAesKey(prfSecret: Uint8Array, hkdfInfo: Uint8Array): Promise<CryptoKey>;
7894
+ declare function generateStarkKeyPair(): {
7895
+ privateKeyHex: string;
7896
+ publicKeyHex: string;
7897
+ };
7898
+ declare function sealPrivateKey(aesKey: CryptoKey, iv: Uint8Array, privateKeyHex: string): Promise<ArrayBuffer>;
7899
+ declare function unsealPrivateKey(aesKey: CryptoKey, iv: Uint8Array, ciphertext: BufferSource): Promise<string>;
7900
+ declare function signWithPrivateKey(privateKeyHex: string, msgHash: string): [string, string];
7901
+
7859
7902
  type StarknetVenueSigner = VenueSigner<TypedData, Call>;
7860
7903
 
7861
- export { ADMIN_HEADERS, ADMIN_SCOPE, type AddSupplyParams, type AdminGrant, type AdminRequest, type AdminRequestSig, type AdminSession, type AdminSessionTypedDataInput, type BatchMintEditionParams, type BuildFeeCallParams, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, ClaimConditions, ClubService, type CreateCreatorCoinParams, CreateDropParams, type CreateGrantOpts, CreatePopCollectionParams, CreatorCoinFactoryABI, type CreatorCoinPrice, type CreatorCoinReceiptLike, CreatorCoinService, type DeployCollectionParams, DropCollectionABI, DropFactoryABI, DropService, ERC1155CollectionService, type EkuboLaunchParams, type EkuboPoolParams, type FeeSurface, IPClubCollectionABI, IPClubFactoryABI, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPGenesisABI, IPMarketplaceABI, IPNftABI, IPSponsorshipABI, IPTicketCollectionABI, IPTicketCollectionFactoryABI, LAUNCH_PRICE_QUOTE_PER_COIN, Medialane1155ABI, MedialaneClient, MedialaneError, type MintEditionParams, POPCollectionABI, POPFactoryABI, type ParsedAdminHeaders, PopService, type RequestSiwsTokenArgs, type ResolvedOrder, type SiwsSigner, SponsorshipService, StarknetVenue, type StarknetVenueDeps, type StarknetVenueSigner, TicketService, VALIDATED_EKUBO_PARAMS, VenueSigner, adminRequestDigest, build1155CancellationTypedData, build1155OrderTypedData, buildAdminSessionTypedData, buildCancellationTypedData, buildChangeOwnersCall, buildCreateCreatorCoinCall, buildDeployAccountParams, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buybackQuoteRaw, toRaw as coinToRaw, computeAccountAddress, computeOwnerGuid, createAdminSessionGrant, deriveOwnerKeyPair, encodeAdminHeaders, encodeByteArray, fdvHuman, getCounter, getCounter1155, getCreatorCoinPrice, getOrderDetails, getOrderDetails1155, getSiwsStorageKey, getStoredSiwsToken, isSiwsTokenValid, normalizeSiwsSignature, ownerConstructorCalldata, parseAdminHeaders, parseCreatorCoinCreated, priceToEkuboParams, randomNonce, requestSiwsToken, sessionKeyHashOf, signAdminRequest, storeSiwsToken, teamCoinsRaw, toContractConditions as toDropContractConditions, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol, verifyAdminRequestSig };
7904
+ export { ADMIN_HEADERS, ADMIN_SCOPE, type AddSupplyParams, type AdminGrant, type AdminRequest, type AdminRequestSig, type AdminSession, type AdminSessionTypedDataInput, type BatchMintEditionParams, type BuildFeeCallParams, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, ClaimConditions, ClubService, type CreateCreatorCoinParams, CreateDropParams, type CreateGrantOpts, CreatePopCollectionParams, CreatorCoinFactoryABI, type CreatorCoinPrice, type CreatorCoinReceiptLike, CreatorCoinService, type DeployCollectionParams, DropCollectionABI, DropFactoryABI, DropService, ERC1155CollectionService, type EkuboLaunchParams, type EkuboPoolParams, type EscapeInfo, type EscapeStatusName, type EscapeTypeName, type FeeSurface, type GuardianInfo, IPClubCollectionABI, IPClubFactoryABI, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPGenesisABI, IPMarketplaceABI, IPNftABI, IPSponsorshipABI, IPTicketCollectionABI, IPTicketCollectionFactoryABI, LAUNCH_PRICE_QUOTE_PER_COIN, Medialane1155ABI, MedialaneClient, MedialaneError, type MintEditionParams, POPCollectionABI, POPFactoryABI, type ParsedAdminHeaders, PopService, type RequestSiwsTokenArgs, type ResolvedOrder, type SiwsSigner, SponsorshipService, StarknetVenue, type StarknetVenueDeps, type StarknetVenueSigner, TicketService, VALIDATED_EKUBO_PARAMS, VenueSigner, adminRequestDigest, build1155CancellationTypedData, build1155OrderTypedData, buildAdminSessionTypedData, buildCancelEscapeCall, buildCancellationTypedData, buildChangeOwnersCall, buildCompleteEscapeOwnerCall, buildCreateCreatorCoinCall, buildDeployAccountParams, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buildSetFirstGuardianCall, buildTriggerEscapeOwnerCall, buybackQuoteRaw, toRaw as coinToRaw, computeAccountAddress, computeOwnerGuid, createAdminSessionGrant, decodeEscapeAndStatus, decodeGuardiansInfo, deriveAesKey, deriveOwnerKeyPair, encodeAdminHeaders, encodeByteArray, fdvHuman, generateStarkKeyPair, getCounter, getCounter1155, getCreatorCoinPrice, getEscape, getEscapeSecurityPeriod, getGuardians, getOrderDetails, getOrderDetails1155, getSiwsStorageKey, getStoredSiwsToken, isSiwsTokenValid, normalizeSiwsSignature, ownerConstructorCalldata, parseAdminHeaders, parseCreatorCoinCreated, priceToEkuboParams, randomNonce, requestSiwsToken, sealPrivateKey, sessionKeyHashOf, signAdminRequest, signWithPrivateKey, storeSiwsToken, teamCoinsRaw, toContractConditions as toDropContractConditions, unsealPrivateKey, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol, verifyAdminRequestSig };
@@ -7856,6 +7856,49 @@ declare function buildChangeOwnersCall(accountAddress: string, removeOwnerPubkey
7856
7856
 
7857
7857
  declare function buildDeployAccountParams(ownerPubkey: BigNumberish, salt?: BigNumberish): DeployAccountContractPayload;
7858
7858
 
7859
+ declare const SIGNER_TYPE_NAMES: readonly ["Starknet", "Secp256k1", "Secp256r1"];
7860
+ type SignerTypeName = (typeof SIGNER_TYPE_NAMES)[number];
7861
+ interface GuardianInfo {
7862
+ type: SignerTypeName;
7863
+ guid: string;
7864
+ storedValue: string;
7865
+ }
7866
+ declare function buildSetFirstGuardianCall(address: string, guardianPubkey: string): Call;
7867
+ declare function buildTriggerEscapeOwnerCall(targetAddress: string, newOwnerPubkey: string): Call;
7868
+ declare function buildCompleteEscapeOwnerCall(targetAddress: string): Call;
7869
+ declare function buildCancelEscapeCall(address: string): Call;
7870
+ declare function decodeGuardiansInfo(res: string[]): GuardianInfo[];
7871
+ type EscapeTypeName = "None" | "Guardian" | "Owner";
7872
+ type EscapeStatusName = "None" | "NotReady" | "Ready" | "Expired";
7873
+ interface EscapeInfo {
7874
+ readyAt: number;
7875
+ escapeType: EscapeTypeName;
7876
+ status: EscapeStatusName;
7877
+ }
7878
+ declare function decodeEscapeAndStatus(res: string[]): EscapeInfo;
7879
+ declare function getGuardians(provider: ProviderInterface, address: string): Promise<GuardianInfo[]>;
7880
+ declare function getEscape(provider: ProviderInterface, address: string): Promise<EscapeInfo>;
7881
+ declare function getEscapeSecurityPeriod(provider: ProviderInterface, address: string): Promise<number>;
7882
+
7883
+ /**
7884
+ * Pure crypto primitives behind a passkey-sealed Starknet wallet — HKDF key
7885
+ * derivation, AES-GCM seal/unseal, Stark keypair generation, Stark-curve
7886
+ * signing. Deliberately excludes the WebAuthn calls (`navigator.credentials`)
7887
+ * that produce the PRF secret these functions consume — that stays app-local
7888
+ * because it's untestable in this SDK's Node-based test environment and
7889
+ * because RP_NAME/PRF_SALT are legitimately per-app identity, not protocol
7890
+ * facts. `hkdfInfo` is always an explicit caller-supplied parameter, never
7891
+ * defaulted — see the design doc's "load-bearing constraint" for why.
7892
+ */
7893
+ declare function deriveAesKey(prfSecret: Uint8Array, hkdfInfo: Uint8Array): Promise<CryptoKey>;
7894
+ declare function generateStarkKeyPair(): {
7895
+ privateKeyHex: string;
7896
+ publicKeyHex: string;
7897
+ };
7898
+ declare function sealPrivateKey(aesKey: CryptoKey, iv: Uint8Array, privateKeyHex: string): Promise<ArrayBuffer>;
7899
+ declare function unsealPrivateKey(aesKey: CryptoKey, iv: Uint8Array, ciphertext: BufferSource): Promise<string>;
7900
+ declare function signWithPrivateKey(privateKeyHex: string, msgHash: string): [string, string];
7901
+
7859
7902
  type StarknetVenueSigner = VenueSigner<TypedData, Call>;
7860
7903
 
7861
- export { ADMIN_HEADERS, ADMIN_SCOPE, type AddSupplyParams, type AdminGrant, type AdminRequest, type AdminRequestSig, type AdminSession, type AdminSessionTypedDataInput, type BatchMintEditionParams, type BuildFeeCallParams, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, ClaimConditions, ClubService, type CreateCreatorCoinParams, CreateDropParams, type CreateGrantOpts, CreatePopCollectionParams, CreatorCoinFactoryABI, type CreatorCoinPrice, type CreatorCoinReceiptLike, CreatorCoinService, type DeployCollectionParams, DropCollectionABI, DropFactoryABI, DropService, ERC1155CollectionService, type EkuboLaunchParams, type EkuboPoolParams, type FeeSurface, IPClubCollectionABI, IPClubFactoryABI, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPGenesisABI, IPMarketplaceABI, IPNftABI, IPSponsorshipABI, IPTicketCollectionABI, IPTicketCollectionFactoryABI, LAUNCH_PRICE_QUOTE_PER_COIN, Medialane1155ABI, MedialaneClient, MedialaneError, type MintEditionParams, POPCollectionABI, POPFactoryABI, type ParsedAdminHeaders, PopService, type RequestSiwsTokenArgs, type ResolvedOrder, type SiwsSigner, SponsorshipService, StarknetVenue, type StarknetVenueDeps, type StarknetVenueSigner, TicketService, VALIDATED_EKUBO_PARAMS, VenueSigner, adminRequestDigest, build1155CancellationTypedData, build1155OrderTypedData, buildAdminSessionTypedData, buildCancellationTypedData, buildChangeOwnersCall, buildCreateCreatorCoinCall, buildDeployAccountParams, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buybackQuoteRaw, toRaw as coinToRaw, computeAccountAddress, computeOwnerGuid, createAdminSessionGrant, deriveOwnerKeyPair, encodeAdminHeaders, encodeByteArray, fdvHuman, getCounter, getCounter1155, getCreatorCoinPrice, getOrderDetails, getOrderDetails1155, getSiwsStorageKey, getStoredSiwsToken, isSiwsTokenValid, normalizeSiwsSignature, ownerConstructorCalldata, parseAdminHeaders, parseCreatorCoinCreated, priceToEkuboParams, randomNonce, requestSiwsToken, sessionKeyHashOf, signAdminRequest, storeSiwsToken, teamCoinsRaw, toContractConditions as toDropContractConditions, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol, verifyAdminRequestSig };
7904
+ export { ADMIN_HEADERS, ADMIN_SCOPE, type AddSupplyParams, type AdminGrant, type AdminRequest, type AdminRequestSig, type AdminSession, type AdminSessionTypedDataInput, type BatchMintEditionParams, type BuildFeeCallParams, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, ClaimConditions, ClubService, type CreateCreatorCoinParams, CreateDropParams, type CreateGrantOpts, CreatePopCollectionParams, CreatorCoinFactoryABI, type CreatorCoinPrice, type CreatorCoinReceiptLike, CreatorCoinService, type DeployCollectionParams, DropCollectionABI, DropFactoryABI, DropService, ERC1155CollectionService, type EkuboLaunchParams, type EkuboPoolParams, type EscapeInfo, type EscapeStatusName, type EscapeTypeName, type FeeSurface, type GuardianInfo, IPClubCollectionABI, IPClubFactoryABI, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPGenesisABI, IPMarketplaceABI, IPNftABI, IPSponsorshipABI, IPTicketCollectionABI, IPTicketCollectionFactoryABI, LAUNCH_PRICE_QUOTE_PER_COIN, Medialane1155ABI, MedialaneClient, MedialaneError, type MintEditionParams, POPCollectionABI, POPFactoryABI, type ParsedAdminHeaders, PopService, type RequestSiwsTokenArgs, type ResolvedOrder, type SiwsSigner, SponsorshipService, StarknetVenue, type StarknetVenueDeps, type StarknetVenueSigner, TicketService, VALIDATED_EKUBO_PARAMS, VenueSigner, adminRequestDigest, build1155CancellationTypedData, build1155OrderTypedData, buildAdminSessionTypedData, buildCancelEscapeCall, buildCancellationTypedData, buildChangeOwnersCall, buildCompleteEscapeOwnerCall, buildCreateCreatorCoinCall, buildDeployAccountParams, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buildSetFirstGuardianCall, buildTriggerEscapeOwnerCall, buybackQuoteRaw, toRaw as coinToRaw, computeAccountAddress, computeOwnerGuid, createAdminSessionGrant, decodeEscapeAndStatus, decodeGuardiansInfo, deriveAesKey, deriveOwnerKeyPair, encodeAdminHeaders, encodeByteArray, fdvHuman, generateStarkKeyPair, getCounter, getCounter1155, getCreatorCoinPrice, getEscape, getEscapeSecurityPeriod, getGuardians, getOrderDetails, getOrderDetails1155, getSiwsStorageKey, getStoredSiwsToken, isSiwsTokenValid, normalizeSiwsSignature, ownerConstructorCalldata, parseAdminHeaders, parseCreatorCoinCreated, priceToEkuboParams, randomNonce, requestSiwsToken, sealPrivateKey, sessionKeyHashOf, signAdminRequest, signWithPrivateKey, storeSiwsToken, teamCoinsRaw, toContractConditions as toDropContractConditions, unsealPrivateKey, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol, verifyAdminRequestSig };
@@ -11593,7 +11593,114 @@ function buildDeployAccountParams(ownerPubkey, salt = 0) {
11593
11593
  contractAddress: computeAccountAddress(ownerPubkey, salt)
11594
11594
  };
11595
11595
  }
11596
+ var norm = (address) => normalizeAddress("STARKNET", address);
11597
+ var SIGNER_TYPE_NAMES = ["Starknet", "Secp256k1", "Secp256r1"];
11598
+ function encodeFeltArray(items) {
11599
+ return [num.toHex(items.length), ...items];
11600
+ }
11601
+ function encodeStarknetSigner(pubkey) {
11602
+ return ["0x0", num.toHex(pubkey)];
11603
+ }
11604
+ function encodeStarknetSignerArray(pubkeys) {
11605
+ return [num.toHex(pubkeys.length), ...pubkeys.flatMap(encodeStarknetSigner)];
11606
+ }
11607
+ function buildSetFirstGuardianCall(address, guardianPubkey) {
11608
+ return {
11609
+ contractAddress: norm(address),
11610
+ entrypoint: "change_guardians",
11611
+ calldata: [...encodeFeltArray([]), ...encodeStarknetSignerArray([guardianPubkey])]
11612
+ };
11613
+ }
11614
+ function buildTriggerEscapeOwnerCall(targetAddress, newOwnerPubkey) {
11615
+ return {
11616
+ contractAddress: norm(targetAddress),
11617
+ entrypoint: "trigger_escape_owner",
11618
+ calldata: encodeStarknetSigner(newOwnerPubkey)
11619
+ };
11620
+ }
11621
+ function buildCompleteEscapeOwnerCall(targetAddress) {
11622
+ return { contractAddress: norm(targetAddress), entrypoint: "escape_owner", calldata: [] };
11623
+ }
11624
+ function buildCancelEscapeCall(address) {
11625
+ return { contractAddress: norm(address), entrypoint: "cancel_escape", calldata: [] };
11626
+ }
11627
+ function decodeGuardiansInfo(res) {
11628
+ const len = Number(res[0]);
11629
+ const out = [];
11630
+ for (let i = 0; i < len; i++) {
11631
+ const base = 1 + i * 3;
11632
+ out.push({
11633
+ type: SIGNER_TYPE_NAMES[Number(res[base])] ?? "Starknet",
11634
+ guid: res[base + 1],
11635
+ storedValue: res[base + 2]
11636
+ });
11637
+ }
11638
+ return out;
11639
+ }
11640
+ var ESCAPE_TYPE_NAMES = ["None", "Guardian", "Owner"];
11641
+ var ESCAPE_STATUS_NAMES = ["None", "NotReady", "Ready", "Expired"];
11642
+ function decodeEscapeAndStatus(res) {
11643
+ const readyAt = Number(res[0]);
11644
+ const escapeType = ESCAPE_TYPE_NAMES[Number(res[1])] ?? "None";
11645
+ const optionTag = Number(res[2]);
11646
+ const statusIndex = optionTag === 0 ? 5 : 3;
11647
+ const status = ESCAPE_STATUS_NAMES[Number(res[statusIndex])] ?? "None";
11648
+ return { readyAt, escapeType, status };
11649
+ }
11650
+ async function getGuardians(provider, address) {
11651
+ const res = await provider.callContract({
11652
+ contractAddress: norm(address),
11653
+ entrypoint: "get_guardians_info",
11654
+ calldata: []
11655
+ });
11656
+ return decodeGuardiansInfo(res);
11657
+ }
11658
+ async function getEscape(provider, address) {
11659
+ const res = await provider.callContract({
11660
+ contractAddress: norm(address),
11661
+ entrypoint: "get_escape_and_status",
11662
+ calldata: []
11663
+ });
11664
+ return decodeEscapeAndStatus(res);
11665
+ }
11666
+ async function getEscapeSecurityPeriod(provider, address) {
11667
+ const res = await provider.callContract({
11668
+ contractAddress: norm(address),
11669
+ entrypoint: "get_escape_security_period",
11670
+ calldata: []
11671
+ });
11672
+ return Number(res[0]);
11673
+ }
11674
+ async function deriveAesKey(prfSecret, hkdfInfo) {
11675
+ const hkdf = await crypto.subtle.importKey("raw", prfSecret, "HKDF", false, ["deriveKey"]);
11676
+ return crypto.subtle.deriveKey(
11677
+ { name: "HKDF", hash: "SHA-256", salt: new Uint8Array(0), info: hkdfInfo },
11678
+ hkdf,
11679
+ { name: "AES-GCM", length: 256 },
11680
+ false,
11681
+ ["encrypt", "decrypt"]
11682
+ );
11683
+ }
11684
+ function generateStarkKeyPair() {
11685
+ const privateKeyHex = "0x" + Array.from(ec.starkCurve.utils.randomPrivateKey()).map((b) => b.toString(16).padStart(2, "0")).join("");
11686
+ return { privateKeyHex, publicKeyHex: ec.starkCurve.getStarkKey(privateKeyHex) };
11687
+ }
11688
+ async function sealPrivateKey(aesKey, iv, privateKeyHex) {
11689
+ return crypto.subtle.encrypt(
11690
+ { name: "AES-GCM", iv },
11691
+ aesKey,
11692
+ new TextEncoder().encode(privateKeyHex)
11693
+ );
11694
+ }
11695
+ async function unsealPrivateKey(aesKey, iv, ciphertext) {
11696
+ const buf = await crypto.subtle.decrypt({ name: "AES-GCM", iv }, aesKey, ciphertext);
11697
+ return new TextDecoder().decode(buf);
11698
+ }
11699
+ function signWithPrivateKey(privateKeyHex, msgHash) {
11700
+ const sig = ec.starkCurve.sign(msgHash, privateKeyHex);
11701
+ return [num.toHex(sig.r), num.toHex(sig.s)];
11702
+ }
11596
11703
 
11597
- export { ADMIN_HEADERS, ADMIN_SCOPE, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, ClubService, CreatorCoinFactoryABI, CreatorCoinService, DropCollectionABI, DropFactoryABI, DropService, ERC1155CollectionService, IPClubCollectionABI, IPClubFactoryABI, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPGenesisABI, IPMarketplaceABI, IPNftABI, IPSponsorshipABI, IPTicketCollectionABI, IPTicketCollectionFactoryABI, LAUNCH_PRICE_QUOTE_PER_COIN, Medialane1155ABI, MedialaneClient, MedialaneError, POPCollectionABI, POPFactoryABI, PopService, SponsorshipService, StarknetVenue, TicketService, VALIDATED_EKUBO_PARAMS, adminRequestDigest, build1155CancellationTypedData, build1155OrderTypedData, buildAdminSessionTypedData, buildCancellationTypedData, buildChangeOwnersCall, buildCreateCreatorCoinCall, buildDeployAccountParams, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buybackQuoteRaw, toRaw as coinToRaw, computeAccountAddress, computeOwnerGuid, createAdminSessionGrant, deriveOwnerKeyPair, encodeAdminHeaders, encodeByteArray, fdvHuman, getCounter, getCounter1155, getCreatorCoinPrice, getOrderDetails, getOrderDetails1155, getSiwsStorageKey, getStoredSiwsToken, isSiwsTokenValid, normalizeSiwsSignature, ownerConstructorCalldata, parseAdminHeaders, parseCreatorCoinCreated, priceToEkuboParams, randomNonce, requestSiwsToken, sessionKeyHashOf, signAdminRequest, storeSiwsToken, teamCoinsRaw, toContractConditions as toDropContractConditions, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol, verifyAdminRequestSig };
11704
+ export { ADMIN_HEADERS, ADMIN_SCOPE, MAX_SUPPLY as COIN_MAX_SUPPLY, MIN_SUPPLY as COIN_MIN_SUPPLY, ClubService, CreatorCoinFactoryABI, CreatorCoinService, DropCollectionABI, DropFactoryABI, DropService, ERC1155CollectionService, IPClubCollectionABI, IPClubFactoryABI, IPCollection1155ABI, IPCollection1155FactoryABI, IPCollectionABI, IPGenesisABI, IPMarketplaceABI, IPNftABI, IPSponsorshipABI, IPTicketCollectionABI, IPTicketCollectionFactoryABI, LAUNCH_PRICE_QUOTE_PER_COIN, Medialane1155ABI, MedialaneClient, MedialaneError, POPCollectionABI, POPFactoryABI, PopService, SponsorshipService, StarknetVenue, TicketService, VALIDATED_EKUBO_PARAMS, adminRequestDigest, build1155CancellationTypedData, build1155OrderTypedData, buildAdminSessionTypedData, buildCancelEscapeCall, buildCancellationTypedData, buildChangeOwnersCall, buildCompleteEscapeOwnerCall, buildCreateCreatorCoinCall, buildDeployAccountParams, buildFeeCall, buildLaunchOnEkuboCalls, buildOrderTypedData, buildSetFirstGuardianCall, buildTriggerEscapeOwnerCall, buybackQuoteRaw, toRaw as coinToRaw, computeAccountAddress, computeOwnerGuid, createAdminSessionGrant, decodeEscapeAndStatus, decodeGuardiansInfo, deriveAesKey, deriveOwnerKeyPair, encodeAdminHeaders, encodeByteArray, fdvHuman, generateStarkKeyPair, getCounter, getCounter1155, getCreatorCoinPrice, getEscape, getEscapeSecurityPeriod, getGuardians, getOrderDetails, getOrderDetails1155, getSiwsStorageKey, getStoredSiwsToken, isSiwsTokenValid, normalizeSiwsSignature, ownerConstructorCalldata, parseAdminHeaders, parseCreatorCoinCreated, priceToEkuboParams, randomNonce, requestSiwsToken, sealPrivateKey, sessionKeyHashOf, signAdminRequest, signWithPrivateKey, storeSiwsToken, teamCoinsRaw, toContractConditions as toDropContractConditions, unsealPrivateKey, validateName as validateCoinName, validateSupply as validateCoinSupply, validateSymbol as validateCoinSymbol, verifyAdminRequestSig };
11598
11705
  //# sourceMappingURL=index.js.map
11599
11706
  //# sourceMappingURL=index.js.map