@joai/warps 4.12.2 → 4.13.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.cts CHANGED
@@ -365,7 +365,7 @@ interface AdapterWarpWallet {
365
365
  delete(provider: WarpWalletProvider, externalId: string): Promise<void>;
366
366
  getAddress(): string | null;
367
367
  getPublicKey(): string | null;
368
- registerX402Handlers?(client: unknown): Promise<Record<string, () => void>>;
368
+ getMppAccount?(): Promise<unknown>;
369
369
  }
370
370
 
371
371
  declare enum WarpChainName {
@@ -491,6 +491,10 @@ type WarpOutputName = string;
491
491
  type WarpResulutionPath = string;
492
492
  type WarpMessageName = string;
493
493
  type WarpSchedule = 'minutely' | 'hourly' | 'daily' | 'weekly' | 'monthly' | 'yearly';
494
+ type WarpNextConfig = string | {
495
+ success?: string;
496
+ error?: string;
497
+ };
494
498
  type Warp = {
495
499
  protocol: string;
496
500
  chain?: WarpChainName;
@@ -502,7 +506,7 @@ type Warp = {
502
506
  vars?: Record<WarpVarPlaceholder, string>;
503
507
  trigger?: WarpTrigger;
504
508
  actions: WarpAction[];
505
- next?: string;
509
+ next?: WarpNextConfig;
506
510
  output?: Record<WarpOutputName, WarpResulutionPath>;
507
511
  messages?: Record<WarpMessageName, WarpText>;
508
512
  ui?: string;
@@ -528,6 +532,7 @@ type WarpTrigger = {
528
532
  } | {
529
533
  type: 'webhook';
530
534
  source: string;
535
+ match?: Record<string, string | number | boolean>;
531
536
  inputs?: Record<string, string>;
532
537
  };
533
538
  type WarpStateAction = {
@@ -541,7 +546,7 @@ type WarpStateAction = {
541
546
  inputs?: WarpActionInput[];
542
547
  primary?: boolean;
543
548
  auto?: boolean;
544
- next?: string;
549
+ next?: WarpNextConfig;
545
550
  when?: string;
546
551
  };
547
552
  type WarpMountAction = {
@@ -552,7 +557,7 @@ type WarpMountAction = {
552
557
  inputs?: WarpActionInput[];
553
558
  primary?: boolean;
554
559
  auto?: boolean;
555
- next?: string;
560
+ next?: WarpNextConfig;
556
561
  when?: string;
557
562
  };
558
563
  type WarpUnmountAction = {
@@ -563,7 +568,7 @@ type WarpUnmountAction = {
563
568
  inputs?: WarpActionInput[];
564
569
  primary?: boolean;
565
570
  auto?: boolean;
566
- next?: string;
571
+ next?: WarpNextConfig;
567
572
  when?: string;
568
573
  };
569
574
  type WarpTransferAction = {
@@ -577,7 +582,7 @@ type WarpTransferAction = {
577
582
  inputs?: WarpActionInput[];
578
583
  primary?: boolean;
579
584
  auto?: boolean;
580
- next?: string;
585
+ next?: WarpNextConfig;
581
586
  when?: string;
582
587
  };
583
588
  type WarpContractAction = {
@@ -594,7 +599,7 @@ type WarpContractAction = {
594
599
  inputs?: WarpActionInput[];
595
600
  primary?: boolean;
596
601
  auto?: boolean;
597
- next?: string;
602
+ next?: WarpNextConfig;
598
603
  when?: string;
599
604
  };
600
605
  type WarpQueryAction = {
@@ -608,7 +613,7 @@ type WarpQueryAction = {
608
613
  inputs?: WarpActionInput[];
609
614
  primary?: boolean;
610
615
  auto?: boolean;
611
- next?: string;
616
+ next?: WarpNextConfig;
612
617
  when?: string;
613
618
  };
614
619
  type WarpCollectAction = {
@@ -619,7 +624,7 @@ type WarpCollectAction = {
619
624
  inputs?: WarpActionInput[];
620
625
  primary?: boolean;
621
626
  auto?: boolean;
622
- next?: string;
627
+ next?: WarpNextConfig;
623
628
  when?: string;
624
629
  };
625
630
  type WarpComputeAction = {
@@ -629,7 +634,7 @@ type WarpComputeAction = {
629
634
  inputs?: WarpActionInput[];
630
635
  primary?: boolean;
631
636
  auto?: boolean;
632
- next?: string;
637
+ next?: WarpNextConfig;
633
638
  when?: string;
634
639
  };
635
640
  type WarpCollectDestination = WarpCollectDestinationHttp | string;
@@ -656,7 +661,7 @@ type WarpMcpAction = {
656
661
  inputs?: WarpActionInput[];
657
662
  primary?: boolean;
658
663
  auto?: boolean;
659
- next?: string;
664
+ next?: WarpNextConfig;
660
665
  when?: string;
661
666
  };
662
667
  type WarpMcpDestination = {
@@ -672,7 +677,7 @@ type WarpPromptAction = {
672
677
  inputs?: WarpActionInput[];
673
678
  primary?: boolean;
674
679
  auto?: boolean;
675
- next?: string;
680
+ next?: WarpNextConfig;
676
681
  when?: string;
677
682
  };
678
683
  type WarpActionInputSource = 'field' | 'query' | 'user:wallet' | 'hidden';
@@ -923,7 +928,11 @@ declare const hasInputPrefix: (input: string) => boolean;
923
928
 
924
929
  declare const applyOutputToMessages: (warp: Warp, output: Record<string, any>, config?: WarpClientConfig) => Record<string, string>;
925
930
 
931
+ /** Resolve a next config (string or object) into a plain string for the given path. */
932
+ declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string | null;
926
933
  declare const getNextInfo: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput) => WarpExecutionNextInfo | null;
934
+ /** Resolve the next chain for a given execution status. For string next, only resolves on success. For object next, resolves the matching path. */
935
+ declare const getNextInfoForStatus: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput, status: "success" | "error" | "unhandled") => WarpExecutionNextInfo | null;
927
936
 
928
937
  declare class WarpSerializer {
929
938
  private readonly typeRegistry?;
@@ -1101,7 +1110,14 @@ declare function createDefaultWalletProvider(config: WarpClientConfig, chain: Wa
1101
1110
  declare const getRequiredAssetIds: (warp: Warp, chainInfo: WarpChainInfo) => string[];
1102
1111
  declare const checkWarpAssetBalance: (warp: Warp, walletAddress: string, walletChain: WarpChainName, adapters: ChainAdapter[]) => Promise<boolean>;
1103
1112
 
1104
- declare function handleX402Payment(response: Response, url: string, method: string, body: string | undefined, adapters: ChainAdapter[]): Promise<Response>;
1113
+ /**
1114
+ * Returns an mppx-powered fetch if any adapter supports MPP payments,
1115
+ * otherwise returns standard fetch. The returned fetch auto-handles
1116
+ * HTTP 402 Payment Required responses (challenge → pay → retry).
1117
+ *
1118
+ * MPP only supports EVM wallets on the Tempo chain.
1119
+ */
1120
+ declare function getMppFetch(adapters: ChainAdapter[]): Promise<(url: string, init: RequestInit) => Promise<Response>>;
1105
1121
 
1106
1122
  type CodecFunc<T extends WarpNativeValue = WarpNativeValue> = (value: T) => string;
1107
1123
  declare const string: CodecFunc<string>;
@@ -1430,4 +1446,23 @@ declare class WarpValidator {
1430
1446
  private validateSchema;
1431
1447
  }
1432
1448
 
1433
- export { type AdapterTypeRegistry, type AdapterWarpAbiBuilder, type AdapterWarpBrandBuilder, type AdapterWarpBuilder, type AdapterWarpDataLoader, type AdapterWarpExecutor, type AdapterWarpExplorer, type AdapterWarpOutput, type AdapterWarpRegistry, type AdapterWarpSerializer, type AdapterWarpWallet, type BaseWarpActionInputType, type BaseWarpBuilder, BrowserCryptoProvider, type BuiltInWarpWalletProvider, CLOUD_WALLET_PROVIDERS, CacheTtl, type ChainAdapter, type ChainAdapterFactory, type ClientCacheConfig, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, EvmWalletChainNames, type ExecutionHandlers, type GeneratedSourceInfo, type GeneratedSourceType, type HttpAuthHeaders, type InterpolationBag, MultiversxWalletChainNames, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type WalletCache, type WalletProvider, type WalletProviderFactory, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheAdapter, type WarpCacheConfig, WarpCacheKey, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetLogo, type WarpChainAssetLogoThemed, type WarpChainAssetNftMetadata, type WarpChainAssetType, type WarpChainAssetValue, WarpChainDisplayNames, type WarpChainEnv, type WarpChainInfo, type WarpChainInfoLogo, type WarpChainInfoLogoThemed, WarpChainLogos, WarpChainName, WarpChainResolver, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, WarpCompositeResolver, type WarpComputeAction, WarpConfig, WarpConstants, type WarpContract, type WarpContractAction, type WarpContractVerification, type WarpDataLoaderOptions, type WarpExecutable, type WarpExecutionMessages, type WarpExecutionNextInfo, type WarpExecutionOutput, WarpExecutor, type WarpExplorerName, WarpFactory, type WarpI18nText, type WarpIdentifierType, WarpIndex, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpMcpAction, type WarpMcpDestination, type WarpMessageName, type WarpMeta, type WarpMountAction, type WarpNativeValue, type WarpOutputName, WarpPlatformName, type WarpPlatformValue, WarpPlatforms, type WarpPromptAction, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResolver, type WarpResolverResult, type WarpResulutionPath, type WarpSchedule, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStateAction, type WarpStructValue, type WarpText, type WarpTheme, type WarpTransferAction, type WarpTrigger, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUnmountAction, type WarpUser, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, type WarpWalletProvider, address, applyOutputToMessages, asset, biguint, bool, buildGeneratedFallbackWarpIdentifier, buildGeneratedSourceWarpIdentifier, buildInputsContext, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, checkWarpAssetBalance, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createDefaultWalletProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, doesWarpRequireWallet, evaluateOutputCommon, evaluateWhenCondition, extractCollectOutput, extractIdentifierInfoFromUrl, extractPromptOutput, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getChainDisplayName, getChainLogo, getCryptoProvider, getEventNameFromWarp, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getNextInfo, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletExternalId, getWarpWalletExternalIdFromConfig, getWarpWalletExternalIdFromConfigOrFail, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, handleX402Payment, hasInputPrefix, hex, initializeWalletCache, isEqualWarpIdentifier, isGeneratedSourcePrivateIdentifier, isPlatformValue, isWarpActionAutoExecute, isWarpI18nText, isWarpWalletReadOnly, mergeNestedPayload, normalizeAndValidateMnemonic, normalizeMnemonic, option, parseOutputOutIndex, parseSignedMessage, parseWarpQueryStringToObject, removeWarpChainPrefix, removeWarpWalletFromConfig, replacePlaceholders, replacePlaceholdersInWhenExpression, resolvePlatformValue, resolveWarpText, safeWindow, setCryptoProvider, setWarpWalletInConfig, shiftBigintBy, splitInput, stampGeneratedWarpMeta, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateMnemonicLength, validateSignedMessage, vector, withAdapterFallback };
1449
+ type WebhookTrigger = Extract<WarpTrigger, {
1450
+ type: 'webhook';
1451
+ }>;
1452
+ /**
1453
+ * Returns true if the payload satisfies all conditions in `trigger.match`.
1454
+ * If `match` is absent or empty, always returns true (fires for all events).
1455
+ */
1456
+ declare function matchesTrigger(trigger: WebhookTrigger, payload: unknown): boolean;
1457
+ /**
1458
+ * Resolves the trigger's `inputs` against the payload.
1459
+ * Values containing a dot are treated as dot-paths into the payload; others as static literals.
1460
+ */
1461
+ declare function resolveInputs(trigger: WebhookTrigger, payload: unknown): Record<string, unknown>;
1462
+ /**
1463
+ * Resolves a dot-path (e.g. "highlight.text") into a nested value.
1464
+ * Returns undefined if any segment along the path is missing.
1465
+ */
1466
+ declare function resolvePath(obj: unknown, path: string): unknown;
1467
+
1468
+ export { type AdapterTypeRegistry, type AdapterWarpAbiBuilder, type AdapterWarpBrandBuilder, type AdapterWarpBuilder, type AdapterWarpDataLoader, type AdapterWarpExecutor, type AdapterWarpExplorer, type AdapterWarpOutput, type AdapterWarpRegistry, type AdapterWarpSerializer, type AdapterWarpWallet, type BaseWarpActionInputType, type BaseWarpBuilder, BrowserCryptoProvider, type BuiltInWarpWalletProvider, CLOUD_WALLET_PROVIDERS, CacheTtl, type ChainAdapter, type ChainAdapterFactory, type ClientCacheConfig, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, EvmWalletChainNames, type ExecutionHandlers, type GeneratedSourceInfo, type GeneratedSourceType, type HttpAuthHeaders, type InterpolationBag, MultiversxWalletChainNames, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type WalletCache, type WalletProvider, type WalletProviderFactory, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheAdapter, type WarpCacheConfig, WarpCacheKey, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetLogo, type WarpChainAssetLogoThemed, type WarpChainAssetNftMetadata, type WarpChainAssetType, type WarpChainAssetValue, WarpChainDisplayNames, type WarpChainEnv, type WarpChainInfo, type WarpChainInfoLogo, type WarpChainInfoLogoThemed, WarpChainLogos, WarpChainName, WarpChainResolver, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, WarpCompositeResolver, type WarpComputeAction, WarpConfig, WarpConstants, type WarpContract, type WarpContractAction, type WarpContractVerification, type WarpDataLoaderOptions, type WarpExecutable, type WarpExecutionMessages, type WarpExecutionNextInfo, type WarpExecutionOutput, WarpExecutor, type WarpExplorerName, WarpFactory, type WarpI18nText, type WarpIdentifierType, WarpIndex, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpMcpAction, type WarpMcpDestination, type WarpMessageName, type WarpMeta, type WarpMountAction, type WarpNativeValue, type WarpNextConfig, type WarpOutputName, WarpPlatformName, type WarpPlatformValue, WarpPlatforms, type WarpPromptAction, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResolver, type WarpResolverResult, type WarpResulutionPath, type WarpSchedule, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStateAction, type WarpStructValue, type WarpText, type WarpTheme, type WarpTransferAction, type WarpTrigger, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUnmountAction, type WarpUser, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, type WarpWalletProvider, address, applyOutputToMessages, asset, biguint, bool, buildGeneratedFallbackWarpIdentifier, buildGeneratedSourceWarpIdentifier, buildInputsContext, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, checkWarpAssetBalance, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createDefaultWalletProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, doesWarpRequireWallet, evaluateOutputCommon, evaluateWhenCondition, extractCollectOutput, extractIdentifierInfoFromUrl, extractPromptOutput, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getChainDisplayName, getChainLogo, getCryptoProvider, getEventNameFromWarp, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getMppFetch, getNextInfo, getNextInfoForStatus, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletExternalId, getWarpWalletExternalIdFromConfig, getWarpWalletExternalIdFromConfigOrFail, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, hasInputPrefix, hex, initializeWalletCache, isEqualWarpIdentifier, isGeneratedSourcePrivateIdentifier, isPlatformValue, isWarpActionAutoExecute, isWarpI18nText, isWarpWalletReadOnly, matchesTrigger, mergeNestedPayload, normalizeAndValidateMnemonic, normalizeMnemonic, option, parseOutputOutIndex, parseSignedMessage, parseWarpQueryStringToObject, removeWarpChainPrefix, removeWarpWalletFromConfig, replacePlaceholders, replacePlaceholdersInWhenExpression, resolveInputs, resolveNextString, resolvePath, resolvePlatformValue, resolveWarpText, safeWindow, setCryptoProvider, setWarpWalletInConfig, shiftBigintBy, splitInput, stampGeneratedWarpMeta, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateMnemonicLength, validateSignedMessage, vector, withAdapterFallback };
package/dist/index.d.ts CHANGED
@@ -365,7 +365,7 @@ interface AdapterWarpWallet {
365
365
  delete(provider: WarpWalletProvider, externalId: string): Promise<void>;
366
366
  getAddress(): string | null;
367
367
  getPublicKey(): string | null;
368
- registerX402Handlers?(client: unknown): Promise<Record<string, () => void>>;
368
+ getMppAccount?(): Promise<unknown>;
369
369
  }
370
370
 
371
371
  declare enum WarpChainName {
@@ -491,6 +491,10 @@ type WarpOutputName = string;
491
491
  type WarpResulutionPath = string;
492
492
  type WarpMessageName = string;
493
493
  type WarpSchedule = 'minutely' | 'hourly' | 'daily' | 'weekly' | 'monthly' | 'yearly';
494
+ type WarpNextConfig = string | {
495
+ success?: string;
496
+ error?: string;
497
+ };
494
498
  type Warp = {
495
499
  protocol: string;
496
500
  chain?: WarpChainName;
@@ -502,7 +506,7 @@ type Warp = {
502
506
  vars?: Record<WarpVarPlaceholder, string>;
503
507
  trigger?: WarpTrigger;
504
508
  actions: WarpAction[];
505
- next?: string;
509
+ next?: WarpNextConfig;
506
510
  output?: Record<WarpOutputName, WarpResulutionPath>;
507
511
  messages?: Record<WarpMessageName, WarpText>;
508
512
  ui?: string;
@@ -528,6 +532,7 @@ type WarpTrigger = {
528
532
  } | {
529
533
  type: 'webhook';
530
534
  source: string;
535
+ match?: Record<string, string | number | boolean>;
531
536
  inputs?: Record<string, string>;
532
537
  };
533
538
  type WarpStateAction = {
@@ -541,7 +546,7 @@ type WarpStateAction = {
541
546
  inputs?: WarpActionInput[];
542
547
  primary?: boolean;
543
548
  auto?: boolean;
544
- next?: string;
549
+ next?: WarpNextConfig;
545
550
  when?: string;
546
551
  };
547
552
  type WarpMountAction = {
@@ -552,7 +557,7 @@ type WarpMountAction = {
552
557
  inputs?: WarpActionInput[];
553
558
  primary?: boolean;
554
559
  auto?: boolean;
555
- next?: string;
560
+ next?: WarpNextConfig;
556
561
  when?: string;
557
562
  };
558
563
  type WarpUnmountAction = {
@@ -563,7 +568,7 @@ type WarpUnmountAction = {
563
568
  inputs?: WarpActionInput[];
564
569
  primary?: boolean;
565
570
  auto?: boolean;
566
- next?: string;
571
+ next?: WarpNextConfig;
567
572
  when?: string;
568
573
  };
569
574
  type WarpTransferAction = {
@@ -577,7 +582,7 @@ type WarpTransferAction = {
577
582
  inputs?: WarpActionInput[];
578
583
  primary?: boolean;
579
584
  auto?: boolean;
580
- next?: string;
585
+ next?: WarpNextConfig;
581
586
  when?: string;
582
587
  };
583
588
  type WarpContractAction = {
@@ -594,7 +599,7 @@ type WarpContractAction = {
594
599
  inputs?: WarpActionInput[];
595
600
  primary?: boolean;
596
601
  auto?: boolean;
597
- next?: string;
602
+ next?: WarpNextConfig;
598
603
  when?: string;
599
604
  };
600
605
  type WarpQueryAction = {
@@ -608,7 +613,7 @@ type WarpQueryAction = {
608
613
  inputs?: WarpActionInput[];
609
614
  primary?: boolean;
610
615
  auto?: boolean;
611
- next?: string;
616
+ next?: WarpNextConfig;
612
617
  when?: string;
613
618
  };
614
619
  type WarpCollectAction = {
@@ -619,7 +624,7 @@ type WarpCollectAction = {
619
624
  inputs?: WarpActionInput[];
620
625
  primary?: boolean;
621
626
  auto?: boolean;
622
- next?: string;
627
+ next?: WarpNextConfig;
623
628
  when?: string;
624
629
  };
625
630
  type WarpComputeAction = {
@@ -629,7 +634,7 @@ type WarpComputeAction = {
629
634
  inputs?: WarpActionInput[];
630
635
  primary?: boolean;
631
636
  auto?: boolean;
632
- next?: string;
637
+ next?: WarpNextConfig;
633
638
  when?: string;
634
639
  };
635
640
  type WarpCollectDestination = WarpCollectDestinationHttp | string;
@@ -656,7 +661,7 @@ type WarpMcpAction = {
656
661
  inputs?: WarpActionInput[];
657
662
  primary?: boolean;
658
663
  auto?: boolean;
659
- next?: string;
664
+ next?: WarpNextConfig;
660
665
  when?: string;
661
666
  };
662
667
  type WarpMcpDestination = {
@@ -672,7 +677,7 @@ type WarpPromptAction = {
672
677
  inputs?: WarpActionInput[];
673
678
  primary?: boolean;
674
679
  auto?: boolean;
675
- next?: string;
680
+ next?: WarpNextConfig;
676
681
  when?: string;
677
682
  };
678
683
  type WarpActionInputSource = 'field' | 'query' | 'user:wallet' | 'hidden';
@@ -923,7 +928,11 @@ declare const hasInputPrefix: (input: string) => boolean;
923
928
 
924
929
  declare const applyOutputToMessages: (warp: Warp, output: Record<string, any>, config?: WarpClientConfig) => Record<string, string>;
925
930
 
931
+ /** Resolve a next config (string or object) into a plain string for the given path. */
932
+ declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string | null;
926
933
  declare const getNextInfo: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput) => WarpExecutionNextInfo | null;
934
+ /** Resolve the next chain for a given execution status. For string next, only resolves on success. For object next, resolves the matching path. */
935
+ declare const getNextInfoForStatus: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput, status: "success" | "error" | "unhandled") => WarpExecutionNextInfo | null;
927
936
 
928
937
  declare class WarpSerializer {
929
938
  private readonly typeRegistry?;
@@ -1101,7 +1110,14 @@ declare function createDefaultWalletProvider(config: WarpClientConfig, chain: Wa
1101
1110
  declare const getRequiredAssetIds: (warp: Warp, chainInfo: WarpChainInfo) => string[];
1102
1111
  declare const checkWarpAssetBalance: (warp: Warp, walletAddress: string, walletChain: WarpChainName, adapters: ChainAdapter[]) => Promise<boolean>;
1103
1112
 
1104
- declare function handleX402Payment(response: Response, url: string, method: string, body: string | undefined, adapters: ChainAdapter[]): Promise<Response>;
1113
+ /**
1114
+ * Returns an mppx-powered fetch if any adapter supports MPP payments,
1115
+ * otherwise returns standard fetch. The returned fetch auto-handles
1116
+ * HTTP 402 Payment Required responses (challenge → pay → retry).
1117
+ *
1118
+ * MPP only supports EVM wallets on the Tempo chain.
1119
+ */
1120
+ declare function getMppFetch(adapters: ChainAdapter[]): Promise<(url: string, init: RequestInit) => Promise<Response>>;
1105
1121
 
1106
1122
  type CodecFunc<T extends WarpNativeValue = WarpNativeValue> = (value: T) => string;
1107
1123
  declare const string: CodecFunc<string>;
@@ -1430,4 +1446,23 @@ declare class WarpValidator {
1430
1446
  private validateSchema;
1431
1447
  }
1432
1448
 
1433
- export { type AdapterTypeRegistry, type AdapterWarpAbiBuilder, type AdapterWarpBrandBuilder, type AdapterWarpBuilder, type AdapterWarpDataLoader, type AdapterWarpExecutor, type AdapterWarpExplorer, type AdapterWarpOutput, type AdapterWarpRegistry, type AdapterWarpSerializer, type AdapterWarpWallet, type BaseWarpActionInputType, type BaseWarpBuilder, BrowserCryptoProvider, type BuiltInWarpWalletProvider, CLOUD_WALLET_PROVIDERS, CacheTtl, type ChainAdapter, type ChainAdapterFactory, type ClientCacheConfig, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, EvmWalletChainNames, type ExecutionHandlers, type GeneratedSourceInfo, type GeneratedSourceType, type HttpAuthHeaders, type InterpolationBag, MultiversxWalletChainNames, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type WalletCache, type WalletProvider, type WalletProviderFactory, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheAdapter, type WarpCacheConfig, WarpCacheKey, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetLogo, type WarpChainAssetLogoThemed, type WarpChainAssetNftMetadata, type WarpChainAssetType, type WarpChainAssetValue, WarpChainDisplayNames, type WarpChainEnv, type WarpChainInfo, type WarpChainInfoLogo, type WarpChainInfoLogoThemed, WarpChainLogos, WarpChainName, WarpChainResolver, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, WarpCompositeResolver, type WarpComputeAction, WarpConfig, WarpConstants, type WarpContract, type WarpContractAction, type WarpContractVerification, type WarpDataLoaderOptions, type WarpExecutable, type WarpExecutionMessages, type WarpExecutionNextInfo, type WarpExecutionOutput, WarpExecutor, type WarpExplorerName, WarpFactory, type WarpI18nText, type WarpIdentifierType, WarpIndex, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpMcpAction, type WarpMcpDestination, type WarpMessageName, type WarpMeta, type WarpMountAction, type WarpNativeValue, type WarpOutputName, WarpPlatformName, type WarpPlatformValue, WarpPlatforms, type WarpPromptAction, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResolver, type WarpResolverResult, type WarpResulutionPath, type WarpSchedule, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStateAction, type WarpStructValue, type WarpText, type WarpTheme, type WarpTransferAction, type WarpTrigger, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUnmountAction, type WarpUser, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, type WarpWalletProvider, address, applyOutputToMessages, asset, biguint, bool, buildGeneratedFallbackWarpIdentifier, buildGeneratedSourceWarpIdentifier, buildInputsContext, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, checkWarpAssetBalance, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createDefaultWalletProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, doesWarpRequireWallet, evaluateOutputCommon, evaluateWhenCondition, extractCollectOutput, extractIdentifierInfoFromUrl, extractPromptOutput, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getChainDisplayName, getChainLogo, getCryptoProvider, getEventNameFromWarp, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getNextInfo, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletExternalId, getWarpWalletExternalIdFromConfig, getWarpWalletExternalIdFromConfigOrFail, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, handleX402Payment, hasInputPrefix, hex, initializeWalletCache, isEqualWarpIdentifier, isGeneratedSourcePrivateIdentifier, isPlatformValue, isWarpActionAutoExecute, isWarpI18nText, isWarpWalletReadOnly, mergeNestedPayload, normalizeAndValidateMnemonic, normalizeMnemonic, option, parseOutputOutIndex, parseSignedMessage, parseWarpQueryStringToObject, removeWarpChainPrefix, removeWarpWalletFromConfig, replacePlaceholders, replacePlaceholdersInWhenExpression, resolvePlatformValue, resolveWarpText, safeWindow, setCryptoProvider, setWarpWalletInConfig, shiftBigintBy, splitInput, stampGeneratedWarpMeta, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateMnemonicLength, validateSignedMessage, vector, withAdapterFallback };
1449
+ type WebhookTrigger = Extract<WarpTrigger, {
1450
+ type: 'webhook';
1451
+ }>;
1452
+ /**
1453
+ * Returns true if the payload satisfies all conditions in `trigger.match`.
1454
+ * If `match` is absent or empty, always returns true (fires for all events).
1455
+ */
1456
+ declare function matchesTrigger(trigger: WebhookTrigger, payload: unknown): boolean;
1457
+ /**
1458
+ * Resolves the trigger's `inputs` against the payload.
1459
+ * Values containing a dot are treated as dot-paths into the payload; others as static literals.
1460
+ */
1461
+ declare function resolveInputs(trigger: WebhookTrigger, payload: unknown): Record<string, unknown>;
1462
+ /**
1463
+ * Resolves a dot-path (e.g. "highlight.text") into a nested value.
1464
+ * Returns undefined if any segment along the path is missing.
1465
+ */
1466
+ declare function resolvePath(obj: unknown, path: string): unknown;
1467
+
1468
+ export { type AdapterTypeRegistry, type AdapterWarpAbiBuilder, type AdapterWarpBrandBuilder, type AdapterWarpBuilder, type AdapterWarpDataLoader, type AdapterWarpExecutor, type AdapterWarpExplorer, type AdapterWarpOutput, type AdapterWarpRegistry, type AdapterWarpSerializer, type AdapterWarpWallet, type BaseWarpActionInputType, type BaseWarpBuilder, BrowserCryptoProvider, type BuiltInWarpWalletProvider, CLOUD_WALLET_PROVIDERS, CacheTtl, type ChainAdapter, type ChainAdapterFactory, type ClientCacheConfig, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, EvmWalletChainNames, type ExecutionHandlers, type GeneratedSourceInfo, type GeneratedSourceType, type HttpAuthHeaders, type InterpolationBag, MultiversxWalletChainNames, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type WalletCache, type WalletProvider, type WalletProviderFactory, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheAdapter, type WarpCacheConfig, WarpCacheKey, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetLogo, type WarpChainAssetLogoThemed, type WarpChainAssetNftMetadata, type WarpChainAssetType, type WarpChainAssetValue, WarpChainDisplayNames, type WarpChainEnv, type WarpChainInfo, type WarpChainInfoLogo, type WarpChainInfoLogoThemed, WarpChainLogos, WarpChainName, WarpChainResolver, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, WarpCompositeResolver, type WarpComputeAction, WarpConfig, WarpConstants, type WarpContract, type WarpContractAction, type WarpContractVerification, type WarpDataLoaderOptions, type WarpExecutable, type WarpExecutionMessages, type WarpExecutionNextInfo, type WarpExecutionOutput, WarpExecutor, type WarpExplorerName, WarpFactory, type WarpI18nText, type WarpIdentifierType, WarpIndex, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpMcpAction, type WarpMcpDestination, type WarpMessageName, type WarpMeta, type WarpMountAction, type WarpNativeValue, type WarpNextConfig, type WarpOutputName, WarpPlatformName, type WarpPlatformValue, WarpPlatforms, type WarpPromptAction, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResolver, type WarpResolverResult, type WarpResulutionPath, type WarpSchedule, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStateAction, type WarpStructValue, type WarpText, type WarpTheme, type WarpTransferAction, type WarpTrigger, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUnmountAction, type WarpUser, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, type WarpWalletProvider, address, applyOutputToMessages, asset, biguint, bool, buildGeneratedFallbackWarpIdentifier, buildGeneratedSourceWarpIdentifier, buildInputsContext, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, checkWarpAssetBalance, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createDefaultWalletProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, doesWarpRequireWallet, evaluateOutputCommon, evaluateWhenCondition, extractCollectOutput, extractIdentifierInfoFromUrl, extractPromptOutput, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getChainDisplayName, getChainLogo, getCryptoProvider, getEventNameFromWarp, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getMppFetch, getNextInfo, getNextInfoForStatus, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletExternalId, getWarpWalletExternalIdFromConfig, getWarpWalletExternalIdFromConfigOrFail, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, hasInputPrefix, hex, initializeWalletCache, isEqualWarpIdentifier, isGeneratedSourcePrivateIdentifier, isPlatformValue, isWarpActionAutoExecute, isWarpI18nText, isWarpWalletReadOnly, matchesTrigger, mergeNestedPayload, normalizeAndValidateMnemonic, normalizeMnemonic, option, parseOutputOutIndex, parseSignedMessage, parseWarpQueryStringToObject, removeWarpChainPrefix, removeWarpWalletFromConfig, replacePlaceholders, replacePlaceholdersInWhenExpression, resolveInputs, resolveNextString, resolvePath, resolvePlatformValue, resolveWarpText, safeWindow, setCryptoProvider, setWarpWalletInConfig, shiftBigintBy, splitInput, stampGeneratedWarpMeta, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateMnemonicLength, validateSignedMessage, vector, withAdapterFallback };
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- "use strict";var _e=Object.create;var yt=Object.defineProperty;var Je=Object.getOwnPropertyDescriptor;var Qe=Object.getOwnPropertyNames;var Ke=Object.getPrototypeOf,Xe=Object.prototype.hasOwnProperty;var Ze=(r,t)=>{for(var e in t)yt(r,e,{get:t[e],enumerable:!0})},ue=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Qe(t))!Xe.call(r,i)&&i!==e&&yt(r,i,{get:()=>t[i],enumerable:!(n=Je(t,i))||n.enumerable});return r};var K=(r,t,e)=>(e=r!=null?_e(Ke(r)):{},ue(t||!r||!r.__esModule?yt(e,"default",{value:r,enumerable:!0}):e,r)),Ye=r=>ue(yt({},"__esModule",{value:!0}),r);var vn={};Ze(vn,{BrowserCryptoProvider:()=>vt,CLOUD_WALLET_PROVIDERS:()=>cr,CacheTtl:()=>ne,EvmWalletChainNames:()=>pr,MultiversxWalletChainNames:()=>lr,NodeCryptoProvider:()=>Ct,WARP_LANGUAGES:()=>Ir,WarpAssets:()=>I,WarpBrandBuilder:()=>Yt,WarpBuilder:()=>te,WarpCache:()=>ut,WarpCacheKey:()=>dt,WarpChainDisplayNames:()=>Ce,WarpChainLogos:()=>Ae,WarpChainName:()=>ve,WarpChainResolver:()=>rt,WarpClient:()=>oe,WarpCompositeResolver:()=>nt,WarpConfig:()=>D,WarpConstants:()=>c,WarpExecutor:()=>ft,WarpFactory:()=>Q,WarpIndex:()=>ht,WarpInputTypes:()=>y,WarpInterpolator:()=>B,WarpLinkBuilder:()=>z,WarpLinkDetecter:()=>mt,WarpLogger:()=>A,WarpPlatformName:()=>Nt,WarpPlatforms:()=>Bt,WarpProtocolVersions:()=>M,WarpSerializer:()=>w,WarpTypeRegistry:()=>pe,WarpValidator:()=>pt,address:()=>sn,applyOutputToMessages:()=>It,asset:()=>Zt,biguint:()=>nn,bool:()=>an,buildGeneratedFallbackWarpIdentifier:()=>Oe,buildGeneratedSourceWarpIdentifier:()=>qr,buildInputsContext:()=>ot,buildMappedOutput:()=>J,buildNestedPayload:()=>Se,bytesToBase64:()=>vr,bytesToHex:()=>xe,checkWarpAssetBalance:()=>Qr,cleanWarpIdentifier:()=>X,createAuthHeaders:()=>Pt,createAuthMessage:()=>St,createCryptoProvider:()=>Ar,createDefaultWalletProvider:()=>Jr,createHttpAuthHeaders:()=>Ur,createSignableMessage:()=>Re,createWarpI18nText:()=>Pr,createWarpIdentifier:()=>xt,doesWarpRequireWallet:()=>wr,evaluateOutputCommon:()=>Gt,evaluateWhenCondition:()=>Dt,extractCollectOutput:()=>Y,extractIdentifierInfoFromUrl:()=>Z,extractPromptOutput:()=>_t,extractQueryStringFromIdentifier:()=>kt,extractQueryStringFromUrl:()=>jt,extractResolvedInputValues:()=>V,extractWarpSecrets:()=>xr,findWarpAdapterForChain:()=>W,getChainDisplayName:()=>dr,getChainLogo:()=>gr,getCryptoProvider:()=>Vt,getEventNameFromWarp:()=>fr,getGeneratedSourceWarpName:()=>Ne,getLatestProtocolIdentifier:()=>it,getNextInfo:()=>G,getProviderConfig:()=>Lr,getRandomBytes:()=>Ft,getRandomHex:()=>Ht,getRequiredAssetIds:()=>Ve,getWalletFromConfigOrFail:()=>tr,getWarpActionByIndex:()=>N,getWarpBrandLogoUrl:()=>hr,getWarpChainAssetLogoUrl:()=>mr,getWarpChainInfoLogoUrl:()=>yr,getWarpIdentifierWithQuery:()=>Nr,getWarpInfoFromIdentifier:()=>O,getWarpPrimaryAction:()=>E,getWarpWalletAddress:()=>de,getWarpWalletAddressFromConfig:()=>S,getWarpWalletExternalId:()=>he,getWarpWalletExternalIdFromConfig:()=>me,getWarpWalletExternalIdFromConfigOrFail:()=>nr,getWarpWalletMnemonic:()=>fe,getWarpWalletMnemonicFromConfig:()=>rr,getWarpWalletPrivateKey:()=>ge,getWarpWalletPrivateKeyFromConfig:()=>er,handleX402Payment:()=>Xt,hasInputPrefix:()=>Br,hex:()=>on,initializeWalletCache:()=>_r,isEqualWarpIdentifier:()=>br,isGeneratedSourcePrivateIdentifier:()=>Gr,isPlatformValue:()=>Ee,isWarpActionAutoExecute:()=>At,isWarpI18nText:()=>Sr,isWarpWalletReadOnly:()=>ir,mergeNestedPayload:()=>zt,normalizeAndValidateMnemonic:()=>or,normalizeMnemonic:()=>ye,option:()=>pn,parseOutputOutIndex:()=>Te,parseSignedMessage:()=>jr,parseWarpQueryStringToObject:()=>Mt,removeWarpChainPrefix:()=>Rr,removeWarpWalletFromConfig:()=>sr,replacePlaceholders:()=>j,replacePlaceholdersInWhenExpression:()=>Ut,resolvePlatformValue:()=>Jt,resolveWarpText:()=>st,safeWindow:()=>$t,setCryptoProvider:()=>Wr,setWarpWalletInConfig:()=>ar,shiftBigintBy:()=>at,splitInput:()=>wt,stampGeneratedWarpMeta:()=>zr,string:()=>Zr,struct:()=>cn,testCryptoAvailability:()=>Cr,toInputPayloadValue:()=>Pe,toPreviewText:()=>Lt,tuple:()=>ln,uint16:()=>tn,uint32:()=>en,uint64:()=>rn,uint8:()=>Yr,validateMnemonicLength:()=>We,validateSignedMessage:()=>Dr,vector:()=>un,withAdapterFallback:()=>ur});module.exports=Ye(vn);var rt=class{constructor(t){this.adapter=t}async getByAlias(t,e){try{let{registryInfo:n,brand:i}=await this.adapter.registry.getInfoByAlias(t,e);if(!n)return null;let a=await this.adapter.builder().createFromTransactionHash(n.hash,e);return a?{warp:a,brand:i,registryInfo:n}:null}catch{return null}}async getByHash(t,e){try{let n=await this.adapter.builder().createFromTransactionHash(t,e);if(!n)return null;let{registryInfo:i,brand:a}=await this.adapter.registry.getInfoByHash(t,e);return{warp:n,brand:a,registryInfo:i}}catch{return null}}};var nt=class{constructor(t){this.resolvers=t}async getByAlias(t,e){for(let n of this.resolvers){let i=await n.getByAlias(t,e);if(i)return i}return null}async getByHash(t,e){for(let n of this.resolvers){let i=await n.getByHash(t,e);if(i)return i}return null}};var tr=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},de=r=>r?typeof r=="string"?r:r.address:null,S=(r,t)=>de(r.user?.wallets?.[t]||null),ge=r=>r?typeof r=="string"?r:r.privateKey||null:null,fe=r=>r?typeof r=="string"?r:r.mnemonic||null:null,he=r=>r?typeof r=="string"?r:r.externalId||null:null,er=(r,t)=>ge(r.user?.wallets?.[t]||null)?.trim()||null,rr=(r,t)=>fe(r.user?.wallets?.[t]||null)?.trim()||null,me=(r,t)=>he(r.user?.wallets?.[t]||null)?.trim()||null,nr=(r,t)=>{let e=me(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},ir=r=>typeof r=="string",ar=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},sr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},ye=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},We=(r,t=24)=>{let e=r.split(/\s+/).filter(n=>n.length>0);if(e.length!==t)throw new Error(`Mnemonic must be ${t} words. Got ${e.length} words`)},or=(r,t=24)=>{let e=ye(r);return We(e,t),e};var ve=(g=>(g.Multiversx="multiversx",g.Claws="claws",g.Sui="sui",g.Ethereum="ethereum",g.Base="base",g.Arbitrum="arbitrum",g.Polygon="polygon",g.Somnia="somnia",g.Tempo="tempo",g.Fastset="fastset",g.Solana="solana",g.Near="near",g))(ve||{}),Nt=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Nt||{}),Bt=Object.values(Nt),pr=["ethereum","base","arbitrum","polygon","somnia","tempo"],lr=["multiversx","claws"],cr=["coinbase","privy","gaupa"],c={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:r=>S(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},y={Option:"option",Vector:"vector",Tuple:"tuple",Struct:"struct",String:"string",Uint8:"uint8",Uint16:"uint16",Uint32:"uint32",Uint64:"uint64",Uint128:"uint128",Uint256:"uint256",Biguint:"biguint",Bool:"bool",Address:"address",Asset:"asset",Hex:"hex"},$t=typeof window<"u"?window:{open:()=>{}};var M={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},D={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/v${M.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/brand/v${M.Brand}.schema.json`,DefaultClientUrl:r=>r==="devnet"?"https://devnet.usewarp.to":r==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",c.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","uint8","uint16","uint32","uint64","biguint","boolean","address"],AvailableActionInputPositions:["receiver","value","transfer","arg:1","arg:2","arg:3","arg:4","arg:5","arg:6","arg:7","arg:8","arg:9","arg:10","data","ignore"]};var ur=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var Wt="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",I={baseUrl:Wt,chainLogo:r=>`${Wt}/chains/logos/${r}`,tokenLogo:r=>`${Wt}/tokens/logos/${r}`,walletLogo:r=>`${Wt}/wallets/logos/${r}`},Ce={multiversx:"MultiversX",claws:"Claws Network",sui:"Sui",ethereum:"Ethereum",base:"Base",arbitrum:"Arbitrum",polygon:"Polygon",somnia:"Somnia",tempo:"Tempo",fastset:"Fastset",solana:"Solana",near:"NEAR"},dr=r=>Ce[r]??r.charAt(0).toUpperCase()+r.slice(1),Ae={ethereum:{light:I.chainLogo("ethereum-white.svg"),dark:I.chainLogo("ethereum-black.svg")},base:{light:I.chainLogo("base-white.svg"),dark:I.chainLogo("base-black.svg")},arbitrum:I.chainLogo("arbitrum.svg"),polygon:I.chainLogo("polygon.svg"),somnia:I.chainLogo("somnia.png"),tempo:{light:I.chainLogo("tempo-white.svg"),dark:I.chainLogo("tempo-black.svg")},multiversx:I.chainLogo("multiversx.svg"),claws:I.chainLogo("claws.png"),sui:I.chainLogo("sui.svg"),solana:I.chainLogo("solana.svg"),near:{light:I.chainLogo("near-white.svg"),dark:I.chainLogo("near-black.svg")},fastset:{light:I.chainLogo("fastset-white.svg"),dark:I.chainLogo("fastset-black.svg")}},gr=(r,t="dark")=>{let e=Ae[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var fr=(r,t)=>{let e=r.alerts?.[t];if(!e)return null;let n=c.Alerts.TriggerEventPrefix+c.ArgParamsSeparator;if(!e.trigger.startsWith(n))return null;let i=e.trigger.replace(n,"");return i||null};var Ot=(r,t)=>r[t]??r.default??Object.values(r)[0],hr=(r,t)=>{let e=t?.preferences?.theme??"light";return typeof r.logo=="string"?r.logo:Ot(r.logo,e)},mr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ot(r.logoUrl,e)},yr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ot(r.logoUrl,e)};var vt=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let e=new Uint8Array(t);return window.crypto.getRandomValues(e),e}},Ct=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let e=await import("crypto");return new Uint8Array(e.randomBytes(t))}catch(e){throw new Error(`Node.js crypto not available: ${e instanceof Error?e.message:"Unknown error"}`)}}},q=null;function Vt(){if(q)return q;if(typeof window<"u"&&window.crypto)return q=new vt,q;if(typeof process<"u"&&process.versions?.node)return q=new Ct,q;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Wr(r){q=r}async function Ft(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||Vt()).getRandomBytes(r)}function xe(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(r.length*2);for(let e=0;e<r.length;e++){let n=r[e];t[e*2]=(n>>>4).toString(16),t[e*2+1]=(n&15).toString(16)}return t.join("")}function vr(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(r).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(r));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function Ht(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await Ft(r/2,t);return xe(e)}async function Cr(){let r={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?r.environment="browser":typeof process<"u"&&process.versions?.node&&(r.environment="nodejs"),await Ft(16),r.randomBytes=!0}catch{}return r}function Ar(){return Vt()}var xr=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${c.Vars.Env}:`)).map(t=>{let e=t.replace(`${c.Vars.Env}:`,"").trim(),[n,i]=e.split(c.ArgCompositeSeparator);return{key:n,description:i||null}});var W=(r,t)=>{let e=t.find(n=>n.chainInfo.name.toLowerCase()===r.toLowerCase());if(!e)throw new Error(`Adapter not found for chain: ${r}`);return e},it=r=>{if(r==="warp")return`warp:${M.Warp}`;if(r==="brand")return`brand:${M.Brand}`;if(r==="abi")return`abi:${M.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},N=(r,t)=>r?.actions[t-1],E=r=>{if(r.actions.length===0)throw new Error(`Warp has no primary action: ${r.meta?.identifier}`);let t=r.actions.find(a=>a.primary===!0);if(t)return{action:t,index:r.actions.indexOf(t)};let e=["transfer","contract","query","collect","compute","mcp"],n=r.actions.find(a=>e.includes(a.type));return n?{action:n,index:r.actions.indexOf(n)}:{action:r.actions[0],index:0}},At=(r,t)=>{if(r.auto===!1)return!1;if(r.type==="link"){if(r.auto===!0)return!0;let{action:e}=E(t);return r===e}return!0},at=(r,t)=>{let e=r.toString(),[n,i=""]=e.split("."),a=Math.abs(t);if(t>0)return BigInt(n+i.padEnd(a,"0"));if(t<0){let s=n+i;if(a>=s.length)return 0n;let p=s.slice(0,-a)||"0";return BigInt(p)}else return e.includes(".")?BigInt(e.split(".")[0]):BigInt(e)},Lt=(r,t=100)=>{if(!r)return"";let e=r.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return e=e.startsWith("- ")?e.slice(2):e,e=e.length>t?e.substring(0,e.lastIndexOf(" ",t))+"...":e,e},j=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),Ut=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),wr=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===c.Source.UserWallet||n.default===`{{${c.Globals.UserWallet.Placeholder}}}`||n.default===`{{${c.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},Dt=r=>{if(!r||typeof r!="string")return!0;try{return!!new Function(`return ${r}`)()}catch(t){throw new Error(`Failed to evaluate 'when' condition: ${r}. Error: ${t}`)}};var Ir={de:"German",en:"English",es:"Spanish",fr:"French",it:"Italian",pt:"Portuguese",ru:"Russian",zh:"Chinese",ja:"Japanese",ko:"Korean",ar:"Arabic",hi:"Hindi",nl:"Dutch",sv:"Swedish",da:"Danish",no:"Norwegian",fi:"Finnish",pl:"Polish",tr:"Turkish",el:"Greek",he:"Hebrew",th:"Thai",vi:"Vietnamese",id:"Indonesian",ms:"Malay",tl:"Tagalog"},st=(r,t)=>{let e=t?.preferences?.locale||"en";if(typeof r=="string")return r;if(typeof r=="object"&&r!==null){if(e in r)return r[e];if("en"in r)return r.en;let n=Object.keys(r);if(n.length>0)return r[n[0]]}return""},Sr=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,Pr=r=>r;var X=r=>r.startsWith(c.IdentifierAliasMarker)?r.replace(c.IdentifierAliasMarker,""):r,br=(r,t)=>!r||!t?!1:X(r)===X(t),xt=(r,t,e)=>{let n=X(e);if(t===c.IdentifierType.Alias)return c.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+c.IdentifierParamSeparator+t+c.IdentifierParamSeparator+n},O=(r,t)=>{let e=t||c.IdentifierChainDefault,n=decodeURIComponent(r).trim(),i=X(n),a=i.split("?")[0],s=we(a);if(a.length===64&&/^[a-fA-F0-9]+$/.test(a))return{chain:e,type:c.IdentifierType.Hash,identifier:i,identifierBase:a};if(s.length===2&&/^[a-zA-Z0-9]{62}$/.test(s[0])&&/^[a-zA-Z0-9]{2}$/.test(s[1]))return null;if(s.length===3){let[p,l,o]=s;if(l===c.IdentifierType.Alias||l===c.IdentifierType.Hash){let u=i.includes("?")?o+i.substring(i.indexOf("?")):o;return{chain:p,type:l,identifier:u,identifierBase:o}}}if(s.length===2){let[p,l]=s;if(p===c.IdentifierType.Alias||p===c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l;return{chain:e,type:p,identifier:o,identifierBase:l}}}if(s.length===2){let[p,l]=s;if(p!==c.IdentifierType.Alias&&p!==c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l,u=Tr(l,p)?c.IdentifierType.Hash:c.IdentifierType.Alias;return{chain:p,type:u,identifier:o,identifierBase:l}}}return{chain:e,type:c.IdentifierType.Alias,identifier:i,identifierBase:a}},Z=(r,t)=>{let e=new URL(r),i=e.searchParams.get(c.IdentifierParamName);if(i||(i=e.pathname.split("/")[1]),!i)return null;let a=decodeURIComponent(i);return O(a,t)},Tr=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Er=r=>{let t=c.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},we=r=>{let t=Er(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=we(a);return[i,...s]},jt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(c.IdentifierParamName),e.toString()||null}catch{return null}},kt=r=>{let t=r.indexOf("?");if(t===-1||t===r.length-1)return null;let e=r.substring(t+1);return e.length>0?e:null},Mt=r=>{if(!r)return{};let t=r.startsWith("?")?r.slice(1):r;if(!t)return{};let e=new URLSearchParams(t),n={};return e.forEach((i,a)=>{n[a]=i}),n},Rr=(r,t)=>{let e=O(r,t);return(e?e.identifierBase:X(r)).trim()},Nr=r=>{let t=r.meta?.identifier;if(!t)return"";let e=r.meta?.query;if(e&&typeof e=="object"&&Object.keys(e).length>0){let n=new URLSearchParams(e);return`${t}?${n.toString()}`}return t};var wt=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},Br=r=>{let t=new Set(Object.values(y));if(!r.includes(c.ArgParamsSeparator))return!1;let e=wt(r)[0];return t.has(e)};var It=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=st(a,e);return[i,j(s,t)]});return Object.fromEntries(n)};var Ie=K(require("qr-code-styling"),1);var z=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!Z(t,this.config.defaultChain):!1}build(t,e,n){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=W(t,this.adapters),s=e===c.IdentifierType.Alias?n:e+c.IdentifierParamSeparator+n,p=a.chainInfo.name+c.IdentifierParamSeparator+s,l=encodeURIComponent(p);return D.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${c.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=O(t,this.config.defaultChain);if(!e)return null;let n=W(e.chain,this.adapters);return n?this.build(n.chainInfo.name,e.type,e.identifierBase):null}generateQrCode(t,e,n,i=512,a="white",s="black",p="#23F7DD"){let l=W(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new Ie.default({type:"svg",width:i,height:i,data:String(o),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:a},dotsOptions:{type:"extra-rounded",color:s},cornersSquareOptions:{type:"extra-rounded",color:s},cornersDotOptions:{type:"square",color:s},imageOptions:{hideBackgroundDots:!0,imageSize:.4,margin:8},image:`data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 100 100" fill="${encodeURIComponent(p)}" xmlns="http://www.w3.org/2000/svg"><path d="M54.8383 50.0242L95 28.8232L88.2456 16L51.4717 30.6974C50.5241 31.0764 49.4759 31.0764 48.5283 30.6974L11.7544 16L5 28.8232L45.1616 50.0242L5 71.2255L11.7544 84.0488L48.5283 69.351C49.4759 68.9724 50.5241 68.9724 51.4717 69.351L88.2456 84.0488L95 71.2255L54.8383 50.0242Z"/></svg>`})}};var $r="https://",G=(r,t,e,n,i)=>{let a=e.actions?.[n-1]?.next||e.next||null;if(!a)return null;if(a.startsWith($r))return[{identifier:null,url:a}];let[s,p]=a.split("?");if(!p){let f=j(s,{...e.vars,...i});return[{identifier:f,url:qt(t,f,r)}]}let l=p.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(l.length===0){let f=j(p,{...e.vars,...i}),v=f?`${s}?${f}`:s;return[{identifier:v,url:qt(t,v,r)}]}let o=l[0];if(!o)return[];let u=o.match(/{{([^[]+)\[\]/),d=u?u[1]:null;if(!d||i[d]===void 0)return[];let g=Array.isArray(i[d])?i[d]:[i[d]];if(g.length===0)return[];let h=l.filter(f=>f.includes(`{{${d}[]`)).map(f=>{let v=f.match(/\[\](\.[^}]+)?}}/),C=v&&v[1]||"";return{placeholder:f,field:C?C.slice(1):"",regex:new RegExp(f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return g.map(f=>{let v=p;for(let{regex:T,field:L}of h){let x=L?Or(f,L):f;if(x==null)return null;v=v.replace(T,x)}if(v.includes("{{")||v.includes("}}"))return null;let C=v?`${s}?${v}`:s;return{identifier:C,url:qt(t,C,r)}}).filter(f=>f!==null)},qt=(r,t,e)=>{let[n,i]=t.split("?"),a=O(n,e.defaultChain)||{chain:c.IdentifierChainDefault,type:"alias",identifier:n,identifierBase:n},s=W(a.chain,r);if(!s)throw new Error(`Adapter not found for chain ${a.chain}`);let p=new z(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,u)=>l.searchParams.set(u,o)),l.toString().replace(/\/\?/,"?")},Or=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var _=class _{static debug(...t){_.isTestEnv||console.debug(...t)}static info(...t){_.isTestEnv||console.info(...t)}static warn(...t){_.isTestEnv||console.warn(...t)}static error(...t){_.isTestEnv||console.error(...t)}};_.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var A=_;function Se(r,t,e){return r.startsWith(c.Position.Payload)?r.slice(c.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function zt(r,t){if(!r)return{...t};if(!t)return{...r};let e={...r};return Object.keys(t).forEach(n=>{e[n]&&typeof e[n]=="object"&&typeof t[n]=="object"?e[n]=zt(e[n],t[n]):e[n]=t[n]}),e}function Pe(r,t){if(!r.value)return null;let e=t.stringToNative(r.value)[1];if(r.input.type==="biguint")return e.toString();if(r.input.type==="asset"){let{identifier:n,amount:i}=e;return{identifier:n,amount:i.toString()}}else return e}function V(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function J(r,t){let e={};return r.forEach(n=>{let i=n.input.as||n.input.name,a=Pe(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(c.Position.Payload)){let s=Se(n.input.position,i,a);e=zt(e,s)}else e[i]=a}),e}function ot(r,t,e,n){let i={},a=e!==void 0?e:r.length,s=p=>{if(!p?.value)return;let l=p.input.as||p.input.name,[,o]=t.stringToNative(p.value);if(i[l]=o,p.input.type!=="asset"||typeof o!="object"||o===null)return;let u=o;if("identifier"in u&&"amount"in u){let d=String(u.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(u.amount)}};for(let p=0;p<a;p++)s(r[p]);return s(n),i}var be=(r,t,e)=>{let n=[],i=[],a={};if(r.output)for(let[s,p]of Object.entries(r.output)){if(p.startsWith(c.Transform.Prefix))continue;let l=Te(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...u]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(u);n.push(String(d)),i.push(d),a[s]=d}else a[s]=p}return{stringValues:n,nativeValues:i,output:a}},Y=async(r,t,e,n,i,a)=>{let s=(d,g)=>g.reduce((h,m)=>h&&h[m]!==void 0?h[m]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:u}=be(r,e,p);return{values:{string:l,native:o,mapped:J(n,i)},output:await Gt(r,u,t,e,n,i,a)}},Gt=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=Vr(p,r,n,i,a),p=await Fr(r,p,e,i,a,s.transform?.runner||null),p},Vr=(r,t,e,n,i)=>{let a={...r},s=N(t,e)?.inputs||[];for(let[p,l]of Object.entries(a))if(typeof l=="string"&&l.startsWith("in.")){let o=l.split(".")[1],u=s.findIndex(g=>g.as===o||g.name===o),d=u!==-1?n[u]?.value:null;a[p]=d?i.stringToNative(d)[1]:null}return a},Fr=async(r,t,e,n,i,a)=>{if(!r.output)return t;let s={...t},p=Object.entries(r.output).filter(([,o])=>o.startsWith(c.Transform.Prefix)).map(([o,u])=>({key:o,code:u.substring(c.Transform.Prefix.length)}));if(p.length>0&&(!a||typeof a.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let l={...s,out:Hr(e),inputs:ot(n,i)};for(let{key:o,code:u}of p)try{s[o]=await a.run(u,l),l[o]=s[o]}catch(d){A.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Hr=r=>{if(!r||typeof r!="object"||Array.isArray(r)||!Array.isArray(r.data))return r;let t=[...r.data];return t.data=r.data,t},_t=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=be(r,e,s),u=await Gt(r,o,t,e,n,i,a);return"PROMPT"in u||(u.PROMPT=t),{values:{string:p,native:l,mapped:J(n,i)},output:u}},Te=r=>{if(r==="out")return 1;let t=r.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(r.startsWith("out.")||r.startsWith("event."),null)};var Ee=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Bt.some(t=>t in r),Jt=(r,t)=>{if(!Ee(r))return r;if(!t)throw new Error("Platform-specific value requires platform in client config");let e=r[t];if(e===void 0)throw new Error(`Warp does not support platform: ${t}`);return e};var Lr=(r,t,e,n)=>{let i=r.preferences?.providers?.[t];return i?.[e]?typeof i[e]=="string"?{url:i[e]}:i[e]:{url:n}};async function Re(r,t,e,n=5){let i=await Ht(64,e),a=new Date(Date.now()+n*60*1e3).toISOString();return{message:JSON.stringify({wallet:r,nonce:i,expiresAt:a,purpose:t}),nonce:i,expiresAt:a}}async function St(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return Re(r,i,e,5)}function Pt(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function Ur(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await St(r,e,n),p=await t(i);return Pt(r,p,a,s)}function Dr(r){let t=new Date(r).getTime();return Date.now()<t}function jr(r){try{let t=JSON.parse(r);if(!t.wallet||!t.nonce||!t.expiresAt||!t.purpose)throw new Error("Invalid signed message: missing required fields");return t}catch(t){throw new Error(`Failed to parse signed message: ${t instanceof Error?t.message:"Unknown error"}`)}}var Ne=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",kr=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),Be=(r,t=24)=>{let e=kr(r);return e?e.slice(0,t):"action"},$e=r=>{let t=3735928559^r.length,e=1103547991^r.length;for(let a=0;a<r.length;a++){let s=r.charCodeAt(a);t=Math.imul(t^s,2654435761),e=Math.imul(e^s,1597334677)}t=Math.imul(t^t>>>16,2246822507)^Math.imul(e^e>>>13,3266489909),e=Math.imul(e^e>>>16,2246822507)^Math.imul(t^t>>>13,3266489909);let n=(e>>>0).toString(16).padStart(8,"0"),i=(t>>>0).toString(16).padStart(8,"0");return`${n}${i}`.slice(0,12)},Mr=r=>{let t=(r||"").trim();if(!t)return"";try{let e=new URL(t),n=e.pathname.replace(/\/+$/,"").toLowerCase()||"/";return`${e.origin.toLowerCase()}${n}`}catch{return t.toLowerCase()}},qr=(r,t,e)=>{let n=Be((e||t||"").trim()||"action"),i=`${r.type}|${Mr(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=$e(i);return`private_src_${n}_${a}`},Oe=r=>{let t=Ne(r),e=Be(t),n=$e(t.trim().toLowerCase());return`private_gen_${e}_${n}`},zr=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Oe(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},Gr=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function _r(r){let t={address:null,publicKey:null};if(!r)return t;try{t.address=await r.getAddress()}catch{}try{t.publicKey=await r.getPublicKey()}catch{}return t}function Jr(r,t,e){return null}var Ve=(r,t)=>{let e=null;try{e=E(r)}catch{return[]}let n=e?.action;return!n||n.type!=="contract"&&n.type!=="transfer"?[]:(n.inputs??[]).some(s=>s.position==="value"||s.position==="transfer"||s.type==="asset")?[t.nativeToken.identifier]:[]},Qr=async(r,t,e,n)=>{try{let i=W(e,n),a=Ve(r,i.chainInfo);if(!a.length)return!0;let s=await i.dataLoader.getAccountAssets(t),p=new Map(s.map(l=>[l.identifier,l.amount??0n]));return a.every(l=>(p.get(l)??0n)>0n)}catch{return!0}};var Qt=require("@x402/core/client"),Kt=require("@x402/core/http");async function Xt(r,t,e,n,i){let a=await Kr(r,i);if(!a)return r;let s=new Headers;n&&s.set("Content-Type","application/json"),s.set("Accept","application/json"),Object.entries(a).forEach(([l,o])=>{s.set(l,o)}),A.debug("WarpExecutor: Retrying request with payment headers");let p=await fetch(t,{method:e,headers:s,body:n});return A.debug("WarpExecutor: Payment processed, new response status",{status:p.status}),p}var Kr=async(r,t)=>{let e=await Xr(r),i=new Kt.x402HTTPClient(new Qt.x402Client).getPaymentRequiredResponse(a=>r.headers.get(a),e);if(!i?.accepts?.length)return null;for(let a of t)if(a.wallet.registerX402Handlers)try{let s=new Qt.x402Client,p=await a.wallet.registerX402Handlers(s),l=i.accepts.find(g=>g?.network&&p[g.network]);if(!l?.network)continue;p[l.network]();let o=new Kt.x402HTTPClient(s),u=await o.createPaymentPayload(i);if(!u||typeof u!="object")continue;let d=o.encodePaymentSignatureHeader(u);if(!d||typeof d!="object")continue;return A.debug(`WarpExecutor: x402 payment processed with ${a.chainInfo.name} adapter using ${l.network} scheme`),d}catch{continue}return null},Xr=async r=>{try{let t=await r.clone().text();return t?JSON.parse(t):{}}catch{return{}}};var w=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t===y.Tuple&&Array.isArray(e)){if(e.length===0)return t+c.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(c.ArgCompositeSeparator)})${c.ArgParamsSeparator}${a.join(c.ArgListSeparator)}`}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===y.Struct&&typeof e=="object"&&e!==null&&!Array.isArray(e)){let n=e;if(!n._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=n._name,a=Object.keys(n).filter(p=>p!=="_name");if(a.length===0)return`${t}(${i})${c.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${c.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${c.ArgParamsSeparator}${s.join(c.ArgListSeparator)}`}if(t===y.Vector&&Array.isArray(e)){if(e.length===0)return`${t}${c.ArgParamsSeparator}`;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e[0],i=n.indexOf(c.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(c.ArgParamsSeparator),u=l.substring(o+1);return a.startsWith(y.Tuple)?u.replace(c.ArgListSeparator,c.ArgCompositeSeparator):u}),p=a.startsWith(y.Struct)?c.ArgStructSeparator:c.ArgListSeparator;return t+c.ArgParamsSeparator+a+c.ArgParamsSeparator+s.join(p)}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===y.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?y.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount)+c.ArgCompositeSeparator+String(e.decimals):y.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount);if(this.typeRegistry){let n=this.typeRegistry.getHandler(t);if(n)return n.nativeToString(e);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,e)}return t+c.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(c.ArgParamsSeparator),n=e[0],i=e.slice(1).join(c.ArgParamsSeparator);if(n==="null")return[n,null];if(n===y.Option){let[a,s]=i.split(c.ArgParamsSeparator);return[y.Option+c.ArgParamsSeparator+a,s||null]}if(n===y.Vector){let a=i.indexOf(c.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(y.Struct)?c.ArgStructSeparator:c.ArgListSeparator,u=(p?p.split(l):[]).map(d=>this.stringToNative(s+c.ArgParamsSeparator+d)[1]);return[y.Vector+c.ArgParamsSeparator+s,u]}else if(n.startsWith(y.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(c.ArgCompositeSeparator),p=i.split(c.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${c.IdentifierParamSeparator}${l}`)[1]);return[n,p]}else if(n.startsWith(y.Struct)){let a=n.match(/\(([^)]+)\)/);if(!a)throw new Error("Struct type must include a name in the format struct(Name)");let p={_name:a[1]};return i&&i.split(c.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${c.ArgParamsSeparator}]+)${c.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,u,d,g]=o;p[u]=this.stringToNative(`${d}${c.IdentifierParamSeparator}${g}`)[1]}}),[n,p]}else{if(n===y.String)return[n,i];if(n===y.Uint8||n===y.Uint16||n===y.Uint32)return[n,Number(i)];if(n===y.Uint64||n===y.Uint128||n===y.Uint256||n===y.Biguint)return[n,BigInt(i||0)];if(n===y.Bool)return[n,i==="true"];if(n===y.Address)return[n,i];if(n===y.Hex)return[n,i];if(n===y.Asset){let[a,s]=i.split(c.ArgCompositeSeparator),p={identifier:a,amount:BigInt(s)};return[n,p]}}if(this.typeRegistry){let a=this.typeRegistry.getHandler(n);if(a){let p=a.stringToNative(i);return[n,p]}let s=this.typeRegistry.resolveType(n);if(s!==n){let[p,l]=this.stringToNative(`${s}:${i}`);return[n,l]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(c.ArgParamsSeparator)){let[e,n]=t.split(c.ArgParamsSeparator);return[e,n]}return typeof t=="number"?[y.Uint32,t]:typeof t=="bigint"?[y.Uint64,t]:typeof t=="boolean"?[y.Bool,t]:[typeof t,t]}};var Zr=r=>new w().nativeToString(y.String,r),Yr=r=>new w().nativeToString(y.Uint8,r),tn=r=>new w().nativeToString(y.Uint16,r),en=r=>new w().nativeToString(y.Uint32,r),rn=r=>new w().nativeToString(y.Uint64,r),nn=r=>new w().nativeToString(y.Biguint,r),an=r=>new w().nativeToString(y.Bool,r),sn=r=>new w().nativeToString(y.Address,r),Zt=r=>new w().nativeToString(y.Asset,r),on=r=>new w().nativeToString(y.Hex,r),pn=(r,t)=>{if(t===null)return y.Option+c.ArgParamsSeparator;let e=r(t),n=e.indexOf(c.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return y.Option+c.ArgParamsSeparator+i+c.ArgParamsSeparator+a},ln=(...r)=>new w().nativeToString(y.Tuple,r),cn=r=>new w().nativeToString(y.Struct,r),un=r=>new w().nativeToString(y.Vector,r);var Fe=K(require("ajv"),1);var Yt=class{constructor(t){this.pendingBrand={protocol:it("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.ensureValidSchema(n),n}setName(t){return this.pendingBrand.name=t,this}setDescription(t){return this.pendingBrand.description=t,this}setLogo(t){return this.pendingBrand.logo=t,this}setUrls(t){return this.pendingBrand.urls=t,this}setColors(t){return this.pendingBrand.colors=t,this}setCta(t){return this.pendingBrand.cta=t,this}async build(){return this.ensureWarpText(this.pendingBrand.name,"name is required"),this.ensureWarpText(this.pendingBrand.description,"description is required"),typeof this.pendingBrand.logo=="string"&&this.ensure(this.pendingBrand.logo,"logo is required"),await this.ensureValidSchema(this.pendingBrand),this.pendingBrand}ensure(t,e){if(!t)throw new Error(`Warp: ${e}`)}ensureWarpText(t,e){if(!t)throw new Error(`Warp: ${e}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${e}`)}async ensureValidSchema(t){let e=this.config.schema?.brand||D.LatestBrandSchemaUrl,i=await(await fetch(e)).json(),a=new Fe.default,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};var He=K(require("ajv"),1);var pt=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validatePrimaryAction(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validatePrimaryAction(t){try{let{action:e}=E(t);return e?[]:["Primary action is required"]}catch(e){return[e instanceof Error?e.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(n=>n.inputs?n.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let e=[],n=(i,a)=>{i&&Object.keys(i).forEach(s=>{s!==s.toUpperCase()&&e.push(`${a} name '${s}' must be uppercase`)})};return n(t.vars,"Variable"),n(t.output,"Output"),t.trigger?.type==="webhook"&&t.trigger.inputs&&n(t.trigger.inputs,"Webhook trigger input"),e}validateAbiIsSetIfApplicable(t){let e=t.actions.some(s=>s.type==="contract"),n=t.actions.some(s=>s.type==="query");if(!e&&!n)return[];let i=t.actions.some(s=>s.abi),a=Object.values(t.output||{}).some(s=>s.startsWith("out.")||s.startsWith("event."));return t.output&&!i&&a?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let e=this.config.schema?.warp||D.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new He.default({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var te=class{constructor(t){this.config=t;this.pendingWarp={protocol:it("warp"),name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.validate(n),n}async createFromUrl(t){return await(await fetch(t)).json()}setChain(t){return this.pendingWarp.chain=t,this}setName(t){return this.pendingWarp.name=t,this}setTitle(t){return this.pendingWarp.title=t,this}setDescription(t){return this.pendingWarp.description=t,this}setPreview(t){return this.pendingWarp.preview=t,this}setActions(t){return this.pendingWarp.actions=t,this}addAction(t){return this.pendingWarp.actions.push(t),this}setOutput(t){return this.pendingWarp.output=t??void 0,this}async build(t=!0){return this.ensure(this.pendingWarp.protocol,"protocol is required"),this.ensure(this.pendingWarp.name,"name is required"),this.ensureWarpText(this.pendingWarp.title,"title is required"),this.ensure(this.pendingWarp.actions.length>0,"actions are required"),t&&await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,e=100){return Lt(t,e)}ensure(t,e){if(!t)throw new Error(e)}ensureWarpText(t,e){if(!t)throw new Error(e);if(typeof t=="object"&&!t.en)throw new Error(e)}async validate(t){let n=await new pt(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
- `))}};var P=require("fs"),et=require("path");var ee="$bigint:",bt=(r,t)=>typeof t=="bigint"?ee+t.toString():t,tt=(r,t)=>typeof t=="string"&&t.startsWith(ee)?BigInt(t.slice(ee.length)):t;var Tt=class{constructor(t,e){let n=e?.path;this.cacheDir=n?(0,et.resolve)(n):(0,et.resolve)(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){(0,P.existsSync)(this.cacheDir)||(0,P.mkdirSync)(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return(0,et.join)(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!(0,P.existsSync)(e))return null;let n=(0,P.readFileSync)(e,"utf-8"),i=JSON.parse(n,tt);return i.expiresAt!==null&&Date.now()>i.expiresAt?((0,P.unlinkSync)(e),null):i.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null},a=this.getFilePath(t);(0,P.writeFileSync)(a,JSON.stringify(i,bt),"utf-8")}async delete(t){try{let e=this.getFilePath(t);(0,P.existsSync)(e)&&(0,P.unlinkSync)(e)}catch{}}async keys(t){try{let e=(0,P.readdirSync)(this.cacheDir).filter(i=>i.endsWith(".json")).map(i=>i.slice(0,-5));if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}catch{return[]}}async clear(){try{(0,P.readdirSync)(this.cacheDir).forEach(e=>{e.endsWith(".json")&&(0,P.unlinkSync)((0,et.join)(this.cacheDir,e))})}catch{}}};var lt=class{constructor(t,e){this.prefix="warp-cache"}getKey(t){return`${this.prefix}:${t}`}async get(t){try{let e=localStorage.getItem(this.getKey(t));if(!e)return null;let n=JSON.parse(e,tt);return n.expiresAt!==null&&Date.now()>n.expiresAt?(localStorage.removeItem(this.getKey(t)),null):n.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null};localStorage.setItem(this.getKey(t),JSON.stringify(i,bt))}async delete(t){localStorage.removeItem(this.getKey(t))}async keys(t){let e=[];for(let i=0;i<localStorage.length;i++){let a=localStorage.key(i);a?.startsWith(this.prefix+":")&&e.push(a.slice(this.prefix.length+1))}if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){for(let t=0;t<localStorage.length;t++){let e=localStorage.key(t);e?.startsWith(this.prefix)&&localStorage.removeItem(e)}}};var H=class H{constructor(t,e){}async get(t){let e=H.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(H.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;H.cache.set(t,{value:e,expiresAt:i})}async delete(t){H.cache.delete(t)}async keys(t){let e=Array.from(H.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){H.cache.clear()}};H.cache=new Map;var ct=H;var Le=require("fs"),re=require("path");var Et=class{constructor(t,e){let n=e?.path?(0,re.resolve)(e.path):(0,re.resolve)(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=(0,Le.readFileSync)(t,"utf-8");return new Map(Object.entries(JSON.parse(e,tt)))}catch(e){return A.warn(`StaticCacheStrategy (loadManifest): Failed to load manifest from ${t}:`,e),new Map}}async get(t){let e=this.cache.get(t);return!e||e.expiresAt!==null&&Date.now()>e.expiresAt?(e&&this.cache.delete(t),null):e.value}async set(t,e,n){let i=n?Date.now()+n*1e3:null,a={value:e,expiresAt:i};this.cache.set(t,a)}async delete(t){this.cache.delete(t)}async keys(t){let e=Array.from(this.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){this.cache.clear()}};var ne={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},dt={Warp:(r,t)=>`warp:${r}:${t}`,WarpAbi:(r,t)=>`warp-abi:${r}:${t}`,WarpExecutable:(r,t,e)=>`warp-exec:${r}:${t}:${e}`,RegistryInfo:(r,t)=>`registry-info:${r}:${t}`,Brand:(r,t)=>`brand:${r}:${t}`,Asset:(r,t,e)=>`asset:${r}:${t}:${e}`,AccountNfts:(r,t,e,n,i)=>`account-nfts:${r}:${t}:${e}:${n}:${i}`},ut=class{constructor(t,e){this.strategy=this.selectStrategy(t,e)}selectStrategy(t,e){return e?.adapter?e.adapter:e?.type==="localStorage"?new lt(t,e):e?.type==="memory"?new ct(t,e):e?.type==="static"?new Et(t,e):e?.type==="filesystem"?new Tt(t,e):typeof window<"u"&&window.localStorage?new lt(t,e):new ct(t,e)}async set(t,e,n){await this.strategy.set(t,e,n)}async get(t){return await this.strategy.get(t)}async delete(t){await this.strategy.delete(t)}async keys(t){return await this.strategy.keys(t)}async clear(){await this.strategy.clear()}};var gt={Queries:"QUERIES",Payload:"PAYLOAD",Headers:"HEADERS"},ie={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},ae=(r,t,e)=>{let n=r.find(a=>a.input.as===t||a.input.name===t);if(!n?.value)return null;let[,i]=e.stringToNative(n.value);return typeof i=="string"?i:String(i)},se=r=>{try{return JSON.parse(r)}catch{return null}},dn=async(r,t,e,n,i,a)=>{let s=new Headers;if(s.set("Content-Type","application/json"),s.set("Accept","application/json"),a&&n){let{message:l,nonce:o,expiresAt:u}=await St(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Pt(n,d,o,u)).forEach(([g,h])=>s.set(g,h))}let p=ae(e.resolvedInputs,gt.Headers,i);if(p){let l=se(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,u])=>typeof u=="string"&&s.set(o,u))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},gn=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===ie.Get){let s=ae(e.resolvedInputs,gt.Queries,i);if(s){let p=se(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,u])=>u!=null&&l.searchParams.set(o,String(u))),a=l.toString()}}}return a},fn=(r,t,e,n,i)=>{if(r===ie.Get)return;let a=ae(t.resolvedInputs,gt.Payload,n);if(a&&se(a)!==null)return a;let{[gt.Payload]:s,[gt.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},Ue=async(r,t,e,n,i,a,s,p)=>{let l=t.method||ie.Get,o=await dn(r,t,e,n,a,p),u=gn(r,t,e,l,a),d=fn(l,e,i,a,s);return{url:u,method:l,headers:o,body:d}};var B=class{constructor(t,e,n){this.config=t;this.adapter=e;this.adapters=n}async apply(t,e={}){let n=this.applyVars(t,e),i=await this.applyGlobals(n);return e.envs?this.applyEnvs(i,e.envs):i}applyEnvs(t,e){if(!e||Object.keys(e).length===0)return t;let n=JSON.stringify(t);for(let[i,a]of Object.entries(e)){if(a==null)continue;let s=JSON.stringify(String(a)).slice(1,-1);n=n.replace(new RegExp(`\\{\\{${hn(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=S(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(c.Vars.Query+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Query.length+1),[o,u]=l.split(c.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(o):null,h=e.queries?.[o]??null??d;h!=null&&a(s,h)}else if(p.startsWith(c.Vars.Env+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Env.length+1),[o,u]=l.split(c.ArgCompositeSeparator),g={...this.config.vars,...e.envs}?.[o];g!=null&&a(s,g)}else p===c.Source.UserWallet&&n?a(s,n):a(s,p)}),JSON.parse(i)}async applyRootGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}async applyActionGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}applyInputs(t,e,n,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let a=this.applyGlobalsToText(t),s=this.buildInputBag(e,n,i);return j(a,s)}applyGlobalsToText(t){if(!Object.values(c.Globals).map(s=>s.Placeholder).some(s=>t.includes(`{{${s}}}`)||t.includes(`{{${s}:`)))return t;let i={config:this.config,adapter:this.adapter},a=t;return Object.values(c.Globals).forEach(s=>{let p=s.Accessor(i);p!=null&&(a=a.replace(new RegExp(`{{${s.Placeholder}}}`,"g"),p.toString())),a=this.replacePlaceholdersWithChain(a,s.Placeholder,i,s.Accessor)}),a}replacePlaceholdersWithChain(t,e,n,i){let a=new RegExp(`\\{\\{${e}:([^}]+)\\}\\}`,"g");return t.replace(a,(s,p)=>{let l=p.trim().toLowerCase();if(!this.adapters)return s;try{let o=W(l,this.adapters),u={config:this.config,adapter:o},d=i(u);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e,n){let i={};return t.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);i[s]=String(p)}),n&&n.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);if(i[`primary.${s}`]=String(p),a.input.type==="asset"&&typeof a.input.position=="object"){let l=p;l&&typeof l=="object"&&"identifier"in l&&"amount"in l&&(i[`primary.${s}.token`]=String(l.identifier),i[`primary.${s}.amount`]=String(l.amount))}}),i}},hn=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var mn=["collect","compute","mcp","state","mount","unmount"],Q=class{constructor(t,e){this.config=t;this.adapters=e;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new w,this.cache=new ut(t.env,t.cache)}getSerializer(){return this.serializer}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(dt.WarpExecutable(t,e||"",n))||[];return V(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(dt.WarpExecutable(t,e||"",n))||[]}async createExecutable(t,e,n,i={}){let a=N(t,e);if(!a)throw new Error("WarpFactory: Action not found");let s=await this.getChainInfoForWarp(t,n),p=W(s.name,this.adapters),l=new B(this.config,p,this.adapters),o=await l.apply(t,i),u=N(o,e),{action:d,index:g}=E(o),h=this.getStringTypedInputs(d,n),m=await this.getResolvedInputs(s.name,d,h,l,i.queries),f=await this.getModifiedInputs(m),v=[],C=[];g===e-1?(v=m,C=f):this.requiresPayloadInputs(u)&&(v=await this.resolveActionInputs(s.name,u,n,l,i.queries),C=await this.getModifiedInputs(v));let T=C.find(b=>b.input.position==="receiver"||b.input.position==="destination")?.value,L=this.getDestinationFromAction(u),x=T?this.serializer.stringToNative(T)[1]:L;if(x&&(x=l.applyInputs(x,C,this.serializer,f)),!x&&!mn.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let U=this.getPreparedArgs(u,C);U=U.map(b=>l.applyInputs(b,C,this.serializer,f));let F=C.find(b=>b.input.position==="value")?.value||null,R="value"in u?u.value:null,$=F?.split(c.ArgParamsSeparator)[1]||R||"0",k=l.applyInputs($,C,this.serializer,f),De=BigInt(k),je=C.filter(b=>b.input.position==="transfer"&&b.value).map(b=>b.value),ke=[...("transfers"in u?u.transfers:[])||[],...je||[]].map(b=>{let Rt=l.applyInputs(b,C,this.serializer,f),Ge=Rt.startsWith(`asset${c.ArgParamsSeparator}`)?Rt:`asset${c.ArgParamsSeparator}${Rt}`;return this.serializer.stringToNative(Ge)[1]}),Me=C.find(b=>b.input.position==="data")?.value,qe="data"in u?u.data||"":null,le=Me||qe||null,ze=le?l.applyInputs(le,C,this.serializer,f):null,ce={adapter:p,warp:o,chain:s,action:e,destination:x,args:U,value:De,transfers:ke,data:ze,resolvedInputs:C};return await this.cache.set(dt.WarpExecutable(this.config.env,o.meta?.hash||"",e),ce.resolvedInputs,ne.OneWeek),ce}async getChainInfoForWarp(t,e){if(t.chain)return W(t.chain,this.adapters).chainInfo;if(e){let i=await this.tryGetChainFromInputs(t,e);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,e){let n=t.inputs||[];return e.map((i,a)=>{let s=n[a];return!s||i.includes(c.ArgParamsSeparator)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(u=>i.applyInputs(u,[],this.serializer)),l=await Promise.all(p.map(u=>this.preprocessInput(t,u))),o=(u,d)=>{if(u.source===c.Source.UserWallet){let v=S(this.config,t);return v?this.serializer.nativeToString("address",v):null}if(u.source==="hidden"){if(u.default===void 0)return null;let v=i?i.applyInputs(String(u.default),[],this.serializer):String(u.default);return this.serializer.nativeToString(u.type,v)}if(l[d])return l[d];let g=u.as||u.name,h=a?.[g],m=this.url.searchParams.get(g),f=h||m;return f?this.serializer.nativeToString(u.type,String(f)):null};return s.map((u,d)=>{let g=o(u,d),h=u.default!==void 0?i?i.applyInputs(String(u.default),[],this.serializer):String(u.default):void 0;return{input:u,value:g||(h!==void 0?this.serializer.nativeToString(u.type,h):null)}})}async resolveInputsFromQuery(t,e,n){let i=N(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=W(a.name,this.adapters),p=new B(this.config,s,this.adapters);return this.getResolvedInputs(a.name,i,[],p,n)}requiresPayloadInputs(t){return t.inputs?.some(e=>typeof e.position=="string"&&e.position.startsWith("payload:"))??!1}async resolveActionInputs(t,e,n,i,a){let s=this.getStringTypedInputs(e,n);return await this.getResolvedInputs(t,e,s,i,a)}async getModifiedInputs(t){let e=[];for(let n=0;n<t.length;n++){let i=t[n];if(i.input.modifier?.startsWith("scale:")){let[,a]=i.input.modifier.split(":");if(isNaN(Number(a))){let s=Number(t.find(o=>o.input.name===a)?.value?.split(":")[1]);if(!s)throw new Error(`WarpActionExecutor: Exponent value not found for input ${a}`);let p=i.value?.split(":")[1];if(!p)throw new Error("WarpActionExecutor: Scalable value not found");let l=at(p,+s);e.push({...i,value:`${i.input.type}:${l}`})}else{let s=i.value?.split(":")[1];if(!s)throw new Error("WarpActionExecutor: Scalable value not found");let p=at(s,+a);e.push({...i,value:`${i.input.type}:${p}`})}}else if(i.input.modifier?.startsWith(c.Transform.Prefix)){let a=i.input.modifier.substring(c.Transform.Prefix.length),s=this.config.transform?.runner;if(!s||typeof s.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let p=ot(t,this.serializer,n,i),l=await s.run(a,p);if(l==null)e.push(i);else{let o=this.serializer.nativeToString(i.input.type,l);e.push({...i,value:o})}}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=wt(e),a=W(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(c.ArgCompositeSeparator);if(l)return e;let o=await a.dataLoader.getAsset(s);if(!o)throw new Error(`WarpFactory: Asset not found for asset ${s}`);if(typeof o.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${s}`);let u=at(p,o.decimals);return Zt({...o,amount:u})}else return e}catch(n){throw A.warn("WarpFactory: Preprocess input failed",n),n}}getDestinationFromAction(t){if("address"in t&&t.address)return t.address;if("destination"in t&&t.destination){if(typeof t.destination=="string")return t.destination;if(typeof t.destination=="object"&&"url"in t.destination)return t.destination.url}return null}getPreparedArgs(t,e){let n="args"in t?t.args||[]:[],i=[];return e.forEach(({input:a,value:s})=>{if(!(!s||!a.position)){if(typeof a.position=="object"){if(a.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${a.name}" has type "${a.type}"`);if(!a.position.token?.startsWith("arg:")||!a.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${a.name}"`);let[p,l]=this.serializer.stringToNative(s),o=l;if(!o||typeof o!="object"||!("identifier"in o)||!("amount"in o))throw new Error(`WarpFactory: Invalid asset value for input "${a.name}"`);let u=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",o.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",o.amount)})}else if(a.position.startsWith("arg:")){let p=Number(a.position.split(":")[1])-1;i.push({index:p,value:s})}}}),i.forEach(({index:a,value:s})=>{for(;n.length<=a;)n.push(void 0);n[a]=s}),n.filter(a=>a!==void 0)}async tryGetChainFromInputs(t,e){let n=t.actions.find(l=>l.inputs?.some(o=>o.position==="chain"));if(!n)return null;let i=n.inputs?.findIndex(l=>l.position==="chain");if(i===-1||i===void 0)return null;let a=e[i];if(!a)throw new Error("Chain input not found");let s=this.serializer.stringToNative(a)[1];return W(s,this.adapters).chainInfo}};var ft=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.handlers=n,this.factory=new Q(t,e)}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},u={...n,queries:o},{action:d,index:g}=E(t);for(let h=1;h<=t.actions.length;h++){let m=N(t,h);if(!At(m,t))continue;let{tx:f,chain:v,immediateExecution:C,executable:T}=await this.executeAction(t,h,e,u);f&&i.push(f),v&&(a=v),C&&s.push(C),T&&h===g+1&&T.resolvedInputs&&(p=V(T.resolvedInputs))}if(!a&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&s.length>0){let h=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(h))}return{txs:i,chain:a,immediateExecutions:s,resolvedInputs:p}}async executeAction(t,e,n,i={}){let a=N(t,e);if(a.type==="link")return a.when&&!await this.evaluateWhenCondition(t,a,n,i)?{tx:null,chain:null,immediateExecution:null,executable:null}:(await this.callHandler(async()=>{let o=a.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(o):$t.open(o,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null});if(a.type==="prompt"){let o=await this.executePrompt(t,a,e,n,i);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:null};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="compute"){let o=await this.executeCompute(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="state"||a.type==="mount"||a.type==="unmount")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="mcp"){let o=await this.executeMcp(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:s}}}let p=W(s.chain.name,this.adapters);if(a.type==="query"){let o=await p.executor.executeQuery(s);if(o.status==="success")await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:s.chain,execution:o,tx:null}));else{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:s.chain,immediateExecution:o,executable:s}}return{tx:await p.executor.createTransaction(s),chain:s.chain,immediateExecution:null,executable:s}}async evaluateOutput(t,e){if(e.length===0||t.actions.length===0||!this.handlers)return;let n=await this.factory.getChainInfoForWarp(t),i=W(n.name,this.adapters),a=(await Promise.all(t.actions.map(async(s,p)=>{if(!At(s,t)||s.type!=="transfer"&&s.type!=="contract")return null;let l=e[p],o=p+1;if(!l){let g=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),h={status:"error",warp:t,action:o,user:S(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:g};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:h})),h}let u=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(u.length===0){let g=t.meta?.query;g&&Object.keys(g).length>0&&(u=await this.factory.resolveInputsFromQuery(t,o,g))}let d=await i.output.getActionExecution(t,o,l.tx,u);return d.next=G(this.config,this.adapters,t,o,yn(u,d.output)),d.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:o,chain:n,execution:d,tx:l})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(d.values),result:d})),d}))).filter(s=>s!==null);if(a.every(s=>s.status==="success")){let s=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(s))}else{let s=a.find(p=>p.status!=="success");await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(a)}`,result:s}))}}async executeCollect(t,e){let n=S(this.config,t.chain.name),i=N(t.warp,t.action),a=this.factory.getSerializer(),s=J(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Y(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=S(this.config,t.chain.name),n=this.factory.getSerializer(),i=J(t.resolvedInputs,n),{values:a,output:s}=await Y(t.warp,i,t.action,t.resolvedInputs,n,this.config);return this.buildCollectResult(t,e,"success",a,s)}async doHttpRequest(t,e,n,i,a){let s=new B(this.config,W(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:u,body:d}=await Ue(s,e,t,n,i,p,a,async g=>await this.callHandler(()=>this.handlers?.onSignRequest?.(g)));A.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:u,body:d});try{let h=await fetch(l,{method:o,headers:u,body:d});A.debug("Collect response status",{status:h.status}),h.status===402&&(h=await Xt(h,l,o,d,this.adapters));let m=await h.json();A.debug("Collect response content",{content:m});let{values:f,output:v}=await Y(t.warp,m,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,S(this.config,t.chain.name),h.ok?"success":"error",f,v,m)}catch(g){A.error("WarpActionExecutor: Error executing collect",g);let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(n=>n.input.position==="receiver"||n.input.position==="destination")?.value||t.destination}async executeMcp(t,e){let n=S(this.config,t.chain.name),i=N(t.warp,t.action);if(!i.destination){let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("WarpExecutor: MCP action requires destination")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let m=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("Please install @modelcontextprotocol/sdk to execute MCP warps or mcp actions")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:m}}let p=this.factory.getSerializer(),l=new B(this.config,W(t.chain.name,this.adapters),this.adapters),o=i.destination,u=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),g={};o.headers&&Object.entries(o.headers).forEach(([h,m])=>{let f=l.applyInputs(m,t.resolvedInputs,this.factory.getSerializer());g[h]=f}),A.debug("WarpExecutor: Executing MCP",{url:u,tool:d,headers:g});try{let h=new s(new URL(u),{requestInit:{headers:g}}),m=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await m.connect(h);let f={};t.resolvedInputs.forEach(({input:x,value:U})=>{if(U&&x.position&&typeof x.position=="string"&&x.position.startsWith("payload:")){let F=x.position.replace("payload:",""),[R,$]=p.stringToNative(U);if(R==="string")f[F]=String($);else if(R==="bool")f[F]=!!$;else if(R==="uint8"||R==="uint16"||R==="uint32"||R==="uint64"||R==="uint128"||R==="uint256"||R==="biguint"){let k=Number($);f[F]=(Number.isInteger(k),k)}else f[F]=$}}),e&&Object.assign(f,e);let v=await m.callTool({name:d,arguments:f});await m.close();let C;if(v.content&&v.content.length>0){let x=v.content[0];if(x.type==="text")try{C=JSON.parse(x.text)}catch{C=x.text}else x.type,C=x}else C=v;let{values:T,output:L}=await Y(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",T,L,v)}catch(h){A.error("WarpExecutor: Error executing MCP",h);let m=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:h},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:m}}}buildCollectResult(t,e,n,i,a,s){let p=G(this.config,this.adapters,t.warp,t.action,a),l=V(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||S(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages:It(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=W(s.name,this.adapters),l=new B(this.config,p,this.adapters),o=await l.apply(t,a),u=N(o,n),{action:d}=E(o),g=this.factory.getStringTypedInputs(d,i),h=await this.factory.getResolvedInputs(s.name,d,g,l,a.queries),m=await this.factory.getModifiedInputs(h),f=m;if(e.inputs&&e.inputs.length>0){let $=this.factory.getStringTypedInputs(e,i),k=await this.factory.getResolvedInputs(s.name,e,$,l,a.queries);f=await this.factory.getModifiedInputs(k)}let v=Jt(u.prompt,this.config.platform),C=l.applyInputs(v,f,this.factory.getSerializer(),m),T=V(f),L=S(this.config,s.name),x=this.factory.getSerializer(),{values:U,output:F}=await _t(o,C,n,f,x,this.config),R=f.find($=>$.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:L,txHash:null,tx:null,next:G(this.config,this.adapters,o,n,F),values:U,output:F,messages:It(o,F,this.config),destination:R,resolvedInputs:T}}catch(s){return A.error("WarpExecutor: Error executing prompt action",s),{status:"error",warp:t,action:n,user:null,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:s},messages:{},destination:null,resolvedInputs:[]}}}async evaluateWhenCondition(t,e,n,i,a,s){if(!e.when)return!0;let p=s?{name:s}:await this.factory.getChainInfoForWarp(t,n),l=W(p.name,this.adapters),o=new B(this.config,l,this.adapters),{action:u}=E(t),d=this.factory.getStringTypedInputs(u,n),g=await this.factory.getResolvedInputs(p.name,u,d,o,i.queries),h=await this.factory.getModifiedInputs(g),m;if(a)m=a;else{let T=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);m=await this.factory.getModifiedInputs(T)}let f=o.buildInputBag(m,this.factory.getSerializer(),h),v={...i.envs??{},...f},C=Ut(e.when,v);return Dt(C)}},yn=(r,t)=>{let e=Object.fromEntries((r??[]).flatMap(i=>{let a=i.input.as||i.input.name;return a?[[a,i.value]]:[]})),n=Object.fromEntries(Object.entries(t).filter(([,i])=>i!=null));return{...e,...n}};var ht=class{constructor(t){this.config=t}async search(t,e,n){if(!this.config.index?.url)throw new Error("WarpIndex: Index URL is not set");try{let i=await fetch(this.config.index?.url,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.index?.apiKey}`,...n},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...e})});if(!i.ok)throw new Error(`WarpIndex: search failed with status ${i.status}: ${await i.text()}`);return(await i.json()).hits}catch(i){throw A.error("WarpIndex: Error searching for warps: ",i),i}}};var mt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!Z(t,this.config.defaultChain):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(o=>o[0]).filter(o=>this.isValid(o)).map(o=>this.detect(o)),s=(await Promise.all(i)).filter(o=>o.match),p=s.length>0,l=s.map(o=>({url:o.url,warp:o.warp}));return{match:p,output:l}}async detect(t,e){let n={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(c.HttpProtocolPrefix)?Z(t,this.config.defaultChain):O(t,this.config.defaultChain);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,u=t.startsWith(c.HttpProtocolPrefix)?jt(t):kt(i.identifier);if(this.resolver){let m=null;if(a==="hash")m=await this.resolver.getByHash(s,e);else if(a==="alias"){let f=`${i.chain}:${s}`;m=await this.resolver.getByAlias(f,e)||await this.resolver.getByAlias(s,e)}m&&(p=m.warp,l=m.registryInfo,o=m.brand)}else{let m=W(i.chain,this.adapters);if(a==="hash"){p=await m.builder().createFromTransactionHash(s,e);let f=await m.registry.getInfoByHash(s,e);l=f.registryInfo,o=f.brand}else if(a==="alias"){let f=await m.registry.getInfoByAlias(s,e);l=f.registryInfo,o=f.brand,f.registryInfo&&(p=await m.builder().createFromTransactionHash(f.registryInfo.hash,e))}}if(p&&p.meta&&(Wn(p,i.chain,l,i.identifier),p.meta.query=u?Mt(u):null),!p)return n;let d=p.chain||i.chain,g=this.adapters.find(m=>m.chainInfo.name.toLowerCase()===d.toLowerCase()),h=g?await new B(this.config,g,this.adapters).apply(p):p;return{match:!0,url:t,warp:h,chain:d,registryInfo:l,brand:o}}catch(a){return A.error("Error detecting warp link",a),n}}},Wn=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?xt(null,"alias",e.alias):xt(t,"hash",e?.hash??n))};var oe=class{constructor(t,e){this.config=t;this.options=e;this.chains=e.chains.map(n=>n(this.config)),this.resolver=e.resolver??this.buildDefaultResolver()}buildDefaultResolver(){let t=this.chains.map(e=>new rt(e));return new nt(t)}getConfig(){return this.config}getResolver(){return this.resolver}createExecutor(t){return new ft(this.config,this.chains,t)}async detectWarp(t,e){return new mt(this.config,this.chains,this.resolver).detect(t,e)}async executeWarp(t,e,n,i={}){let a=typeof t=="object",s=!a&&t.startsWith("http")&&t.endsWith(".json"),p=a?t:null;if(!p&&s){let m=await fetch(t);if(!m.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await m.json()}if(p||(p=(await this.detectWarp(t,i.cache)).warp),!p)throw new Error("Warp not found");let l=this.createExecutor(n),{txs:o,chain:u,immediateExecutions:d,resolvedInputs:g}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:u,immediateExecutions:d,evaluateOutput:async m=>{await l.evaluateOutput(p,m)},resolvedInputs:g}}async createInscriptionTransaction(t,e){return await W(t,this.chains).builder().createInscriptionTransaction(e)}async createFromTransaction(t,e,n=!1){return W(t,this.chains).builder().createFromTransaction(e,n)}async createFromTransactionHash(t,e){let n=O(t,this.config.defaultChain);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return W(n.chain,this.chains).builder().createFromTransactionHash(t,e)}async signMessage(t,e){if(!S(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return W(t,this.chains).wallet.signMessage(e)}async getActions(t,e,n=!1){let i=this.getDataLoader(t);return(await Promise.all(e.map(async s=>i.getAction(s,n)))).filter(s=>s!==null)}getExplorer(t){return W(t,this.chains).explorer}getOutput(t){return W(t,this.chains).output}async getActionExecution(t,e,n,i){let a=i??E(e).index+1,p=await W(t,this.chains).output.getActionExecution(e,a,n);return p.next=G(this.config,this.chains,e,a,p.output),p}async getRegistry(t){let e=W(t,this.chains).registry;return await e.init(),e}getDataLoader(t){return W(t,this.chains).dataLoader}getWallet(t){return W(t,this.chains).wallet}get factory(){return new Q(this.config,this.chains)}get index(){return new ht(this.config)}get linkBuilder(){return new z(this.config,this.chains)}createBuilder(t){return W(t,this.chains).builder()}createAbiBuilder(t){return W(t,this.chains).abiBuilder()}createBrandBuilder(t){return W(t,this.chains).brandBuilder()}createSerializer(t){return W(t,this.chains).serializer}resolveText(t){return st(t,this.config)}};var pe=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,e){this.typeHandlers.set(t,e)}registerTypeAlias(t,e){this.typeAliases.set(t,e)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let e=this.typeAliases.get(t);return e?this.getHandler(e):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let e=this.typeAliases.get(t);return e?this.resolveType(e):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};0&&(module.exports={BrowserCryptoProvider,CLOUD_WALLET_PROVIDERS,CacheTtl,EvmWalletChainNames,MultiversxWalletChainNames,NodeCryptoProvider,WARP_LANGUAGES,WarpAssets,WarpBrandBuilder,WarpBuilder,WarpCache,WarpCacheKey,WarpChainDisplayNames,WarpChainLogos,WarpChainName,WarpChainResolver,WarpClient,WarpCompositeResolver,WarpConfig,WarpConstants,WarpExecutor,WarpFactory,WarpIndex,WarpInputTypes,WarpInterpolator,WarpLinkBuilder,WarpLinkDetecter,WarpLogger,WarpPlatformName,WarpPlatforms,WarpProtocolVersions,WarpSerializer,WarpTypeRegistry,WarpValidator,address,applyOutputToMessages,asset,biguint,bool,buildGeneratedFallbackWarpIdentifier,buildGeneratedSourceWarpIdentifier,buildInputsContext,buildMappedOutput,buildNestedPayload,bytesToBase64,bytesToHex,checkWarpAssetBalance,cleanWarpIdentifier,createAuthHeaders,createAuthMessage,createCryptoProvider,createDefaultWalletProvider,createHttpAuthHeaders,createSignableMessage,createWarpI18nText,createWarpIdentifier,doesWarpRequireWallet,evaluateOutputCommon,evaluateWhenCondition,extractCollectOutput,extractIdentifierInfoFromUrl,extractPromptOutput,extractQueryStringFromIdentifier,extractQueryStringFromUrl,extractResolvedInputValues,extractWarpSecrets,findWarpAdapterForChain,getChainDisplayName,getChainLogo,getCryptoProvider,getEventNameFromWarp,getGeneratedSourceWarpName,getLatestProtocolIdentifier,getNextInfo,getProviderConfig,getRandomBytes,getRandomHex,getRequiredAssetIds,getWalletFromConfigOrFail,getWarpActionByIndex,getWarpBrandLogoUrl,getWarpChainAssetLogoUrl,getWarpChainInfoLogoUrl,getWarpIdentifierWithQuery,getWarpInfoFromIdentifier,getWarpPrimaryAction,getWarpWalletAddress,getWarpWalletAddressFromConfig,getWarpWalletExternalId,getWarpWalletExternalIdFromConfig,getWarpWalletExternalIdFromConfigOrFail,getWarpWalletMnemonic,getWarpWalletMnemonicFromConfig,getWarpWalletPrivateKey,getWarpWalletPrivateKeyFromConfig,handleX402Payment,hasInputPrefix,hex,initializeWalletCache,isEqualWarpIdentifier,isGeneratedSourcePrivateIdentifier,isPlatformValue,isWarpActionAutoExecute,isWarpI18nText,isWarpWalletReadOnly,mergeNestedPayload,normalizeAndValidateMnemonic,normalizeMnemonic,option,parseOutputOutIndex,parseSignedMessage,parseWarpQueryStringToObject,removeWarpChainPrefix,removeWarpWalletFromConfig,replacePlaceholders,replacePlaceholdersInWhenExpression,resolvePlatformValue,resolveWarpText,safeWindow,setCryptoProvider,setWarpWalletInConfig,shiftBigintBy,splitInput,stampGeneratedWarpMeta,string,struct,testCryptoAvailability,toInputPayloadValue,toPreviewText,tuple,uint16,uint32,uint64,uint8,validateMnemonicLength,validateSignedMessage,vector,withAdapterFallback});
1
+ "use strict";var Ke=Object.create;var vt=Object.defineProperty;var Xe=Object.getOwnPropertyDescriptor;var Ze=Object.getOwnPropertyNames;var Ye=Object.getPrototypeOf,tr=Object.prototype.hasOwnProperty;var er=(r,t)=>{for(var e in t)vt(r,e,{get:t[e],enumerable:!0})},ge=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Ze(t))!tr.call(r,i)&&i!==e&&vt(r,i,{get:()=>t[i],enumerable:!(n=Xe(t,i))||n.enumerable});return r};var Q=(r,t,e)=>(e=r!=null?Ke(Ye(r)):{},ge(t||!r||!r.__esModule?vt(e,"default",{value:r,enumerable:!0}):e,r)),rr=r=>ge(vt({},"__esModule",{value:!0}),r);var xn={};er(xn,{BrowserCryptoProvider:()=>xt,CLOUD_WALLET_PROVIDERS:()=>gr,CacheTtl:()=>ie,EvmWalletChainNames:()=>ur,MultiversxWalletChainNames:()=>dr,NodeCryptoProvider:()=>At,WARP_LANGUAGES:()=>br,WarpAssets:()=>S,WarpBrandBuilder:()=>te,WarpBuilder:()=>ee,WarpCache:()=>gt,WarpCacheKey:()=>ft,WarpChainDisplayNames:()=>Ae,WarpChainLogos:()=>we,WarpChainName:()=>xe,WarpChainResolver:()=>et,WarpClient:()=>pe,WarpCompositeResolver:()=>rt,WarpConfig:()=>D,WarpConstants:()=>c,WarpExecutor:()=>mt,WarpFactory:()=>J,WarpIndex:()=>yt,WarpInputTypes:()=>m,WarpInterpolator:()=>B,WarpLinkBuilder:()=>z,WarpLinkDetecter:()=>Wt,WarpLogger:()=>x,WarpPlatformName:()=>Ft,WarpPlatforms:()=>Ot,WarpProtocolVersions:()=>j,WarpSerializer:()=>w,WarpTypeRegistry:()=>le,WarpValidator:()=>ct,address:()=>sn,applyOutputToMessages:()=>Pt,asset:()=>Yt,biguint:()=>nn,bool:()=>an,buildGeneratedFallbackWarpIdentifier:()=>Le,buildGeneratedSourceWarpIdentifier:()=>Gr,buildInputsContext:()=>lt,buildMappedOutput:()=>_,buildNestedPayload:()=>Te,bytesToBase64:()=>Ar,bytesToHex:()=>Ie,checkWarpAssetBalance:()=>Xr,cleanWarpIdentifier:()=>K,createAuthHeaders:()=>Tt,createAuthMessage:()=>bt,createCryptoProvider:()=>Ir,createDefaultWalletProvider:()=>Kr,createHttpAuthHeaders:()=>kr,createSignableMessage:()=>$e,createWarpI18nText:()=>Er,createWarpIdentifier:()=>It,doesWarpRequireWallet:()=>Pr,evaluateOutputCommon:()=>Qt,evaluateWhenCondition:()=>jt,extractCollectOutput:()=>Z,extractIdentifierInfoFromUrl:()=>X,extractPromptOutput:()=>Kt,extractQueryStringFromIdentifier:()=>zt,extractQueryStringFromUrl:()=>qt,extractResolvedInputValues:()=>V,extractWarpSecrets:()=>Sr,findWarpAdapterForChain:()=>v,getChainDisplayName:()=>hr,getChainLogo:()=>mr,getCryptoProvider:()=>Ht,getEventNameFromWarp:()=>yr,getGeneratedSourceWarpName:()=>Fe,getLatestProtocolIdentifier:()=>nt,getMppFetch:()=>Zt,getNextInfo:()=>ot,getNextInfoForStatus:()=>pt,getProviderConfig:()=>Dr,getRandomBytes:()=>Ut,getRandomHex:()=>Dt,getRequiredAssetIds:()=>He,getWalletFromConfigOrFail:()=>nr,getWarpActionByIndex:()=>T,getWarpBrandLogoUrl:()=>Wr,getWarpChainAssetLogoUrl:()=>vr,getWarpChainInfoLogoUrl:()=>Cr,getWarpIdentifierWithQuery:()=>Fr,getWarpInfoFromIdentifier:()=>O,getWarpPrimaryAction:()=>R,getWarpWalletAddress:()=>fe,getWarpWalletAddressFromConfig:()=>P,getWarpWalletExternalId:()=>ye,getWarpWalletExternalIdFromConfig:()=>We,getWarpWalletExternalIdFromConfigOrFail:()=>sr,getWarpWalletMnemonic:()=>me,getWarpWalletMnemonicFromConfig:()=>ar,getWarpWalletPrivateKey:()=>he,getWarpWalletPrivateKeyFromConfig:()=>ir,hasInputPrefix:()=>Or,hex:()=>on,initializeWalletCache:()=>Qr,isEqualWarpIdentifier:()=>Rr,isGeneratedSourcePrivateIdentifier:()=>Jr,isPlatformValue:()=>Be,isWarpActionAutoExecute:()=>wt,isWarpI18nText:()=>Tr,isWarpWalletReadOnly:()=>or,matchesTrigger:()=>vn,mergeNestedPayload:()=>Jt,normalizeAndValidateMnemonic:()=>cr,normalizeMnemonic:()=>ve,option:()=>pn,parseOutputOutIndex:()=>Ne,parseSignedMessage:()=>jr,parseWarpQueryStringToObject:()=>Gt,removeWarpChainPrefix:()=>$r,removeWarpWalletFromConfig:()=>lr,replacePlaceholders:()=>H,replacePlaceholdersInWhenExpression:()=>Mt,resolveInputs:()=>Cn,resolveNextString:()=>_t,resolvePath:()=>ce,resolvePlatformValue:()=>Xt,resolveWarpText:()=>at,safeWindow:()=>Vt,setCryptoProvider:()=>xr,setWarpWalletInConfig:()=>pr,shiftBigintBy:()=>it,splitInput:()=>St,stampGeneratedWarpMeta:()=>_r,string:()=>Zr,struct:()=>cn,testCryptoAvailability:()=>wr,toInputPayloadValue:()=>Ee,toPreviewText:()=>kt,tuple:()=>ln,uint16:()=>tn,uint32:()=>en,uint64:()=>rn,uint8:()=>Yr,validateMnemonicLength:()=>Ce,validateSignedMessage:()=>Mr,vector:()=>un,withAdapterFallback:()=>fr});module.exports=rr(xn);var et=class{constructor(t){this.adapter=t}async getByAlias(t,e){try{let{registryInfo:n,brand:i}=await this.adapter.registry.getInfoByAlias(t,e);if(!n)return null;let a=await this.adapter.builder().createFromTransactionHash(n.hash,e);return a?{warp:a,brand:i,registryInfo:n}:null}catch{return null}}async getByHash(t,e){try{let n=await this.adapter.builder().createFromTransactionHash(t,e);if(!n)return null;let{registryInfo:i,brand:a}=await this.adapter.registry.getInfoByHash(t,e);return{warp:n,brand:a,registryInfo:i}}catch{return null}}};var rt=class{constructor(t){this.resolvers=t}async getByAlias(t,e){for(let n of this.resolvers){let i=await n.getByAlias(t,e);if(i)return i}return null}async getByHash(t,e){for(let n of this.resolvers){let i=await n.getByHash(t,e);if(i)return i}return null}};var nr=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},fe=r=>r?typeof r=="string"?r:r.address:null,P=(r,t)=>fe(r.user?.wallets?.[t]||null),he=r=>r?typeof r=="string"?r:r.privateKey||null:null,me=r=>r?typeof r=="string"?r:r.mnemonic||null:null,ye=r=>r?typeof r=="string"?r:r.externalId||null:null,ir=(r,t)=>he(r.user?.wallets?.[t]||null)?.trim()||null,ar=(r,t)=>me(r.user?.wallets?.[t]||null)?.trim()||null,We=(r,t)=>ye(r.user?.wallets?.[t]||null)?.trim()||null,sr=(r,t)=>{let e=We(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},or=r=>typeof r=="string",pr=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},lr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},ve=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},Ce=(r,t=24)=>{let e=r.split(/\s+/).filter(n=>n.length>0);if(e.length!==t)throw new Error(`Mnemonic must be ${t} words. Got ${e.length} words`)},cr=(r,t=24)=>{let e=ve(r);return Ce(e,t),e};var xe=(g=>(g.Multiversx="multiversx",g.Claws="claws",g.Sui="sui",g.Ethereum="ethereum",g.Base="base",g.Arbitrum="arbitrum",g.Polygon="polygon",g.Somnia="somnia",g.Tempo="tempo",g.Fastset="fastset",g.Solana="solana",g.Near="near",g))(xe||{}),Ft=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Ft||{}),Ot=Object.values(Ft),ur=["ethereum","base","arbitrum","polygon","somnia","tempo"],dr=["multiversx","claws"],gr=["coinbase","privy","gaupa"],c={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:r=>P(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},m={Option:"option",Vector:"vector",Tuple:"tuple",Struct:"struct",String:"string",Uint8:"uint8",Uint16:"uint16",Uint32:"uint32",Uint64:"uint64",Uint128:"uint128",Uint256:"uint256",Biguint:"biguint",Bool:"bool",Address:"address",Asset:"asset",Hex:"hex"},Vt=typeof window<"u"?window:{open:()=>{}};var j={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},D={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/v${j.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/brand/v${j.Brand}.schema.json`,DefaultClientUrl:r=>r==="devnet"?"https://devnet.usewarp.to":r==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",c.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","uint8","uint16","uint32","uint64","biguint","boolean","address"],AvailableActionInputPositions:["receiver","value","transfer","arg:1","arg:2","arg:3","arg:4","arg:5","arg:6","arg:7","arg:8","arg:9","arg:10","data","ignore"]};var fr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var Ct="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",S={baseUrl:Ct,chainLogo:r=>`${Ct}/chains/logos/${r}`,tokenLogo:r=>`${Ct}/tokens/logos/${r}`,walletLogo:r=>`${Ct}/wallets/logos/${r}`},Ae={multiversx:"MultiversX",claws:"Claws Network",sui:"Sui",ethereum:"Ethereum",base:"Base",arbitrum:"Arbitrum",polygon:"Polygon",somnia:"Somnia",tempo:"Tempo",fastset:"Fastset",solana:"Solana",near:"NEAR"},hr=r=>Ae[r]??r.charAt(0).toUpperCase()+r.slice(1),we={ethereum:{light:S.chainLogo("ethereum-white.svg"),dark:S.chainLogo("ethereum-black.svg")},base:{light:S.chainLogo("base-white.svg"),dark:S.chainLogo("base-black.svg")},arbitrum:S.chainLogo("arbitrum.svg"),polygon:S.chainLogo("polygon.svg"),somnia:S.chainLogo("somnia.png"),tempo:{light:S.chainLogo("tempo-white.svg"),dark:S.chainLogo("tempo-black.svg")},multiversx:S.chainLogo("multiversx.svg"),claws:S.chainLogo("claws.png"),sui:S.chainLogo("sui.svg"),solana:S.chainLogo("solana.svg"),near:{light:S.chainLogo("near-white.svg"),dark:S.chainLogo("near-black.svg")},fastset:{light:S.chainLogo("fastset-white.svg"),dark:S.chainLogo("fastset-black.svg")}},mr=(r,t="dark")=>{let e=we[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var yr=(r,t)=>{let e=r.alerts?.[t];if(!e)return null;let n=c.Alerts.TriggerEventPrefix+c.ArgParamsSeparator;if(!e.trigger.startsWith(n))return null;let i=e.trigger.replace(n,"");return i||null};var Lt=(r,t)=>r[t]??r.default??Object.values(r)[0],Wr=(r,t)=>{let e=t?.preferences?.theme??"light";return typeof r.logo=="string"?r.logo:Lt(r.logo,e)},vr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Lt(r.logoUrl,e)},Cr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Lt(r.logoUrl,e)};var xt=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let e=new Uint8Array(t);return window.crypto.getRandomValues(e),e}},At=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let e=await import("crypto");return new Uint8Array(e.randomBytes(t))}catch(e){throw new Error(`Node.js crypto not available: ${e instanceof Error?e.message:"Unknown error"}`)}}},q=null;function Ht(){if(q)return q;if(typeof window<"u"&&window.crypto)return q=new xt,q;if(typeof process<"u"&&process.versions?.node)return q=new At,q;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function xr(r){q=r}async function Ut(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||Ht()).getRandomBytes(r)}function Ie(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(r.length*2);for(let e=0;e<r.length;e++){let n=r[e];t[e*2]=(n>>>4).toString(16),t[e*2+1]=(n&15).toString(16)}return t.join("")}function Ar(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(r).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(r));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function Dt(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await Ut(r/2,t);return Ie(e)}async function wr(){let r={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?r.environment="browser":typeof process<"u"&&process.versions?.node&&(r.environment="nodejs"),await Ut(16),r.randomBytes=!0}catch{}return r}function Ir(){return Ht()}var Sr=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${c.Vars.Env}:`)).map(t=>{let e=t.replace(`${c.Vars.Env}:`,"").trim(),[n,i]=e.split(c.ArgCompositeSeparator);return{key:n,description:i||null}});var v=(r,t)=>{let e=t.find(n=>n.chainInfo.name.toLowerCase()===r.toLowerCase());if(!e)throw new Error(`Adapter not found for chain: ${r}`);return e},nt=r=>{if(r==="warp")return`warp:${j.Warp}`;if(r==="brand")return`brand:${j.Brand}`;if(r==="abi")return`abi:${j.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},T=(r,t)=>r?.actions[t-1],R=r=>{if(r.actions.length===0)throw new Error(`Warp has no primary action: ${r.meta?.identifier}`);let t=r.actions.find(a=>a.primary===!0);if(t)return{action:t,index:r.actions.indexOf(t)};let e=["transfer","contract","query","collect","compute","mcp"],n=r.actions.find(a=>e.includes(a.type));return n?{action:n,index:r.actions.indexOf(n)}:{action:r.actions[0],index:0}},wt=(r,t)=>{if(r.auto===!1)return!1;if(r.type==="link"){if(r.auto===!0)return!0;let{action:e}=R(t);return r===e}return!0},it=(r,t)=>{let e=r.toString(),[n,i=""]=e.split("."),a=Math.abs(t);if(t>0)return BigInt(n+i.padEnd(a,"0"));if(t<0){let s=n+i;if(a>=s.length)return 0n;let p=s.slice(0,-a)||"0";return BigInt(p)}else return e.includes(".")?BigInt(e.split(".")[0]):BigInt(e)},kt=(r,t=100)=>{if(!r)return"";let e=r.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return e=e.startsWith("- ")?e.slice(2):e,e=e.length>t?e.substring(0,e.lastIndexOf(" ",t))+"...":e,e},H=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),Mt=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),Pr=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===c.Source.UserWallet||n.default===`{{${c.Globals.UserWallet.Placeholder}}}`||n.default===`{{${c.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},jt=r=>{if(!r||typeof r!="string")return!0;try{return!!new Function(`return ${r}`)()}catch(t){throw new Error(`Failed to evaluate 'when' condition: ${r}. Error: ${t}`)}};var br={de:"German",en:"English",es:"Spanish",fr:"French",it:"Italian",pt:"Portuguese",ru:"Russian",zh:"Chinese",ja:"Japanese",ko:"Korean",ar:"Arabic",hi:"Hindi",nl:"Dutch",sv:"Swedish",da:"Danish",no:"Norwegian",fi:"Finnish",pl:"Polish",tr:"Turkish",el:"Greek",he:"Hebrew",th:"Thai",vi:"Vietnamese",id:"Indonesian",ms:"Malay",tl:"Tagalog"},at=(r,t)=>{let e=t?.preferences?.locale||"en";if(typeof r=="string")return r;if(typeof r=="object"&&r!==null){if(e in r)return r[e];if("en"in r)return r.en;let n=Object.keys(r);if(n.length>0)return r[n[0]]}return""},Tr=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,Er=r=>r;var K=r=>r.startsWith(c.IdentifierAliasMarker)?r.replace(c.IdentifierAliasMarker,""):r,Rr=(r,t)=>!r||!t?!1:K(r)===K(t),It=(r,t,e)=>{let n=K(e);if(t===c.IdentifierType.Alias)return c.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+c.IdentifierParamSeparator+t+c.IdentifierParamSeparator+n},O=(r,t)=>{let e=t||c.IdentifierChainDefault,n=decodeURIComponent(r).trim(),i=K(n),a=i.split("?")[0],s=Se(a);if(a.length===64&&/^[a-fA-F0-9]+$/.test(a))return{chain:e,type:c.IdentifierType.Hash,identifier:i,identifierBase:a};if(s.length===2&&/^[a-zA-Z0-9]{62}$/.test(s[0])&&/^[a-zA-Z0-9]{2}$/.test(s[1]))return null;if(s.length===3){let[p,l,o]=s;if(l===c.IdentifierType.Alias||l===c.IdentifierType.Hash){let u=i.includes("?")?o+i.substring(i.indexOf("?")):o;return{chain:p,type:l,identifier:u,identifierBase:o}}}if(s.length===2){let[p,l]=s;if(p===c.IdentifierType.Alias||p===c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l;return{chain:e,type:p,identifier:o,identifierBase:l}}}if(s.length===2){let[p,l]=s;if(p!==c.IdentifierType.Alias&&p!==c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l,u=Nr(l,p)?c.IdentifierType.Hash:c.IdentifierType.Alias;return{chain:p,type:u,identifier:o,identifierBase:l}}}return{chain:e,type:c.IdentifierType.Alias,identifier:i,identifierBase:a}},X=(r,t)=>{let e=new URL(r),i=e.searchParams.get(c.IdentifierParamName);if(i||(i=e.pathname.split("/")[1]),!i)return null;let a=decodeURIComponent(i);return O(a,t)},Nr=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Br=r=>{let t=c.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Se=r=>{let t=Br(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Se(a);return[i,...s]},qt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(c.IdentifierParamName),e.toString()||null}catch{return null}},zt=r=>{let t=r.indexOf("?");if(t===-1||t===r.length-1)return null;let e=r.substring(t+1);return e.length>0?e:null},Gt=r=>{if(!r)return{};let t=r.startsWith("?")?r.slice(1):r;if(!t)return{};let e=new URLSearchParams(t),n={};return e.forEach((i,a)=>{n[a]=i}),n},$r=(r,t)=>{let e=O(r,t);return(e?e.identifierBase:K(r)).trim()},Fr=r=>{let t=r.meta?.identifier;if(!t)return"";let e=r.meta?.query;if(e&&typeof e=="object"&&Object.keys(e).length>0){let n=new URLSearchParams(e);return`${t}?${n.toString()}`}return t};var St=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},Or=r=>{let t=new Set(Object.values(m));if(!r.includes(c.ArgParamsSeparator))return!1;let e=St(r)[0];return t.has(e)};var Pt=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=at(a,e);return[i,H(s,t)]});return Object.fromEntries(n)};var Pe=Q(require("qr-code-styling"),1);var z=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!X(t,this.config.defaultChain):!1}build(t,e,n){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=v(t,this.adapters),s=e===c.IdentifierType.Alias?n:e+c.IdentifierParamSeparator+n,p=a.chainInfo.name+c.IdentifierParamSeparator+s,l=encodeURIComponent(p);return D.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${c.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=O(t,this.config.defaultChain);if(!e)return null;let n=v(e.chain,this.adapters);return n?this.build(n.chainInfo.name,e.type,e.identifierBase):null}generateQrCode(t,e,n,i=512,a="white",s="black",p="#23F7DD"){let l=v(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new Pe.default({type:"svg",width:i,height:i,data:String(o),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:a},dotsOptions:{type:"extra-rounded",color:s},cornersSquareOptions:{type:"extra-rounded",color:s},cornersDotOptions:{type:"square",color:s},imageOptions:{hideBackgroundDots:!0,imageSize:.4,margin:8},image:`data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 100 100" fill="${encodeURIComponent(p)}" xmlns="http://www.w3.org/2000/svg"><path d="M54.8383 50.0242L95 28.8232L88.2456 16L51.4717 30.6974C50.5241 31.0764 49.4759 31.0764 48.5283 30.6974L11.7544 16L5 28.8232L45.1616 50.0242L5 71.2255L11.7544 84.0488L48.5283 69.351C49.4759 68.9724 50.5241 68.9724 51.4717 69.351L88.2456 84.0488L95 71.2255L54.8383 50.0242Z"/></svg>`})}};var be="https://",_t=(r,t)=>r?typeof r=="string"?t==="success"?r:null:r[t]||null:null,ot=(r,t,e,n,i)=>{let a=T(e,n)?.next||e.next||null,s=_t(a,"success");if(!s)return null;if(s.startsWith(be))return[{identifier:null,url:s}];let[p,l]=s.split("?");if(!l){let C=H(p,{...e.vars,...i});return[{identifier:C,url:st(t,C,r)}]}let o=l.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(o.length===0){let C=H(l,{...e.vars,...i}),W=C?`${p}?${C}`:p;return[{identifier:W,url:st(t,W,r)}]}let u=o[0];if(!u)return[];let d=u.match(/{{([^[]+)\[\]/),g=d?d[1]:null;if(!g||i[g]===void 0)return[];let f=Array.isArray(i[g])?i[g]:[i[g]];if(f.length===0)return[];let h=o.filter(C=>C.includes(`{{${g}[]`)).map(C=>{let W=C.match(/\[\](\.[^}]+)?}}/),I=W&&W[1]||"";return{placeholder:C,field:I?I.slice(1):"",regex:new RegExp(C.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return f.map(C=>{let W=l;for(let{regex:k,field:A}of h){let $=A?Vr(C,A):C;if($==null)return null;W=W.replace(k,$)}if(W.includes("{{")||W.includes("}}"))return null;let I=W?`${p}?${W}`:p;return{identifier:I,url:st(t,I,r)}}).filter(C=>C!==null)},pt=(r,t,e,n,i,a)=>{let s=a==="error"?"error":"success",p=T(e,n)?.next||e.next||null,l=_t(p,s);if(!l)return null;if(l.startsWith(be))return[{identifier:null,url:l}];let[o,u]=l.split("?");if(!u){let f=H(o,{...e.vars,...i});return[{identifier:f,url:st(t,f,r)}]}let d=H(u,{...e.vars,...i}),g=d?`${o}?${d}`:o;return[{identifier:g,url:st(t,g,r)}]},st=(r,t,e)=>{let[n,i]=t.split("?"),a=O(n,e.defaultChain)||{chain:c.IdentifierChainDefault,type:"alias",identifier:n,identifierBase:n},s=v(a.chain,r);if(!s)throw new Error(`Adapter not found for chain ${a.chain}`);let p=new z(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,u)=>l.searchParams.set(u,o)),l.toString().replace(/\/\?/,"?")},Vr=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var G=class G{static debug(...t){G.isTestEnv||console.debug(...t)}static info(...t){G.isTestEnv||console.info(...t)}static warn(...t){G.isTestEnv||console.warn(...t)}static error(...t){G.isTestEnv||console.error(...t)}};G.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var x=G;function Te(r,t,e){return r.startsWith(c.Position.Payload)?r.slice(c.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function Jt(r,t){if(!r)return{...t};if(!t)return{...r};let e={...r};return Object.keys(t).forEach(n=>{e[n]&&typeof e[n]=="object"&&typeof t[n]=="object"?e[n]=Jt(e[n],t[n]):e[n]=t[n]}),e}function Ee(r,t){if(!r.value)return null;let e=t.stringToNative(r.value)[1];if(r.input.type==="biguint")return e.toString();if(r.input.type==="asset"){let{identifier:n,amount:i}=e;return{identifier:n,amount:i.toString()}}else return e}function V(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function _(r,t){let e={};return r.forEach(n=>{let i=n.input.as||n.input.name,a=Ee(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(c.Position.Payload)){let s=Te(n.input.position,i,a);e=Jt(e,s)}else e[i]=a}),e}function lt(r,t,e,n){let i={},a=e!==void 0?e:r.length,s=p=>{if(!p?.value)return;let l=p.input.as||p.input.name,[,o]=t.stringToNative(p.value);if(i[l]=o,p.input.type!=="asset"||typeof o!="object"||o===null)return;let u=o;if("identifier"in u&&"amount"in u){let d=String(u.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(u.amount)}};for(let p=0;p<a;p++)s(r[p]);return s(n),i}var Re=(r,t,e)=>{let n=[],i=[],a={};if(r.output)for(let[s,p]of Object.entries(r.output)){if(p.startsWith(c.Transform.Prefix))continue;let l=Ne(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...u]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(u);n.push(String(d)),i.push(d),a[s]=d}else a[s]=p}return{stringValues:n,nativeValues:i,output:a}},Z=async(r,t,e,n,i,a)=>{let s=(d,g)=>g.reduce((f,h)=>f&&f[h]!==void 0?f[h]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:u}=Re(r,e,p);return{values:{string:l,native:o,mapped:_(n,i)},output:await Qt(r,u,t,e,n,i,a)}},Qt=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=Lr(p,r,n,i,a),p=await Hr(r,p,e,i,a,s.transform?.runner||null),p},Lr=(r,t,e,n,i)=>{let a={...r},s=T(t,e)?.inputs||[];for(let[p,l]of Object.entries(a))if(typeof l=="string"&&l.startsWith("in.")){let o=l.split(".")[1],u=s.findIndex(g=>g.as===o||g.name===o),d=u!==-1?n[u]?.value:null;a[p]=d?i.stringToNative(d)[1]:null}return a},Hr=async(r,t,e,n,i,a)=>{if(!r.output)return t;let s={...t},p=Object.entries(r.output).filter(([,o])=>o.startsWith(c.Transform.Prefix)).map(([o,u])=>({key:o,code:u.substring(c.Transform.Prefix.length)}));if(p.length>0&&(!a||typeof a.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let l={...s,out:Ur(e),inputs:lt(n,i)};for(let{key:o,code:u}of p)try{s[o]=await a.run(u,l),l[o]=s[o]}catch(d){x.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Ur=r=>{if(!r||typeof r!="object"||Array.isArray(r)||!Array.isArray(r.data))return r;let t=[...r.data];return t.data=r.data,t},Kt=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=Re(r,e,s),u=await Qt(r,o,t,e,n,i,a);return"PROMPT"in u||(u.PROMPT=t),{values:{string:p,native:l,mapped:_(n,i)},output:u}},Ne=r=>{if(r==="out")return 1;let t=r.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(r.startsWith("out.")||r.startsWith("event."),null)};var Be=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Ot.some(t=>t in r),Xt=(r,t)=>{if(!Be(r))return r;if(!t)throw new Error("Platform-specific value requires platform in client config");let e=r[t];if(e===void 0)throw new Error(`Warp does not support platform: ${t}`);return e};var Dr=(r,t,e,n)=>{let i=r.preferences?.providers?.[t];return i?.[e]?typeof i[e]=="string"?{url:i[e]}:i[e]:{url:n}};async function $e(r,t,e,n=5){let i=await Dt(64,e),a=new Date(Date.now()+n*60*1e3).toISOString();return{message:JSON.stringify({wallet:r,nonce:i,expiresAt:a,purpose:t}),nonce:i,expiresAt:a}}async function bt(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return $e(r,i,e,5)}function Tt(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function kr(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await bt(r,e,n),p=await t(i);return Tt(r,p,a,s)}function Mr(r){let t=new Date(r).getTime();return Date.now()<t}function jr(r){try{let t=JSON.parse(r);if(!t.wallet||!t.nonce||!t.expiresAt||!t.purpose)throw new Error("Invalid signed message: missing required fields");return t}catch(t){throw new Error(`Failed to parse signed message: ${t instanceof Error?t.message:"Unknown error"}`)}}var Fe=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",qr=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),Oe=(r,t=24)=>{let e=qr(r);return e?e.slice(0,t):"action"},Ve=r=>{let t=3735928559^r.length,e=1103547991^r.length;for(let a=0;a<r.length;a++){let s=r.charCodeAt(a);t=Math.imul(t^s,2654435761),e=Math.imul(e^s,1597334677)}t=Math.imul(t^t>>>16,2246822507)^Math.imul(e^e>>>13,3266489909),e=Math.imul(e^e>>>16,2246822507)^Math.imul(t^t>>>13,3266489909);let n=(e>>>0).toString(16).padStart(8,"0"),i=(t>>>0).toString(16).padStart(8,"0");return`${n}${i}`.slice(0,12)},zr=r=>{let t=(r||"").trim();if(!t)return"";try{let e=new URL(t),n=e.pathname.replace(/\/+$/,"").toLowerCase()||"/";return`${e.origin.toLowerCase()}${n}`}catch{return t.toLowerCase()}},Gr=(r,t,e)=>{let n=Oe((e||t||"").trim()||"action"),i=`${r.type}|${zr(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=Ve(i);return`private_src_${n}_${a}`},Le=r=>{let t=Fe(r),e=Oe(t),n=Ve(t.trim().toLowerCase());return`private_gen_${e}_${n}`},_r=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Le(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},Jr=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function Qr(r){let t={address:null,publicKey:null};if(!r)return t;try{t.address=await r.getAddress()}catch{}try{t.publicKey=await r.getPublicKey()}catch{}return t}function Kr(r,t,e){return null}var He=(r,t)=>{let e=null;try{e=R(r)}catch{return[]}let n=e?.action;return!n||n.type!=="contract"&&n.type!=="transfer"?[]:(n.inputs??[]).some(s=>s.position==="value"||s.position==="transfer"||s.type==="asset")?[t.nativeToken.identifier]:[]},Xr=async(r,t,e,n)=>{try{let i=v(e,n),a=He(r,i.chainInfo);if(!a.length)return!0;let s=await i.dataLoader.getAccountAssets(t),p=new Map(s.map(l=>[l.identifier,l.amount??0n]));return a.every(l=>(p.get(l)??0n)>0n)}catch{return!0}};var Et=require("mppx/client");async function Zt(r){for(let t of r){if(!t.wallet.getMppAccount)continue;let e=await t.wallet.getMppAccount().catch(()=>null);if(!e)continue;return x.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),Et.Mppx.create({methods:[(0,Et.tempo)({account:e})],polyfill:!1}).fetch}return fetch}var w=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t===m.Tuple&&Array.isArray(e)){if(e.length===0)return t+c.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(c.ArgCompositeSeparator)})${c.ArgParamsSeparator}${a.join(c.ArgListSeparator)}`}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===m.Struct&&typeof e=="object"&&e!==null&&!Array.isArray(e)){let n=e;if(!n._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=n._name,a=Object.keys(n).filter(p=>p!=="_name");if(a.length===0)return`${t}(${i})${c.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${c.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${c.ArgParamsSeparator}${s.join(c.ArgListSeparator)}`}if(t===m.Vector&&Array.isArray(e)){if(e.length===0)return`${t}${c.ArgParamsSeparator}`;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e[0],i=n.indexOf(c.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(c.ArgParamsSeparator),u=l.substring(o+1);return a.startsWith(m.Tuple)?u.replace(c.ArgListSeparator,c.ArgCompositeSeparator):u}),p=a.startsWith(m.Struct)?c.ArgStructSeparator:c.ArgListSeparator;return t+c.ArgParamsSeparator+a+c.ArgParamsSeparator+s.join(p)}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===m.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?m.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount)+c.ArgCompositeSeparator+String(e.decimals):m.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount);if(this.typeRegistry){let n=this.typeRegistry.getHandler(t);if(n)return n.nativeToString(e);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,e)}return t+c.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(c.ArgParamsSeparator),n=e[0],i=e.slice(1).join(c.ArgParamsSeparator);if(n==="null")return[n,null];if(n===m.Option){let[a,s]=i.split(c.ArgParamsSeparator);return[m.Option+c.ArgParamsSeparator+a,s||null]}if(n===m.Vector){let a=i.indexOf(c.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(m.Struct)?c.ArgStructSeparator:c.ArgListSeparator,u=(p?p.split(l):[]).map(d=>this.stringToNative(s+c.ArgParamsSeparator+d)[1]);return[m.Vector+c.ArgParamsSeparator+s,u]}else if(n.startsWith(m.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(c.ArgCompositeSeparator),p=i.split(c.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${c.IdentifierParamSeparator}${l}`)[1]);return[n,p]}else if(n.startsWith(m.Struct)){let a=n.match(/\(([^)]+)\)/);if(!a)throw new Error("Struct type must include a name in the format struct(Name)");let p={_name:a[1]};return i&&i.split(c.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${c.ArgParamsSeparator}]+)${c.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,u,d,g]=o;p[u]=this.stringToNative(`${d}${c.IdentifierParamSeparator}${g}`)[1]}}),[n,p]}else{if(n===m.String)return[n,i];if(n===m.Uint8||n===m.Uint16||n===m.Uint32)return[n,Number(i)];if(n===m.Uint64||n===m.Uint128||n===m.Uint256||n===m.Biguint)return[n,BigInt(i||0)];if(n===m.Bool)return[n,i==="true"];if(n===m.Address)return[n,i];if(n===m.Hex)return[n,i];if(n===m.Asset){let[a,s]=i.split(c.ArgCompositeSeparator),p={identifier:a,amount:BigInt(s)};return[n,p]}}if(this.typeRegistry){let a=this.typeRegistry.getHandler(n);if(a){let p=a.stringToNative(i);return[n,p]}let s=this.typeRegistry.resolveType(n);if(s!==n){let[p,l]=this.stringToNative(`${s}:${i}`);return[n,l]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(c.ArgParamsSeparator)){let[e,n]=t.split(c.ArgParamsSeparator);return[e,n]}return typeof t=="number"?[m.Uint32,t]:typeof t=="bigint"?[m.Uint64,t]:typeof t=="boolean"?[m.Bool,t]:[typeof t,t]}};var Zr=r=>new w().nativeToString(m.String,r),Yr=r=>new w().nativeToString(m.Uint8,r),tn=r=>new w().nativeToString(m.Uint16,r),en=r=>new w().nativeToString(m.Uint32,r),rn=r=>new w().nativeToString(m.Uint64,r),nn=r=>new w().nativeToString(m.Biguint,r),an=r=>new w().nativeToString(m.Bool,r),sn=r=>new w().nativeToString(m.Address,r),Yt=r=>new w().nativeToString(m.Asset,r),on=r=>new w().nativeToString(m.Hex,r),pn=(r,t)=>{if(t===null)return m.Option+c.ArgParamsSeparator;let e=r(t),n=e.indexOf(c.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return m.Option+c.ArgParamsSeparator+i+c.ArgParamsSeparator+a},ln=(...r)=>new w().nativeToString(m.Tuple,r),cn=r=>new w().nativeToString(m.Struct,r),un=r=>new w().nativeToString(m.Vector,r);var Ue=Q(require("ajv"),1);var te=class{constructor(t){this.pendingBrand={protocol:nt("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.ensureValidSchema(n),n}setName(t){return this.pendingBrand.name=t,this}setDescription(t){return this.pendingBrand.description=t,this}setLogo(t){return this.pendingBrand.logo=t,this}setUrls(t){return this.pendingBrand.urls=t,this}setColors(t){return this.pendingBrand.colors=t,this}setCta(t){return this.pendingBrand.cta=t,this}async build(){return this.ensureWarpText(this.pendingBrand.name,"name is required"),this.ensureWarpText(this.pendingBrand.description,"description is required"),typeof this.pendingBrand.logo=="string"&&this.ensure(this.pendingBrand.logo,"logo is required"),await this.ensureValidSchema(this.pendingBrand),this.pendingBrand}ensure(t,e){if(!t)throw new Error(`Warp: ${e}`)}ensureWarpText(t,e){if(!t)throw new Error(`Warp: ${e}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${e}`)}async ensureValidSchema(t){let e=this.config.schema?.brand||D.LatestBrandSchemaUrl,i=await(await fetch(e)).json(),a=new Ue.default,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};var De=Q(require("ajv"),1);var ct=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validatePrimaryAction(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validatePrimaryAction(t){try{let{action:e}=R(t);return e?[]:["Primary action is required"]}catch(e){return[e instanceof Error?e.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(n=>n.inputs?n.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let e=[],n=(i,a)=>{i&&Object.keys(i).forEach(s=>{s!==s.toUpperCase()&&e.push(`${a} name '${s}' must be uppercase`)})};return n(t.vars,"Variable"),n(t.output,"Output"),t.trigger?.type==="webhook"&&t.trigger.inputs&&n(t.trigger.inputs,"Webhook trigger input"),e}validateAbiIsSetIfApplicable(t){let e=t.actions.some(s=>s.type==="contract"),n=t.actions.some(s=>s.type==="query");if(!e&&!n)return[];let i=t.actions.some(s=>s.abi),a=Object.values(t.output||{}).some(s=>s.startsWith("out.")||s.startsWith("event."));return t.output&&!i&&a?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let e=this.config.schema?.warp||D.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new De.default({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var ee=class{constructor(t){this.config=t;this.pendingWarp={protocol:nt("warp"),name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.validate(n),n}async createFromUrl(t){return await(await fetch(t)).json()}setChain(t){return this.pendingWarp.chain=t,this}setName(t){return this.pendingWarp.name=t,this}setTitle(t){return this.pendingWarp.title=t,this}setDescription(t){return this.pendingWarp.description=t,this}setPreview(t){return this.pendingWarp.preview=t,this}setActions(t){return this.pendingWarp.actions=t,this}addAction(t){return this.pendingWarp.actions.push(t),this}setOutput(t){return this.pendingWarp.output=t??void 0,this}async build(t=!0){return this.ensure(this.pendingWarp.protocol,"protocol is required"),this.ensure(this.pendingWarp.name,"name is required"),this.ensureWarpText(this.pendingWarp.title,"title is required"),this.ensure(this.pendingWarp.actions.length>0,"actions are required"),t&&await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,e=100){return kt(t,e)}ensure(t,e){if(!t)throw new Error(e)}ensureWarpText(t,e){if(!t)throw new Error(e);if(typeof t=="object"&&!t.en)throw new Error(e)}async validate(t){let n=await new ct(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
+ `))}};var b=require("fs"),tt=require("path");var re="$bigint:",Rt=(r,t)=>typeof t=="bigint"?re+t.toString():t,Y=(r,t)=>typeof t=="string"&&t.startsWith(re)?BigInt(t.slice(re.length)):t;var Nt=class{constructor(t,e){let n=e?.path;this.cacheDir=n?(0,tt.resolve)(n):(0,tt.resolve)(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){(0,b.existsSync)(this.cacheDir)||(0,b.mkdirSync)(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return(0,tt.join)(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!(0,b.existsSync)(e))return null;let n=(0,b.readFileSync)(e,"utf-8"),i=JSON.parse(n,Y);return i.expiresAt!==null&&Date.now()>i.expiresAt?((0,b.unlinkSync)(e),null):i.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null},a=this.getFilePath(t);(0,b.writeFileSync)(a,JSON.stringify(i,Rt),"utf-8")}async delete(t){try{let e=this.getFilePath(t);(0,b.existsSync)(e)&&(0,b.unlinkSync)(e)}catch{}}async keys(t){try{let e=(0,b.readdirSync)(this.cacheDir).filter(i=>i.endsWith(".json")).map(i=>i.slice(0,-5));if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}catch{return[]}}async clear(){try{(0,b.readdirSync)(this.cacheDir).forEach(e=>{e.endsWith(".json")&&(0,b.unlinkSync)((0,tt.join)(this.cacheDir,e))})}catch{}}};var ut=class{constructor(t,e){this.prefix="warp-cache"}getKey(t){return`${this.prefix}:${t}`}async get(t){try{let e=localStorage.getItem(this.getKey(t));if(!e)return null;let n=JSON.parse(e,Y);return n.expiresAt!==null&&Date.now()>n.expiresAt?(localStorage.removeItem(this.getKey(t)),null):n.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null};localStorage.setItem(this.getKey(t),JSON.stringify(i,Rt))}async delete(t){localStorage.removeItem(this.getKey(t))}async keys(t){let e=[];for(let i=0;i<localStorage.length;i++){let a=localStorage.key(i);a?.startsWith(this.prefix+":")&&e.push(a.slice(this.prefix.length+1))}if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){for(let t=0;t<localStorage.length;t++){let e=localStorage.key(t);e?.startsWith(this.prefix)&&localStorage.removeItem(e)}}};var U=class U{constructor(t,e){}async get(t){let e=U.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(U.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;U.cache.set(t,{value:e,expiresAt:i})}async delete(t){U.cache.delete(t)}async keys(t){let e=Array.from(U.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){U.cache.clear()}};U.cache=new Map;var dt=U;var ke=require("fs"),ne=require("path");var Bt=class{constructor(t,e){let n=e?.path?(0,ne.resolve)(e.path):(0,ne.resolve)(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=(0,ke.readFileSync)(t,"utf-8");return new Map(Object.entries(JSON.parse(e,Y)))}catch(e){return x.warn(`StaticCacheStrategy (loadManifest): Failed to load manifest from ${t}:`,e),new Map}}async get(t){let e=this.cache.get(t);return!e||e.expiresAt!==null&&Date.now()>e.expiresAt?(e&&this.cache.delete(t),null):e.value}async set(t,e,n){let i=n?Date.now()+n*1e3:null,a={value:e,expiresAt:i};this.cache.set(t,a)}async delete(t){this.cache.delete(t)}async keys(t){let e=Array.from(this.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){this.cache.clear()}};var ie={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},ft={Warp:(r,t)=>`warp:${r}:${t}`,WarpAbi:(r,t)=>`warp-abi:${r}:${t}`,WarpExecutable:(r,t,e)=>`warp-exec:${r}:${t}:${e}`,RegistryInfo:(r,t)=>`registry-info:${r}:${t}`,Brand:(r,t)=>`brand:${r}:${t}`,Asset:(r,t,e)=>`asset:${r}:${t}:${e}`,AccountNfts:(r,t,e,n,i)=>`account-nfts:${r}:${t}:${e}:${n}:${i}`},gt=class{constructor(t,e){this.strategy=this.selectStrategy(t,e)}selectStrategy(t,e){return e?.adapter?e.adapter:e?.type==="localStorage"?new ut(t,e):e?.type==="memory"?new dt(t,e):e?.type==="static"?new Bt(t,e):e?.type==="filesystem"?new Nt(t,e):typeof window<"u"&&window.localStorage?new ut(t,e):new dt(t,e)}async set(t,e,n){await this.strategy.set(t,e,n)}async get(t){return await this.strategy.get(t)}async delete(t){await this.strategy.delete(t)}async keys(t){return await this.strategy.keys(t)}async clear(){await this.strategy.clear()}};var ht={Queries:"QUERIES",Payload:"PAYLOAD",Headers:"HEADERS"},ae={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},se=(r,t,e)=>{let n=r.find(a=>a.input.as===t||a.input.name===t);if(!n?.value)return null;let[,i]=e.stringToNative(n.value);return typeof i=="string"?i:String(i)},oe=r=>{try{return JSON.parse(r)}catch{return null}},dn=async(r,t,e,n,i,a)=>{let s=new Headers;if(s.set("Content-Type","application/json"),s.set("Accept","application/json"),a&&n){let{message:l,nonce:o,expiresAt:u}=await bt(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Tt(n,d,o,u)).forEach(([g,f])=>s.set(g,f))}let p=se(e.resolvedInputs,ht.Headers,i);if(p){let l=oe(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,u])=>typeof u=="string"&&s.set(o,u))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},gn=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===ae.Get){let s=se(e.resolvedInputs,ht.Queries,i);if(s){let p=oe(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,u])=>u!=null&&l.searchParams.set(o,String(u))),a=l.toString()}}}return a},fn=(r,t,e,n,i)=>{if(r===ae.Get)return;let a=se(t.resolvedInputs,ht.Payload,n);if(a&&oe(a)!==null)return a;let{[ht.Payload]:s,[ht.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},Me=async(r,t,e,n,i,a,s,p)=>{let l=t.method||ae.Get,o=await dn(r,t,e,n,a,p),u=gn(r,t,e,l,a),d=fn(l,e,i,a,s);return{url:u,method:l,headers:o,body:d}};var B=class{constructor(t,e,n){this.config=t;this.adapter=e;this.adapters=n}async apply(t,e={}){let n=this.applyVars(t,e),i=await this.applyGlobals(n);return e.envs?this.applyEnvs(i,e.envs):i}applyEnvs(t,e){if(!e||Object.keys(e).length===0)return t;let n=JSON.stringify(t);for(let[i,a]of Object.entries(e)){if(a==null)continue;let s=JSON.stringify(String(a)).slice(1,-1);n=n.replace(new RegExp(`\\{\\{${hn(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=P(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(c.Vars.Query+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Query.length+1),[o,u]=l.split(c.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(o):null,f=e.queries?.[o]??null??d;f!=null&&a(s,f)}else if(p.startsWith(c.Vars.Env+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Env.length+1),[o,u]=l.split(c.ArgCompositeSeparator),g={...this.config.vars,...e.envs}?.[o];g!=null&&a(s,g)}else p===c.Source.UserWallet&&n?a(s,n):a(s,p)}),JSON.parse(i)}async applyRootGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}async applyActionGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}applyInputs(t,e,n,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let a=this.applyGlobalsToText(t),s=this.buildInputBag(e,n,i);return H(a,s)}applyGlobalsToText(t){if(!Object.values(c.Globals).map(s=>s.Placeholder).some(s=>t.includes(`{{${s}}}`)||t.includes(`{{${s}:`)))return t;let i={config:this.config,adapter:this.adapter},a=t;return Object.values(c.Globals).forEach(s=>{let p=s.Accessor(i);p!=null&&(a=a.replace(new RegExp(`{{${s.Placeholder}}}`,"g"),p.toString())),a=this.replacePlaceholdersWithChain(a,s.Placeholder,i,s.Accessor)}),a}replacePlaceholdersWithChain(t,e,n,i){let a=new RegExp(`\\{\\{${e}:([^}]+)\\}\\}`,"g");return t.replace(a,(s,p)=>{let l=p.trim().toLowerCase();if(!this.adapters)return s;try{let o=v(l,this.adapters),u={config:this.config,adapter:o},d=i(u);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e,n){let i={};return t.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);i[s]=String(p)}),n&&n.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);if(i[`primary.${s}`]=String(p),a.input.type==="asset"&&typeof a.input.position=="object"){let l=p;l&&typeof l=="object"&&"identifier"in l&&"amount"in l&&(i[`primary.${s}.token`]=String(l.identifier),i[`primary.${s}.amount`]=String(l.amount))}}),i}},hn=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var mn=["collect","compute","mcp","state","mount","unmount"],J=class{constructor(t,e){this.config=t;this.adapters=e;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new w,this.cache=new gt(t.env,t.cache)}getSerializer(){return this.serializer}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(ft.WarpExecutable(t,e||"",n))||[];return V(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(ft.WarpExecutable(t,e||"",n))||[]}async createExecutable(t,e,n,i={}){let a=T(t,e);if(!a)throw new Error("WarpFactory: Action not found");let s=await this.getChainInfoForWarp(t,n),p=v(s.name,this.adapters),l=new B(this.config,p,this.adapters),o=await l.apply(t,i),u=T(o,e),{action:d,index:g}=R(o),f=this.getStringTypedInputs(d,n),h=await this.getResolvedInputs(s.name,d,f,l,i.queries),y=await this.getModifiedInputs(h),C=[],W=[];g===e-1?(C=h,W=y):this.requiresPayloadInputs(u)&&(C=await this.resolveActionInputs(s.name,u,n,l,i.queries),W=await this.getModifiedInputs(C));let I=W.find(E=>E.input.position==="receiver"||E.input.position==="destination")?.value,k=this.getDestinationFromAction(u),A=I?this.serializer.stringToNative(I)[1]:k;if(A&&(A=l.applyInputs(A,W,this.serializer,y)),!A&&!mn.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let $=this.getPreparedArgs(u,W);$=$.map(E=>l.applyInputs(E,W,this.serializer,y));let L=W.find(E=>E.input.position==="value")?.value||null,N="value"in u?u.value:null,F=L?.split(c.ArgParamsSeparator)[1]||N||"0",M=l.applyInputs(F,W,this.serializer,y),je=BigInt(M),qe=W.filter(E=>E.input.position==="transfer"&&E.value).map(E=>E.value),ze=[...("transfers"in u?u.transfers:[])||[],...qe||[]].map(E=>{let $t=l.applyInputs(E,W,this.serializer,y),Qe=$t.startsWith(`asset${c.ArgParamsSeparator}`)?$t:`asset${c.ArgParamsSeparator}${$t}`;return this.serializer.stringToNative(Qe)[1]}),Ge=W.find(E=>E.input.position==="data")?.value,_e="data"in u?u.data||"":null,ue=Ge||_e||null,Je=ue?l.applyInputs(ue,W,this.serializer,y):null,de={adapter:p,warp:o,chain:s,action:e,destination:A,args:$,value:je,transfers:ze,data:Je,resolvedInputs:W};return await this.cache.set(ft.WarpExecutable(this.config.env,o.meta?.hash||"",e),de.resolvedInputs,ie.OneWeek),de}async getChainInfoForWarp(t,e){if(t.chain)return v(t.chain,this.adapters).chainInfo;if(e){let i=await this.tryGetChainFromInputs(t,e);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,e){let n=t.inputs||[];return e.map((i,a)=>{let s=n[a];return!s||i.includes(c.ArgParamsSeparator)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(u=>i.applyInputs(u,[],this.serializer)),l=await Promise.all(p.map(u=>this.preprocessInput(t,u))),o=(u,d)=>{if(u.source===c.Source.UserWallet){let C=P(this.config,t);return C?this.serializer.nativeToString("address",C):null}if(u.source==="hidden"){if(u.default===void 0)return null;let C=i?i.applyInputs(String(u.default),[],this.serializer):String(u.default);return this.serializer.nativeToString(u.type,C)}if(l[d])return l[d];let g=u.as||u.name,f=a?.[g],h=this.url.searchParams.get(g),y=f||h;return y?this.serializer.nativeToString(u.type,String(y)):null};return s.map((u,d)=>{let g=o(u,d),f=u.default!==void 0?i?i.applyInputs(String(u.default),[],this.serializer):String(u.default):void 0;return{input:u,value:g||(f!==void 0?this.serializer.nativeToString(u.type,f):null)}})}async resolveInputsFromQuery(t,e,n){let i=T(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=v(a.name,this.adapters),p=new B(this.config,s,this.adapters);return this.getResolvedInputs(a.name,i,[],p,n)}requiresPayloadInputs(t){return t.inputs?.some(e=>typeof e.position=="string"&&e.position.startsWith("payload:"))??!1}async resolveActionInputs(t,e,n,i,a){let s=this.getStringTypedInputs(e,n);return await this.getResolvedInputs(t,e,s,i,a)}async getModifiedInputs(t){let e=[];for(let n=0;n<t.length;n++){let i=t[n];if(i.input.modifier?.startsWith("scale:")){let[,a]=i.input.modifier.split(":");if(isNaN(Number(a))){let s=Number(t.find(o=>o.input.name===a)?.value?.split(":")[1]);if(!s)throw new Error(`WarpActionExecutor: Exponent value not found for input ${a}`);let p=i.value?.split(":")[1];if(!p)throw new Error("WarpActionExecutor: Scalable value not found");let l=it(p,+s);e.push({...i,value:`${i.input.type}:${l}`})}else{let s=i.value?.split(":")[1];if(!s)throw new Error("WarpActionExecutor: Scalable value not found");let p=it(s,+a);e.push({...i,value:`${i.input.type}:${p}`})}}else if(i.input.modifier?.startsWith(c.Transform.Prefix)){let a=i.input.modifier.substring(c.Transform.Prefix.length),s=this.config.transform?.runner;if(!s||typeof s.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let p=lt(t,this.serializer,n,i),l=await s.run(a,p);if(l==null)e.push(i);else{let o=this.serializer.nativeToString(i.input.type,l);e.push({...i,value:o})}}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=St(e),a=v(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(c.ArgCompositeSeparator);if(l)return e;let o=await a.dataLoader.getAsset(s);if(!o)throw new Error(`WarpFactory: Asset not found for asset ${s}`);if(typeof o.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${s}`);let u=it(p,o.decimals);return Yt({...o,amount:u})}else return e}catch(n){throw x.warn("WarpFactory: Preprocess input failed",n),n}}getDestinationFromAction(t){if("address"in t&&t.address)return t.address;if("destination"in t&&t.destination){if(typeof t.destination=="string")return t.destination;if(typeof t.destination=="object"&&"url"in t.destination)return t.destination.url}return null}getPreparedArgs(t,e){let n="args"in t?t.args||[]:[],i=[];return e.forEach(({input:a,value:s})=>{if(!(!s||!a.position)){if(typeof a.position=="object"){if(a.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${a.name}" has type "${a.type}"`);if(!a.position.token?.startsWith("arg:")||!a.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${a.name}"`);let[p,l]=this.serializer.stringToNative(s),o=l;if(!o||typeof o!="object"||!("identifier"in o)||!("amount"in o))throw new Error(`WarpFactory: Invalid asset value for input "${a.name}"`);let u=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",o.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",o.amount)})}else if(a.position.startsWith("arg:")){let p=Number(a.position.split(":")[1])-1;i.push({index:p,value:s})}}}),i.forEach(({index:a,value:s})=>{for(;n.length<=a;)n.push(void 0);n[a]=s}),n.filter(a=>a!==void 0)}async tryGetChainFromInputs(t,e){let n=t.actions.find(l=>l.inputs?.some(o=>o.position==="chain"));if(!n)return null;let i=n.inputs?.findIndex(l=>l.position==="chain");if(i===-1||i===void 0)return null;let a=e[i];if(!a)throw new Error("Chain input not found");let s=this.serializer.stringToNative(a)[1];return v(s,this.adapters).chainInfo}};var mt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.handlers=n,this.factory=new J(t,e)}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},u={...n,queries:o},{action:d,index:g}=R(t);for(let f=1;f<=t.actions.length;f++){let h=T(t,f);if(!wt(h,t))continue;let{tx:y,chain:C,immediateExecution:W,executable:I}=await this.executeAction(t,f,e,u);y&&i.push(y),C&&(a=C),W&&s.push(W),I&&f===g+1&&I.resolvedInputs&&(p=V(I.resolvedInputs))}if(!a&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&s.length>0){let f=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(f))}return{txs:i,chain:a,immediateExecutions:s,resolvedInputs:p}}async executeAction(t,e,n,i={}){let a=T(t,e);if(a.type==="link")return a.when&&!await this.evaluateWhenCondition(t,a,n,i)?{tx:null,chain:null,immediateExecution:null,executable:null}:(await this.callHandler(async()=>{let o=a.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(o):Vt.open(o,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null});if(a.type==="prompt"){let o=await this.executePrompt(t,a,e,n,i);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:null};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="compute"){let o=await this.executeCompute(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="state"||a.type==="mount"||a.type==="unmount")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="mcp"){let o=await this.executeMcp(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:s}}}let p=v(s.chain.name,this.adapters);if(a.type==="query"){let o=await p.executor.executeQuery(s);if(o.status==="success")await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:s.chain,execution:o,tx:null}));else{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:s.chain,immediateExecution:o,executable:s}}return{tx:await p.executor.createTransaction(s),chain:s.chain,immediateExecution:null,executable:s}}async evaluateOutput(t,e){if(e.length===0||t.actions.length===0||!this.handlers)return;let n=await this.factory.getChainInfoForWarp(t),i=v(n.name,this.adapters),a=(await Promise.all(t.actions.map(async(s,p)=>{if(!wt(s,t)||s.type!=="transfer"&&s.type!=="contract")return null;let l=e[p],o=p+1;if(!l){let f=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),h={status:"error",warp:t,action:o,user:P(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:f};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:h})),h}let u=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(u.length===0){let f=t.meta?.query;f&&Object.keys(f).length>0&&(u=await this.factory.resolveInputsFromQuery(t,o,f))}let d=await i.output.getActionExecution(t,o,l.tx,u),g=yn(u,d.output);return d.next=pt(this.config,this.adapters,t,o,g,d.status),d.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:o,chain:n,execution:d,tx:l})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(d.values),result:d})),d}))).filter(s=>s!==null);if(a.every(s=>s.status==="success")){let s=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(s))}else{let s=a.find(p=>p.status!=="success");await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(a)}`,result:s}))}}async executeCollect(t,e){let n=P(this.config,t.chain.name),i=T(t.warp,t.action),a=this.factory.getSerializer(),s=_(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Z(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=P(this.config,t.chain.name),n=this.factory.getSerializer(),i=_(t.resolvedInputs,n),{values:a,output:s}=await Z(t.warp,i,t.action,t.resolvedInputs,n,this.config);return this.buildCollectResult(t,e,"success",a,s)}async doHttpRequest(t,e,n,i,a){let s=new B(this.config,v(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:u,body:d}=await Me(s,e,t,n,i,p,a,async g=>await this.callHandler(()=>this.handlers?.onSignRequest?.(g)));x.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:u,body:d});try{let g={method:o,headers:u,body:d},h=await(await Zt(this.adapters))(l,g);x.debug("Collect response status",{status:h.status});let y=await h.json();x.debug("Collect response content",{content:y});let{values:C,output:W}=await Z(t.warp,y,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,P(this.config,t.chain.name),h.ok?"success":"error",C,W,y)}catch(g){x.error("WarpActionExecutor: Error executing collect",g);let f=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(n=>n.input.position==="receiver"||n.input.position==="destination")?.value||t.destination}async executeMcp(t,e){let n=P(this.config,t.chain.name),i=T(t.warp,t.action);if(!i.destination){let f=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("WarpExecutor: MCP action requires destination")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("Please install @modelcontextprotocol/sdk to execute MCP warps or mcp actions")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}let p=this.factory.getSerializer(),l=new B(this.config,v(t.chain.name,this.adapters),this.adapters),o=i.destination,u=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),g={};o.headers&&Object.entries(o.headers).forEach(([f,h])=>{let y=l.applyInputs(h,t.resolvedInputs,this.factory.getSerializer());g[f]=y}),x.debug("WarpExecutor: Executing MCP",{url:u,tool:d,headers:g});try{let f=new s(new URL(u),{requestInit:{headers:g}}),h=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await h.connect(f);let y={};t.resolvedInputs.forEach(({input:A,value:$})=>{if($&&A.position&&typeof A.position=="string"&&A.position.startsWith("payload:")){let L=A.position.replace("payload:",""),[N,F]=p.stringToNative($);if(N==="string")y[L]=String(F);else if(N==="bool")y[L]=!!F;else if(N==="uint8"||N==="uint16"||N==="uint32"||N==="uint64"||N==="uint128"||N==="uint256"||N==="biguint"){let M=Number(F);y[L]=(Number.isInteger(M),M)}else y[L]=F}}),e&&Object.assign(y,e);let C=await h.callTool({name:d,arguments:y});await h.close();let W;if(C.content&&C.content.length>0){let A=C.content[0];if(A.type==="text")try{W=JSON.parse(A.text)}catch{W=A.text}else A.type,W=A}else W=C;let{values:I,output:k}=await Z(t.warp,W,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",I,k,C)}catch(f){x.error("WarpExecutor: Error executing MCP",f);let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:f},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}buildCollectResult(t,e,n,i,a,s){let p=pt(this.config,this.adapters,t.warp,t.action,a,n),l=V(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||P(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages:Pt(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=v(s.name,this.adapters),l=new B(this.config,p,this.adapters),o=await l.apply(t,a),u=T(o,n),{action:d}=R(o),g=this.factory.getStringTypedInputs(d,i),f=await this.factory.getResolvedInputs(s.name,d,g,l,a.queries),h=await this.factory.getModifiedInputs(f),y=h;if(e.inputs&&e.inputs.length>0){let F=this.factory.getStringTypedInputs(e,i),M=await this.factory.getResolvedInputs(s.name,e,F,l,a.queries);y=await this.factory.getModifiedInputs(M)}let C=Xt(u.prompt,this.config.platform),W=l.applyInputs(C,y,this.factory.getSerializer(),h),I=V(y),k=P(this.config,s.name),A=this.factory.getSerializer(),{values:$,output:L}=await Kt(o,W,n,y,A,this.config),N=y.find(F=>F.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:k,txHash:null,tx:null,next:ot(this.config,this.adapters,o,n,L),values:$,output:L,messages:Pt(o,L,this.config),destination:N,resolvedInputs:I}}catch(s){return x.error("WarpExecutor: Error executing prompt action",s),{status:"error",warp:t,action:n,user:null,txHash:null,tx:null,next:pt(this.config,this.adapters,t,n,{},"error"),values:{string:[],native:[],mapped:{}},output:{_DATA:s},messages:{},destination:null,resolvedInputs:[]}}}async evaluateWhenCondition(t,e,n,i,a,s){if(!e.when)return!0;let p=s?{name:s}:await this.factory.getChainInfoForWarp(t,n),l=v(p.name,this.adapters),o=new B(this.config,l,this.adapters),{action:u}=R(t),d=this.factory.getStringTypedInputs(u,n),g=await this.factory.getResolvedInputs(p.name,u,d,o,i.queries),f=await this.factory.getModifiedInputs(g),h;if(a)h=a;else{let I=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);h=await this.factory.getModifiedInputs(I)}let y=o.buildInputBag(h,this.factory.getSerializer(),f),C={...i.envs??{},...y},W=Mt(e.when,C);return jt(W)}},yn=(r,t)=>{let e=Object.fromEntries((r??[]).flatMap(i=>{let a=i.input.as||i.input.name;return a?[[a,i.value]]:[]})),n=Object.fromEntries(Object.entries(t).filter(([,i])=>i!=null));return{...e,...n}};var yt=class{constructor(t){this.config=t}async search(t,e,n){if(!this.config.index?.url)throw new Error("WarpIndex: Index URL is not set");try{let i=await fetch(this.config.index?.url,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.index?.apiKey}`,...n},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...e})});if(!i.ok)throw new Error(`WarpIndex: search failed with status ${i.status}: ${await i.text()}`);return(await i.json()).hits}catch(i){throw x.error("WarpIndex: Error searching for warps: ",i),i}}};var Wt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!X(t,this.config.defaultChain):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(o=>o[0]).filter(o=>this.isValid(o)).map(o=>this.detect(o)),s=(await Promise.all(i)).filter(o=>o.match),p=s.length>0,l=s.map(o=>({url:o.url,warp:o.warp}));return{match:p,output:l}}async detect(t,e){let n={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(c.HttpProtocolPrefix)?X(t,this.config.defaultChain):O(t,this.config.defaultChain);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,u=t.startsWith(c.HttpProtocolPrefix)?qt(t):zt(i.identifier);if(this.resolver){let h=null;if(a==="hash")h=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;h=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}h&&(p=h.warp,l=h.registryInfo,o=h.brand)}else{let h=v(i.chain,this.adapters);if(a==="hash"){p=await h.builder().createFromTransactionHash(s,e);let y=await h.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await h.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await h.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(Wn(p,i.chain,l,i.identifier),p.meta.query=u?Gt(u):null),!p)return n;let d=p.chain||i.chain,g=this.adapters.find(h=>h.chainInfo.name.toLowerCase()===d.toLowerCase()),f=g?await new B(this.config,g,this.adapters).apply(p):p;return{match:!0,url:t,warp:f,chain:d,registryInfo:l,brand:o}}catch(a){return x.error("Error detecting warp link",a),n}}},Wn=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?It(null,"alias",e.alias):It(t,"hash",e?.hash??n))};var pe=class{constructor(t,e){this.config=t;this.options=e;this.chains=e.chains.map(n=>n(this.config)),this.resolver=e.resolver??this.buildDefaultResolver()}buildDefaultResolver(){let t=this.chains.map(e=>new et(e));return new rt(t)}getConfig(){return this.config}getResolver(){return this.resolver}createExecutor(t){return new mt(this.config,this.chains,t)}async detectWarp(t,e){return new Wt(this.config,this.chains,this.resolver).detect(t,e)}async executeWarp(t,e,n,i={}){let a=typeof t=="object",s=!a&&t.startsWith("http")&&t.endsWith(".json"),p=a?t:null;if(!p&&s){let h=await fetch(t);if(!h.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await h.json()}if(p||(p=(await this.detectWarp(t,i.cache)).warp),!p)throw new Error("Warp not found");let l=this.createExecutor(n),{txs:o,chain:u,immediateExecutions:d,resolvedInputs:g}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:u,immediateExecutions:d,evaluateOutput:async h=>{await l.evaluateOutput(p,h)},resolvedInputs:g}}async createInscriptionTransaction(t,e){return await v(t,this.chains).builder().createInscriptionTransaction(e)}async createFromTransaction(t,e,n=!1){return v(t,this.chains).builder().createFromTransaction(e,n)}async createFromTransactionHash(t,e){let n=O(t,this.config.defaultChain);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return v(n.chain,this.chains).builder().createFromTransactionHash(t,e)}async signMessage(t,e){if(!P(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return v(t,this.chains).wallet.signMessage(e)}async getActions(t,e,n=!1){let i=this.getDataLoader(t);return(await Promise.all(e.map(async s=>i.getAction(s,n)))).filter(s=>s!==null)}getExplorer(t){return v(t,this.chains).explorer}getOutput(t){return v(t,this.chains).output}async getActionExecution(t,e,n,i){let a=i??R(e).index+1,p=await v(t,this.chains).output.getActionExecution(e,a,n);return p.next=ot(this.config,this.chains,e,a,p.output),p}async getRegistry(t){let e=v(t,this.chains).registry;return await e.init(),e}getDataLoader(t){return v(t,this.chains).dataLoader}getWallet(t){return v(t,this.chains).wallet}get factory(){return new J(this.config,this.chains)}get index(){return new yt(this.config)}get linkBuilder(){return new z(this.config,this.chains)}createBuilder(t){return v(t,this.chains).builder()}createAbiBuilder(t){return v(t,this.chains).abiBuilder()}createBrandBuilder(t){return v(t,this.chains).brandBuilder()}createSerializer(t){return v(t,this.chains).serializer}resolveText(t){return at(t,this.config)}};var le=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,e){this.typeHandlers.set(t,e)}registerTypeAlias(t,e){this.typeAliases.set(t,e)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let e=this.typeAliases.get(t);return e?this.getHandler(e):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let e=this.typeAliases.get(t);return e?this.resolveType(e):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};function vn(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(ce(t,n)!==i)return!1;return!0}function Cn(r,t){let e={};for(let[n,i]of Object.entries(r.inputs??{}))e[n]=i.includes(".")?ce(t,i):i;return e}function ce(r,t){return t.split(".").reduce((e,n)=>e?.[n],r)}0&&(module.exports={BrowserCryptoProvider,CLOUD_WALLET_PROVIDERS,CacheTtl,EvmWalletChainNames,MultiversxWalletChainNames,NodeCryptoProvider,WARP_LANGUAGES,WarpAssets,WarpBrandBuilder,WarpBuilder,WarpCache,WarpCacheKey,WarpChainDisplayNames,WarpChainLogos,WarpChainName,WarpChainResolver,WarpClient,WarpCompositeResolver,WarpConfig,WarpConstants,WarpExecutor,WarpFactory,WarpIndex,WarpInputTypes,WarpInterpolator,WarpLinkBuilder,WarpLinkDetecter,WarpLogger,WarpPlatformName,WarpPlatforms,WarpProtocolVersions,WarpSerializer,WarpTypeRegistry,WarpValidator,address,applyOutputToMessages,asset,biguint,bool,buildGeneratedFallbackWarpIdentifier,buildGeneratedSourceWarpIdentifier,buildInputsContext,buildMappedOutput,buildNestedPayload,bytesToBase64,bytesToHex,checkWarpAssetBalance,cleanWarpIdentifier,createAuthHeaders,createAuthMessage,createCryptoProvider,createDefaultWalletProvider,createHttpAuthHeaders,createSignableMessage,createWarpI18nText,createWarpIdentifier,doesWarpRequireWallet,evaluateOutputCommon,evaluateWhenCondition,extractCollectOutput,extractIdentifierInfoFromUrl,extractPromptOutput,extractQueryStringFromIdentifier,extractQueryStringFromUrl,extractResolvedInputValues,extractWarpSecrets,findWarpAdapterForChain,getChainDisplayName,getChainLogo,getCryptoProvider,getEventNameFromWarp,getGeneratedSourceWarpName,getLatestProtocolIdentifier,getMppFetch,getNextInfo,getNextInfoForStatus,getProviderConfig,getRandomBytes,getRandomHex,getRequiredAssetIds,getWalletFromConfigOrFail,getWarpActionByIndex,getWarpBrandLogoUrl,getWarpChainAssetLogoUrl,getWarpChainInfoLogoUrl,getWarpIdentifierWithQuery,getWarpInfoFromIdentifier,getWarpPrimaryAction,getWarpWalletAddress,getWarpWalletAddressFromConfig,getWarpWalletExternalId,getWarpWalletExternalIdFromConfig,getWarpWalletExternalIdFromConfigOrFail,getWarpWalletMnemonic,getWarpWalletMnemonicFromConfig,getWarpWalletPrivateKey,getWarpWalletPrivateKeyFromConfig,hasInputPrefix,hex,initializeWalletCache,isEqualWarpIdentifier,isGeneratedSourcePrivateIdentifier,isPlatformValue,isWarpActionAutoExecute,isWarpI18nText,isWarpWalletReadOnly,matchesTrigger,mergeNestedPayload,normalizeAndValidateMnemonic,normalizeMnemonic,option,parseOutputOutIndex,parseSignedMessage,parseWarpQueryStringToObject,removeWarpChainPrefix,removeWarpWalletFromConfig,replacePlaceholders,replacePlaceholdersInWhenExpression,resolveInputs,resolveNextString,resolvePath,resolvePlatformValue,resolveWarpText,safeWindow,setCryptoProvider,setWarpWalletInConfig,shiftBigintBy,splitInput,stampGeneratedWarpMeta,string,struct,testCryptoAvailability,toInputPayloadValue,toPreviewText,tuple,uint16,uint32,uint64,uint8,validateMnemonicLength,validateSignedMessage,vector,withAdapterFallback});
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
- var rt=class{constructor(t){this.adapter=t}async getByAlias(t,e){try{let{registryInfo:n,brand:i}=await this.adapter.registry.getInfoByAlias(t,e);if(!n)return null;let a=await this.adapter.builder().createFromTransactionHash(n.hash,e);return a?{warp:a,brand:i,registryInfo:n}:null}catch{return null}}async getByHash(t,e){try{let n=await this.adapter.builder().createFromTransactionHash(t,e);if(!n)return null;let{registryInfo:i,brand:a}=await this.adapter.registry.getInfoByHash(t,e);return{warp:n,brand:a,registryInfo:i}}catch{return null}}};var nt=class{constructor(t){this.resolvers=t}async getByAlias(t,e){for(let n of this.resolvers){let i=await n.getByAlias(t,e);if(i)return i}return null}async getByHash(t,e){for(let n of this.resolvers){let i=await n.getByHash(t,e);if(i)return i}return null}};var Wr=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},Ie=r=>r?typeof r=="string"?r:r.address:null,S=(r,t)=>Ie(r.user?.wallets?.[t]||null),Se=r=>r?typeof r=="string"?r:r.privateKey||null:null,Pe=r=>r?typeof r=="string"?r:r.mnemonic||null:null,be=r=>r?typeof r=="string"?r:r.externalId||null:null,vr=(r,t)=>Se(r.user?.wallets?.[t]||null)?.trim()||null,Cr=(r,t)=>Pe(r.user?.wallets?.[t]||null)?.trim()||null,Te=(r,t)=>be(r.user?.wallets?.[t]||null)?.trim()||null,Ar=(r,t)=>{let e=Te(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},xr=r=>typeof r=="string",wr=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},Ir=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},Ee=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},Re=(r,t=24)=>{let e=r.split(/\s+/).filter(n=>n.length>0);if(e.length!==t)throw new Error(`Mnemonic must be ${t} words. Got ${e.length} words`)},Sr=(r,t=24)=>{let e=Ee(r);return Re(e,t),e};var Ne=(g=>(g.Multiversx="multiversx",g.Claws="claws",g.Sui="sui",g.Ethereum="ethereum",g.Base="base",g.Arbitrum="arbitrum",g.Polygon="polygon",g.Somnia="somnia",g.Tempo="tempo",g.Fastset="fastset",g.Solana="solana",g.Near="near",g))(Ne||{}),Ht=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Ht||{}),Lt=Object.values(Ht),Tr=["ethereum","base","arbitrum","polygon","somnia","tempo"],Er=["multiversx","claws"],Rr=["coinbase","privy","gaupa"],c={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:r=>S(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},y={Option:"option",Vector:"vector",Tuple:"tuple",Struct:"struct",String:"string",Uint8:"uint8",Uint16:"uint16",Uint32:"uint32",Uint64:"uint64",Uint128:"uint128",Uint256:"uint256",Biguint:"biguint",Bool:"bool",Address:"address",Asset:"asset",Hex:"hex"},Ut=typeof window<"u"?window:{open:()=>{}};var q={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},D={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/v${q.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/brand/v${q.Brand}.schema.json`,DefaultClientUrl:r=>r==="devnet"?"https://devnet.usewarp.to":r==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",c.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","uint8","uint16","uint32","uint64","biguint","boolean","address"],AvailableActionInputPositions:["receiver","value","transfer","arg:1","arg:2","arg:3","arg:4","arg:5","arg:6","arg:7","arg:8","arg:9","arg:10","data","ignore"]};var Or=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var it="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",I={baseUrl:it,chainLogo:r=>`${it}/chains/logos/${r}`,tokenLogo:r=>`${it}/tokens/logos/${r}`,walletLogo:r=>`${it}/wallets/logos/${r}`},Be={multiversx:"MultiversX",claws:"Claws Network",sui:"Sui",ethereum:"Ethereum",base:"Base",arbitrum:"Arbitrum",polygon:"Polygon",somnia:"Somnia",tempo:"Tempo",fastset:"Fastset",solana:"Solana",near:"NEAR"},Fr=r=>Be[r]??r.charAt(0).toUpperCase()+r.slice(1),$e={ethereum:{light:I.chainLogo("ethereum-white.svg"),dark:I.chainLogo("ethereum-black.svg")},base:{light:I.chainLogo("base-white.svg"),dark:I.chainLogo("base-black.svg")},arbitrum:I.chainLogo("arbitrum.svg"),polygon:I.chainLogo("polygon.svg"),somnia:I.chainLogo("somnia.png"),tempo:{light:I.chainLogo("tempo-white.svg"),dark:I.chainLogo("tempo-black.svg")},multiversx:I.chainLogo("multiversx.svg"),claws:I.chainLogo("claws.png"),sui:I.chainLogo("sui.svg"),solana:I.chainLogo("solana.svg"),near:{light:I.chainLogo("near-white.svg"),dark:I.chainLogo("near-black.svg")},fastset:{light:I.chainLogo("fastset-white.svg"),dark:I.chainLogo("fastset-black.svg")}},Hr=(r,t="dark")=>{let e=$e[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var Dr=(r,t)=>{let e=r.alerts?.[t];if(!e)return null;let n=c.Alerts.TriggerEventPrefix+c.ArgParamsSeparator;if(!e.trigger.startsWith(n))return null;let i=e.trigger.replace(n,"");return i||null};var vt=(r,t)=>r[t]??r.default??Object.values(r)[0],kr=(r,t)=>{let e=t?.preferences?.theme??"light";return typeof r.logo=="string"?r.logo:vt(r.logo,e)},Mr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return vt(r.logoUrl,e)},qr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return vt(r.logoUrl,e)};var Ct=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let e=new Uint8Array(t);return window.crypto.getRandomValues(e),e}},At=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let e=await import("crypto");return new Uint8Array(e.randomBytes(t))}catch(e){throw new Error(`Node.js crypto not available: ${e instanceof Error?e.message:"Unknown error"}`)}}},j=null;function Dt(){if(j)return j;if(typeof window<"u"&&window.crypto)return j=new Ct,j;if(typeof process<"u"&&process.versions?.node)return j=new At,j;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Gr(r){j=r}async function jt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||Dt()).getRandomBytes(r)}function Oe(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(r.length*2);for(let e=0;e<r.length;e++){let n=r[e];t[e*2]=(n>>>4).toString(16),t[e*2+1]=(n&15).toString(16)}return t.join("")}function _r(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(r).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(r));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function kt(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await jt(r/2,t);return Oe(e)}async function Jr(){let r={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?r.environment="browser":typeof process<"u"&&process.versions?.node&&(r.environment="nodejs"),await jt(16),r.randomBytes=!0}catch{}return r}function Qr(){return Dt()}var Zr=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${c.Vars.Env}:`)).map(t=>{let e=t.replace(`${c.Vars.Env}:`,"").trim(),[n,i]=e.split(c.ArgCompositeSeparator);return{key:n,description:i||null}});var W=(r,t)=>{let e=t.find(n=>n.chainInfo.name.toLowerCase()===r.toLowerCase());if(!e)throw new Error(`Adapter not found for chain: ${r}`);return e},at=r=>{if(r==="warp")return`warp:${q.Warp}`;if(r==="brand")return`brand:${q.Brand}`;if(r==="abi")return`abi:${q.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},N=(r,t)=>r?.actions[t-1],E=r=>{if(r.actions.length===0)throw new Error(`Warp has no primary action: ${r.meta?.identifier}`);let t=r.actions.find(a=>a.primary===!0);if(t)return{action:t,index:r.actions.indexOf(t)};let e=["transfer","contract","query","collect","compute","mcp"],n=r.actions.find(a=>e.includes(a.type));return n?{action:n,index:r.actions.indexOf(n)}:{action:r.actions[0],index:0}},xt=(r,t)=>{if(r.auto===!1)return!1;if(r.type==="link"){if(r.auto===!0)return!0;let{action:e}=E(t);return r===e}return!0},st=(r,t)=>{let e=r.toString(),[n,i=""]=e.split("."),a=Math.abs(t);if(t>0)return BigInt(n+i.padEnd(a,"0"));if(t<0){let s=n+i;if(a>=s.length)return 0n;let p=s.slice(0,-a)||"0";return BigInt(p)}else return e.includes(".")?BigInt(e.split(".")[0]):BigInt(e)},Mt=(r,t=100)=>{if(!r)return"";let e=r.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return e=e.startsWith("- ")?e.slice(2):e,e=e.length>t?e.substring(0,e.lastIndexOf(" ",t))+"...":e,e},k=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),qt=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),nn=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===c.Source.UserWallet||n.default===`{{${c.Globals.UserWallet.Placeholder}}}`||n.default===`{{${c.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},zt=r=>{if(!r||typeof r!="string")return!0;try{return!!new Function(`return ${r}`)()}catch(t){throw new Error(`Failed to evaluate 'when' condition: ${r}. Error: ${t}`)}};var sn={de:"German",en:"English",es:"Spanish",fr:"French",it:"Italian",pt:"Portuguese",ru:"Russian",zh:"Chinese",ja:"Japanese",ko:"Korean",ar:"Arabic",hi:"Hindi",nl:"Dutch",sv:"Swedish",da:"Danish",no:"Norwegian",fi:"Finnish",pl:"Polish",tr:"Turkish",el:"Greek",he:"Hebrew",th:"Thai",vi:"Vietnamese",id:"Indonesian",ms:"Malay",tl:"Tagalog"},ot=(r,t)=>{let e=t?.preferences?.locale||"en";if(typeof r=="string")return r;if(typeof r=="object"&&r!==null){if(e in r)return r[e];if("en"in r)return r.en;let n=Object.keys(r);if(n.length>0)return r[n[0]]}return""},on=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,pn=r=>r;var K=r=>r.startsWith(c.IdentifierAliasMarker)?r.replace(c.IdentifierAliasMarker,""):r,dn=(r,t)=>!r||!t?!1:K(r)===K(t),wt=(r,t,e)=>{let n=K(e);if(t===c.IdentifierType.Alias)return c.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+c.IdentifierParamSeparator+t+c.IdentifierParamSeparator+n},O=(r,t)=>{let e=t||c.IdentifierChainDefault,n=decodeURIComponent(r).trim(),i=K(n),a=i.split("?")[0],s=Gt(a);if(a.length===64&&/^[a-fA-F0-9]+$/.test(a))return{chain:e,type:c.IdentifierType.Hash,identifier:i,identifierBase:a};if(s.length===2&&/^[a-zA-Z0-9]{62}$/.test(s[0])&&/^[a-zA-Z0-9]{2}$/.test(s[1]))return null;if(s.length===3){let[p,l,o]=s;if(l===c.IdentifierType.Alias||l===c.IdentifierType.Hash){let u=i.includes("?")?o+i.substring(i.indexOf("?")):o;return{chain:p,type:l,identifier:u,identifierBase:o}}}if(s.length===2){let[p,l]=s;if(p===c.IdentifierType.Alias||p===c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l;return{chain:e,type:p,identifier:o,identifierBase:l}}}if(s.length===2){let[p,l]=s;if(p!==c.IdentifierType.Alias&&p!==c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l,u=Ve(l,p)?c.IdentifierType.Hash:c.IdentifierType.Alias;return{chain:p,type:u,identifier:o,identifierBase:l}}}return{chain:e,type:c.IdentifierType.Alias,identifier:i,identifierBase:a}},X=(r,t)=>{let e=new URL(r),i=e.searchParams.get(c.IdentifierParamName);if(i||(i=e.pathname.split("/")[1]),!i)return null;let a=decodeURIComponent(i);return O(a,t)},Ve=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Fe=r=>{let t=c.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Gt=r=>{let t=Fe(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Gt(a);return[i,...s]},_t=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(c.IdentifierParamName),e.toString()||null}catch{return null}},Jt=r=>{let t=r.indexOf("?");if(t===-1||t===r.length-1)return null;let e=r.substring(t+1);return e.length>0?e:null},Qt=r=>{if(!r)return{};let t=r.startsWith("?")?r.slice(1):r;if(!t)return{};let e=new URLSearchParams(t),n={};return e.forEach((i,a)=>{n[a]=i}),n},gn=(r,t)=>{let e=O(r,t);return(e?e.identifierBase:K(r)).trim()},fn=r=>{let t=r.meta?.identifier;if(!t)return"";let e=r.meta?.query;if(e&&typeof e=="object"&&Object.keys(e).length>0){let n=new URLSearchParams(e);return`${t}?${n.toString()}`}return t};var It=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},yn=r=>{let t=new Set(Object.values(y));if(!r.includes(c.ArgParamsSeparator))return!1;let e=It(r)[0];return t.has(e)};var St=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=ot(a,e);return[i,k(s,t)]});return Object.fromEntries(n)};import He from"qr-code-styling";var z=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!X(t,this.config.defaultChain):!1}build(t,e,n){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=W(t,this.adapters),s=e===c.IdentifierType.Alias?n:e+c.IdentifierParamSeparator+n,p=a.chainInfo.name+c.IdentifierParamSeparator+s,l=encodeURIComponent(p);return D.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${c.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=O(t,this.config.defaultChain);if(!e)return null;let n=W(e.chain,this.adapters);return n?this.build(n.chainInfo.name,e.type,e.identifierBase):null}generateQrCode(t,e,n,i=512,a="white",s="black",p="#23F7DD"){let l=W(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new He({type:"svg",width:i,height:i,data:String(o),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:a},dotsOptions:{type:"extra-rounded",color:s},cornersSquareOptions:{type:"extra-rounded",color:s},cornersDotOptions:{type:"square",color:s},imageOptions:{hideBackgroundDots:!0,imageSize:.4,margin:8},image:`data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 100 100" fill="${encodeURIComponent(p)}" xmlns="http://www.w3.org/2000/svg"><path d="M54.8383 50.0242L95 28.8232L88.2456 16L51.4717 30.6974C50.5241 31.0764 49.4759 31.0764 48.5283 30.6974L11.7544 16L5 28.8232L45.1616 50.0242L5 71.2255L11.7544 84.0488L48.5283 69.351C49.4759 68.9724 50.5241 68.9724 51.4717 69.351L88.2456 84.0488L95 71.2255L54.8383 50.0242Z"/></svg>`})}};var Le="https://",G=(r,t,e,n,i)=>{let a=e.actions?.[n-1]?.next||e.next||null;if(!a)return null;if(a.startsWith(Le))return[{identifier:null,url:a}];let[s,p]=a.split("?");if(!p){let f=k(s,{...e.vars,...i});return[{identifier:f,url:Pt(t,f,r)}]}let l=p.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(l.length===0){let f=k(p,{...e.vars,...i}),v=f?`${s}?${f}`:s;return[{identifier:v,url:Pt(t,v,r)}]}let o=l[0];if(!o)return[];let u=o.match(/{{([^[]+)\[\]/),d=u?u[1]:null;if(!d||i[d]===void 0)return[];let g=Array.isArray(i[d])?i[d]:[i[d]];if(g.length===0)return[];let h=l.filter(f=>f.includes(`{{${d}[]`)).map(f=>{let v=f.match(/\[\](\.[^}]+)?}}/),C=v&&v[1]||"";return{placeholder:f,field:C?C.slice(1):"",regex:new RegExp(f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return g.map(f=>{let v=p;for(let{regex:b,field:H}of h){let x=H?Ue(f,H):f;if(x==null)return null;v=v.replace(b,x)}if(v.includes("{{")||v.includes("}}"))return null;let C=v?`${s}?${v}`:s;return{identifier:C,url:Pt(t,C,r)}}).filter(f=>f!==null)},Pt=(r,t,e)=>{let[n,i]=t.split("?"),a=O(n,e.defaultChain)||{chain:c.IdentifierChainDefault,type:"alias",identifier:n,identifierBase:n},s=W(a.chain,r);if(!s)throw new Error(`Adapter not found for chain ${a.chain}`);let p=new z(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,u)=>l.searchParams.set(u,o)),l.toString().replace(/\/\?/,"?")},Ue=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var M=class M{static debug(...t){M.isTestEnv||console.debug(...t)}static info(...t){M.isTestEnv||console.info(...t)}static warn(...t){M.isTestEnv||console.warn(...t)}static error(...t){M.isTestEnv||console.error(...t)}};M.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var A=M;function De(r,t,e){return r.startsWith(c.Position.Payload)?r.slice(c.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function Kt(r,t){if(!r)return{...t};if(!t)return{...r};let e={...r};return Object.keys(t).forEach(n=>{e[n]&&typeof e[n]=="object"&&typeof t[n]=="object"?e[n]=Kt(e[n],t[n]):e[n]=t[n]}),e}function je(r,t){if(!r.value)return null;let e=t.stringToNative(r.value)[1];if(r.input.type==="biguint")return e.toString();if(r.input.type==="asset"){let{identifier:n,amount:i}=e;return{identifier:n,amount:i.toString()}}else return e}function V(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function _(r,t){let e={};return r.forEach(n=>{let i=n.input.as||n.input.name,a=je(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(c.Position.Payload)){let s=De(n.input.position,i,a);e=Kt(e,s)}else e[i]=a}),e}function pt(r,t,e,n){let i={},a=e!==void 0?e:r.length,s=p=>{if(!p?.value)return;let l=p.input.as||p.input.name,[,o]=t.stringToNative(p.value);if(i[l]=o,p.input.type!=="asset"||typeof o!="object"||o===null)return;let u=o;if("identifier"in u&&"amount"in u){let d=String(u.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(u.amount)}};for(let p=0;p<a;p++)s(r[p]);return s(n),i}var Xt=(r,t,e)=>{let n=[],i=[],a={};if(r.output)for(let[s,p]of Object.entries(r.output)){if(p.startsWith(c.Transform.Prefix))continue;let l=ze(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...u]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(u);n.push(String(d)),i.push(d),a[s]=d}else a[s]=p}return{stringValues:n,nativeValues:i,output:a}},Z=async(r,t,e,n,i,a)=>{let s=(d,g)=>g.reduce((h,m)=>h&&h[m]!==void 0?h[m]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:u}=Xt(r,e,p);return{values:{string:l,native:o,mapped:_(n,i)},output:await Zt(r,u,t,e,n,i,a)}},Zt=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=ke(p,r,n,i,a),p=await Me(r,p,e,i,a,s.transform?.runner||null),p},ke=(r,t,e,n,i)=>{let a={...r},s=N(t,e)?.inputs||[];for(let[p,l]of Object.entries(a))if(typeof l=="string"&&l.startsWith("in.")){let o=l.split(".")[1],u=s.findIndex(g=>g.as===o||g.name===o),d=u!==-1?n[u]?.value:null;a[p]=d?i.stringToNative(d)[1]:null}return a},Me=async(r,t,e,n,i,a)=>{if(!r.output)return t;let s={...t},p=Object.entries(r.output).filter(([,o])=>o.startsWith(c.Transform.Prefix)).map(([o,u])=>({key:o,code:u.substring(c.Transform.Prefix.length)}));if(p.length>0&&(!a||typeof a.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let l={...s,out:qe(e),inputs:pt(n,i)};for(let{key:o,code:u}of p)try{s[o]=await a.run(u,l),l[o]=s[o]}catch(d){A.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},qe=r=>{if(!r||typeof r!="object"||Array.isArray(r)||!Array.isArray(r.data))return r;let t=[...r.data];return t.data=r.data,t},Yt=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=Xt(r,e,s),u=await Zt(r,o,t,e,n,i,a);return"PROMPT"in u||(u.PROMPT=t),{values:{string:p,native:l,mapped:_(n,i)},output:u}},ze=r=>{if(r==="out")return 1;let t=r.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(r.startsWith("out.")||r.startsWith("event."),null)};var Ge=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Lt.some(t=>t in r),te=(r,t)=>{if(!Ge(r))return r;if(!t)throw new Error("Platform-specific value requires platform in client config");let e=r[t];if(e===void 0)throw new Error(`Warp does not support platform: ${t}`);return e};var Gn=(r,t,e,n)=>{let i=r.preferences?.providers?.[t];return i?.[e]?typeof i[e]=="string"?{url:i[e]}:i[e]:{url:n}};async function _e(r,t,e,n=5){let i=await kt(64,e),a=new Date(Date.now()+n*60*1e3).toISOString();return{message:JSON.stringify({wallet:r,nonce:i,expiresAt:a,purpose:t}),nonce:i,expiresAt:a}}async function bt(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return _e(r,i,e,5)}function Tt(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function Kn(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await bt(r,e,n),p=await t(i);return Tt(r,p,a,s)}function Xn(r){let t=new Date(r).getTime();return Date.now()<t}function Zn(r){try{let t=JSON.parse(r);if(!t.wallet||!t.nonce||!t.expiresAt||!t.purpose)throw new Error("Invalid signed message: missing required fields");return t}catch(t){throw new Error(`Failed to parse signed message: ${t instanceof Error?t.message:"Unknown error"}`)}}var Je=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",Qe=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),ee=(r,t=24)=>{let e=Qe(r);return e?e.slice(0,t):"action"},re=r=>{let t=3735928559^r.length,e=1103547991^r.length;for(let a=0;a<r.length;a++){let s=r.charCodeAt(a);t=Math.imul(t^s,2654435761),e=Math.imul(e^s,1597334677)}t=Math.imul(t^t>>>16,2246822507)^Math.imul(e^e>>>13,3266489909),e=Math.imul(e^e>>>16,2246822507)^Math.imul(t^t>>>13,3266489909);let n=(e>>>0).toString(16).padStart(8,"0"),i=(t>>>0).toString(16).padStart(8,"0");return`${n}${i}`.slice(0,12)},Ke=r=>{let t=(r||"").trim();if(!t)return"";try{let e=new URL(t),n=e.pathname.replace(/\/+$/,"").toLowerCase()||"/";return`${e.origin.toLowerCase()}${n}`}catch{return t.toLowerCase()}},ti=(r,t,e)=>{let n=ee((e||t||"").trim()||"action"),i=`${r.type}|${Ke(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=re(i);return`private_src_${n}_${a}`},Xe=r=>{let t=Je(r),e=ee(t),n=re(t.trim().toLowerCase());return`private_gen_${e}_${n}`},ei=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Xe(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},ri=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function ii(r){let t={address:null,publicKey:null};if(!r)return t;try{t.address=await r.getAddress()}catch{}try{t.publicKey=await r.getPublicKey()}catch{}return t}function si(r,t,e){return null}var Ze=(r,t)=>{let e=null;try{e=E(r)}catch{return[]}let n=e?.action;return!n||n.type!=="contract"&&n.type!=="transfer"?[]:(n.inputs??[]).some(s=>s.position==="value"||s.position==="transfer"||s.type==="asset")?[t.nativeToken.identifier]:[]},li=async(r,t,e,n)=>{try{let i=W(e,n),a=Ze(r,i.chainInfo);if(!a.length)return!0;let s=await i.dataLoader.getAccountAssets(t),p=new Map(s.map(l=>[l.identifier,l.amount??0n]));return a.every(l=>(p.get(l)??0n)>0n)}catch{return!0}};import{x402Client as ne}from"@x402/core/client";import{x402HTTPClient as ie}from"@x402/core/http";async function ae(r,t,e,n,i){let a=await Ye(r,i);if(!a)return r;let s=new Headers;n&&s.set("Content-Type","application/json"),s.set("Accept","application/json"),Object.entries(a).forEach(([l,o])=>{s.set(l,o)}),A.debug("WarpExecutor: Retrying request with payment headers");let p=await fetch(t,{method:e,headers:s,body:n});return A.debug("WarpExecutor: Payment processed, new response status",{status:p.status}),p}var Ye=async(r,t)=>{let e=await tr(r),i=new ie(new ne).getPaymentRequiredResponse(a=>r.headers.get(a),e);if(!i?.accepts?.length)return null;for(let a of t)if(a.wallet.registerX402Handlers)try{let s=new ne,p=await a.wallet.registerX402Handlers(s),l=i.accepts.find(g=>g?.network&&p[g.network]);if(!l?.network)continue;p[l.network]();let o=new ie(s),u=await o.createPaymentPayload(i);if(!u||typeof u!="object")continue;let d=o.encodePaymentSignatureHeader(u);if(!d||typeof d!="object")continue;return A.debug(`WarpExecutor: x402 payment processed with ${a.chainInfo.name} adapter using ${l.network} scheme`),d}catch{continue}return null},tr=async r=>{try{let t=await r.clone().text();return t?JSON.parse(t):{}}catch{return{}}};var w=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t===y.Tuple&&Array.isArray(e)){if(e.length===0)return t+c.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(c.ArgCompositeSeparator)})${c.ArgParamsSeparator}${a.join(c.ArgListSeparator)}`}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===y.Struct&&typeof e=="object"&&e!==null&&!Array.isArray(e)){let n=e;if(!n._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=n._name,a=Object.keys(n).filter(p=>p!=="_name");if(a.length===0)return`${t}(${i})${c.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${c.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${c.ArgParamsSeparator}${s.join(c.ArgListSeparator)}`}if(t===y.Vector&&Array.isArray(e)){if(e.length===0)return`${t}${c.ArgParamsSeparator}`;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e[0],i=n.indexOf(c.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(c.ArgParamsSeparator),u=l.substring(o+1);return a.startsWith(y.Tuple)?u.replace(c.ArgListSeparator,c.ArgCompositeSeparator):u}),p=a.startsWith(y.Struct)?c.ArgStructSeparator:c.ArgListSeparator;return t+c.ArgParamsSeparator+a+c.ArgParamsSeparator+s.join(p)}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===y.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?y.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount)+c.ArgCompositeSeparator+String(e.decimals):y.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount);if(this.typeRegistry){let n=this.typeRegistry.getHandler(t);if(n)return n.nativeToString(e);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,e)}return t+c.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(c.ArgParamsSeparator),n=e[0],i=e.slice(1).join(c.ArgParamsSeparator);if(n==="null")return[n,null];if(n===y.Option){let[a,s]=i.split(c.ArgParamsSeparator);return[y.Option+c.ArgParamsSeparator+a,s||null]}if(n===y.Vector){let a=i.indexOf(c.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(y.Struct)?c.ArgStructSeparator:c.ArgListSeparator,u=(p?p.split(l):[]).map(d=>this.stringToNative(s+c.ArgParamsSeparator+d)[1]);return[y.Vector+c.ArgParamsSeparator+s,u]}else if(n.startsWith(y.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(c.ArgCompositeSeparator),p=i.split(c.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${c.IdentifierParamSeparator}${l}`)[1]);return[n,p]}else if(n.startsWith(y.Struct)){let a=n.match(/\(([^)]+)\)/);if(!a)throw new Error("Struct type must include a name in the format struct(Name)");let p={_name:a[1]};return i&&i.split(c.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${c.ArgParamsSeparator}]+)${c.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,u,d,g]=o;p[u]=this.stringToNative(`${d}${c.IdentifierParamSeparator}${g}`)[1]}}),[n,p]}else{if(n===y.String)return[n,i];if(n===y.Uint8||n===y.Uint16||n===y.Uint32)return[n,Number(i)];if(n===y.Uint64||n===y.Uint128||n===y.Uint256||n===y.Biguint)return[n,BigInt(i||0)];if(n===y.Bool)return[n,i==="true"];if(n===y.Address)return[n,i];if(n===y.Hex)return[n,i];if(n===y.Asset){let[a,s]=i.split(c.ArgCompositeSeparator),p={identifier:a,amount:BigInt(s)};return[n,p]}}if(this.typeRegistry){let a=this.typeRegistry.getHandler(n);if(a){let p=a.stringToNative(i);return[n,p]}let s=this.typeRegistry.resolveType(n);if(s!==n){let[p,l]=this.stringToNative(`${s}:${i}`);return[n,l]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(c.ArgParamsSeparator)){let[e,n]=t.split(c.ArgParamsSeparator);return[e,n]}return typeof t=="number"?[y.Uint32,t]:typeof t=="bigint"?[y.Uint64,t]:typeof t=="boolean"?[y.Bool,t]:[typeof t,t]}};var vi=r=>new w().nativeToString(y.String,r),Ci=r=>new w().nativeToString(y.Uint8,r),Ai=r=>new w().nativeToString(y.Uint16,r),xi=r=>new w().nativeToString(y.Uint32,r),wi=r=>new w().nativeToString(y.Uint64,r),Ii=r=>new w().nativeToString(y.Biguint,r),Si=r=>new w().nativeToString(y.Bool,r),Pi=r=>new w().nativeToString(y.Address,r),se=r=>new w().nativeToString(y.Asset,r),bi=r=>new w().nativeToString(y.Hex,r),Ti=(r,t)=>{if(t===null)return y.Option+c.ArgParamsSeparator;let e=r(t),n=e.indexOf(c.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return y.Option+c.ArgParamsSeparator+i+c.ArgParamsSeparator+a},Ei=(...r)=>new w().nativeToString(y.Tuple,r),Ri=r=>new w().nativeToString(y.Struct,r),Ni=r=>new w().nativeToString(y.Vector,r);import er from"ajv";var oe=class{constructor(t){this.pendingBrand={protocol:at("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.ensureValidSchema(n),n}setName(t){return this.pendingBrand.name=t,this}setDescription(t){return this.pendingBrand.description=t,this}setLogo(t){return this.pendingBrand.logo=t,this}setUrls(t){return this.pendingBrand.urls=t,this}setColors(t){return this.pendingBrand.colors=t,this}setCta(t){return this.pendingBrand.cta=t,this}async build(){return this.ensureWarpText(this.pendingBrand.name,"name is required"),this.ensureWarpText(this.pendingBrand.description,"description is required"),typeof this.pendingBrand.logo=="string"&&this.ensure(this.pendingBrand.logo,"logo is required"),await this.ensureValidSchema(this.pendingBrand),this.pendingBrand}ensure(t,e){if(!t)throw new Error(`Warp: ${e}`)}ensureWarpText(t,e){if(!t)throw new Error(`Warp: ${e}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${e}`)}async ensureValidSchema(t){let e=this.config.schema?.brand||D.LatestBrandSchemaUrl,i=await(await fetch(e)).json(),a=new er,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};import rr from"ajv";var lt=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validatePrimaryAction(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validatePrimaryAction(t){try{let{action:e}=E(t);return e?[]:["Primary action is required"]}catch(e){return[e instanceof Error?e.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(n=>n.inputs?n.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let e=[],n=(i,a)=>{i&&Object.keys(i).forEach(s=>{s!==s.toUpperCase()&&e.push(`${a} name '${s}' must be uppercase`)})};return n(t.vars,"Variable"),n(t.output,"Output"),t.trigger?.type==="webhook"&&t.trigger.inputs&&n(t.trigger.inputs,"Webhook trigger input"),e}validateAbiIsSetIfApplicable(t){let e=t.actions.some(s=>s.type==="contract"),n=t.actions.some(s=>s.type==="query");if(!e&&!n)return[];let i=t.actions.some(s=>s.abi),a=Object.values(t.output||{}).some(s=>s.startsWith("out.")||s.startsWith("event."));return t.output&&!i&&a?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let e=this.config.schema?.warp||D.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new rr({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var pe=class{constructor(t){this.config=t;this.pendingWarp={protocol:at("warp"),name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.validate(n),n}async createFromUrl(t){return await(await fetch(t)).json()}setChain(t){return this.pendingWarp.chain=t,this}setName(t){return this.pendingWarp.name=t,this}setTitle(t){return this.pendingWarp.title=t,this}setDescription(t){return this.pendingWarp.description=t,this}setPreview(t){return this.pendingWarp.preview=t,this}setActions(t){return this.pendingWarp.actions=t,this}addAction(t){return this.pendingWarp.actions.push(t),this}setOutput(t){return this.pendingWarp.output=t??void 0,this}async build(t=!0){return this.ensure(this.pendingWarp.protocol,"protocol is required"),this.ensure(this.pendingWarp.name,"name is required"),this.ensureWarpText(this.pendingWarp.title,"title is required"),this.ensure(this.pendingWarp.actions.length>0,"actions are required"),t&&await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,e=100){return Mt(t,e)}ensure(t,e){if(!t)throw new Error(e)}ensureWarpText(t,e){if(!t)throw new Error(e);if(typeof t=="object"&&!t.en)throw new Error(e)}async validate(t){let n=await new lt(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
- `))}};import{existsSync as Rt,mkdirSync as nr,readdirSync as le,readFileSync as ir,unlinkSync as Nt,writeFileSync as ar}from"fs";import{join as ce,resolve as ue}from"path";var Et="$bigint:",ct=(r,t)=>typeof t=="bigint"?Et+t.toString():t,J=(r,t)=>typeof t=="string"&&t.startsWith(Et)?BigInt(t.slice(Et.length)):t;var ut=class{constructor(t,e){let n=e?.path;this.cacheDir=n?ue(n):ue(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){Rt(this.cacheDir)||nr(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return ce(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!Rt(e))return null;let n=ir(e,"utf-8"),i=JSON.parse(n,J);return i.expiresAt!==null&&Date.now()>i.expiresAt?(Nt(e),null):i.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null},a=this.getFilePath(t);ar(a,JSON.stringify(i,ct),"utf-8")}async delete(t){try{let e=this.getFilePath(t);Rt(e)&&Nt(e)}catch{}}async keys(t){try{let e=le(this.cacheDir).filter(i=>i.endsWith(".json")).map(i=>i.slice(0,-5));if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}catch{return[]}}async clear(){try{le(this.cacheDir).forEach(e=>{e.endsWith(".json")&&Nt(ce(this.cacheDir,e))})}catch{}}};var Y=class{constructor(t,e){this.prefix="warp-cache"}getKey(t){return`${this.prefix}:${t}`}async get(t){try{let e=localStorage.getItem(this.getKey(t));if(!e)return null;let n=JSON.parse(e,J);return n.expiresAt!==null&&Date.now()>n.expiresAt?(localStorage.removeItem(this.getKey(t)),null):n.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null};localStorage.setItem(this.getKey(t),JSON.stringify(i,ct))}async delete(t){localStorage.removeItem(this.getKey(t))}async keys(t){let e=[];for(let i=0;i<localStorage.length;i++){let a=localStorage.key(i);a?.startsWith(this.prefix+":")&&e.push(a.slice(this.prefix.length+1))}if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){for(let t=0;t<localStorage.length;t++){let e=localStorage.key(t);e?.startsWith(this.prefix)&&localStorage.removeItem(e)}}};var F=class F{constructor(t,e){}async get(t){let e=F.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(F.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;F.cache.set(t,{value:e,expiresAt:i})}async delete(t){F.cache.delete(t)}async keys(t){let e=Array.from(F.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){F.cache.clear()}};F.cache=new Map;var tt=F;import{readFileSync as sr}from"fs";import{resolve as de}from"path";var dt=class{constructor(t,e){let n=e?.path?de(e.path):de(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=sr(t,"utf-8");return new Map(Object.entries(JSON.parse(e,J)))}catch(e){return A.warn(`StaticCacheStrategy (loadManifest): Failed to load manifest from ${t}:`,e),new Map}}async get(t){let e=this.cache.get(t);return!e||e.expiresAt!==null&&Date.now()>e.expiresAt?(e&&this.cache.delete(t),null):e.value}async set(t,e,n){let i=n?Date.now()+n*1e3:null,a={value:e,expiresAt:i};this.cache.set(t,a)}async delete(t){this.cache.delete(t)}async keys(t){let e=Array.from(this.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){this.cache.clear()}};var ge={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},ft={Warp:(r,t)=>`warp:${r}:${t}`,WarpAbi:(r,t)=>`warp-abi:${r}:${t}`,WarpExecutable:(r,t,e)=>`warp-exec:${r}:${t}:${e}`,RegistryInfo:(r,t)=>`registry-info:${r}:${t}`,Brand:(r,t)=>`brand:${r}:${t}`,Asset:(r,t,e)=>`asset:${r}:${t}:${e}`,AccountNfts:(r,t,e,n,i)=>`account-nfts:${r}:${t}:${e}:${n}:${i}`},gt=class{constructor(t,e){this.strategy=this.selectStrategy(t,e)}selectStrategy(t,e){return e?.adapter?e.adapter:e?.type==="localStorage"?new Y(t,e):e?.type==="memory"?new tt(t,e):e?.type==="static"?new dt(t,e):e?.type==="filesystem"?new ut(t,e):typeof window<"u"&&window.localStorage?new Y(t,e):new tt(t,e)}async set(t,e,n){await this.strategy.set(t,e,n)}async get(t){return await this.strategy.get(t)}async delete(t){await this.strategy.delete(t)}async keys(t){return await this.strategy.keys(t)}async clear(){await this.strategy.clear()}};var et={Queries:"QUERIES",Payload:"PAYLOAD",Headers:"HEADERS"},Bt={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},$t=(r,t,e)=>{let n=r.find(a=>a.input.as===t||a.input.name===t);if(!n?.value)return null;let[,i]=e.stringToNative(n.value);return typeof i=="string"?i:String(i)},Ot=r=>{try{return JSON.parse(r)}catch{return null}},or=async(r,t,e,n,i,a)=>{let s=new Headers;if(s.set("Content-Type","application/json"),s.set("Accept","application/json"),a&&n){let{message:l,nonce:o,expiresAt:u}=await bt(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Tt(n,d,o,u)).forEach(([g,h])=>s.set(g,h))}let p=$t(e.resolvedInputs,et.Headers,i);if(p){let l=Ot(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,u])=>typeof u=="string"&&s.set(o,u))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},pr=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===Bt.Get){let s=$t(e.resolvedInputs,et.Queries,i);if(s){let p=Ot(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,u])=>u!=null&&l.searchParams.set(o,String(u))),a=l.toString()}}}return a},lr=(r,t,e,n,i)=>{if(r===Bt.Get)return;let a=$t(t.resolvedInputs,et.Payload,n);if(a&&Ot(a)!==null)return a;let{[et.Payload]:s,[et.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},fe=async(r,t,e,n,i,a,s,p)=>{let l=t.method||Bt.Get,o=await or(r,t,e,n,a,p),u=pr(r,t,e,l,a),d=lr(l,e,i,a,s);return{url:u,method:l,headers:o,body:d}};var B=class{constructor(t,e,n){this.config=t;this.adapter=e;this.adapters=n}async apply(t,e={}){let n=this.applyVars(t,e),i=await this.applyGlobals(n);return e.envs?this.applyEnvs(i,e.envs):i}applyEnvs(t,e){if(!e||Object.keys(e).length===0)return t;let n=JSON.stringify(t);for(let[i,a]of Object.entries(e)){if(a==null)continue;let s=JSON.stringify(String(a)).slice(1,-1);n=n.replace(new RegExp(`\\{\\{${cr(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=S(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(c.Vars.Query+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Query.length+1),[o,u]=l.split(c.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(o):null,h=e.queries?.[o]??null??d;h!=null&&a(s,h)}else if(p.startsWith(c.Vars.Env+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Env.length+1),[o,u]=l.split(c.ArgCompositeSeparator),g={...this.config.vars,...e.envs}?.[o];g!=null&&a(s,g)}else p===c.Source.UserWallet&&n?a(s,n):a(s,p)}),JSON.parse(i)}async applyRootGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}async applyActionGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}applyInputs(t,e,n,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let a=this.applyGlobalsToText(t),s=this.buildInputBag(e,n,i);return k(a,s)}applyGlobalsToText(t){if(!Object.values(c.Globals).map(s=>s.Placeholder).some(s=>t.includes(`{{${s}}}`)||t.includes(`{{${s}:`)))return t;let i={config:this.config,adapter:this.adapter},a=t;return Object.values(c.Globals).forEach(s=>{let p=s.Accessor(i);p!=null&&(a=a.replace(new RegExp(`{{${s.Placeholder}}}`,"g"),p.toString())),a=this.replacePlaceholdersWithChain(a,s.Placeholder,i,s.Accessor)}),a}replacePlaceholdersWithChain(t,e,n,i){let a=new RegExp(`\\{\\{${e}:([^}]+)\\}\\}`,"g");return t.replace(a,(s,p)=>{let l=p.trim().toLowerCase();if(!this.adapters)return s;try{let o=W(l,this.adapters),u={config:this.config,adapter:o},d=i(u);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e,n){let i={};return t.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);i[s]=String(p)}),n&&n.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);if(i[`primary.${s}`]=String(p),a.input.type==="asset"&&typeof a.input.position=="object"){let l=p;l&&typeof l=="object"&&"identifier"in l&&"amount"in l&&(i[`primary.${s}.token`]=String(l.identifier),i[`primary.${s}.amount`]=String(l.amount))}}),i}},cr=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var ur=["collect","compute","mcp","state","mount","unmount"],Q=class{constructor(t,e){this.config=t;this.adapters=e;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new w,this.cache=new gt(t.env,t.cache)}getSerializer(){return this.serializer}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(ft.WarpExecutable(t,e||"",n))||[];return V(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(ft.WarpExecutable(t,e||"",n))||[]}async createExecutable(t,e,n,i={}){let a=N(t,e);if(!a)throw new Error("WarpFactory: Action not found");let s=await this.getChainInfoForWarp(t,n),p=W(s.name,this.adapters),l=new B(this.config,p,this.adapters),o=await l.apply(t,i),u=N(o,e),{action:d,index:g}=E(o),h=this.getStringTypedInputs(d,n),m=await this.getResolvedInputs(s.name,d,h,l,i.queries),f=await this.getModifiedInputs(m),v=[],C=[];g===e-1?(v=m,C=f):this.requiresPayloadInputs(u)&&(v=await this.resolveActionInputs(s.name,u,n,l,i.queries),C=await this.getModifiedInputs(v));let b=C.find(P=>P.input.position==="receiver"||P.input.position==="destination")?.value,H=this.getDestinationFromAction(u),x=b?this.serializer.stringToNative(b)[1]:H;if(x&&(x=l.applyInputs(x,C,this.serializer,f)),!x&&!ur.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let L=this.getPreparedArgs(u,C);L=L.map(P=>l.applyInputs(P,C,this.serializer,f));let $=C.find(P=>P.input.position==="value")?.value||null,T="value"in u?u.value:null,R=$?.split(c.ArgParamsSeparator)[1]||T||"0",U=l.applyInputs(R,C,this.serializer,f),ye=BigInt(U),We=C.filter(P=>P.input.position==="transfer"&&P.value).map(P=>P.value),ve=[...("transfers"in u?u.transfers:[])||[],...We||[]].map(P=>{let Wt=l.applyInputs(P,C,this.serializer,f),we=Wt.startsWith(`asset${c.ArgParamsSeparator}`)?Wt:`asset${c.ArgParamsSeparator}${Wt}`;return this.serializer.stringToNative(we)[1]}),Ce=C.find(P=>P.input.position==="data")?.value,Ae="data"in u?u.data||"":null,Vt=Ce||Ae||null,xe=Vt?l.applyInputs(Vt,C,this.serializer,f):null,Ft={adapter:p,warp:o,chain:s,action:e,destination:x,args:L,value:ye,transfers:ve,data:xe,resolvedInputs:C};return await this.cache.set(ft.WarpExecutable(this.config.env,o.meta?.hash||"",e),Ft.resolvedInputs,ge.OneWeek),Ft}async getChainInfoForWarp(t,e){if(t.chain)return W(t.chain,this.adapters).chainInfo;if(e){let i=await this.tryGetChainFromInputs(t,e);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,e){let n=t.inputs||[];return e.map((i,a)=>{let s=n[a];return!s||i.includes(c.ArgParamsSeparator)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(u=>i.applyInputs(u,[],this.serializer)),l=await Promise.all(p.map(u=>this.preprocessInput(t,u))),o=(u,d)=>{if(u.source===c.Source.UserWallet){let v=S(this.config,t);return v?this.serializer.nativeToString("address",v):null}if(u.source==="hidden"){if(u.default===void 0)return null;let v=i?i.applyInputs(String(u.default),[],this.serializer):String(u.default);return this.serializer.nativeToString(u.type,v)}if(l[d])return l[d];let g=u.as||u.name,h=a?.[g],m=this.url.searchParams.get(g),f=h||m;return f?this.serializer.nativeToString(u.type,String(f)):null};return s.map((u,d)=>{let g=o(u,d),h=u.default!==void 0?i?i.applyInputs(String(u.default),[],this.serializer):String(u.default):void 0;return{input:u,value:g||(h!==void 0?this.serializer.nativeToString(u.type,h):null)}})}async resolveInputsFromQuery(t,e,n){let i=N(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=W(a.name,this.adapters),p=new B(this.config,s,this.adapters);return this.getResolvedInputs(a.name,i,[],p,n)}requiresPayloadInputs(t){return t.inputs?.some(e=>typeof e.position=="string"&&e.position.startsWith("payload:"))??!1}async resolveActionInputs(t,e,n,i,a){let s=this.getStringTypedInputs(e,n);return await this.getResolvedInputs(t,e,s,i,a)}async getModifiedInputs(t){let e=[];for(let n=0;n<t.length;n++){let i=t[n];if(i.input.modifier?.startsWith("scale:")){let[,a]=i.input.modifier.split(":");if(isNaN(Number(a))){let s=Number(t.find(o=>o.input.name===a)?.value?.split(":")[1]);if(!s)throw new Error(`WarpActionExecutor: Exponent value not found for input ${a}`);let p=i.value?.split(":")[1];if(!p)throw new Error("WarpActionExecutor: Scalable value not found");let l=st(p,+s);e.push({...i,value:`${i.input.type}:${l}`})}else{let s=i.value?.split(":")[1];if(!s)throw new Error("WarpActionExecutor: Scalable value not found");let p=st(s,+a);e.push({...i,value:`${i.input.type}:${p}`})}}else if(i.input.modifier?.startsWith(c.Transform.Prefix)){let a=i.input.modifier.substring(c.Transform.Prefix.length),s=this.config.transform?.runner;if(!s||typeof s.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let p=pt(t,this.serializer,n,i),l=await s.run(a,p);if(l==null)e.push(i);else{let o=this.serializer.nativeToString(i.input.type,l);e.push({...i,value:o})}}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=It(e),a=W(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(c.ArgCompositeSeparator);if(l)return e;let o=await a.dataLoader.getAsset(s);if(!o)throw new Error(`WarpFactory: Asset not found for asset ${s}`);if(typeof o.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${s}`);let u=st(p,o.decimals);return se({...o,amount:u})}else return e}catch(n){throw A.warn("WarpFactory: Preprocess input failed",n),n}}getDestinationFromAction(t){if("address"in t&&t.address)return t.address;if("destination"in t&&t.destination){if(typeof t.destination=="string")return t.destination;if(typeof t.destination=="object"&&"url"in t.destination)return t.destination.url}return null}getPreparedArgs(t,e){let n="args"in t?t.args||[]:[],i=[];return e.forEach(({input:a,value:s})=>{if(!(!s||!a.position)){if(typeof a.position=="object"){if(a.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${a.name}" has type "${a.type}"`);if(!a.position.token?.startsWith("arg:")||!a.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${a.name}"`);let[p,l]=this.serializer.stringToNative(s),o=l;if(!o||typeof o!="object"||!("identifier"in o)||!("amount"in o))throw new Error(`WarpFactory: Invalid asset value for input "${a.name}"`);let u=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",o.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",o.amount)})}else if(a.position.startsWith("arg:")){let p=Number(a.position.split(":")[1])-1;i.push({index:p,value:s})}}}),i.forEach(({index:a,value:s})=>{for(;n.length<=a;)n.push(void 0);n[a]=s}),n.filter(a=>a!==void 0)}async tryGetChainFromInputs(t,e){let n=t.actions.find(l=>l.inputs?.some(o=>o.position==="chain"));if(!n)return null;let i=n.inputs?.findIndex(l=>l.position==="chain");if(i===-1||i===void 0)return null;let a=e[i];if(!a)throw new Error("Chain input not found");let s=this.serializer.stringToNative(a)[1];return W(s,this.adapters).chainInfo}};var ht=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.handlers=n,this.factory=new Q(t,e)}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},u={...n,queries:o},{action:d,index:g}=E(t);for(let h=1;h<=t.actions.length;h++){let m=N(t,h);if(!xt(m,t))continue;let{tx:f,chain:v,immediateExecution:C,executable:b}=await this.executeAction(t,h,e,u);f&&i.push(f),v&&(a=v),C&&s.push(C),b&&h===g+1&&b.resolvedInputs&&(p=V(b.resolvedInputs))}if(!a&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&s.length>0){let h=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(h))}return{txs:i,chain:a,immediateExecutions:s,resolvedInputs:p}}async executeAction(t,e,n,i={}){let a=N(t,e);if(a.type==="link")return a.when&&!await this.evaluateWhenCondition(t,a,n,i)?{tx:null,chain:null,immediateExecution:null,executable:null}:(await this.callHandler(async()=>{let o=a.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(o):Ut.open(o,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null});if(a.type==="prompt"){let o=await this.executePrompt(t,a,e,n,i);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:null};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="compute"){let o=await this.executeCompute(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="state"||a.type==="mount"||a.type==="unmount")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="mcp"){let o=await this.executeMcp(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:s}}}let p=W(s.chain.name,this.adapters);if(a.type==="query"){let o=await p.executor.executeQuery(s);if(o.status==="success")await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:s.chain,execution:o,tx:null}));else{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:s.chain,immediateExecution:o,executable:s}}return{tx:await p.executor.createTransaction(s),chain:s.chain,immediateExecution:null,executable:s}}async evaluateOutput(t,e){if(e.length===0||t.actions.length===0||!this.handlers)return;let n=await this.factory.getChainInfoForWarp(t),i=W(n.name,this.adapters),a=(await Promise.all(t.actions.map(async(s,p)=>{if(!xt(s,t)||s.type!=="transfer"&&s.type!=="contract")return null;let l=e[p],o=p+1;if(!l){let g=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),h={status:"error",warp:t,action:o,user:S(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:g};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:h})),h}let u=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(u.length===0){let g=t.meta?.query;g&&Object.keys(g).length>0&&(u=await this.factory.resolveInputsFromQuery(t,o,g))}let d=await i.output.getActionExecution(t,o,l.tx,u);return d.next=G(this.config,this.adapters,t,o,dr(u,d.output)),d.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:o,chain:n,execution:d,tx:l})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(d.values),result:d})),d}))).filter(s=>s!==null);if(a.every(s=>s.status==="success")){let s=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(s))}else{let s=a.find(p=>p.status!=="success");await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(a)}`,result:s}))}}async executeCollect(t,e){let n=S(this.config,t.chain.name),i=N(t.warp,t.action),a=this.factory.getSerializer(),s=_(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Z(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=S(this.config,t.chain.name),n=this.factory.getSerializer(),i=_(t.resolvedInputs,n),{values:a,output:s}=await Z(t.warp,i,t.action,t.resolvedInputs,n,this.config);return this.buildCollectResult(t,e,"success",a,s)}async doHttpRequest(t,e,n,i,a){let s=new B(this.config,W(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:u,body:d}=await fe(s,e,t,n,i,p,a,async g=>await this.callHandler(()=>this.handlers?.onSignRequest?.(g)));A.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:u,body:d});try{let h=await fetch(l,{method:o,headers:u,body:d});A.debug("Collect response status",{status:h.status}),h.status===402&&(h=await ae(h,l,o,d,this.adapters));let m=await h.json();A.debug("Collect response content",{content:m});let{values:f,output:v}=await Z(t.warp,m,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,S(this.config,t.chain.name),h.ok?"success":"error",f,v,m)}catch(g){A.error("WarpActionExecutor: Error executing collect",g);let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(n=>n.input.position==="receiver"||n.input.position==="destination")?.value||t.destination}async executeMcp(t,e){let n=S(this.config,t.chain.name),i=N(t.warp,t.action);if(!i.destination){let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("WarpExecutor: MCP action requires destination")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let m=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("Please install @modelcontextprotocol/sdk to execute MCP warps or mcp actions")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:m}}let p=this.factory.getSerializer(),l=new B(this.config,W(t.chain.name,this.adapters),this.adapters),o=i.destination,u=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),g={};o.headers&&Object.entries(o.headers).forEach(([h,m])=>{let f=l.applyInputs(m,t.resolvedInputs,this.factory.getSerializer());g[h]=f}),A.debug("WarpExecutor: Executing MCP",{url:u,tool:d,headers:g});try{let h=new s(new URL(u),{requestInit:{headers:g}}),m=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await m.connect(h);let f={};t.resolvedInputs.forEach(({input:x,value:L})=>{if(L&&x.position&&typeof x.position=="string"&&x.position.startsWith("payload:")){let $=x.position.replace("payload:",""),[T,R]=p.stringToNative(L);if(T==="string")f[$]=String(R);else if(T==="bool")f[$]=!!R;else if(T==="uint8"||T==="uint16"||T==="uint32"||T==="uint64"||T==="uint128"||T==="uint256"||T==="biguint"){let U=Number(R);f[$]=(Number.isInteger(U),U)}else f[$]=R}}),e&&Object.assign(f,e);let v=await m.callTool({name:d,arguments:f});await m.close();let C;if(v.content&&v.content.length>0){let x=v.content[0];if(x.type==="text")try{C=JSON.parse(x.text)}catch{C=x.text}else x.type,C=x}else C=v;let{values:b,output:H}=await Z(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",b,H,v)}catch(h){A.error("WarpExecutor: Error executing MCP",h);let m=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:h},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:m}}}buildCollectResult(t,e,n,i,a,s){let p=G(this.config,this.adapters,t.warp,t.action,a),l=V(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||S(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages:St(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=W(s.name,this.adapters),l=new B(this.config,p,this.adapters),o=await l.apply(t,a),u=N(o,n),{action:d}=E(o),g=this.factory.getStringTypedInputs(d,i),h=await this.factory.getResolvedInputs(s.name,d,g,l,a.queries),m=await this.factory.getModifiedInputs(h),f=m;if(e.inputs&&e.inputs.length>0){let R=this.factory.getStringTypedInputs(e,i),U=await this.factory.getResolvedInputs(s.name,e,R,l,a.queries);f=await this.factory.getModifiedInputs(U)}let v=te(u.prompt,this.config.platform),C=l.applyInputs(v,f,this.factory.getSerializer(),m),b=V(f),H=S(this.config,s.name),x=this.factory.getSerializer(),{values:L,output:$}=await Yt(o,C,n,f,x,this.config),T=f.find(R=>R.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:H,txHash:null,tx:null,next:G(this.config,this.adapters,o,n,$),values:L,output:$,messages:St(o,$,this.config),destination:T,resolvedInputs:b}}catch(s){return A.error("WarpExecutor: Error executing prompt action",s),{status:"error",warp:t,action:n,user:null,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:s},messages:{},destination:null,resolvedInputs:[]}}}async evaluateWhenCondition(t,e,n,i,a,s){if(!e.when)return!0;let p=s?{name:s}:await this.factory.getChainInfoForWarp(t,n),l=W(p.name,this.adapters),o=new B(this.config,l,this.adapters),{action:u}=E(t),d=this.factory.getStringTypedInputs(u,n),g=await this.factory.getResolvedInputs(p.name,u,d,o,i.queries),h=await this.factory.getModifiedInputs(g),m;if(a)m=a;else{let b=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);m=await this.factory.getModifiedInputs(b)}let f=o.buildInputBag(m,this.factory.getSerializer(),h),v={...i.envs??{},...f},C=qt(e.when,v);return zt(C)}},dr=(r,t)=>{let e=Object.fromEntries((r??[]).flatMap(i=>{let a=i.input.as||i.input.name;return a?[[a,i.value]]:[]})),n=Object.fromEntries(Object.entries(t).filter(([,i])=>i!=null));return{...e,...n}};var mt=class{constructor(t){this.config=t}async search(t,e,n){if(!this.config.index?.url)throw new Error("WarpIndex: Index URL is not set");try{let i=await fetch(this.config.index?.url,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.index?.apiKey}`,...n},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...e})});if(!i.ok)throw new Error(`WarpIndex: search failed with status ${i.status}: ${await i.text()}`);return(await i.json()).hits}catch(i){throw A.error("WarpIndex: Error searching for warps: ",i),i}}};var yt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!X(t,this.config.defaultChain):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(o=>o[0]).filter(o=>this.isValid(o)).map(o=>this.detect(o)),s=(await Promise.all(i)).filter(o=>o.match),p=s.length>0,l=s.map(o=>({url:o.url,warp:o.warp}));return{match:p,output:l}}async detect(t,e){let n={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(c.HttpProtocolPrefix)?X(t,this.config.defaultChain):O(t,this.config.defaultChain);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,u=t.startsWith(c.HttpProtocolPrefix)?_t(t):Jt(i.identifier);if(this.resolver){let m=null;if(a==="hash")m=await this.resolver.getByHash(s,e);else if(a==="alias"){let f=`${i.chain}:${s}`;m=await this.resolver.getByAlias(f,e)||await this.resolver.getByAlias(s,e)}m&&(p=m.warp,l=m.registryInfo,o=m.brand)}else{let m=W(i.chain,this.adapters);if(a==="hash"){p=await m.builder().createFromTransactionHash(s,e);let f=await m.registry.getInfoByHash(s,e);l=f.registryInfo,o=f.brand}else if(a==="alias"){let f=await m.registry.getInfoByAlias(s,e);l=f.registryInfo,o=f.brand,f.registryInfo&&(p=await m.builder().createFromTransactionHash(f.registryInfo.hash,e))}}if(p&&p.meta&&(gr(p,i.chain,l,i.identifier),p.meta.query=u?Qt(u):null),!p)return n;let d=p.chain||i.chain,g=this.adapters.find(m=>m.chainInfo.name.toLowerCase()===d.toLowerCase()),h=g?await new B(this.config,g,this.adapters).apply(p):p;return{match:!0,url:t,warp:h,chain:d,registryInfo:l,brand:o}}catch(a){return A.error("Error detecting warp link",a),n}}},gr=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?wt(null,"alias",e.alias):wt(t,"hash",e?.hash??n))};var he=class{constructor(t,e){this.config=t;this.options=e;this.chains=e.chains.map(n=>n(this.config)),this.resolver=e.resolver??this.buildDefaultResolver()}buildDefaultResolver(){let t=this.chains.map(e=>new rt(e));return new nt(t)}getConfig(){return this.config}getResolver(){return this.resolver}createExecutor(t){return new ht(this.config,this.chains,t)}async detectWarp(t,e){return new yt(this.config,this.chains,this.resolver).detect(t,e)}async executeWarp(t,e,n,i={}){let a=typeof t=="object",s=!a&&t.startsWith("http")&&t.endsWith(".json"),p=a?t:null;if(!p&&s){let m=await fetch(t);if(!m.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await m.json()}if(p||(p=(await this.detectWarp(t,i.cache)).warp),!p)throw new Error("Warp not found");let l=this.createExecutor(n),{txs:o,chain:u,immediateExecutions:d,resolvedInputs:g}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:u,immediateExecutions:d,evaluateOutput:async m=>{await l.evaluateOutput(p,m)},resolvedInputs:g}}async createInscriptionTransaction(t,e){return await W(t,this.chains).builder().createInscriptionTransaction(e)}async createFromTransaction(t,e,n=!1){return W(t,this.chains).builder().createFromTransaction(e,n)}async createFromTransactionHash(t,e){let n=O(t,this.config.defaultChain);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return W(n.chain,this.chains).builder().createFromTransactionHash(t,e)}async signMessage(t,e){if(!S(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return W(t,this.chains).wallet.signMessage(e)}async getActions(t,e,n=!1){let i=this.getDataLoader(t);return(await Promise.all(e.map(async s=>i.getAction(s,n)))).filter(s=>s!==null)}getExplorer(t){return W(t,this.chains).explorer}getOutput(t){return W(t,this.chains).output}async getActionExecution(t,e,n,i){let a=i??E(e).index+1,p=await W(t,this.chains).output.getActionExecution(e,a,n);return p.next=G(this.config,this.chains,e,a,p.output),p}async getRegistry(t){let e=W(t,this.chains).registry;return await e.init(),e}getDataLoader(t){return W(t,this.chains).dataLoader}getWallet(t){return W(t,this.chains).wallet}get factory(){return new Q(this.config,this.chains)}get index(){return new mt(this.config)}get linkBuilder(){return new z(this.config,this.chains)}createBuilder(t){return W(t,this.chains).builder()}createAbiBuilder(t){return W(t,this.chains).abiBuilder()}createBrandBuilder(t){return W(t,this.chains).brandBuilder()}createSerializer(t){return W(t,this.chains).serializer}resolveText(t){return ot(t,this.config)}};var me=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,e){this.typeHandlers.set(t,e)}registerTypeAlias(t,e){this.typeAliases.set(t,e)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let e=this.typeAliases.get(t);return e?this.getHandler(e):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let e=this.typeAliases.get(t);return e?this.resolveType(e):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};export{Ct as BrowserCryptoProvider,Rr as CLOUD_WALLET_PROVIDERS,ge as CacheTtl,Tr as EvmWalletChainNames,Er as MultiversxWalletChainNames,At as NodeCryptoProvider,sn as WARP_LANGUAGES,I as WarpAssets,oe as WarpBrandBuilder,pe as WarpBuilder,gt as WarpCache,ft as WarpCacheKey,Be as WarpChainDisplayNames,$e as WarpChainLogos,Ne as WarpChainName,rt as WarpChainResolver,he as WarpClient,nt as WarpCompositeResolver,D as WarpConfig,c as WarpConstants,ht as WarpExecutor,Q as WarpFactory,mt as WarpIndex,y as WarpInputTypes,B as WarpInterpolator,z as WarpLinkBuilder,yt as WarpLinkDetecter,A as WarpLogger,Ht as WarpPlatformName,Lt as WarpPlatforms,q as WarpProtocolVersions,w as WarpSerializer,me as WarpTypeRegistry,lt as WarpValidator,Pi as address,St as applyOutputToMessages,se as asset,Ii as biguint,Si as bool,Xe as buildGeneratedFallbackWarpIdentifier,ti as buildGeneratedSourceWarpIdentifier,pt as buildInputsContext,_ as buildMappedOutput,De as buildNestedPayload,_r as bytesToBase64,Oe as bytesToHex,li as checkWarpAssetBalance,K as cleanWarpIdentifier,Tt as createAuthHeaders,bt as createAuthMessage,Qr as createCryptoProvider,si as createDefaultWalletProvider,Kn as createHttpAuthHeaders,_e as createSignableMessage,pn as createWarpI18nText,wt as createWarpIdentifier,nn as doesWarpRequireWallet,Zt as evaluateOutputCommon,zt as evaluateWhenCondition,Z as extractCollectOutput,X as extractIdentifierInfoFromUrl,Yt as extractPromptOutput,Jt as extractQueryStringFromIdentifier,_t as extractQueryStringFromUrl,V as extractResolvedInputValues,Zr as extractWarpSecrets,W as findWarpAdapterForChain,Fr as getChainDisplayName,Hr as getChainLogo,Dt as getCryptoProvider,Dr as getEventNameFromWarp,Je as getGeneratedSourceWarpName,at as getLatestProtocolIdentifier,G as getNextInfo,Gn as getProviderConfig,jt as getRandomBytes,kt as getRandomHex,Ze as getRequiredAssetIds,Wr as getWalletFromConfigOrFail,N as getWarpActionByIndex,kr as getWarpBrandLogoUrl,Mr as getWarpChainAssetLogoUrl,qr as getWarpChainInfoLogoUrl,fn as getWarpIdentifierWithQuery,O as getWarpInfoFromIdentifier,E as getWarpPrimaryAction,Ie as getWarpWalletAddress,S as getWarpWalletAddressFromConfig,be as getWarpWalletExternalId,Te as getWarpWalletExternalIdFromConfig,Ar as getWarpWalletExternalIdFromConfigOrFail,Pe as getWarpWalletMnemonic,Cr as getWarpWalletMnemonicFromConfig,Se as getWarpWalletPrivateKey,vr as getWarpWalletPrivateKeyFromConfig,ae as handleX402Payment,yn as hasInputPrefix,bi as hex,ii as initializeWalletCache,dn as isEqualWarpIdentifier,ri as isGeneratedSourcePrivateIdentifier,Ge as isPlatformValue,xt as isWarpActionAutoExecute,on as isWarpI18nText,xr as isWarpWalletReadOnly,Kt as mergeNestedPayload,Sr as normalizeAndValidateMnemonic,Ee as normalizeMnemonic,Ti as option,ze as parseOutputOutIndex,Zn as parseSignedMessage,Qt as parseWarpQueryStringToObject,gn as removeWarpChainPrefix,Ir as removeWarpWalletFromConfig,k as replacePlaceholders,qt as replacePlaceholdersInWhenExpression,te as resolvePlatformValue,ot as resolveWarpText,Ut as safeWindow,Gr as setCryptoProvider,wr as setWarpWalletInConfig,st as shiftBigintBy,It as splitInput,ei as stampGeneratedWarpMeta,vi as string,Ri as struct,Jr as testCryptoAvailability,je as toInputPayloadValue,Mt as toPreviewText,Ei as tuple,Ai as uint16,xi as uint32,wi as uint64,Ci as uint8,Re as validateMnemonicLength,Xn as validateSignedMessage,Ni as vector,Or as withAdapterFallback};
1
+ var rt=class{constructor(t){this.adapter=t}async getByAlias(t,e){try{let{registryInfo:n,brand:i}=await this.adapter.registry.getInfoByAlias(t,e);if(!n)return null;let a=await this.adapter.builder().createFromTransactionHash(n.hash,e);return a?{warp:a,brand:i,registryInfo:n}:null}catch{return null}}async getByHash(t,e){try{let n=await this.adapter.builder().createFromTransactionHash(t,e);if(!n)return null;let{registryInfo:i,brand:a}=await this.adapter.registry.getInfoByHash(t,e);return{warp:n,brand:a,registryInfo:i}}catch{return null}}};var nt=class{constructor(t){this.resolvers=t}async getByAlias(t,e){for(let n of this.resolvers){let i=await n.getByAlias(t,e);if(i)return i}return null}async getByHash(t,e){for(let n of this.resolvers){let i=await n.getByHash(t,e);if(i)return i}return null}};var vr=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},Pe=r=>r?typeof r=="string"?r:r.address:null,P=(r,t)=>Pe(r.user?.wallets?.[t]||null),be=r=>r?typeof r=="string"?r:r.privateKey||null:null,Te=r=>r?typeof r=="string"?r:r.mnemonic||null:null,Ee=r=>r?typeof r=="string"?r:r.externalId||null:null,Cr=(r,t)=>be(r.user?.wallets?.[t]||null)?.trim()||null,xr=(r,t)=>Te(r.user?.wallets?.[t]||null)?.trim()||null,Re=(r,t)=>Ee(r.user?.wallets?.[t]||null)?.trim()||null,Ar=(r,t)=>{let e=Re(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},wr=r=>typeof r=="string",Ir=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},Sr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},Ne=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},Be=(r,t=24)=>{let e=r.split(/\s+/).filter(n=>n.length>0);if(e.length!==t)throw new Error(`Mnemonic must be ${t} words. Got ${e.length} words`)},Pr=(r,t=24)=>{let e=Ne(r);return Be(e,t),e};var $e=(g=>(g.Multiversx="multiversx",g.Claws="claws",g.Sui="sui",g.Ethereum="ethereum",g.Base="base",g.Arbitrum="arbitrum",g.Polygon="polygon",g.Somnia="somnia",g.Tempo="tempo",g.Fastset="fastset",g.Solana="solana",g.Near="near",g))($e||{}),Ht=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Ht||{}),Ut=Object.values(Ht),Er=["ethereum","base","arbitrum","polygon","somnia","tempo"],Rr=["multiversx","claws"],Nr=["coinbase","privy","gaupa"],c={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:r=>P(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},m={Option:"option",Vector:"vector",Tuple:"tuple",Struct:"struct",String:"string",Uint8:"uint8",Uint16:"uint16",Uint32:"uint32",Uint64:"uint64",Uint128:"uint128",Uint256:"uint256",Biguint:"biguint",Bool:"bool",Address:"address",Asset:"asset",Hex:"hex"},Dt=typeof window<"u"?window:{open:()=>{}};var q={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},k={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/v${q.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/brand/v${q.Brand}.schema.json`,DefaultClientUrl:r=>r==="devnet"?"https://devnet.usewarp.to":r==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",c.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","uint8","uint16","uint32","uint64","biguint","boolean","address"],AvailableActionInputPositions:["receiver","value","transfer","arg:1","arg:2","arg:3","arg:4","arg:5","arg:6","arg:7","arg:8","arg:9","arg:10","data","ignore"]};var Or=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var it="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",S={baseUrl:it,chainLogo:r=>`${it}/chains/logos/${r}`,tokenLogo:r=>`${it}/tokens/logos/${r}`,walletLogo:r=>`${it}/wallets/logos/${r}`},Fe={multiversx:"MultiversX",claws:"Claws Network",sui:"Sui",ethereum:"Ethereum",base:"Base",arbitrum:"Arbitrum",polygon:"Polygon",somnia:"Somnia",tempo:"Tempo",fastset:"Fastset",solana:"Solana",near:"NEAR"},Lr=r=>Fe[r]??r.charAt(0).toUpperCase()+r.slice(1),Oe={ethereum:{light:S.chainLogo("ethereum-white.svg"),dark:S.chainLogo("ethereum-black.svg")},base:{light:S.chainLogo("base-white.svg"),dark:S.chainLogo("base-black.svg")},arbitrum:S.chainLogo("arbitrum.svg"),polygon:S.chainLogo("polygon.svg"),somnia:S.chainLogo("somnia.png"),tempo:{light:S.chainLogo("tempo-white.svg"),dark:S.chainLogo("tempo-black.svg")},multiversx:S.chainLogo("multiversx.svg"),claws:S.chainLogo("claws.png"),sui:S.chainLogo("sui.svg"),solana:S.chainLogo("solana.svg"),near:{light:S.chainLogo("near-white.svg"),dark:S.chainLogo("near-black.svg")},fastset:{light:S.chainLogo("fastset-white.svg"),dark:S.chainLogo("fastset-black.svg")}},Hr=(r,t="dark")=>{let e=Oe[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var kr=(r,t)=>{let e=r.alerts?.[t];if(!e)return null;let n=c.Alerts.TriggerEventPrefix+c.ArgParamsSeparator;if(!e.trigger.startsWith(n))return null;let i=e.trigger.replace(n,"");return i||null};var xt=(r,t)=>r[t]??r.default??Object.values(r)[0],jr=(r,t)=>{let e=t?.preferences?.theme??"light";return typeof r.logo=="string"?r.logo:xt(r.logo,e)},qr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return xt(r.logoUrl,e)},zr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return xt(r.logoUrl,e)};var At=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let e=new Uint8Array(t);return window.crypto.getRandomValues(e),e}},wt=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let e=await import("crypto");return new Uint8Array(e.randomBytes(t))}catch(e){throw new Error(`Node.js crypto not available: ${e instanceof Error?e.message:"Unknown error"}`)}}},M=null;function kt(){if(M)return M;if(typeof window<"u"&&window.crypto)return M=new At,M;if(typeof process<"u"&&process.versions?.node)return M=new wt,M;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function _r(r){M=r}async function Mt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||kt()).getRandomBytes(r)}function Ve(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(r.length*2);for(let e=0;e<r.length;e++){let n=r[e];t[e*2]=(n>>>4).toString(16),t[e*2+1]=(n&15).toString(16)}return t.join("")}function Jr(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(r).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(r));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function jt(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await Mt(r/2,t);return Ve(e)}async function Qr(){let r={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?r.environment="browser":typeof process<"u"&&process.versions?.node&&(r.environment="nodejs"),await Mt(16),r.randomBytes=!0}catch{}return r}function Kr(){return kt()}var Yr=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${c.Vars.Env}:`)).map(t=>{let e=t.replace(`${c.Vars.Env}:`,"").trim(),[n,i]=e.split(c.ArgCompositeSeparator);return{key:n,description:i||null}});var C=(r,t)=>{let e=t.find(n=>n.chainInfo.name.toLowerCase()===r.toLowerCase());if(!e)throw new Error(`Adapter not found for chain: ${r}`);return e},at=r=>{if(r==="warp")return`warp:${q.Warp}`;if(r==="brand")return`brand:${q.Brand}`;if(r==="abi")return`abi:${q.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},T=(r,t)=>r?.actions[t-1],R=r=>{if(r.actions.length===0)throw new Error(`Warp has no primary action: ${r.meta?.identifier}`);let t=r.actions.find(a=>a.primary===!0);if(t)return{action:t,index:r.actions.indexOf(t)};let e=["transfer","contract","query","collect","compute","mcp"],n=r.actions.find(a=>e.includes(a.type));return n?{action:n,index:r.actions.indexOf(n)}:{action:r.actions[0],index:0}},It=(r,t)=>{if(r.auto===!1)return!1;if(r.type==="link"){if(r.auto===!0)return!0;let{action:e}=R(t);return r===e}return!0},st=(r,t)=>{let e=r.toString(),[n,i=""]=e.split("."),a=Math.abs(t);if(t>0)return BigInt(n+i.padEnd(a,"0"));if(t<0){let s=n+i;if(a>=s.length)return 0n;let p=s.slice(0,-a)||"0";return BigInt(p)}else return e.includes(".")?BigInt(e.split(".")[0]):BigInt(e)},qt=(r,t=100)=>{if(!r)return"";let e=r.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return e=e.startsWith("- ")?e.slice(2):e,e=e.length>t?e.substring(0,e.lastIndexOf(" ",t))+"...":e,e},L=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),zt=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),an=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===c.Source.UserWallet||n.default===`{{${c.Globals.UserWallet.Placeholder}}}`||n.default===`{{${c.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},Gt=r=>{if(!r||typeof r!="string")return!0;try{return!!new Function(`return ${r}`)()}catch(t){throw new Error(`Failed to evaluate 'when' condition: ${r}. Error: ${t}`)}};var on={de:"German",en:"English",es:"Spanish",fr:"French",it:"Italian",pt:"Portuguese",ru:"Russian",zh:"Chinese",ja:"Japanese",ko:"Korean",ar:"Arabic",hi:"Hindi",nl:"Dutch",sv:"Swedish",da:"Danish",no:"Norwegian",fi:"Finnish",pl:"Polish",tr:"Turkish",el:"Greek",he:"Hebrew",th:"Thai",vi:"Vietnamese",id:"Indonesian",ms:"Malay",tl:"Tagalog"},ot=(r,t)=>{let e=t?.preferences?.locale||"en";if(typeof r=="string")return r;if(typeof r=="object"&&r!==null){if(e in r)return r[e];if("en"in r)return r.en;let n=Object.keys(r);if(n.length>0)return r[n[0]]}return""},pn=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,ln=r=>r;var Q=r=>r.startsWith(c.IdentifierAliasMarker)?r.replace(c.IdentifierAliasMarker,""):r,gn=(r,t)=>!r||!t?!1:Q(r)===Q(t),St=(r,t,e)=>{let n=Q(e);if(t===c.IdentifierType.Alias)return c.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+c.IdentifierParamSeparator+t+c.IdentifierParamSeparator+n},O=(r,t)=>{let e=t||c.IdentifierChainDefault,n=decodeURIComponent(r).trim(),i=Q(n),a=i.split("?")[0],s=_t(a);if(a.length===64&&/^[a-fA-F0-9]+$/.test(a))return{chain:e,type:c.IdentifierType.Hash,identifier:i,identifierBase:a};if(s.length===2&&/^[a-zA-Z0-9]{62}$/.test(s[0])&&/^[a-zA-Z0-9]{2}$/.test(s[1]))return null;if(s.length===3){let[p,l,o]=s;if(l===c.IdentifierType.Alias||l===c.IdentifierType.Hash){let u=i.includes("?")?o+i.substring(i.indexOf("?")):o;return{chain:p,type:l,identifier:u,identifierBase:o}}}if(s.length===2){let[p,l]=s;if(p===c.IdentifierType.Alias||p===c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l;return{chain:e,type:p,identifier:o,identifierBase:l}}}if(s.length===2){let[p,l]=s;if(p!==c.IdentifierType.Alias&&p!==c.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l,u=Le(l,p)?c.IdentifierType.Hash:c.IdentifierType.Alias;return{chain:p,type:u,identifier:o,identifierBase:l}}}return{chain:e,type:c.IdentifierType.Alias,identifier:i,identifierBase:a}},K=(r,t)=>{let e=new URL(r),i=e.searchParams.get(c.IdentifierParamName);if(i||(i=e.pathname.split("/")[1]),!i)return null;let a=decodeURIComponent(i);return O(a,t)},Le=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,He=r=>{let t=c.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},_t=r=>{let t=He(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=_t(a);return[i,...s]},Jt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(c.IdentifierParamName),e.toString()||null}catch{return null}},Qt=r=>{let t=r.indexOf("?");if(t===-1||t===r.length-1)return null;let e=r.substring(t+1);return e.length>0?e:null},Kt=r=>{if(!r)return{};let t=r.startsWith("?")?r.slice(1):r;if(!t)return{};let e=new URLSearchParams(t),n={};return e.forEach((i,a)=>{n[a]=i}),n},fn=(r,t)=>{let e=O(r,t);return(e?e.identifierBase:Q(r)).trim()},hn=r=>{let t=r.meta?.identifier;if(!t)return"";let e=r.meta?.query;if(e&&typeof e=="object"&&Object.keys(e).length>0){let n=new URLSearchParams(e);return`${t}?${n.toString()}`}return t};var Pt=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},Wn=r=>{let t=new Set(Object.values(m));if(!r.includes(c.ArgParamsSeparator))return!1;let e=Pt(r)[0];return t.has(e)};var bt=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=ot(a,e);return[i,L(s,t)]});return Object.fromEntries(n)};import Ue from"qr-code-styling";var z=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!K(t,this.config.defaultChain):!1}build(t,e,n){let i=this.config.clientUrl||k.DefaultClientUrl(this.config.env),a=C(t,this.adapters),s=e===c.IdentifierType.Alias?n:e+c.IdentifierParamSeparator+n,p=a.chainInfo.name+c.IdentifierParamSeparator+s,l=encodeURIComponent(p);return k.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${c.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=O(t,this.config.defaultChain);if(!e)return null;let n=C(e.chain,this.adapters);return n?this.build(n.chainInfo.name,e.type,e.identifierBase):null}generateQrCode(t,e,n,i=512,a="white",s="black",p="#23F7DD"){let l=C(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new Ue({type:"svg",width:i,height:i,data:String(o),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:a},dotsOptions:{type:"extra-rounded",color:s},cornersSquareOptions:{type:"extra-rounded",color:s},cornersDotOptions:{type:"square",color:s},imageOptions:{hideBackgroundDots:!0,imageSize:.4,margin:8},image:`data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 100 100" fill="${encodeURIComponent(p)}" xmlns="http://www.w3.org/2000/svg"><path d="M54.8383 50.0242L95 28.8232L88.2456 16L51.4717 30.6974C50.5241 31.0764 49.4759 31.0764 48.5283 30.6974L11.7544 16L5 28.8232L45.1616 50.0242L5 71.2255L11.7544 84.0488L48.5283 69.351C49.4759 68.9724 50.5241 68.9724 51.4717 69.351L88.2456 84.0488L95 71.2255L54.8383 50.0242Z"/></svg>`})}};var Xt="https://",Zt=(r,t)=>r?typeof r=="string"?t==="success"?r:null:r[t]||null:null,pt=(r,t,e,n,i)=>{let a=T(e,n)?.next||e.next||null,s=Zt(a,"success");if(!s)return null;if(s.startsWith(Xt))return[{identifier:null,url:s}];let[p,l]=s.split("?");if(!l){let v=L(p,{...e.vars,...i});return[{identifier:v,url:X(t,v,r)}]}let o=l.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(o.length===0){let v=L(l,{...e.vars,...i}),W=v?`${p}?${v}`:p;return[{identifier:W,url:X(t,W,r)}]}let u=o[0];if(!u)return[];let d=u.match(/{{([^[]+)\[\]/),g=d?d[1]:null;if(!g||i[g]===void 0)return[];let f=Array.isArray(i[g])?i[g]:[i[g]];if(f.length===0)return[];let h=o.filter(v=>v.includes(`{{${g}[]`)).map(v=>{let W=v.match(/\[\](\.[^}]+)?}}/),w=W&&W[1]||"";return{placeholder:v,field:w?w.slice(1):"",regex:new RegExp(v.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return f.map(v=>{let W=l;for(let{regex:U,field:x}of h){let N=x?De(v,x):v;if(N==null)return null;W=W.replace(U,N)}if(W.includes("{{")||W.includes("}}"))return null;let w=W?`${p}?${W}`:p;return{identifier:w,url:X(t,w,r)}}).filter(v=>v!==null)},lt=(r,t,e,n,i,a)=>{let s=a==="error"?"error":"success",p=T(e,n)?.next||e.next||null,l=Zt(p,s);if(!l)return null;if(l.startsWith(Xt))return[{identifier:null,url:l}];let[o,u]=l.split("?");if(!u){let f=L(o,{...e.vars,...i});return[{identifier:f,url:X(t,f,r)}]}let d=L(u,{...e.vars,...i}),g=d?`${o}?${d}`:o;return[{identifier:g,url:X(t,g,r)}]},X=(r,t,e)=>{let[n,i]=t.split("?"),a=O(n,e.defaultChain)||{chain:c.IdentifierChainDefault,type:"alias",identifier:n,identifierBase:n},s=C(a.chain,r);if(!s)throw new Error(`Adapter not found for chain ${a.chain}`);let p=new z(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,u)=>l.searchParams.set(u,o)),l.toString().replace(/\/\?/,"?")},De=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var j=class j{static debug(...t){j.isTestEnv||console.debug(...t)}static info(...t){j.isTestEnv||console.info(...t)}static warn(...t){j.isTestEnv||console.warn(...t)}static error(...t){j.isTestEnv||console.error(...t)}};j.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var A=j;function ke(r,t,e){return r.startsWith(c.Position.Payload)?r.slice(c.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function Yt(r,t){if(!r)return{...t};if(!t)return{...r};let e={...r};return Object.keys(t).forEach(n=>{e[n]&&typeof e[n]=="object"&&typeof t[n]=="object"?e[n]=Yt(e[n],t[n]):e[n]=t[n]}),e}function Me(r,t){if(!r.value)return null;let e=t.stringToNative(r.value)[1];if(r.input.type==="biguint")return e.toString();if(r.input.type==="asset"){let{identifier:n,amount:i}=e;return{identifier:n,amount:i.toString()}}else return e}function V(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function G(r,t){let e={};return r.forEach(n=>{let i=n.input.as||n.input.name,a=Me(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(c.Position.Payload)){let s=ke(n.input.position,i,a);e=Yt(e,s)}else e[i]=a}),e}function ct(r,t,e,n){let i={},a=e!==void 0?e:r.length,s=p=>{if(!p?.value)return;let l=p.input.as||p.input.name,[,o]=t.stringToNative(p.value);if(i[l]=o,p.input.type!=="asset"||typeof o!="object"||o===null)return;let u=o;if("identifier"in u&&"amount"in u){let d=String(u.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(u.amount)}};for(let p=0;p<a;p++)s(r[p]);return s(n),i}var te=(r,t,e)=>{let n=[],i=[],a={};if(r.output)for(let[s,p]of Object.entries(r.output)){if(p.startsWith(c.Transform.Prefix))continue;let l=Ge(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...u]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(u);n.push(String(d)),i.push(d),a[s]=d}else a[s]=p}return{stringValues:n,nativeValues:i,output:a}},Z=async(r,t,e,n,i,a)=>{let s=(d,g)=>g.reduce((f,h)=>f&&f[h]!==void 0?f[h]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:u}=te(r,e,p);return{values:{string:l,native:o,mapped:G(n,i)},output:await ee(r,u,t,e,n,i,a)}},ee=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=je(p,r,n,i,a),p=await qe(r,p,e,i,a,s.transform?.runner||null),p},je=(r,t,e,n,i)=>{let a={...r},s=T(t,e)?.inputs||[];for(let[p,l]of Object.entries(a))if(typeof l=="string"&&l.startsWith("in.")){let o=l.split(".")[1],u=s.findIndex(g=>g.as===o||g.name===o),d=u!==-1?n[u]?.value:null;a[p]=d?i.stringToNative(d)[1]:null}return a},qe=async(r,t,e,n,i,a)=>{if(!r.output)return t;let s={...t},p=Object.entries(r.output).filter(([,o])=>o.startsWith(c.Transform.Prefix)).map(([o,u])=>({key:o,code:u.substring(c.Transform.Prefix.length)}));if(p.length>0&&(!a||typeof a.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let l={...s,out:ze(e),inputs:ct(n,i)};for(let{key:o,code:u}of p)try{s[o]=await a.run(u,l),l[o]=s[o]}catch(d){A.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},ze=r=>{if(!r||typeof r!="object"||Array.isArray(r)||!Array.isArray(r.data))return r;let t=[...r.data];return t.data=r.data,t},re=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=te(r,e,s),u=await ee(r,o,t,e,n,i,a);return"PROMPT"in u||(u.PROMPT=t),{values:{string:p,native:l,mapped:G(n,i)},output:u}},Ge=r=>{if(r==="out")return 1;let t=r.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(r.startsWith("out.")||r.startsWith("event."),null)};var _e=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Ut.some(t=>t in r),ne=(r,t)=>{if(!_e(r))return r;if(!t)throw new Error("Platform-specific value requires platform in client config");let e=r[t];if(e===void 0)throw new Error(`Warp does not support platform: ${t}`);return e};var _n=(r,t,e,n)=>{let i=r.preferences?.providers?.[t];return i?.[e]?typeof i[e]=="string"?{url:i[e]}:i[e]:{url:n}};async function Je(r,t,e,n=5){let i=await jt(64,e),a=new Date(Date.now()+n*60*1e3).toISOString();return{message:JSON.stringify({wallet:r,nonce:i,expiresAt:a,purpose:t}),nonce:i,expiresAt:a}}async function Tt(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return Je(r,i,e,5)}function Et(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function Xn(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Tt(r,e,n),p=await t(i);return Et(r,p,a,s)}function Zn(r){let t=new Date(r).getTime();return Date.now()<t}function Yn(r){try{let t=JSON.parse(r);if(!t.wallet||!t.nonce||!t.expiresAt||!t.purpose)throw new Error("Invalid signed message: missing required fields");return t}catch(t){throw new Error(`Failed to parse signed message: ${t instanceof Error?t.message:"Unknown error"}`)}}var Qe=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",Ke=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),ie=(r,t=24)=>{let e=Ke(r);return e?e.slice(0,t):"action"},ae=r=>{let t=3735928559^r.length,e=1103547991^r.length;for(let a=0;a<r.length;a++){let s=r.charCodeAt(a);t=Math.imul(t^s,2654435761),e=Math.imul(e^s,1597334677)}t=Math.imul(t^t>>>16,2246822507)^Math.imul(e^e>>>13,3266489909),e=Math.imul(e^e>>>16,2246822507)^Math.imul(t^t>>>13,3266489909);let n=(e>>>0).toString(16).padStart(8,"0"),i=(t>>>0).toString(16).padStart(8,"0");return`${n}${i}`.slice(0,12)},Xe=r=>{let t=(r||"").trim();if(!t)return"";try{let e=new URL(t),n=e.pathname.replace(/\/+$/,"").toLowerCase()||"/";return`${e.origin.toLowerCase()}${n}`}catch{return t.toLowerCase()}},ei=(r,t,e)=>{let n=ie((e||t||"").trim()||"action"),i=`${r.type}|${Xe(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=ae(i);return`private_src_${n}_${a}`},Ze=r=>{let t=Qe(r),e=ie(t),n=ae(t.trim().toLowerCase());return`private_gen_${e}_${n}`},ri=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Ze(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},ni=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function ai(r){let t={address:null,publicKey:null};if(!r)return t;try{t.address=await r.getAddress()}catch{}try{t.publicKey=await r.getPublicKey()}catch{}return t}function oi(r,t,e){return null}var Ye=(r,t)=>{let e=null;try{e=R(r)}catch{return[]}let n=e?.action;return!n||n.type!=="contract"&&n.type!=="transfer"?[]:(n.inputs??[]).some(s=>s.position==="value"||s.position==="transfer"||s.type==="asset")?[t.nativeToken.identifier]:[]},ci=async(r,t,e,n)=>{try{let i=C(e,n),a=Ye(r,i.chainInfo);if(!a.length)return!0;let s=await i.dataLoader.getAccountAssets(t),p=new Map(s.map(l=>[l.identifier,l.amount??0n]));return a.every(l=>(p.get(l)??0n)>0n)}catch{return!0}};import{Mppx as tr,tempo as er}from"mppx/client";async function se(r){for(let t of r){if(!t.wallet.getMppAccount)continue;let e=await t.wallet.getMppAccount().catch(()=>null);if(!e)continue;return A.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),tr.create({methods:[er({account:e})],polyfill:!1}).fetch}return fetch}var I=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t===m.Tuple&&Array.isArray(e)){if(e.length===0)return t+c.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(c.ArgCompositeSeparator)})${c.ArgParamsSeparator}${a.join(c.ArgListSeparator)}`}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===m.Struct&&typeof e=="object"&&e!==null&&!Array.isArray(e)){let n=e;if(!n._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=n._name,a=Object.keys(n).filter(p=>p!=="_name");if(a.length===0)return`${t}(${i})${c.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${c.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${c.ArgParamsSeparator}${s.join(c.ArgListSeparator)}`}if(t===m.Vector&&Array.isArray(e)){if(e.length===0)return`${t}${c.ArgParamsSeparator}`;if(e.every(n=>typeof n=="string"&&n.includes(c.ArgParamsSeparator))){let n=e[0],i=n.indexOf(c.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(c.ArgParamsSeparator),u=l.substring(o+1);return a.startsWith(m.Tuple)?u.replace(c.ArgListSeparator,c.ArgCompositeSeparator):u}),p=a.startsWith(m.Struct)?c.ArgStructSeparator:c.ArgListSeparator;return t+c.ArgParamsSeparator+a+c.ArgParamsSeparator+s.join(p)}return t+c.ArgParamsSeparator+e.join(c.ArgListSeparator)}if(t===m.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?m.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount)+c.ArgCompositeSeparator+String(e.decimals):m.Asset+c.ArgParamsSeparator+e.identifier+c.ArgCompositeSeparator+String(e.amount);if(this.typeRegistry){let n=this.typeRegistry.getHandler(t);if(n)return n.nativeToString(e);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,e)}return t+c.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(c.ArgParamsSeparator),n=e[0],i=e.slice(1).join(c.ArgParamsSeparator);if(n==="null")return[n,null];if(n===m.Option){let[a,s]=i.split(c.ArgParamsSeparator);return[m.Option+c.ArgParamsSeparator+a,s||null]}if(n===m.Vector){let a=i.indexOf(c.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(m.Struct)?c.ArgStructSeparator:c.ArgListSeparator,u=(p?p.split(l):[]).map(d=>this.stringToNative(s+c.ArgParamsSeparator+d)[1]);return[m.Vector+c.ArgParamsSeparator+s,u]}else if(n.startsWith(m.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(c.ArgCompositeSeparator),p=i.split(c.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${c.IdentifierParamSeparator}${l}`)[1]);return[n,p]}else if(n.startsWith(m.Struct)){let a=n.match(/\(([^)]+)\)/);if(!a)throw new Error("Struct type must include a name in the format struct(Name)");let p={_name:a[1]};return i&&i.split(c.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${c.ArgParamsSeparator}]+)${c.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,u,d,g]=o;p[u]=this.stringToNative(`${d}${c.IdentifierParamSeparator}${g}`)[1]}}),[n,p]}else{if(n===m.String)return[n,i];if(n===m.Uint8||n===m.Uint16||n===m.Uint32)return[n,Number(i)];if(n===m.Uint64||n===m.Uint128||n===m.Uint256||n===m.Biguint)return[n,BigInt(i||0)];if(n===m.Bool)return[n,i==="true"];if(n===m.Address)return[n,i];if(n===m.Hex)return[n,i];if(n===m.Asset){let[a,s]=i.split(c.ArgCompositeSeparator),p={identifier:a,amount:BigInt(s)};return[n,p]}}if(this.typeRegistry){let a=this.typeRegistry.getHandler(n);if(a){let p=a.stringToNative(i);return[n,p]}let s=this.typeRegistry.resolveType(n);if(s!==n){let[p,l]=this.stringToNative(`${s}:${i}`);return[n,l]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(c.ArgParamsSeparator)){let[e,n]=t.split(c.ArgParamsSeparator);return[e,n]}return typeof t=="number"?[m.Uint32,t]:typeof t=="bigint"?[m.Uint64,t]:typeof t=="boolean"?[m.Bool,t]:[typeof t,t]}};var vi=r=>new I().nativeToString(m.String,r),Ci=r=>new I().nativeToString(m.Uint8,r),xi=r=>new I().nativeToString(m.Uint16,r),Ai=r=>new I().nativeToString(m.Uint32,r),wi=r=>new I().nativeToString(m.Uint64,r),Ii=r=>new I().nativeToString(m.Biguint,r),Si=r=>new I().nativeToString(m.Bool,r),Pi=r=>new I().nativeToString(m.Address,r),oe=r=>new I().nativeToString(m.Asset,r),bi=r=>new I().nativeToString(m.Hex,r),Ti=(r,t)=>{if(t===null)return m.Option+c.ArgParamsSeparator;let e=r(t),n=e.indexOf(c.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return m.Option+c.ArgParamsSeparator+i+c.ArgParamsSeparator+a},Ei=(...r)=>new I().nativeToString(m.Tuple,r),Ri=r=>new I().nativeToString(m.Struct,r),Ni=r=>new I().nativeToString(m.Vector,r);import rr from"ajv";var pe=class{constructor(t){this.pendingBrand={protocol:at("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.ensureValidSchema(n),n}setName(t){return this.pendingBrand.name=t,this}setDescription(t){return this.pendingBrand.description=t,this}setLogo(t){return this.pendingBrand.logo=t,this}setUrls(t){return this.pendingBrand.urls=t,this}setColors(t){return this.pendingBrand.colors=t,this}setCta(t){return this.pendingBrand.cta=t,this}async build(){return this.ensureWarpText(this.pendingBrand.name,"name is required"),this.ensureWarpText(this.pendingBrand.description,"description is required"),typeof this.pendingBrand.logo=="string"&&this.ensure(this.pendingBrand.logo,"logo is required"),await this.ensureValidSchema(this.pendingBrand),this.pendingBrand}ensure(t,e){if(!t)throw new Error(`Warp: ${e}`)}ensureWarpText(t,e){if(!t)throw new Error(`Warp: ${e}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${e}`)}async ensureValidSchema(t){let e=this.config.schema?.brand||k.LatestBrandSchemaUrl,i=await(await fetch(e)).json(),a=new rr,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};import nr from"ajv";var ut=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validatePrimaryAction(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validatePrimaryAction(t){try{let{action:e}=R(t);return e?[]:["Primary action is required"]}catch(e){return[e instanceof Error?e.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(n=>n.inputs?n.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let e=[],n=(i,a)=>{i&&Object.keys(i).forEach(s=>{s!==s.toUpperCase()&&e.push(`${a} name '${s}' must be uppercase`)})};return n(t.vars,"Variable"),n(t.output,"Output"),t.trigger?.type==="webhook"&&t.trigger.inputs&&n(t.trigger.inputs,"Webhook trigger input"),e}validateAbiIsSetIfApplicable(t){let e=t.actions.some(s=>s.type==="contract"),n=t.actions.some(s=>s.type==="query");if(!e&&!n)return[];let i=t.actions.some(s=>s.abi),a=Object.values(t.output||{}).some(s=>s.startsWith("out.")||s.startsWith("event."));return t.output&&!i&&a?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let e=this.config.schema?.warp||k.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new nr({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var le=class{constructor(t){this.config=t;this.pendingWarp={protocol:at("warp"),name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,e=!0){let n=JSON.parse(t);return e&&await this.validate(n),n}async createFromUrl(t){return await(await fetch(t)).json()}setChain(t){return this.pendingWarp.chain=t,this}setName(t){return this.pendingWarp.name=t,this}setTitle(t){return this.pendingWarp.title=t,this}setDescription(t){return this.pendingWarp.description=t,this}setPreview(t){return this.pendingWarp.preview=t,this}setActions(t){return this.pendingWarp.actions=t,this}addAction(t){return this.pendingWarp.actions.push(t),this}setOutput(t){return this.pendingWarp.output=t??void 0,this}async build(t=!0){return this.ensure(this.pendingWarp.protocol,"protocol is required"),this.ensure(this.pendingWarp.name,"name is required"),this.ensureWarpText(this.pendingWarp.title,"title is required"),this.ensure(this.pendingWarp.actions.length>0,"actions are required"),t&&await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,e=100){return qt(t,e)}ensure(t,e){if(!t)throw new Error(e)}ensureWarpText(t,e){if(!t)throw new Error(e);if(typeof t=="object"&&!t.en)throw new Error(e)}async validate(t){let n=await new ut(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
+ `))}};import{existsSync as Nt,mkdirSync as ir,readdirSync as ce,readFileSync as ar,unlinkSync as Bt,writeFileSync as sr}from"fs";import{join as ue,resolve as de}from"path";var Rt="$bigint:",dt=(r,t)=>typeof t=="bigint"?Rt+t.toString():t,_=(r,t)=>typeof t=="string"&&t.startsWith(Rt)?BigInt(t.slice(Rt.length)):t;var gt=class{constructor(t,e){let n=e?.path;this.cacheDir=n?de(n):de(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){Nt(this.cacheDir)||ir(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return ue(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!Nt(e))return null;let n=ar(e,"utf-8"),i=JSON.parse(n,_);return i.expiresAt!==null&&Date.now()>i.expiresAt?(Bt(e),null):i.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null},a=this.getFilePath(t);sr(a,JSON.stringify(i,dt),"utf-8")}async delete(t){try{let e=this.getFilePath(t);Nt(e)&&Bt(e)}catch{}}async keys(t){try{let e=ce(this.cacheDir).filter(i=>i.endsWith(".json")).map(i=>i.slice(0,-5));if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}catch{return[]}}async clear(){try{ce(this.cacheDir).forEach(e=>{e.endsWith(".json")&&Bt(ue(this.cacheDir,e))})}catch{}}};var Y=class{constructor(t,e){this.prefix="warp-cache"}getKey(t){return`${this.prefix}:${t}`}async get(t){try{let e=localStorage.getItem(this.getKey(t));if(!e)return null;let n=JSON.parse(e,_);return n.expiresAt!==null&&Date.now()>n.expiresAt?(localStorage.removeItem(this.getKey(t)),null):n.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null};localStorage.setItem(this.getKey(t),JSON.stringify(i,dt))}async delete(t){localStorage.removeItem(this.getKey(t))}async keys(t){let e=[];for(let i=0;i<localStorage.length;i++){let a=localStorage.key(i);a?.startsWith(this.prefix+":")&&e.push(a.slice(this.prefix.length+1))}if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){for(let t=0;t<localStorage.length;t++){let e=localStorage.key(t);e?.startsWith(this.prefix)&&localStorage.removeItem(e)}}};var H=class H{constructor(t,e){}async get(t){let e=H.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(H.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;H.cache.set(t,{value:e,expiresAt:i})}async delete(t){H.cache.delete(t)}async keys(t){let e=Array.from(H.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){H.cache.clear()}};H.cache=new Map;var tt=H;import{readFileSync as or}from"fs";import{resolve as ge}from"path";var ft=class{constructor(t,e){let n=e?.path?ge(e.path):ge(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=or(t,"utf-8");return new Map(Object.entries(JSON.parse(e,_)))}catch(e){return A.warn(`StaticCacheStrategy (loadManifest): Failed to load manifest from ${t}:`,e),new Map}}async get(t){let e=this.cache.get(t);return!e||e.expiresAt!==null&&Date.now()>e.expiresAt?(e&&this.cache.delete(t),null):e.value}async set(t,e,n){let i=n?Date.now()+n*1e3:null,a={value:e,expiresAt:i};this.cache.set(t,a)}async delete(t){this.cache.delete(t)}async keys(t){let e=Array.from(this.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){this.cache.clear()}};var fe={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},mt={Warp:(r,t)=>`warp:${r}:${t}`,WarpAbi:(r,t)=>`warp-abi:${r}:${t}`,WarpExecutable:(r,t,e)=>`warp-exec:${r}:${t}:${e}`,RegistryInfo:(r,t)=>`registry-info:${r}:${t}`,Brand:(r,t)=>`brand:${r}:${t}`,Asset:(r,t,e)=>`asset:${r}:${t}:${e}`,AccountNfts:(r,t,e,n,i)=>`account-nfts:${r}:${t}:${e}:${n}:${i}`},ht=class{constructor(t,e){this.strategy=this.selectStrategy(t,e)}selectStrategy(t,e){return e?.adapter?e.adapter:e?.type==="localStorage"?new Y(t,e):e?.type==="memory"?new tt(t,e):e?.type==="static"?new ft(t,e):e?.type==="filesystem"?new gt(t,e):typeof window<"u"&&window.localStorage?new Y(t,e):new tt(t,e)}async set(t,e,n){await this.strategy.set(t,e,n)}async get(t){return await this.strategy.get(t)}async delete(t){await this.strategy.delete(t)}async keys(t){return await this.strategy.keys(t)}async clear(){await this.strategy.clear()}};var et={Queries:"QUERIES",Payload:"PAYLOAD",Headers:"HEADERS"},$t={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},Ft=(r,t,e)=>{let n=r.find(a=>a.input.as===t||a.input.name===t);if(!n?.value)return null;let[,i]=e.stringToNative(n.value);return typeof i=="string"?i:String(i)},Ot=r=>{try{return JSON.parse(r)}catch{return null}},pr=async(r,t,e,n,i,a)=>{let s=new Headers;if(s.set("Content-Type","application/json"),s.set("Accept","application/json"),a&&n){let{message:l,nonce:o,expiresAt:u}=await Tt(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Et(n,d,o,u)).forEach(([g,f])=>s.set(g,f))}let p=Ft(e.resolvedInputs,et.Headers,i);if(p){let l=Ot(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,u])=>typeof u=="string"&&s.set(o,u))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},lr=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===$t.Get){let s=Ft(e.resolvedInputs,et.Queries,i);if(s){let p=Ot(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,u])=>u!=null&&l.searchParams.set(o,String(u))),a=l.toString()}}}return a},cr=(r,t,e,n,i)=>{if(r===$t.Get)return;let a=Ft(t.resolvedInputs,et.Payload,n);if(a&&Ot(a)!==null)return a;let{[et.Payload]:s,[et.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},he=async(r,t,e,n,i,a,s,p)=>{let l=t.method||$t.Get,o=await pr(r,t,e,n,a,p),u=lr(r,t,e,l,a),d=cr(l,e,i,a,s);return{url:u,method:l,headers:o,body:d}};var $=class{constructor(t,e,n){this.config=t;this.adapter=e;this.adapters=n}async apply(t,e={}){let n=this.applyVars(t,e),i=await this.applyGlobals(n);return e.envs?this.applyEnvs(i,e.envs):i}applyEnvs(t,e){if(!e||Object.keys(e).length===0)return t;let n=JSON.stringify(t);for(let[i,a]of Object.entries(e)){if(a==null)continue;let s=JSON.stringify(String(a)).slice(1,-1);n=n.replace(new RegExp(`\\{\\{${ur(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=P(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(c.Vars.Query+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Query.length+1),[o,u]=l.split(c.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(o):null,f=e.queries?.[o]??null??d;f!=null&&a(s,f)}else if(p.startsWith(c.Vars.Env+c.ArgParamsSeparator)){let l=p.slice(c.Vars.Env.length+1),[o,u]=l.split(c.ArgCompositeSeparator),g={...this.config.vars,...e.envs}?.[o];g!=null&&a(s,g)}else p===c.Source.UserWallet&&n?a(s,n):a(s,p)}),JSON.parse(i)}async applyRootGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}async applyActionGlobals(t){let e=JSON.stringify(t),n={config:this.config,adapter:this.adapter};return Object.values(c.Globals).forEach(i=>{let a=i.Accessor(n);a!=null&&(e=e.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),a.toString())),e=this.replacePlaceholdersWithChain(e,i.Placeholder,n,i.Accessor)}),JSON.parse(e)}applyInputs(t,e,n,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let a=this.applyGlobalsToText(t),s=this.buildInputBag(e,n,i);return L(a,s)}applyGlobalsToText(t){if(!Object.values(c.Globals).map(s=>s.Placeholder).some(s=>t.includes(`{{${s}}}`)||t.includes(`{{${s}:`)))return t;let i={config:this.config,adapter:this.adapter},a=t;return Object.values(c.Globals).forEach(s=>{let p=s.Accessor(i);p!=null&&(a=a.replace(new RegExp(`{{${s.Placeholder}}}`,"g"),p.toString())),a=this.replacePlaceholdersWithChain(a,s.Placeholder,i,s.Accessor)}),a}replacePlaceholdersWithChain(t,e,n,i){let a=new RegExp(`\\{\\{${e}:([^}]+)\\}\\}`,"g");return t.replace(a,(s,p)=>{let l=p.trim().toLowerCase();if(!this.adapters)return s;try{let o=C(l,this.adapters),u={config:this.config,adapter:o},d=i(u);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e,n){let i={};return t.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);i[s]=String(p)}),n&&n.forEach(a=>{if(!a.value)return;let s=a.input.as||a.input.name,[,p]=e.stringToNative(a.value);if(i[`primary.${s}`]=String(p),a.input.type==="asset"&&typeof a.input.position=="object"){let l=p;l&&typeof l=="object"&&"identifier"in l&&"amount"in l&&(i[`primary.${s}.token`]=String(l.identifier),i[`primary.${s}.amount`]=String(l.amount))}}),i}},ur=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var dr=["collect","compute","mcp","state","mount","unmount"],J=class{constructor(t,e){this.config=t;this.adapters=e;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new I,this.cache=new ht(t.env,t.cache)}getSerializer(){return this.serializer}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(mt.WarpExecutable(t,e||"",n))||[];return V(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(mt.WarpExecutable(t,e||"",n))||[]}async createExecutable(t,e,n,i={}){let a=T(t,e);if(!a)throw new Error("WarpFactory: Action not found");let s=await this.getChainInfoForWarp(t,n),p=C(s.name,this.adapters),l=new $(this.config,p,this.adapters),o=await l.apply(t,i),u=T(o,e),{action:d,index:g}=R(o),f=this.getStringTypedInputs(d,n),h=await this.getResolvedInputs(s.name,d,f,l,i.queries),y=await this.getModifiedInputs(h),v=[],W=[];g===e-1?(v=h,W=y):this.requiresPayloadInputs(u)&&(v=await this.resolveActionInputs(s.name,u,n,l,i.queries),W=await this.getModifiedInputs(v));let w=W.find(b=>b.input.position==="receiver"||b.input.position==="destination")?.value,U=this.getDestinationFromAction(u),x=w?this.serializer.stringToNative(w)[1]:U;if(x&&(x=l.applyInputs(x,W,this.serializer,y)),!x&&!dr.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let N=this.getPreparedArgs(u,W);N=N.map(b=>l.applyInputs(b,W,this.serializer,y));let F=W.find(b=>b.input.position==="value")?.value||null,E="value"in u?u.value:null,B=F?.split(c.ArgParamsSeparator)[1]||E||"0",D=l.applyInputs(B,W,this.serializer,y),ve=BigInt(D),Ce=W.filter(b=>b.input.position==="transfer"&&b.value).map(b=>b.value),xe=[...("transfers"in u?u.transfers:[])||[],...Ce||[]].map(b=>{let Ct=l.applyInputs(b,W,this.serializer,y),Se=Ct.startsWith(`asset${c.ArgParamsSeparator}`)?Ct:`asset${c.ArgParamsSeparator}${Ct}`;return this.serializer.stringToNative(Se)[1]}),Ae=W.find(b=>b.input.position==="data")?.value,we="data"in u?u.data||"":null,Vt=Ae||we||null,Ie=Vt?l.applyInputs(Vt,W,this.serializer,y):null,Lt={adapter:p,warp:o,chain:s,action:e,destination:x,args:N,value:ve,transfers:xe,data:Ie,resolvedInputs:W};return await this.cache.set(mt.WarpExecutable(this.config.env,o.meta?.hash||"",e),Lt.resolvedInputs,fe.OneWeek),Lt}async getChainInfoForWarp(t,e){if(t.chain)return C(t.chain,this.adapters).chainInfo;if(e){let i=await this.tryGetChainFromInputs(t,e);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,e){let n=t.inputs||[];return e.map((i,a)=>{let s=n[a];return!s||i.includes(c.ArgParamsSeparator)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(u=>i.applyInputs(u,[],this.serializer)),l=await Promise.all(p.map(u=>this.preprocessInput(t,u))),o=(u,d)=>{if(u.source===c.Source.UserWallet){let v=P(this.config,t);return v?this.serializer.nativeToString("address",v):null}if(u.source==="hidden"){if(u.default===void 0)return null;let v=i?i.applyInputs(String(u.default),[],this.serializer):String(u.default);return this.serializer.nativeToString(u.type,v)}if(l[d])return l[d];let g=u.as||u.name,f=a?.[g],h=this.url.searchParams.get(g),y=f||h;return y?this.serializer.nativeToString(u.type,String(y)):null};return s.map((u,d)=>{let g=o(u,d),f=u.default!==void 0?i?i.applyInputs(String(u.default),[],this.serializer):String(u.default):void 0;return{input:u,value:g||(f!==void 0?this.serializer.nativeToString(u.type,f):null)}})}async resolveInputsFromQuery(t,e,n){let i=T(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=C(a.name,this.adapters),p=new $(this.config,s,this.adapters);return this.getResolvedInputs(a.name,i,[],p,n)}requiresPayloadInputs(t){return t.inputs?.some(e=>typeof e.position=="string"&&e.position.startsWith("payload:"))??!1}async resolveActionInputs(t,e,n,i,a){let s=this.getStringTypedInputs(e,n);return await this.getResolvedInputs(t,e,s,i,a)}async getModifiedInputs(t){let e=[];for(let n=0;n<t.length;n++){let i=t[n];if(i.input.modifier?.startsWith("scale:")){let[,a]=i.input.modifier.split(":");if(isNaN(Number(a))){let s=Number(t.find(o=>o.input.name===a)?.value?.split(":")[1]);if(!s)throw new Error(`WarpActionExecutor: Exponent value not found for input ${a}`);let p=i.value?.split(":")[1];if(!p)throw new Error("WarpActionExecutor: Scalable value not found");let l=st(p,+s);e.push({...i,value:`${i.input.type}:${l}`})}else{let s=i.value?.split(":")[1];if(!s)throw new Error("WarpActionExecutor: Scalable value not found");let p=st(s,+a);e.push({...i,value:`${i.input.type}:${p}`})}}else if(i.input.modifier?.startsWith(c.Transform.Prefix)){let a=i.input.modifier.substring(c.Transform.Prefix.length),s=this.config.transform?.runner;if(!s||typeof s.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let p=ct(t,this.serializer,n,i),l=await s.run(a,p);if(l==null)e.push(i);else{let o=this.serializer.nativeToString(i.input.type,l);e.push({...i,value:o})}}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=Pt(e),a=C(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(c.ArgCompositeSeparator);if(l)return e;let o=await a.dataLoader.getAsset(s);if(!o)throw new Error(`WarpFactory: Asset not found for asset ${s}`);if(typeof o.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${s}`);let u=st(p,o.decimals);return oe({...o,amount:u})}else return e}catch(n){throw A.warn("WarpFactory: Preprocess input failed",n),n}}getDestinationFromAction(t){if("address"in t&&t.address)return t.address;if("destination"in t&&t.destination){if(typeof t.destination=="string")return t.destination;if(typeof t.destination=="object"&&"url"in t.destination)return t.destination.url}return null}getPreparedArgs(t,e){let n="args"in t?t.args||[]:[],i=[];return e.forEach(({input:a,value:s})=>{if(!(!s||!a.position)){if(typeof a.position=="object"){if(a.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${a.name}" has type "${a.type}"`);if(!a.position.token?.startsWith("arg:")||!a.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${a.name}"`);let[p,l]=this.serializer.stringToNative(s),o=l;if(!o||typeof o!="object"||!("identifier"in o)||!("amount"in o))throw new Error(`WarpFactory: Invalid asset value for input "${a.name}"`);let u=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",o.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",o.amount)})}else if(a.position.startsWith("arg:")){let p=Number(a.position.split(":")[1])-1;i.push({index:p,value:s})}}}),i.forEach(({index:a,value:s})=>{for(;n.length<=a;)n.push(void 0);n[a]=s}),n.filter(a=>a!==void 0)}async tryGetChainFromInputs(t,e){let n=t.actions.find(l=>l.inputs?.some(o=>o.position==="chain"));if(!n)return null;let i=n.inputs?.findIndex(l=>l.position==="chain");if(i===-1||i===void 0)return null;let a=e[i];if(!a)throw new Error("Chain input not found");let s=this.serializer.stringToNative(a)[1];return C(s,this.adapters).chainInfo}};var yt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.handlers=n,this.factory=new J(t,e)}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},u={...n,queries:o},{action:d,index:g}=R(t);for(let f=1;f<=t.actions.length;f++){let h=T(t,f);if(!It(h,t))continue;let{tx:y,chain:v,immediateExecution:W,executable:w}=await this.executeAction(t,f,e,u);y&&i.push(y),v&&(a=v),W&&s.push(W),w&&f===g+1&&w.resolvedInputs&&(p=V(w.resolvedInputs))}if(!a&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&s.length>0){let f=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(f))}return{txs:i,chain:a,immediateExecutions:s,resolvedInputs:p}}async executeAction(t,e,n,i={}){let a=T(t,e);if(a.type==="link")return a.when&&!await this.evaluateWhenCondition(t,a,n,i)?{tx:null,chain:null,immediateExecution:null,executable:null}:(await this.callHandler(async()=>{let o=a.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(o):Dt.open(o,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null});if(a.type==="prompt"){let o=await this.executePrompt(t,a,e,n,i);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:null};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="compute"){let o=await this.executeCompute(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}if(a.type==="state"||a.type==="mount"||a.type==="unmount")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="mcp"){let o=await this.executeMcp(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:u,result:o}),{tx:null,chain:null,immediateExecution:o,executable:s}}}let p=C(s.chain.name,this.adapters);if(a.type==="query"){let o=await p.executor.executeQuery(s);if(o.status==="success")await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:s.chain,execution:o,tx:null}));else{let u=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:u,result:o})}return{tx:null,chain:s.chain,immediateExecution:o,executable:s}}return{tx:await p.executor.createTransaction(s),chain:s.chain,immediateExecution:null,executable:s}}async evaluateOutput(t,e){if(e.length===0||t.actions.length===0||!this.handlers)return;let n=await this.factory.getChainInfoForWarp(t),i=C(n.name,this.adapters),a=(await Promise.all(t.actions.map(async(s,p)=>{if(!It(s,t)||s.type!=="transfer"&&s.type!=="contract")return null;let l=e[p],o=p+1;if(!l){let f=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),h={status:"error",warp:t,action:o,user:P(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:f};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:h})),h}let u=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(u.length===0){let f=t.meta?.query;f&&Object.keys(f).length>0&&(u=await this.factory.resolveInputsFromQuery(t,o,f))}let d=await i.output.getActionExecution(t,o,l.tx,u),g=gr(u,d.output);return d.next=lt(this.config,this.adapters,t,o,g,d.status),d.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:o,chain:n,execution:d,tx:l})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(d.values),result:d})),d}))).filter(s=>s!==null);if(a.every(s=>s.status==="success")){let s=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(s))}else{let s=a.find(p=>p.status!=="success");await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(a)}`,result:s}))}}async executeCollect(t,e){let n=P(this.config,t.chain.name),i=T(t.warp,t.action),a=this.factory.getSerializer(),s=G(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Z(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=P(this.config,t.chain.name),n=this.factory.getSerializer(),i=G(t.resolvedInputs,n),{values:a,output:s}=await Z(t.warp,i,t.action,t.resolvedInputs,n,this.config);return this.buildCollectResult(t,e,"success",a,s)}async doHttpRequest(t,e,n,i,a){let s=new $(this.config,C(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:u,body:d}=await he(s,e,t,n,i,p,a,async g=>await this.callHandler(()=>this.handlers?.onSignRequest?.(g)));A.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:u,body:d});try{let g={method:o,headers:u,body:d},h=await(await se(this.adapters))(l,g);A.debug("Collect response status",{status:h.status});let y=await h.json();A.debug("Collect response content",{content:y});let{values:v,output:W}=await Z(t.warp,y,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,P(this.config,t.chain.name),h.ok?"success":"error",v,W,y)}catch(g){A.error("WarpActionExecutor: Error executing collect",g);let f=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(n=>n.input.position==="receiver"||n.input.position==="destination")?.value||t.destination}async executeMcp(t,e){let n=P(this.config,t.chain.name),i=T(t.warp,t.action);if(!i.destination){let f=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("WarpExecutor: MCP action requires destination")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:new Error("Please install @modelcontextprotocol/sdk to execute MCP warps or mcp actions")},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}let p=this.factory.getSerializer(),l=new $(this.config,C(t.chain.name,this.adapters),this.adapters),o=i.destination,u=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),g={};o.headers&&Object.entries(o.headers).forEach(([f,h])=>{let y=l.applyInputs(h,t.resolvedInputs,this.factory.getSerializer());g[f]=y}),A.debug("WarpExecutor: Executing MCP",{url:u,tool:d,headers:g});try{let f=new s(new URL(u),{requestInit:{headers:g}}),h=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await h.connect(f);let y={};t.resolvedInputs.forEach(({input:x,value:N})=>{if(N&&x.position&&typeof x.position=="string"&&x.position.startsWith("payload:")){let F=x.position.replace("payload:",""),[E,B]=p.stringToNative(N);if(E==="string")y[F]=String(B);else if(E==="bool")y[F]=!!B;else if(E==="uint8"||E==="uint16"||E==="uint32"||E==="uint64"||E==="uint128"||E==="uint256"||E==="biguint"){let D=Number(B);y[F]=(Number.isInteger(D),D)}else y[F]=B}}),e&&Object.assign(y,e);let v=await h.callTool({name:d,arguments:y});await h.close();let W;if(v.content&&v.content.length>0){let x=v.content[0];if(x.type==="text")try{W=JSON.parse(x.text)}catch{W=x.text}else x.type,W=x}else W=v;let{values:w,output:U}=await Z(t.warp,W,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",w,U,v)}catch(f){A.error("WarpExecutor: Error executing MCP",f);let h=V(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:f},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}buildCollectResult(t,e,n,i,a,s){let p=lt(this.config,this.adapters,t.warp,t.action,a,n),l=V(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||P(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages:bt(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=C(s.name,this.adapters),l=new $(this.config,p,this.adapters),o=await l.apply(t,a),u=T(o,n),{action:d}=R(o),g=this.factory.getStringTypedInputs(d,i),f=await this.factory.getResolvedInputs(s.name,d,g,l,a.queries),h=await this.factory.getModifiedInputs(f),y=h;if(e.inputs&&e.inputs.length>0){let B=this.factory.getStringTypedInputs(e,i),D=await this.factory.getResolvedInputs(s.name,e,B,l,a.queries);y=await this.factory.getModifiedInputs(D)}let v=ne(u.prompt,this.config.platform),W=l.applyInputs(v,y,this.factory.getSerializer(),h),w=V(y),U=P(this.config,s.name),x=this.factory.getSerializer(),{values:N,output:F}=await re(o,W,n,y,x,this.config),E=y.find(B=>B.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:U,txHash:null,tx:null,next:pt(this.config,this.adapters,o,n,F),values:N,output:F,messages:bt(o,F,this.config),destination:E,resolvedInputs:w}}catch(s){return A.error("WarpExecutor: Error executing prompt action",s),{status:"error",warp:t,action:n,user:null,txHash:null,tx:null,next:lt(this.config,this.adapters,t,n,{},"error"),values:{string:[],native:[],mapped:{}},output:{_DATA:s},messages:{},destination:null,resolvedInputs:[]}}}async evaluateWhenCondition(t,e,n,i,a,s){if(!e.when)return!0;let p=s?{name:s}:await this.factory.getChainInfoForWarp(t,n),l=C(p.name,this.adapters),o=new $(this.config,l,this.adapters),{action:u}=R(t),d=this.factory.getStringTypedInputs(u,n),g=await this.factory.getResolvedInputs(p.name,u,d,o,i.queries),f=await this.factory.getModifiedInputs(g),h;if(a)h=a;else{let w=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);h=await this.factory.getModifiedInputs(w)}let y=o.buildInputBag(h,this.factory.getSerializer(),f),v={...i.envs??{},...y},W=zt(e.when,v);return Gt(W)}},gr=(r,t)=>{let e=Object.fromEntries((r??[]).flatMap(i=>{let a=i.input.as||i.input.name;return a?[[a,i.value]]:[]})),n=Object.fromEntries(Object.entries(t).filter(([,i])=>i!=null));return{...e,...n}};var Wt=class{constructor(t){this.config=t}async search(t,e,n){if(!this.config.index?.url)throw new Error("WarpIndex: Index URL is not set");try{let i=await fetch(this.config.index?.url,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.index?.apiKey}`,...n},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...e})});if(!i.ok)throw new Error(`WarpIndex: search failed with status ${i.status}: ${await i.text()}`);return(await i.json()).hits}catch(i){throw A.error("WarpIndex: Error searching for warps: ",i),i}}};var vt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(c.HttpProtocolPrefix)?!!K(t,this.config.defaultChain):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(o=>o[0]).filter(o=>this.isValid(o)).map(o=>this.detect(o)),s=(await Promise.all(i)).filter(o=>o.match),p=s.length>0,l=s.map(o=>({url:o.url,warp:o.warp}));return{match:p,output:l}}async detect(t,e){let n={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(c.HttpProtocolPrefix)?K(t,this.config.defaultChain):O(t,this.config.defaultChain);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,u=t.startsWith(c.HttpProtocolPrefix)?Jt(t):Qt(i.identifier);if(this.resolver){let h=null;if(a==="hash")h=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;h=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}h&&(p=h.warp,l=h.registryInfo,o=h.brand)}else{let h=C(i.chain,this.adapters);if(a==="hash"){p=await h.builder().createFromTransactionHash(s,e);let y=await h.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await h.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await h.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(fr(p,i.chain,l,i.identifier),p.meta.query=u?Kt(u):null),!p)return n;let d=p.chain||i.chain,g=this.adapters.find(h=>h.chainInfo.name.toLowerCase()===d.toLowerCase()),f=g?await new $(this.config,g,this.adapters).apply(p):p;return{match:!0,url:t,warp:f,chain:d,registryInfo:l,brand:o}}catch(a){return A.error("Error detecting warp link",a),n}}},fr=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?St(null,"alias",e.alias):St(t,"hash",e?.hash??n))};var me=class{constructor(t,e){this.config=t;this.options=e;this.chains=e.chains.map(n=>n(this.config)),this.resolver=e.resolver??this.buildDefaultResolver()}buildDefaultResolver(){let t=this.chains.map(e=>new rt(e));return new nt(t)}getConfig(){return this.config}getResolver(){return this.resolver}createExecutor(t){return new yt(this.config,this.chains,t)}async detectWarp(t,e){return new vt(this.config,this.chains,this.resolver).detect(t,e)}async executeWarp(t,e,n,i={}){let a=typeof t=="object",s=!a&&t.startsWith("http")&&t.endsWith(".json"),p=a?t:null;if(!p&&s){let h=await fetch(t);if(!h.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await h.json()}if(p||(p=(await this.detectWarp(t,i.cache)).warp),!p)throw new Error("Warp not found");let l=this.createExecutor(n),{txs:o,chain:u,immediateExecutions:d,resolvedInputs:g}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:u,immediateExecutions:d,evaluateOutput:async h=>{await l.evaluateOutput(p,h)},resolvedInputs:g}}async createInscriptionTransaction(t,e){return await C(t,this.chains).builder().createInscriptionTransaction(e)}async createFromTransaction(t,e,n=!1){return C(t,this.chains).builder().createFromTransaction(e,n)}async createFromTransactionHash(t,e){let n=O(t,this.config.defaultChain);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return C(n.chain,this.chains).builder().createFromTransactionHash(t,e)}async signMessage(t,e){if(!P(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return C(t,this.chains).wallet.signMessage(e)}async getActions(t,e,n=!1){let i=this.getDataLoader(t);return(await Promise.all(e.map(async s=>i.getAction(s,n)))).filter(s=>s!==null)}getExplorer(t){return C(t,this.chains).explorer}getOutput(t){return C(t,this.chains).output}async getActionExecution(t,e,n,i){let a=i??R(e).index+1,p=await C(t,this.chains).output.getActionExecution(e,a,n);return p.next=pt(this.config,this.chains,e,a,p.output),p}async getRegistry(t){let e=C(t,this.chains).registry;return await e.init(),e}getDataLoader(t){return C(t,this.chains).dataLoader}getWallet(t){return C(t,this.chains).wallet}get factory(){return new J(this.config,this.chains)}get index(){return new Wt(this.config)}get linkBuilder(){return new z(this.config,this.chains)}createBuilder(t){return C(t,this.chains).builder()}createAbiBuilder(t){return C(t,this.chains).abiBuilder()}createBrandBuilder(t){return C(t,this.chains).brandBuilder()}createSerializer(t){return C(t,this.chains).serializer}resolveText(t){return ot(t,this.config)}};var ye=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,e){this.typeHandlers.set(t,e)}registerTypeAlias(t,e){this.typeAliases.set(t,e)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let e=this.typeAliases.get(t);return e?this.getHandler(e):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let e=this.typeAliases.get(t);return e?this.resolveType(e):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};function ss(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(We(t,n)!==i)return!1;return!0}function os(r,t){let e={};for(let[n,i]of Object.entries(r.inputs??{}))e[n]=i.includes(".")?We(t,i):i;return e}function We(r,t){return t.split(".").reduce((e,n)=>e?.[n],r)}export{At as BrowserCryptoProvider,Nr as CLOUD_WALLET_PROVIDERS,fe as CacheTtl,Er as EvmWalletChainNames,Rr as MultiversxWalletChainNames,wt as NodeCryptoProvider,on as WARP_LANGUAGES,S as WarpAssets,pe as WarpBrandBuilder,le as WarpBuilder,ht as WarpCache,mt as WarpCacheKey,Fe as WarpChainDisplayNames,Oe as WarpChainLogos,$e as WarpChainName,rt as WarpChainResolver,me as WarpClient,nt as WarpCompositeResolver,k as WarpConfig,c as WarpConstants,yt as WarpExecutor,J as WarpFactory,Wt as WarpIndex,m as WarpInputTypes,$ as WarpInterpolator,z as WarpLinkBuilder,vt as WarpLinkDetecter,A as WarpLogger,Ht as WarpPlatformName,Ut as WarpPlatforms,q as WarpProtocolVersions,I as WarpSerializer,ye as WarpTypeRegistry,ut as WarpValidator,Pi as address,bt as applyOutputToMessages,oe as asset,Ii as biguint,Si as bool,Ze as buildGeneratedFallbackWarpIdentifier,ei as buildGeneratedSourceWarpIdentifier,ct as buildInputsContext,G as buildMappedOutput,ke as buildNestedPayload,Jr as bytesToBase64,Ve as bytesToHex,ci as checkWarpAssetBalance,Q as cleanWarpIdentifier,Et as createAuthHeaders,Tt as createAuthMessage,Kr as createCryptoProvider,oi as createDefaultWalletProvider,Xn as createHttpAuthHeaders,Je as createSignableMessage,ln as createWarpI18nText,St as createWarpIdentifier,an as doesWarpRequireWallet,ee as evaluateOutputCommon,Gt as evaluateWhenCondition,Z as extractCollectOutput,K as extractIdentifierInfoFromUrl,re as extractPromptOutput,Qt as extractQueryStringFromIdentifier,Jt as extractQueryStringFromUrl,V as extractResolvedInputValues,Yr as extractWarpSecrets,C as findWarpAdapterForChain,Lr as getChainDisplayName,Hr as getChainLogo,kt as getCryptoProvider,kr as getEventNameFromWarp,Qe as getGeneratedSourceWarpName,at as getLatestProtocolIdentifier,se as getMppFetch,pt as getNextInfo,lt as getNextInfoForStatus,_n as getProviderConfig,Mt as getRandomBytes,jt as getRandomHex,Ye as getRequiredAssetIds,vr as getWalletFromConfigOrFail,T as getWarpActionByIndex,jr as getWarpBrandLogoUrl,qr as getWarpChainAssetLogoUrl,zr as getWarpChainInfoLogoUrl,hn as getWarpIdentifierWithQuery,O as getWarpInfoFromIdentifier,R as getWarpPrimaryAction,Pe as getWarpWalletAddress,P as getWarpWalletAddressFromConfig,Ee as getWarpWalletExternalId,Re as getWarpWalletExternalIdFromConfig,Ar as getWarpWalletExternalIdFromConfigOrFail,Te as getWarpWalletMnemonic,xr as getWarpWalletMnemonicFromConfig,be as getWarpWalletPrivateKey,Cr as getWarpWalletPrivateKeyFromConfig,Wn as hasInputPrefix,bi as hex,ai as initializeWalletCache,gn as isEqualWarpIdentifier,ni as isGeneratedSourcePrivateIdentifier,_e as isPlatformValue,It as isWarpActionAutoExecute,pn as isWarpI18nText,wr as isWarpWalletReadOnly,ss as matchesTrigger,Yt as mergeNestedPayload,Pr as normalizeAndValidateMnemonic,Ne as normalizeMnemonic,Ti as option,Ge as parseOutputOutIndex,Yn as parseSignedMessage,Kt as parseWarpQueryStringToObject,fn as removeWarpChainPrefix,Sr as removeWarpWalletFromConfig,L as replacePlaceholders,zt as replacePlaceholdersInWhenExpression,os as resolveInputs,Zt as resolveNextString,We as resolvePath,ne as resolvePlatformValue,ot as resolveWarpText,Dt as safeWindow,_r as setCryptoProvider,Ir as setWarpWalletInConfig,st as shiftBigintBy,Pt as splitInput,ri as stampGeneratedWarpMeta,vi as string,Ri as struct,Qr as testCryptoAvailability,Me as toInputPayloadValue,qt as toPreviewText,Ei as tuple,xi as uint16,Ai as uint32,wi as uint64,Ci as uint8,Be as validateMnemonicLength,Zn as validateSignedMessage,Ni as vector,Or as withAdapterFallback};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joai/warps",
3
- "version": "4.12.2",
3
+ "version": "4.13.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  "access": "public"
38
38
  },
39
39
  "dependencies": {
40
- "@x402/core": "^2.6.0",
40
+ "mppx": "^0.4.7",
41
41
  "ajv": "^8.18.0",
42
42
  "protobufjs": "^8.0.0",
43
43
  "qr-code-styling": "^1.9.2"