@joai/warps 4.29.7 → 4.31.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
@@ -519,9 +519,13 @@ type WarpOutputName = string;
519
519
  type WarpResulutionPath = string;
520
520
  type WarpMessageName = string;
521
521
  type WarpSchedule = 'minutely' | 'hourly' | 'daily' | 'weekly' | 'monthly' | 'yearly';
522
- type WarpNextConfig = string | string[] | {
523
- success?: string | string[];
524
- error?: string | string[];
522
+ type WarpNextEntry = string | {
523
+ identifier: string;
524
+ when?: string;
525
+ };
526
+ type WarpNextConfig = WarpNextEntry | WarpNextEntry[] | {
527
+ success?: WarpNextEntry | WarpNextEntry[];
528
+ error?: WarpNextEntry | WarpNextEntry[];
525
529
  };
526
530
  type Warp = {
527
531
  protocol: string;
@@ -964,9 +968,9 @@ declare const hasInputPrefix: (input: string) => boolean;
964
968
 
965
969
  declare const applyOutputToMessages: (warp: Warp, output: Record<string, any>, config?: WarpClientConfig) => Record<string, string>;
966
970
 
967
- /** Resolve a next config into an array of strings for the given path. */
968
- declare const resolveNextStrings: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string[] | null;
969
- declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string | null;
971
+ /** Resolve a next config into an array of strings for the given path, optionally filtering by when conditions. */
972
+ declare const resolveNextStrings: (raw: WarpNextConfig | null | undefined, path: "success" | "error", output?: WarpExecutionOutput) => string[] | null;
973
+ declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error", output?: WarpExecutionOutput) => string | null;
970
974
  declare const getNextInfo: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput) => WarpExecutionNextInfo | null;
971
975
  /** Resolve the next chain for a given execution status. For string next, only resolves on success. For object next, resolves the matching path. */
972
976
  declare const getNextInfoForStatus: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput, status: "success" | "error" | "unhandled") => WarpExecutionNextInfo | null;
@@ -1544,4 +1548,4 @@ declare function resolveInputs(trigger: WebhookTrigger, payload: unknown): Recor
1544
1548
  */
1545
1549
  declare function resolvePath(obj: unknown, path: string): unknown;
1546
1550
 
1547
- 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 ContractDeployParams, type ContractFlags, type ContractUpgradeParams, 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, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandSiteConfig, type WarpBrandSiteRoute, 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 WarpIdentifierInfo, type WarpIdentifierType, WarpIndex, type WarpInlineAction, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpLoopAction, 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, type WarpSection, 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, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getMppFetch, getNextInfo, getNextInfoForStatus, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpInputAction, 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, resolveNextStrings, resolvePath, resolvePlatformValue, resolveWarpText, safeWindow, setCryptoProvider, setWarpWalletInConfig, shiftBigintBy, splitInput, stampGeneratedWarpMeta, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateMnemonicLength, validateSignedMessage, vector, withAdapterFallback };
1551
+ 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 ContractDeployParams, type ContractFlags, type ContractUpgradeParams, 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, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandSiteConfig, type WarpBrandSiteRoute, 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 WarpIdentifierInfo, type WarpIdentifierType, WarpIndex, type WarpInlineAction, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpLoopAction, type WarpMcpAction, type WarpMcpDestination, type WarpMessageName, type WarpMeta, type WarpMountAction, type WarpNativeValue, type WarpNextConfig, type WarpNextEntry, 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, type WarpSection, 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, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getMppFetch, getNextInfo, getNextInfoForStatus, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpInputAction, 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, resolveNextStrings, 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
@@ -519,9 +519,13 @@ type WarpOutputName = string;
519
519
  type WarpResulutionPath = string;
520
520
  type WarpMessageName = string;
521
521
  type WarpSchedule = 'minutely' | 'hourly' | 'daily' | 'weekly' | 'monthly' | 'yearly';
522
- type WarpNextConfig = string | string[] | {
523
- success?: string | string[];
524
- error?: string | string[];
522
+ type WarpNextEntry = string | {
523
+ identifier: string;
524
+ when?: string;
525
+ };
526
+ type WarpNextConfig = WarpNextEntry | WarpNextEntry[] | {
527
+ success?: WarpNextEntry | WarpNextEntry[];
528
+ error?: WarpNextEntry | WarpNextEntry[];
525
529
  };
526
530
  type Warp = {
527
531
  protocol: string;
@@ -964,9 +968,9 @@ declare const hasInputPrefix: (input: string) => boolean;
964
968
 
965
969
  declare const applyOutputToMessages: (warp: Warp, output: Record<string, any>, config?: WarpClientConfig) => Record<string, string>;
966
970
 
967
- /** Resolve a next config into an array of strings for the given path. */
968
- declare const resolveNextStrings: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string[] | null;
969
- declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string | null;
971
+ /** Resolve a next config into an array of strings for the given path, optionally filtering by when conditions. */
972
+ declare const resolveNextStrings: (raw: WarpNextConfig | null | undefined, path: "success" | "error", output?: WarpExecutionOutput) => string[] | null;
973
+ declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error", output?: WarpExecutionOutput) => string | null;
970
974
  declare const getNextInfo: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput) => WarpExecutionNextInfo | null;
971
975
  /** Resolve the next chain for a given execution status. For string next, only resolves on success. For object next, resolves the matching path. */
972
976
  declare const getNextInfoForStatus: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput, status: "success" | "error" | "unhandled") => WarpExecutionNextInfo | null;
@@ -1544,4 +1548,4 @@ declare function resolveInputs(trigger: WebhookTrigger, payload: unknown): Recor
1544
1548
  */
1545
1549
  declare function resolvePath(obj: unknown, path: string): unknown;
1546
1550
 
1547
- 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 ContractDeployParams, type ContractFlags, type ContractUpgradeParams, 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, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandSiteConfig, type WarpBrandSiteRoute, 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 WarpIdentifierInfo, type WarpIdentifierType, WarpIndex, type WarpInlineAction, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpLoopAction, 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, type WarpSection, 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, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getMppFetch, getNextInfo, getNextInfoForStatus, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpInputAction, 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, resolveNextStrings, resolvePath, resolvePlatformValue, resolveWarpText, safeWindow, setCryptoProvider, setWarpWalletInConfig, shiftBigintBy, splitInput, stampGeneratedWarpMeta, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateMnemonicLength, validateSignedMessage, vector, withAdapterFallback };
1551
+ 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 ContractDeployParams, type ContractFlags, type ContractUpgradeParams, 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, WarpAssets, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandSiteConfig, type WarpBrandSiteRoute, 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 WarpIdentifierInfo, type WarpIdentifierType, WarpIndex, type WarpInlineAction, WarpInputTypes, WarpInterpolator, type WarpLinkAction, WarpLinkBuilder, WarpLinkDetecter, type WarpLocale, WarpLogger, type WarpLoopAction, type WarpMcpAction, type WarpMcpDestination, type WarpMessageName, type WarpMeta, type WarpMountAction, type WarpNativeValue, type WarpNextConfig, type WarpNextEntry, 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, type WarpSection, 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, getGeneratedSourceWarpName, getLatestProtocolIdentifier, getMppFetch, getNextInfo, getNextInfoForStatus, getProviderConfig, getRandomBytes, getRandomHex, getRequiredAssetIds, getWalletFromConfigOrFail, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpChainAssetLogoUrl, getWarpChainInfoLogoUrl, getWarpIdentifierWithQuery, getWarpInfoFromIdentifier, getWarpInputAction, 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, resolveNextStrings, 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 Xe=Object.create;var At=Object.defineProperty;var Ze=Object.getOwnPropertyDescriptor;var Ye=Object.getOwnPropertyNames;var tr=Object.getPrototypeOf,er=Object.prototype.hasOwnProperty;var rr=(r,t)=>{for(var e in t)At(r,e,{get:t[e],enumerable:!0})},fe=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Ye(t))!er.call(r,i)&&i!==e&&At(r,i,{get:()=>t[i],enumerable:!(n=Ze(t,i))||n.enumerable});return r};var J=(r,t,e)=>(e=r!=null?Xe(tr(r)):{},fe(t||!r||!r.__esModule?At(e,"default",{value:r,enumerable:!0}):e,r)),nr=r=>fe(At({},"__esModule",{value:!0}),r);var Rn={};rr(Rn,{BrowserCryptoProvider:()=>wt,CLOUD_WALLET_PROVIDERS:()=>gr,CacheTtl:()=>ie,EvmWalletChainNames:()=>dr,MultiversxWalletChainNames:()=>fr,NodeCryptoProvider:()=>bt,WARP_LANGUAGES:()=>Tr,WarpAssets:()=>I,WarpBrandBuilder:()=>ee,WarpBuilder:()=>ut,WarpCache:()=>gt,WarpCacheKey:()=>ht,WarpChainDisplayNames:()=>Ce,WarpChainLogos:()=>we,WarpChainName:()=>Ae,WarpChainResolver:()=>rt,WarpClient:()=>pe,WarpCompositeResolver:()=>nt,WarpConfig:()=>D,WarpConstants:()=>u,WarpExecutor:()=>yt,WarpFactory:()=>_,WarpIndex:()=>Wt,WarpInputTypes:()=>m,WarpInterpolator:()=>R,WarpLinkBuilder:()=>q,WarpLinkDetecter:()=>xt,WarpLogger:()=>w,WarpPlatformName:()=>Vt,WarpPlatforms:()=>Ht,WarpProtocolVersions:()=>M,WarpSerializer:()=>b,WarpTypeRegistry:()=>le,WarpValidator:()=>ct,address:()=>ln,applyOutputToMessages:()=>Tt,asset:()=>te,biguint:()=>on,bool:()=>pn,buildGeneratedFallbackWarpIdentifier:()=>Ve,buildGeneratedSourceWarpIdentifier:()=>Qr,buildInputsContext:()=>lt,buildMappedOutput:()=>G,buildNestedPayload:()=>Te,bytesToBase64:()=>Cr,bytesToHex:()=>be,checkWarpAssetBalance:()=>tn,cleanWarpIdentifier:()=>X,createAuthHeaders:()=>$t,createAuthMessage:()=>Rt,createCryptoProvider:()=>br,createDefaultWalletProvider:()=>Yr,createHttpAuthHeaders:()=>qr,createSignableMessage:()=>Oe,createWarpI18nText:()=>Rr,createWarpIdentifier:()=>Pt,doesWarpRequireWallet:()=>Sr,evaluateOutputCommon:()=>Kt,evaluateWhenCondition:()=>K,extractCollectOutput:()=>Y,extractIdentifierInfoFromUrl:()=>Z,extractPromptOutput:()=>Xt,extractQueryStringFromIdentifier:()=>Gt,extractQueryStringFromUrl:()=>zt,extractResolvedInputValues:()=>B,extractWarpSecrets:()=>Ir,findWarpAdapterForChain:()=>W,getChainDisplayName:()=>mr,getChainLogo:()=>yr,getCryptoProvider:()=>Dt,getGeneratedSourceWarpName:()=>Be,getLatestProtocolIdentifier:()=>it,getMppFetch:()=>Yt,getNextInfo:()=>ot,getNextInfoForStatus:()=>pt,getProviderConfig:()=>kr,getRandomBytes:()=>Mt,getRandomHex:()=>kt,getRequiredAssetIds:()=>He,getWalletFromConfigOrFail:()=>ir,getWarpActionByIndex:()=>E,getWarpBrandLogoUrl:()=>Wr,getWarpChainAssetLogoUrl:()=>xr,getWarpChainInfoLogoUrl:()=>vr,getWarpIdentifierWithQuery:()=>jr,getWarpInfoFromIdentifier:()=>V,getWarpInputAction:()=>$,getWarpWalletAddress:()=>ge,getWarpWalletAddressFromConfig:()=>S,getWarpWalletExternalId:()=>ye,getWarpWalletExternalIdFromConfig:()=>We,getWarpWalletExternalIdFromConfigOrFail:()=>or,getWarpWalletMnemonic:()=>me,getWarpWalletMnemonicFromConfig:()=>sr,getWarpWalletPrivateKey:()=>he,getWarpWalletPrivateKeyFromConfig:()=>ar,hasInputPrefix:()=>Lr,hex:()=>cn,initializeWalletCache:()=>Zr,isEqualWarpIdentifier:()=>$r,isGeneratedSourcePrivateIdentifier:()=>Xr,isPlatformValue:()=>Ne,isWarpActionAutoExecute:()=>It,isWarpI18nText:()=>Er,isWarpWalletReadOnly:()=>pr,matchesTrigger:()=>Tn,mergeNestedPayload:()=>Qt,normalizeAndValidateMnemonic:()=>ur,normalizeMnemonic:()=>xe,option:()=>un,parseOutputOutIndex:()=>$e,parseSignedMessage:()=>Gr,parseWarpQueryStringToObject:()=>_t,removeWarpChainPrefix:()=>Br,removeWarpWalletFromConfig:()=>cr,replacePlaceholders:()=>O,replacePlaceholdersInWhenExpression:()=>Q,resolveInputs:()=>En,resolveNextString:()=>Hr,resolveNextStrings:()=>Et,resolvePath:()=>ce,resolvePlatformValue:()=>Zt,resolveWarpText:()=>st,safeWindow:()=>Ft,setCryptoProvider:()=>Ar,setWarpWalletInConfig:()=>lr,shiftBigintBy:()=>at,splitInput:()=>St,stampGeneratedWarpMeta:()=>Kr,string:()=>en,struct:()=>fn,testCryptoAvailability:()=>wr,toInputPayloadValue:()=>Ee,toPreviewText:()=>qt,tuple:()=>dn,uint16:()=>nn,uint32:()=>an,uint64:()=>sn,uint8:()=>rn,validateMnemonicLength:()=>ve,validateSignedMessage:()=>zr,vector:()=>gn,withAdapterFallback:()=>hr});module.exports=nr(Rn);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 ir=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},ge=r=>r?typeof r=="string"?r:r.address:null,S=(r,t)=>ge(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,ar=(r,t)=>he(r.user?.wallets?.[t]||null)?.trim()||null,sr=(r,t)=>me(r.user?.wallets?.[t]||null)?.trim()||null,We=(r,t)=>ye(r.user?.wallets?.[t]||null)?.trim()||null,or=(r,t)=>{let e=We(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},pr=r=>typeof r=="string",lr=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},cr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},xe=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},ve=(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`)},ur=(r,t=24)=>{let e=xe(r);return ve(e,t),e};var Ae=(h=>(h.Multiversx="multiversx",h.Claws="claws",h.Sui="sui",h.Ethereum="ethereum",h.Base="base",h.Arbitrum="arbitrum",h.Polygon="polygon",h.Somnia="somnia",h.Tempo="tempo",h.Fastset="fastset",h.Solana="solana",h.Near="near",h))(Ae||{}),Vt=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Vt||{}),Ht=Object.values(Vt),dr=["ethereum","base","arbitrum","polygon","somnia","tempo"],fr=["multiversx","claws"],gr=["coinbase","privy","gaupa"],u={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",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:"}},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",Datetime:"datetime",Email:"email",Textarea:"textarea",File:"file"},Ft=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.joai.ai":r==="testnet"?"https://testnet.joai.ai":"https://joai.ai",SuperClientUrls:["https://joai.ai","https://devnet.joai.ai","https://testnet.joai.ai","https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",u.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","string[]","json","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 hr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var Ct="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",I={baseUrl:Ct,chainLogo:r=>`${Ct}/chains/logos/${r}`,tokenLogo:r=>`${Ct}/tokens/logos/${r}`,walletLogo:r=>`${Ct}/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"},mr=r=>Ce[r]??r.charAt(0).toUpperCase()+r.slice(1),we={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")}},yr=(r,t="dark")=>{let e=we[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var Ut=(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:Ut(r.logo,e)},xr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ut(r.logoUrl,e)},vr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ut(r.logoUrl,e)};var wt=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}},bt=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"}`)}}},k=null;function Dt(){if(k)return k;if(typeof window<"u"&&window.crypto)return k=new wt,k;if(typeof process<"u"&&process.versions?.node)return k=new bt,k;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Ar(r){k=r}async function Mt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||Dt()).getRandomBytes(r)}function be(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 Cr(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 Mt(r/2,t);return be(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 Mt(16),r.randomBytes=!0}catch{}return r}function br(){return Dt()}var Ir=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${u.Vars.Env}:`)).map(t=>{let e=t.replace(`${u.Vars.Env}:`,"").trim(),[n,i]=e.split(u.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}`)},E=(r,t)=>r?.actions[t-1],Pr=["state","mount","unmount","loop"],$=r=>{if(r.actions.length===0)throw new Error(`Warp has no actions: ${r.meta?.identifier}`);let t=r.actions.find(e=>!Pr.includes(e.type));return t?{action:t,index:r.actions.indexOf(t)}:{action:r.actions[0],index:0}},It=r=>r.auto===!1?!1:r.type==="link"?r.auto===!0:!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)},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},O=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="object"&&i!==null?JSON.stringify(i):String(i)}),Q=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t")}'`:typeof i=="object"&&i!==null?`'${JSON.stringify(i).replace(/'/g,"\\'")}'`:String(i)}),Sr=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===u.Source.UserWallet||n.default===`{{${u.Globals.UserWallet.Placeholder}}}`||n.default===`{{${u.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},K=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 Tr={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""},Er=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,Rr=r=>r;var X=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,$r=(r,t)=>!r||!t?!1:X(r)===X(t),Pt=(r,t,e)=>{let n=X(e);if(t===u.IdentifierType.Alias)return u.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+u.IdentifierParamSeparator+t+u.IdentifierParamSeparator+n},V=r=>{let t=decodeURIComponent(r).trim(),e=X(t),n=e.split("?")[0],i=Ie(n);if(n.length===64&&/^[a-fA-F0-9]+$/.test(n))return{chain:null,type:u.IdentifierType.Hash,identifier:e,identifierBase:n};if(i.length===2&&/^[a-zA-Z0-9]{62}$/.test(i[0])&&/^[a-zA-Z0-9]{2}$/.test(i[1]))return null;if(i.length===3){let[a,s,p]=i;if(s===u.IdentifierType.Alias||s===u.IdentifierType.Hash){let l=e.includes("?")?p+e.substring(e.indexOf("?")):p;return{chain:a,type:s,identifier:l,identifierBase:p}}}if(i.length===2){let[a,s]=i;if(a===u.IdentifierType.Alias||a===u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s;return{chain:null,type:a,identifier:p,identifierBase:s}}}if(i.length===2){let[a,s]=i;if(a!==u.IdentifierType.Alias&&a!==u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s,l=Nr(s,a)?u.IdentifierType.Hash:u.IdentifierType.Alias;return{chain:a,type:l,identifier:p,identifierBase:s}}}return{chain:null,type:u.IdentifierType.Alias,identifier:e,identifierBase:n}},Z=r=>{let t=new URL(r),n=t.searchParams.get(u.IdentifierParamName);if(n||(n=t.pathname.split("/")[1]),!n)return null;let i=decodeURIComponent(n);return V(i)},Nr=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Or=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Ie=r=>{let t=Or(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Ie(a);return[i,...s]},zt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(u.IdentifierParamName),e.toString()||null}catch{return null}},Gt=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},_t=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},Br=r=>{let t=V(r);return(t?t.identifierBase:X(r)).trim()},jr=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]||""]},Lr=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=St(r)[0];return t.has(e)};var Tt=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=st(a,e);return[i,O(s,t)]});return Object.fromEntries(n)};var Pe=J(require("qr-code-styling"),1);var q=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!Z(t):!1}build(t,e,n){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=W(t,this.adapters),s=e===u.IdentifierType.Alias?n:e+u.IdentifierParamSeparator+n,p=a.chainInfo.name+u.IdentifierParamSeparator+s,l=encodeURIComponent(p);return D.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${u.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=V(t);if(!e)return null;if(!e.chain){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=u.IdentifierAliasMarker+e.identifierBase;return D.SuperClientUrls.includes(i)?`${i}/${encodeURIComponent(a)}`:`${i}?${u.IdentifierParamName}=${encodeURIComponent(a)}`}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 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 Vr="https://",Et=(r,t)=>{if(!r)return null;if(typeof r=="string")return t==="success"?[r]:null;if(Array.isArray(r))return t==="success"?r:null;let e=r[t];return e?Array.isArray(e)?e:[e]:null},Hr=(r,t)=>Et(r,t)?.[0]??null,Se=(r,t,e,n,i)=>{if(n.startsWith(Vr))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let f=O(a,{...e.vars,...i});return[{identifier:f,url:Jt(t,f,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let f=O(s,{...e.vars,...i}),g=f?`${a}?${f}`:a;return[{identifier:g,url:Jt(t,g,r)}]}let l=p[0];if(!l)return[];let o=l.match(/{{([^[]+)\[\]/),c=o?o[1]:null;if(!c||i[c]===void 0)return[];let d=Array.isArray(i[c])?i[c]:[i[c]];if(d.length===0)return[];let h=p.filter(f=>f.includes(`{{${c}[]`)).map(f=>{let g=f.match(/\[\](\.[^}]+)?}}/),y=g&&g[1]||"";return{placeholder:f,field:y?y.slice(1):"",regex:new RegExp(f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(f=>{let g=s;for(let{regex:x,field:C}of h){let v=C?Fr(f,C):f;if(v==null)return null;g=g.replace(x,v)}if(g.includes("{{")||g.includes("}}"))return null;let y=g?`${a}?${g}`:a;return{identifier:y,url:Jt(t,y,r)}}).filter(f=>f!==null)},ot=(r,t,e,n,i)=>{let a=E(e,n)?.next||e.next||null,s=Et(a,"success");if(!s)return null;let p=s.flatMap(l=>Se(r,t,e,l,i));return p.length>0?p:null},pt=(r,t,e,n,i,a)=>{let s=a==="error"?"error":"success",p=E(e,n)?.next||e.next||null,l=Et(p,s);if(!l)return null;let o=l.flatMap(c=>Se(r,t,e,c,i));return o.length>0?o:null},Jt=(r,t,e)=>{let[n,i]=t.split("?"),a=new q(e,r).buildFromPrefixedIdentifier(n);if(!a)throw new Error(`Cannot build URL for identifier: ${n}`);if(!i)return a;let s=new URL(a);return new URLSearchParams(i).forEach((p,l)=>s.searchParams.set(l,p)),s.toString().replace(/\/\?/,"?")},Fr=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var z=class z{static debug(...t){z.isTestEnv||console.debug(...t)}static info(...t){z.isTestEnv||console.info(...t)}static warn(...t){z.isTestEnv||console.warn(...t)}static error(...t){z.isTestEnv||console.error(...t)}};z.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var w=z;function Te(r,t,e){return r.startsWith(u.Position.Payload)?r.slice(u.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function Qt(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]=Qt(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 B(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function G(r,t){let e={};return r.forEach(n=>{if(n.input.position==="local")return;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(u.Position.Payload)){let s=Te(n.input.position,i,a);e=Qt(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 c=o;if("identifier"in c&&"amount"in c){let d=String(c.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(c.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(u.Transform.Prefix))continue;let l=$e(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...c]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(c);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=(h,f)=>f.reduce((g,y)=>g&&g[y]!==void 0?g[y]:null,h),p=h=>h.length===0?t:s(t,h),{stringValues:l,nativeValues:o,output:c}=Re(r,e,p),d=G(n,i);for(let h of n)if(h.input.position==="local"){let f=h.input.as||h.input.name;if(f&&h.value){let[,g]=i.stringToNative(h.value);d[f]=g}}return{values:{string:l,native:o,mapped:d},output:await Kt(r,c,t,e,n,i,a)}},Kt=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=Ur(p,r,n,i,a),p=await Dr(r,p,e,i,a,s.transform?.runner||null),p},Ur=(r,t,e,n,i)=>{let a={...r},s=E(t,e)?.inputs||[];for(let[p,l]of Object.entries(a))if(typeof l=="string"&&l.startsWith("in.")){let o=l.split(".")[1],c=s.findIndex(h=>h.as===o||h.name===o),d=c!==-1?n[c]?.value:null;a[p]=d?i.stringToNative(d)[1]:null}return a},Dr=async(r,t,e,n,i,a)=>{if(!r.output)return t;let s={...t},p=Object.entries(r.output).filter(([,o])=>o.startsWith(u.Transform.Prefix)).map(([o,c])=>({key:o,code:c.substring(u.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:Mr(e),inputs:lt(n,i)};for(let{key:o,code:c}of p)try{s[o]=await a.run(c,l),l[o]=s[o]}catch(d){w.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Mr=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},Xt=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),c=await Kt(r,o,t,e,n,i,a);return"PROMPT"in c||(c.PROMPT=t),{values:{string:p,native:l,mapped:G(n,i)},output:c}},$e=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 Ne=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Ht.some(t=>t in r),Zt=(r,t)=>{if(!Ne(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 kr=(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 Oe(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 Rt(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return Oe(r,i,e,5)}function $t(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function qr(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Rt(r,e,n),p=await t(i);return $t(r,p,a,s)}function zr(r){let t=new Date(r).getTime();return Date.now()<t}function Gr(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 Be=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",_r=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),je=(r,t=24)=>{let e=_r(r);return e?e.slice(0,t):"action"},Le=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)},Jr=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=je((e||t||"").trim()||"action"),i=`${r.type}|${Jr(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=Le(i);return`private_src_${n}_${a}`},Ve=r=>{let t=Be(r),e=je(t),n=Le(t.trim().toLowerCase());return`private_gen_${e}_${n}`},Kr=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Ve(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},Xr=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function Zr(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 Yr(r,t,e){return null}var He=(r,t)=>{let e=null;try{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]:[]},tn=async(r,t,e,n)=>{try{let i=W(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 Nt=require("mppx/client");async function Yt(r){for(let t of r){if(!t.wallet.getMppAccount)continue;let e=await t.wallet.getMppAccount().catch(()=>null);if(!e)continue;return w.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),Nt.Mppx.create({methods:[(0,Nt.tempo)({account:e})],polyfill:!1}).fetch}return fetch}var Fe=/^(.+)\[\]$/,Ue={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},b=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=Ue[t]??t,Fe.test(t))return t+u.ArgParamsSeparator+JSON.stringify(e);if(t===m.Tuple&&Array.isArray(e)){if(e.length===0)return t+u.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(u.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(u.ArgCompositeSeparator)})${u.ArgParamsSeparator}${a.join(u.ArgListSeparator)}`}return t+u.ArgParamsSeparator+e.join(u.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})${u.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${u.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${u.ArgParamsSeparator}${s.join(u.ArgListSeparator)}`}if(t.startsWith(m.Vector)&&Array.isArray(e)){if(e.length===0)return`${t}${u.ArgParamsSeparator}`;let i=t.includes(u.IdentifierParamSeparator)?t.split(u.IdentifierParamSeparator)[1]:typeof e[0]=="string"&&e[0].includes(u.ArgParamsSeparator)?e[0].substring(0,e[0].indexOf(u.ArgParamsSeparator)):null;if(!i)return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator);let a=e.map(p=>{if(typeof p=="string"&&p.includes(u.ArgParamsSeparator)){let l=p.indexOf(u.ArgParamsSeparator),o=p.substring(l+1);return i.startsWith(m.Tuple)?o.replace(u.ArgListSeparator,u.ArgCompositeSeparator):o}return String(p)}),s=i.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a.join(s)}if(t===m.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?m.Asset+u.ArgParamsSeparator+e.identifier+u.ArgCompositeSeparator+String(e.amount)+u.ArgCompositeSeparator+String(e.decimals):m.Asset+u.ArgParamsSeparator+e.identifier+u.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==="json"?t+u.ArgParamsSeparator+JSON.stringify(e):t+u.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(u.ArgParamsSeparator),n=Ue[e[0]]??e[0],i=e.slice(1).join(u.ArgParamsSeparator);if(Fe.test(n)){if(!i)return[n,[]];try{return[n,JSON.parse(i)]}catch{return[n,i]}}if(n==="null")return[n,null];if(n===m.Option){let[a,s]=i.split(u.ArgParamsSeparator);return[m.Option+u.ArgParamsSeparator+a,s||null]}if(n===m.Vector){let a=i.indexOf(u.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator,c=(p?p.split(l):[]).map(d=>this.stringToNative(s+u.ArgParamsSeparator+d)[1]);return[m.Vector+u.ArgParamsSeparator+s,c]}else if(n.startsWith(m.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(u.ArgCompositeSeparator),p=i.split(u.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${u.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(u.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${u.ArgParamsSeparator}]+)${u.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,c,d,h]=o;p[c]=this.stringToNative(`${d}${u.IdentifierParamSeparator}${h}`)[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.Datetime)return[n,i];if(n===m.Asset){let[a,s]=i.split(u.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]}}if(n==="json")try{return[n,JSON.parse(i)]}catch{return[n,i]}if(n==="chain"||n==="nft"||n==="email"||n==="textarea"||n==="file")return[n,i];throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(u.ArgParamsSeparator)){let[e,n]=t.split(u.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 en=r=>new b().nativeToString(m.String,r),rn=r=>new b().nativeToString(m.Uint8,r),nn=r=>new b().nativeToString(m.Uint16,r),an=r=>new b().nativeToString(m.Uint32,r),sn=r=>new b().nativeToString(m.Uint64,r),on=r=>new b().nativeToString(m.Biguint,r),pn=r=>new b().nativeToString(m.Bool,r),ln=r=>new b().nativeToString(m.Address,r),te=r=>new b().nativeToString(m.Asset,r),cn=r=>new b().nativeToString(m.Hex,r),un=(r,t)=>{if(t===null)return m.Option+u.ArgParamsSeparator;let e=r(t),n=e.indexOf(u.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return m.Option+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a},dn=(...r)=>new b().nativeToString(m.Tuple,r),fn=r=>new b().nativeToString(m.Struct,r),gn=r=>new b().nativeToString(m.Vector,r);var De=J(require("ajv"),1);var ee=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 De.default,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};var ke=J(require("ajv"),1);var Me={$ref:"#/definitions/Warp",$schema:"http://json-schema.org/draft-07/schema#",definitions:{Warp:{additionalProperties:!1,properties:{actions:{items:{$ref:"#/definitions/WarpAction"},type:"array"},bot:{type:"string"},chain:{$ref:"#/definitions/WarpChainName"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},messages:{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"},meta:{$ref:"#/definitions/WarpMeta"},name:{type:"string"},next:{$ref:"#/definitions/WarpNextConfig"},output:{additionalProperties:{$ref:"#/definitions/WarpResulutionPath"},type:"object"},preview:{type:"string"},protocol:{type:"string"},related:{items:{type:"string"},type:"array"},schedule:{$ref:"#/definitions/WarpSchedule"},sections:{items:{$ref:"#/definitions/WarpSection"},type:"array"},title:{$ref:"#/definitions/WarpText"},trigger:{$ref:"#/definitions/WarpTrigger"},ui:{type:"string"},vars:{additionalProperties:{type:"string"},type:"object"}},required:["protocol","name","title","description","actions"],type:"object"},WarpAction:{anyOf:[{$ref:"#/definitions/WarpTransferAction"},{$ref:"#/definitions/WarpContractAction"},{$ref:"#/definitions/WarpQueryAction"},{$ref:"#/definitions/WarpCollectAction"},{$ref:"#/definitions/WarpComputeAction"},{$ref:"#/definitions/WarpLinkAction"},{$ref:"#/definitions/WarpMcpAction"},{$ref:"#/definitions/WarpPromptAction"},{$ref:"#/definitions/WarpStateAction"},{$ref:"#/definitions/WarpMountAction"},{$ref:"#/definitions/WarpUnmountAction"},{$ref:"#/definitions/WarpLoopAction"},{$ref:"#/definitions/WarpInlineAction"}]},WarpActionInput:{additionalProperties:!1,properties:{as:{type:"string"},bot:{type:"string"},default:{type:["string","number","boolean"]},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},label:{$ref:"#/definitions/WarpText"},max:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},min:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},modifier:{type:"string"},name:{type:"string"},options:{anyOf:[{items:{type:"string"},type:"array"},{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"}]},pattern:{type:"string"},patternDescription:{$ref:"#/definitions/WarpText"},position:{$ref:"#/definitions/WarpActionInputPosition"},required:{type:"boolean"},source:{$ref:"#/definitions/WarpActionInputSource"},type:{$ref:"#/definitions/WarpActionInputType"}},required:["name","type","source"],type:"object"},WarpActionInputPosition:{anyOf:[{const:"receiver",type:"string"},{const:"value",type:"string"},{const:"transfer",type:"string"},{const:"arg:1",type:"string"},{const:"arg:2",type:"string"},{const:"arg:3",type:"string"},{const:"arg:4",type:"string"},{const:"arg:5",type:"string"},{const:"arg:6",type:"string"},{const:"arg:7",type:"string"},{const:"arg:8",type:"string"},{const:"arg:9",type:"string"},{const:"arg:10",type:"string"},{const:"data",type:"string"},{const:"chain",type:"string"},{type:"string"},{const:"destination",type:"string"},{const:"local",type:"string"},{$ref:"#/definitions/WarpActionInputPositionAssetObject"}]},WarpActionInputPositionAssetObject:{additionalProperties:!1,properties:{amount:{type:"string"},token:{type:"string"}},required:["token","amount"],type:"object"},WarpActionInputSource:{enum:["field","query","user:wallet","hidden"],type:"string"},WarpActionInputType:{type:"string"},WarpActionType:{enum:["transfer","contract","query","collect","compute","link","mcp","prompt","state","mount","unmount","loop","inline"],type:"string"},WarpChainName:{enum:["multiversx","claws","sui","ethereum","base","arbitrum","polygon","somnia","tempo","fastset","solana","near"],type:"string"},WarpCollectAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpCollectDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpCollectDestination:{anyOf:[{$ref:"#/definitions/WarpCollectDestinationHttp"},{type:"string"}]},WarpCollectDestinationHttp:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},method:{enum:["GET","POST","PUT","DELETE"],type:"string"},url:{type:"string"}},required:["url"],type:"object"},WarpComputeAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"compute",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpContractAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:["string","null"]},gasLimit:{type:"number"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label","gasLimit"],type:"object"},WarpI18nText:{additionalProperties:{type:"string"},type:"object"},WarpInlineAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},silent:{type:"boolean"},type:{const:"inline",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpLinkAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},type:{$ref:"#/definitions/WarpActionType"},url:{type:"string"},when:{type:"string"}},required:["type","label","url"],type:"object"},WarpLoopAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},delay:{type:"number"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},maxIterations:{type:"number"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"loop",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpMcpDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpDestination:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},tool:{type:"string"},url:{type:"string"}},required:["url","tool"],type:"object"},WarpMeta:{additionalProperties:!1,properties:{chain:{anyOf:[{$ref:"#/definitions/WarpChainName"},{type:"null"}]},createdAt:{type:"string"},creator:{type:"string"},hash:{type:"string"},identifier:{type:"string"},query:{anyOf:[{type:"object"},{type:"null"}]}},required:["chain","identifier","query","hash","creator","createdAt"],type:"object"},WarpMountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"mount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpNextConfig:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"},{additionalProperties:!1,properties:{error:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]},success:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]}},type:"object"}]},"WarpPlatformValue<string>":{anyOf:[{type:"string"},{additionalProperties:!1,properties:{linux:{type:"string"},macos:{type:"string"},windows:{type:"string"}},type:"object"}]},WarpPromptAction:{additionalProperties:!1,properties:{as:{type:"string",description:"Variable name to store the LLM-generated response in. Defaults to MESSAGE if not set."},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},expect:{anyOf:[{type:"string"},{type:"object"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},prompt:{$ref:"#/definitions/WarpPlatformValue%3Cstring%3E"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label","prompt"],type:"object"},WarpQueryAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:"string"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpResulutionPath:{type:"string"},WarpSchedule:{enum:["minutely","hourly","daily","weekly","monthly","yearly"],type:"string"},WarpSection:{additionalProperties:!1,properties:{description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{type:"string"},type:"array"},title:{$ref:"#/definitions/WarpText"}},required:["title","inputs"],type:"object"},WarpStateAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},data:{type:"object"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},keys:{items:{type:"string"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},op:{enum:["read","write","clear"],type:"string"},store:{type:"string"},type:{const:"state",type:"string"},when:{type:"string"}},required:["type","label","op","store"],type:"object"},WarpText:{anyOf:[{type:"string"},{$ref:"#/definitions/WarpI18nText"}]},WarpTransferAction:{additionalProperties:!1,properties:{address:{type:"string"},auto:{type:"boolean"},data:{type:"string"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpTrigger:{anyOf:[{additionalProperties:!1,properties:{pattern:{type:"string"},type:{const:"message",type:"string"}},required:["type","pattern"],type:"object"},{additionalProperties:!1,properties:{body:{$ref:"#/definitions/WarpText"},inputs:{additionalProperties:{type:"string"},type:"object"},label:{$ref:"#/definitions/WarpText"},match:{additionalProperties:{type:["string","number","boolean"]},type:"object"},source:{type:"string"},subject:{$ref:"#/definitions/WarpText"},type:{const:"webhook",type:"string"}},required:["type","source"],type:"object"}]},WarpUnmountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"unmount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpVarPlaceholder:{type:"string"}}};var mn=new Set(["POST","PUT","PATCH","DELETE"]),yn=/^[A-Z][A-Z0-9_]*$/,ct=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validateHasActions(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...this.validateUrlPlaceholdersHaveInputs(t)),e.push(...this.validateNoArgPositionsOnHttpActions(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validateHasActions(t){try{let{action:e}=$(t);return e?[]:["Warp must have at least one action"]}catch(e){return[e instanceof Error?e.message:"Warp must have at least one action"]}}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"]:[]}validateUrlPlaceholdersHaveInputs(t){let e=[],n=new Set(Object.keys(t.vars??{})),i=new Set;for(let a of t.actions){let s=a.inputs??[];for(let o of s)typeof o.position=="string"&&o.position.startsWith("url:")&&i.add(o.position.slice(4));let p=a.destination;if(!p||typeof p=="string"||!p.url)continue;let l=this.extractUrlPlaceholders(p.url);if(l.length!==0)for(let o of l)n.has(o)||yn.test(o)||i.has(o)||e.push(`URL "${p.url}" contains {{${o}}} but no input has position "url:${o}" (and it is not declared in vars)`)}return e}validateNoArgPositionsOnHttpActions(t){let e=[];for(let n of t.actions){let i=n.destination;if(!i||typeof i=="string")continue;let a=i.method?.toUpperCase();if(!a||!mn.has(a))continue;let s=n.inputs??[];for(let p of s)if(p.position?.startsWith("arg:")){let l=p.as??p.name??"(unnamed)";e.push(`Input "${l}" has position "${p.position}" on HTTP ${a} action \u2014 CLI arg positions are not sent in the JSON body. Remove the position (defaults to body) or use "payload:X" / "url:X" explicitly.`)}}return e}extractUrlPlaceholders(t){let n=t.split("?")[0].match(/\{\{([a-zA-Z_][a-zA-Z_0-9]*)\}\}/g);return n?n.map(i=>i.slice(2,-2)):[]}async validateSchema(t){try{let e=this.config.schema?.warp?await(await fetch(this.config.schema.warp)).json():Me,n=new ke.default({strict:!1}),i=n.compile(e);return i(t)?[]:[`Schema validation failed: ${n.errorsText(i.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var ut=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 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 ct(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
- `))}};var T=require("fs"),et=require("path");var re="$bigint:",Ot=(r,t)=>typeof t=="bigint"?re+t.toString():t,tt=(r,t)=>typeof t=="string"&&t.startsWith(re)?BigInt(t.slice(re.length)):t;var Bt=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,T.existsSync)(this.cacheDir)||(0,T.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,T.existsSync)(e))return null;let n=(0,T.readFileSync)(e,"utf-8"),i=JSON.parse(n,tt);return i.expiresAt!==null&&Date.now()>i.expiresAt?((0,T.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,T.writeFileSync)(a,JSON.stringify(i,Ot),"utf-8")}async delete(t){try{let e=this.getFilePath(t);(0,T.existsSync)(e)&&(0,T.unlinkSync)(e)}catch{}}async keys(t){try{let e=(0,T.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,T.readdirSync)(this.cacheDir).forEach(e=>{e.endsWith(".json")&&(0,T.unlinkSync)((0,et.join)(this.cacheDir,e))})}catch{}}};var dt=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,Ot))}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 ft=H;var qe=require("fs"),ne=require("path");var jt=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,qe.readFileSync)(t,"utf-8");return new Map(Object.entries(JSON.parse(e,tt)))}catch(e){return w.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},ht={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 dt(t,e):e?.type==="memory"?new ft(t,e):e?.type==="static"?new jt(t,e):e?.type==="filesystem"?new Bt(t,e):typeof window<"u"&&window.localStorage?new dt(t,e):new ft(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 mt={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}},Wn=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:c}=await Rt(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries($t(n,d,o,c)).forEach(([h,f])=>s.set(h,f))}let p=se(e.resolvedInputs,mt.Headers,i);if(p){let l=oe(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,c])=>typeof c=="string"&&s.set(o,c))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},xn=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===ae.Get){let s=se(e.resolvedInputs,mt.Queries,i);if(s){let p=oe(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,c])=>c!=null&&l.searchParams.set(o,String(c))),a=l.toString()}}}return a},vn=(r,t,e,n,i)=>{if(r===ae.Get)return;let a=se(t.resolvedInputs,mt.Payload,n);if(a&&oe(a)!==null)return a;let{[mt.Payload]:s,[mt.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},ze=async(r,t,e,n,i,a,s,p)=>{let l=t.method||ae.Get,o=await Wn(r,t,e,n,a,p),c=xn(r,t,e,l,a),d=vn(l,e,i,a,s);return{url:c,method:l,headers:o,body:d}};var R=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(`\\{\\{${An(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(u.Vars.Query+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Query.length+1),[o,c]=l.split(u.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(u.Vars.Env+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Env.length+1),[o,c]=l.split(u.ArgCompositeSeparator),h={...this.config.vars,...e.envs}?.[o];h!=null&&a(s,h)}else p===u.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(u.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(u.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){if(!t||typeof t!="string"||!t.includes("{{"))return t;let i=this.applyGlobalsToText(t),a=this.buildInputBag(e,n);return O(i,a)}applyGlobalsToText(t){if(!Object.values(u.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(u.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),c={config:this.config,adapter:o},d=i(c);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e){let n={};return t.forEach(i=>{if(!i.value)return;let a=i.input.as||i.input.name,[,s]=e.stringToNative(i.value);n[a]=String(s)}),n}},An=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var Cn=["collect","compute","mcp","state","mount","unmount"],wn=new Set(Object.values(m)),bn=r=>{let t=r.indexOf(u.ArgParamsSeparator);return t===-1?!1:wn.has(r.slice(0,t))},_=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 b,this.cache=new gt(t.env,t.cache)}getSerializer(){return this.serializer}getCache(){return this.cache}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(ht.WarpExecutable(t,e||"",n))||[];return B(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(ht.WarpExecutable(t,e||"",n))||[]}async createExecutable(t,e,n,i={}){let a=E(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 R(this.config,p,this.adapters),o=await l.apply(t,i),c=E(o,e),{action:d,index:h}=$(o),f=[],g=[];if(h===e-1){let P=this.getStringTypedInputs(d,n);f=await this.getResolvedInputs(s.name,d,P,l,i.queries),g=await this.getModifiedInputs(f)}else c.inputs&&c.inputs.length>0&&(f=await this.resolveActionInputs(s.name,c,n,l,i.queries),g=await this.getModifiedInputs(f));let y=g.find(P=>P.input.position==="receiver"||P.input.position==="destination")?.value,x=this.getDestinationFromAction(c),C=y?this.serializer.stringToNative(y)[1]:x;if(C&&(C=l.applyInputs(C,g,this.serializer)),!C&&!Cn.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let v=this.getPreparedArgs(c,g);v=v.map(P=>l.applyInputs(P,g,this.serializer));let L=g.find(P=>P.input.position==="value")?.value||null,A="value"in c?c.value:null,j=L?.split(u.ArgParamsSeparator)[1]||A||"0",F=l.applyInputs(j,g,this.serializer),N=BigInt(F),U=g.filter(P=>P.input.position==="transfer"&&P.value).map(P=>P.value),Ge=[...("transfers"in c?c.transfers:[])||[],...U||[]].map(P=>{let Lt=l.applyInputs(P,g,this.serializer),Ke=Lt.startsWith(`asset${u.ArgParamsSeparator}`)?Lt:`asset${u.ArgParamsSeparator}${Lt}`;return this.serializer.stringToNative(Ke)[1]}),_e=g.find(P=>P.input.position==="data")?.value,Je="data"in c?c.data||"":null,ue=_e||Je||null,Qe=ue?l.applyInputs(ue,g,this.serializer):null,de={adapter:p,warp:o,chain:s,action:e,destination:C,args:v,value:N,transfers:Ge,data:Qe,resolvedInputs:g};return await this.cache.set(ht.WarpExecutable(this.config.env,o.meta?.hash||"",e),de.resolvedInputs,ie.OneWeek),de}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||bn(i)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(c=>i.applyInputs(c,[],this.serializer)),l=await Promise.all(p.map(c=>this.preprocessInput(t,c))),o=(c,d)=>{if(c.source===u.Source.UserWallet){let x=S(this.config,t);return x?this.serializer.nativeToString("address",x):null}if(c.source==="hidden"){if(c.default===void 0)return null;let x=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,x)}if(l[d])return l[d];let h=c.as||c.name,f=a?.[h],g=this.url.searchParams.get(h),y=f||g;return y?this.serializer.nativeToString(c.type,String(y)):null};return s.map((c,d)=>{let h=o(c,d),f=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(f!==void 0?this.serializer.nativeToString(c.type,f):null)}})}async resolveInputsFromQuery(t,e,n){let i=E(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=W(a.name,this.adapters),p=new R(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(u.Transform.Prefix)){let a=i.input.modifier.substring(u.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 if(i.input.modifier?.startsWith("crypto:")){let[,a,s]=i.input.modifier.split(":"),p=a==="sha256"&&s?t.find(o=>(o.input.as||o.input.name)===s):null,l=p?.value?this.serializer.stringToNative(p.value)[1]??null:null;if(l){let c=await(await fetch(l)).arrayBuffer(),d=await globalThis.crypto.subtle.digest("SHA-256",c),h=Array.from(new Uint8Array(d)).map(f=>f.toString(16).padStart(2,"0")).join("");e.push({...i,value:this.serializer.nativeToString("string",h)})}else e.push(i)}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=St(e),a=W(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(u.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 c=at(p,o.decimals);return te({...o,amount:c})}else return e}catch(n){throw w.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 c=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:c,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 yt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.loopIterations=new Map;this.active=!0;this.warpResolver=null;this.handlers=n,this.factory=new _(t,e)}setWarpResolver(t){this.warpResolver=t}stop(){this.active=!1,this.loopIterations.clear()}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},c={...n,queries:o},d={};if(t.vars)try{let f=this.adapters?.find(g=>g.chainInfo.name===(t.chain||this.adapters[0]?.chainInfo?.name));if(f){let g=await new R(this.config,f,this.adapters).apply(t,c);g?.actions&&(t.actions=g.actions),g?.meta&&(t.meta=g.meta)}}catch{}let{index:h}=$(t);for(let f=1;f<=t.actions.length;f++){let g=E(t,f);if(!It(g))continue;let y=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:x,chain:C,immediateExecution:v,executable:L}=await this.executeAction(t,f,e,y);if(x&&i.push(x),C&&(a=C),v&&s.push(v),v?.output){let{_DATA:A,...j}=v.output;Object.assign(d,j)}v?.values?.mapped&&Object.assign(d,v.values.mapped),L&&f===h+1&&L.resolvedInputs&&(p=B(L.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 this.scheduleLoops(t,e,c,d),{txs:i,chain:a,immediateExecutions:s,resolvedInputs:p}}async executeAction(t,e,n,i={}){let a=E(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):Ft.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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}if(a.type==="loop")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="state")return this.executeState(t,a,e,i);if(a.type==="mount"||a.type==="unmount"){if(a.when){let o=i.envs||{},c=Q(a.when,o);if(!K(c))return{tx:null,chain:null,immediateExecution:null,executable:null}}return await this.handlers?.onMountAction?.({action:a,actionIndex:e,warp:t}),{tx:null,chain:null,immediateExecution:null,executable:null}}if(a.type==="inline"){if(!this.warpResolver)return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.when){let y=this.adapters[0]?.chainInfo.name||"";if(!await this.evaluateWhenCondition(t,a,n,i,[],y))return{tx:null,chain:null,immediateExecution:null,executable:null}}let o=a,c=await this.warpResolver(o.warp);if(!c)return{tx:null,chain:null,immediateExecution:null,executable:null};await this.callHandler(()=>this.handlers?.onActionProcessing?.(a));let d={...this.config.vars,...i.envs||{},...i.queries||{}},h={};for(let[y,x]of Object.entries(c.meta?.query||{}))h[y]=x.replace(/\{\{(.+?)\}\}/g,(C,v)=>String(d[v.trim()]??""));c.meta={...c.meta,query:h};let{immediateExecutions:f}=await this.execute(c,[],i),g=f[0];return g?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:g,tx:null})),{tx:null,chain:null,immediateExecution:g,executable:null}):{tx:null,chain:null,immediateExecution:null,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,void 0,i.envs);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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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(!It(s)||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),g={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:f};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:g})),g}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let f=t.meta?.query;f&&Object.keys(f).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,f))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=In(c,d.output);return d.next=pt(this.config,this.adapters,t,o,h,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,n){let i=S(this.config,t.chain.name),a=E(t.warp,t.action),s=this.factory.getSerializer(),p=G(t.resolvedInputs,s);if(a.destination&&typeof a.destination=="object"&&"url"in a.destination)return await this.doHttpRequest(t,a.destination,i,p,e,n);let{values:l,output:o}=await Y(t.warp,p,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,i,"unhandled",l,o)}async executeCompute(t){let e=S(this.config,t.chain.name),n=this.factory.getSerializer(),i=G(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,s){let p=new R(this.config,W(t.chain.name,this.adapters),this.adapters),l=this.factory.getSerializer(),{url:o,method:c,headers:d,body:h}=await ze(p,e,t,n,i,l,a,async f=>await this.callHandler(()=>this.handlers?.onSignRequest?.(f)));s&&(o=O(o,s)),w.debug("WarpExecutor: Executing HTTP collect",{url:o,method:c,headers:d,body:h});try{let f={method:c,headers:d,body:h},y=await(await Yt(this.adapters))(o,f);w.debug("Collect response status",{status:y.status});let x=await y.json();w.debug("Collect response content",{content:x});let{values:C,output:v}=await Y(t.warp,x,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,S(this.config,t.chain.name),y.ok?"success":"error",C,v,x)}catch(f){w.error("WarpActionExecutor: Error executing collect",f);let g=B(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:g}}}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=E(t.warp,t.action);if(!i.destination){let f=B(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 g=B(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:g}}let p=this.factory.getSerializer(),l=new R(this.config,W(t.chain.name,this.adapters),this.adapters),o=i.destination,c=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),h={};o.headers&&Object.entries(o.headers).forEach(([f,g])=>{let y=l.applyInputs(g,t.resolvedInputs,this.factory.getSerializer());h[f]=y}),w.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let f=new s(new URL(c),{requestInit:{headers:h}}),g=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await g.connect(f);let y={};t.resolvedInputs.forEach(({input:A,value:j})=>{if(j&&A.position&&typeof A.position=="string"&&A.position.startsWith("payload:")){let F=A.position.replace("payload:",""),[N,U]=p.stringToNative(j);if(N==="string")y[F]=String(U);else if(N==="bool")y[F]=!!U;else if(N==="uint8"||N==="uint16"||N==="uint32"||N==="uint64"||N==="uint128"||N==="uint256"||N==="biguint"){let vt=Number(U);y[F]=(Number.isInteger(vt),vt)}else y[F]=U}}),e&&Object.assign(y,e);let x=await g.callTool({name:d,arguments:y});await g.close();let C;if(x.content&&x.content.length>0){let A=x.content[0];if(A.type==="text")try{C=JSON.parse(A.text)}catch{C=A.text}else A.type,C=A}else C=x;let{values:v,output:L}=await Y(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",v,L,x)}catch(f){w.error("WarpExecutor: Error executing MCP",f);let g=B(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:g}}}buildCollectResult(t,e,n,i,a,s){let p=pt(this.config,this.adapters,t.warp,t.action,a,n),l=B(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:Tt(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}scheduleLoops(t,e,n,i){if(this.active)for(let a of t.actions){if(a.type!=="loop"||a.auto===!1)continue;let s=a,l=`loop:${n.scope||"default"}:${t.meta?.identifier||t.name}`;if(s.when){let h={...n.envs,...i},f=Q(s.when,h);try{if(!K(f)){this.loopIterations.delete(l);continue}}catch{this.loopIterations.delete(l);continue}}let o=s.maxIterations??1e4,c=(this.loopIterations.get(l)??0)+1;if(c>o){this.loopIterations.delete(l),w.debug(`Loop maxIterations (${o}) reached for warp ${t.meta?.identifier}`);continue}if(this.loopIterations.set(l,c),!this.handlers?.onLoop)continue;let d=s.delay??0;this.handlers.onLoop({warp:t,inputs:e,meta:n,delay:d})}}async executeState(t,e,n,i){if(e.when){let l=i.envs||{},o=Q(e.when,l);if(!K(o))return{tx:null,chain:null,immediateExecution:null,executable:null}}let a=this.factory.getCache(),p=`state:${i.scope||"default"}:${e.store}`;if(e.op==="read"){let l=await a.get(p)??{},o=e.keys??Object.keys(l),c={};for(let h of o)l[h]!==void 0&&l[h]!==null&&(c[`state.${h}`]=l[h]);let d={status:"success",warp:t,action:n,user:null,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:c,messages:{},destination:null,resolvedInputs:[]};return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:n,chain:null,execution:d,tx:null})),{tx:null,chain:null,immediateExecution:d,executable:null}}if(e.op==="write"&&e.data){let l=await a.get(p)??{},o=i.envs||{},c={};for(let[d,h]of Object.entries(e.data))if(typeof h=="string"){let f=h.replace(/\{\{([^}]+)\}\}/g,(g,y)=>{let x=o[y.trim()];return x!=null?String(x):h});c[d]=Pn(f)}else c[d]=h;await a.set(p,{...l,...c})}return e.op==="clear"&&await a.delete(p),{tx:null,chain:null,immediateExecution:null,executable:null}}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=W(s.name,this.adapters),l=new R(this.config,p,this.adapters),o=await l.apply(t,a),c=E(o,n),d=[];if(e.inputs&&e.inputs.length>0){let A=this.factory.getStringTypedInputs(e,i),j=await this.factory.getResolvedInputs(s.name,e,A,l,a.queries);d=await this.factory.getModifiedInputs(j)}else{let{action:A}=$(o),j=this.factory.getStringTypedInputs(A,i),F=await this.factory.getResolvedInputs(s.name,A,j,l,a.queries);d=await this.factory.getModifiedInputs(F)}let h=Zt(c.prompt,this.config.platform),f=l.applyInputs(h,d,this.factory.getSerializer());a.envs&&(f=O(f,a.envs));let g=B(d),y=S(this.config,s.name),x=this.factory.getSerializer(),{values:C,output:v}=await Xt(o,f,n,d,x,this.config);if(this.handlers?.onPromptGenerate){let A=await this.handlers.onPromptGenerate(f,c.expect);A&&(v.MESSAGE=A,c.as&&(v[c.as]=A))}let L=d.find(A=>A.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:y,txHash:null,tx:null,next:ot(this.config,this.adapters,o,n,v),values:C,output:v,messages:Tt(o,{...C.mapped,...v},this.config),destination:L,resolvedInputs:g}}catch(s){return w.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=W(p.name,this.adapters),o=new R(this.config,l,this.adapters),c;if(a)c=a;else{let g=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(g)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},f=Q(e.when,h);return K(f)}},In=(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}},Pn=r=>{if(r==="true")return!0;if(r==="false")return!1;let t=Number(r);return!isNaN(t)&&r.trim()!==""?t:r};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 w.error("WarpIndex: Error searching for warps: ",i),i}}};var xt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!Z(t):!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(u.HttpProtocolPrefix)?Z(t):V(t);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,c=t.startsWith(u.HttpProtocolPrefix)?zt(t):Gt(i.identifier);if(this.resolver){let g=null;if(a==="hash")g=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;g=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}g&&(p=g.warp,l=g.registryInfo,o=g.brand)}else{if(!i.chain)throw new Error(`WarpLinkDetecter: chain is required for identifier ${i.identifier}`);let g=W(i.chain,this.adapters);if(a==="hash"){p=await g.builder().createFromTransactionHash(s,e);let y=await g.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await g.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await g.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(Sn(p,i.chain,l,i.identifier),p.meta.query=c?_t(c):null),!p)return n;let d=p.chain||i.chain||null,h=d?this.adapters.find(g=>g.chainInfo.name.toLowerCase()===d.toLowerCase()):null,f=h?await new R(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:f,chain:d,registryInfo:l,brand:o}}catch(a){return w.error("Error detecting warp link",a),n}}},Sn=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?Pt(null,"alias",e.alias):Pt(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 rt(e));return new nt(t)}getConfig(){return this.config}mergeVars(t){this.config={...this.config,vars:{...this.config.vars,...t}}}getResolver(){return this.resolver}createExecutor(t){let e=new yt(this.config,this.chains,t);return e.setWarpResolver(async n=>(await this.detectWarp(n)).warp??null),e}async detectWarp(t,e){return new xt(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 g=await fetch(t);if(!g.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await g.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:c,immediateExecutions:d,resolvedInputs:h}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:c,immediateExecutions:d,evaluateOutput:async g=>{await l.evaluateOutput(p,g)},resolvedInputs:h}}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=V(t);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");if(!n.chain)throw new Error("WarpClient: createFromTransactionHash - chain is required");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).index+1,p=await W(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=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 _(this.config,this.chains)}get index(){return new Wt(this.config)}get linkBuilder(){return new q(this.config,this.chains)}createBuilder(t){return t?W(t,this.chains).builder():new ut(this.config)}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 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 Tn(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(ce(t,n)!==i)return!1;return!0}function En(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,getGeneratedSourceWarpName,getLatestProtocolIdentifier,getMppFetch,getNextInfo,getNextInfoForStatus,getProviderConfig,getRandomBytes,getRandomHex,getRequiredAssetIds,getWalletFromConfigOrFail,getWarpActionByIndex,getWarpBrandLogoUrl,getWarpChainAssetLogoUrl,getWarpChainInfoLogoUrl,getWarpIdentifierWithQuery,getWarpInfoFromIdentifier,getWarpInputAction,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,resolveNextStrings,resolvePath,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 Xe=Object.create;var At=Object.defineProperty;var Ze=Object.getOwnPropertyDescriptor;var Ye=Object.getOwnPropertyNames;var tr=Object.getPrototypeOf,er=Object.prototype.hasOwnProperty;var rr=(r,t)=>{for(var e in t)At(r,e,{get:t[e],enumerable:!0})},fe=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Ye(t))!er.call(r,i)&&i!==e&&At(r,i,{get:()=>t[i],enumerable:!(n=Ze(t,i))||n.enumerable});return r};var K=(r,t,e)=>(e=r!=null?Xe(tr(r)):{},fe(t||!r||!r.__esModule?At(e,"default",{value:r,enumerable:!0}):e,r)),nr=r=>fe(At({},"__esModule",{value:!0}),r);var Nn={};rr(Nn,{BrowserCryptoProvider:()=>bt,CLOUD_WALLET_PROVIDERS:()=>gr,CacheTtl:()=>ie,EvmWalletChainNames:()=>dr,MultiversxWalletChainNames:()=>fr,NodeCryptoProvider:()=>wt,WARP_LANGUAGES:()=>Tr,WarpAssets:()=>I,WarpBrandBuilder:()=>ee,WarpBuilder:()=>ut,WarpCache:()=>gt,WarpCacheKey:()=>ht,WarpChainDisplayNames:()=>Ce,WarpChainLogos:()=>be,WarpChainName:()=>Ae,WarpChainResolver:()=>rt,WarpClient:()=>pe,WarpCompositeResolver:()=>nt,WarpConfig:()=>D,WarpConstants:()=>u,WarpExecutor:()=>yt,WarpFactory:()=>Q,WarpIndex:()=>Wt,WarpInputTypes:()=>m,WarpInterpolator:()=>$,WarpLinkBuilder:()=>G,WarpLinkDetecter:()=>xt,WarpLogger:()=>b,WarpPlatformName:()=>Vt,WarpPlatforms:()=>Ht,WarpProtocolVersions:()=>q,WarpSerializer:()=>w,WarpTypeRegistry:()=>le,WarpValidator:()=>ct,address:()=>un,applyOutputToMessages:()=>Tt,asset:()=>te,biguint:()=>ln,bool:()=>cn,buildGeneratedFallbackWarpIdentifier:()=>Ve,buildGeneratedSourceWarpIdentifier:()=>Xr,buildInputsContext:()=>lt,buildMappedOutput:()=>J,buildNestedPayload:()=>Te,bytesToBase64:()=>Cr,bytesToHex:()=>we,checkWarpAssetBalance:()=>rn,cleanWarpIdentifier:()=>X,createAuthHeaders:()=>$t,createAuthMessage:()=>Rt,createCryptoProvider:()=>wr,createDefaultWalletProvider:()=>en,createHttpAuthHeaders:()=>Gr,createSignableMessage:()=>Oe,createWarpI18nText:()=>Rr,createWarpIdentifier:()=>Pt,doesWarpRequireWallet:()=>Sr,evaluateOutputCommon:()=>Kt,evaluateWhenCondition:()=>k,extractCollectOutput:()=>Y,extractIdentifierInfoFromUrl:()=>Z,extractPromptOutput:()=>Xt,extractQueryStringFromIdentifier:()=>Gt,extractQueryStringFromUrl:()=>zt,extractResolvedInputValues:()=>j,extractWarpSecrets:()=>Ir,findWarpAdapterForChain:()=>W,getChainDisplayName:()=>mr,getChainLogo:()=>yr,getCryptoProvider:()=>Dt,getGeneratedSourceWarpName:()=>Be,getLatestProtocolIdentifier:()=>it,getMppFetch:()=>Yt,getNextInfo:()=>ot,getNextInfoForStatus:()=>pt,getProviderConfig:()=>zr,getRandomBytes:()=>Mt,getRandomHex:()=>kt,getRequiredAssetIds:()=>He,getWalletFromConfigOrFail:()=>ir,getWarpActionByIndex:()=>E,getWarpBrandLogoUrl:()=>Wr,getWarpChainAssetLogoUrl:()=>xr,getWarpChainInfoLogoUrl:()=>vr,getWarpIdentifierWithQuery:()=>jr,getWarpInfoFromIdentifier:()=>V,getWarpInputAction:()=>N,getWarpWalletAddress:()=>ge,getWarpWalletAddressFromConfig:()=>S,getWarpWalletExternalId:()=>ye,getWarpWalletExternalIdFromConfig:()=>We,getWarpWalletExternalIdFromConfigOrFail:()=>or,getWarpWalletMnemonic:()=>me,getWarpWalletMnemonicFromConfig:()=>sr,getWarpWalletPrivateKey:()=>he,getWarpWalletPrivateKeyFromConfig:()=>ar,hasInputPrefix:()=>Lr,hex:()=>dn,initializeWalletCache:()=>tn,isEqualWarpIdentifier:()=>$r,isGeneratedSourcePrivateIdentifier:()=>Yr,isPlatformValue:()=>Ne,isWarpActionAutoExecute:()=>It,isWarpI18nText:()=>Er,isWarpWalletReadOnly:()=>pr,matchesTrigger:()=>Rn,mergeNestedPayload:()=>Qt,normalizeAndValidateMnemonic:()=>ur,normalizeMnemonic:()=>xe,option:()=>fn,parseOutputOutIndex:()=>$e,parseSignedMessage:()=>Jr,parseWarpQueryStringToObject:()=>_t,removeWarpChainPrefix:()=>Br,removeWarpWalletFromConfig:()=>cr,replacePlaceholders:()=>B,replacePlaceholdersInWhenExpression:()=>M,resolveInputs:()=>$n,resolveNextString:()=>Ur,resolveNextStrings:()=>Et,resolvePath:()=>ce,resolvePlatformValue:()=>Zt,resolveWarpText:()=>st,safeWindow:()=>Ft,setCryptoProvider:()=>Ar,setWarpWalletInConfig:()=>lr,shiftBigintBy:()=>at,splitInput:()=>St,stampGeneratedWarpMeta:()=>Zr,string:()=>nn,struct:()=>hn,testCryptoAvailability:()=>br,toInputPayloadValue:()=>Ee,toPreviewText:()=>qt,tuple:()=>gn,uint16:()=>sn,uint32:()=>on,uint64:()=>pn,uint8:()=>an,validateMnemonicLength:()=>ve,validateSignedMessage:()=>_r,vector:()=>mn,withAdapterFallback:()=>hr});module.exports=nr(Nn);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 ir=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},ge=r=>r?typeof r=="string"?r:r.address:null,S=(r,t)=>ge(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,ar=(r,t)=>he(r.user?.wallets?.[t]||null)?.trim()||null,sr=(r,t)=>me(r.user?.wallets?.[t]||null)?.trim()||null,We=(r,t)=>ye(r.user?.wallets?.[t]||null)?.trim()||null,or=(r,t)=>{let e=We(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},pr=r=>typeof r=="string",lr=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},cr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},xe=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},ve=(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`)},ur=(r,t=24)=>{let e=xe(r);return ve(e,t),e};var Ae=(h=>(h.Multiversx="multiversx",h.Claws="claws",h.Sui="sui",h.Ethereum="ethereum",h.Base="base",h.Arbitrum="arbitrum",h.Polygon="polygon",h.Somnia="somnia",h.Tempo="tempo",h.Fastset="fastset",h.Solana="solana",h.Near="near",h))(Ae||{}),Vt=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Vt||{}),Ht=Object.values(Vt),dr=["ethereum","base","arbitrum","polygon","somnia","tempo"],fr=["multiversx","claws"],gr=["coinbase","privy","gaupa"],u={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",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:"}},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",Datetime:"datetime",Email:"email",Textarea:"textarea",File:"file"},Ft=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.joai.ai":r==="testnet"?"https://testnet.joai.ai":"https://joai.ai",SuperClientUrls:["https://joai.ai","https://devnet.joai.ai","https://testnet.joai.ai","https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",u.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","string[]","json","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 hr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var Ct="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",I={baseUrl:Ct,chainLogo:r=>`${Ct}/chains/logos/${r}`,tokenLogo:r=>`${Ct}/tokens/logos/${r}`,walletLogo:r=>`${Ct}/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"},mr=r=>Ce[r]??r.charAt(0).toUpperCase()+r.slice(1),be={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")}},yr=(r,t="dark")=>{let e=be[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var Ut=(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:Ut(r.logo,e)},xr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ut(r.logoUrl,e)},vr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ut(r.logoUrl,e)};var bt=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"}`)}}},z=null;function Dt(){if(z)return z;if(typeof window<"u"&&window.crypto)return z=new bt,z;if(typeof process<"u"&&process.versions?.node)return z=new wt,z;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Ar(r){z=r}async function Mt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||Dt()).getRandomBytes(r)}function we(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 Cr(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 Mt(r/2,t);return we(e)}async function br(){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 wr(){return Dt()}var Ir=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${u.Vars.Env}:`)).map(t=>{let e=t.replace(`${u.Vars.Env}:`,"").trim(),[n,i]=e.split(u.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:${q.Warp}`;if(r==="brand")return`brand:${q.Brand}`;if(r==="abi")return`abi:${q.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},E=(r,t)=>r?.actions[t-1],Pr=["state","mount","unmount","loop"],N=r=>{if(r.actions.length===0)throw new Error(`Warp has no actions: ${r.meta?.identifier}`);let t=r.actions.find(e=>!Pr.includes(e.type));return t?{action:t,index:r.actions.indexOf(t)}:{action:r.actions[0],index:0}},It=r=>r.auto===!1?!1:r.type==="link"?r.auto===!0:!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)},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},B=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="object"&&i!==null?JSON.stringify(i):String(i)}),M=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t")}'`:typeof i=="object"&&i!==null?`'${JSON.stringify(i).replace(/'/g,"\\'")}'`:String(i)}),Sr=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===u.Source.UserWallet||n.default===`{{${u.Globals.UserWallet.Placeholder}}}`||n.default===`{{${u.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},k=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 Tr={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""},Er=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,Rr=r=>r;var X=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,$r=(r,t)=>!r||!t?!1:X(r)===X(t),Pt=(r,t,e)=>{let n=X(e);if(t===u.IdentifierType.Alias)return u.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+u.IdentifierParamSeparator+t+u.IdentifierParamSeparator+n},V=r=>{let t=decodeURIComponent(r).trim(),e=X(t),n=e.split("?")[0],i=Ie(n);if(n.length===64&&/^[a-fA-F0-9]+$/.test(n))return{chain:null,type:u.IdentifierType.Hash,identifier:e,identifierBase:n};if(i.length===2&&/^[a-zA-Z0-9]{62}$/.test(i[0])&&/^[a-zA-Z0-9]{2}$/.test(i[1]))return null;if(i.length===3){let[a,s,p]=i;if(s===u.IdentifierType.Alias||s===u.IdentifierType.Hash){let l=e.includes("?")?p+e.substring(e.indexOf("?")):p;return{chain:a,type:s,identifier:l,identifierBase:p}}}if(i.length===2){let[a,s]=i;if(a===u.IdentifierType.Alias||a===u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s;return{chain:null,type:a,identifier:p,identifierBase:s}}}if(i.length===2){let[a,s]=i;if(a!==u.IdentifierType.Alias&&a!==u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s,l=Nr(s,a)?u.IdentifierType.Hash:u.IdentifierType.Alias;return{chain:a,type:l,identifier:p,identifierBase:s}}}return{chain:null,type:u.IdentifierType.Alias,identifier:e,identifierBase:n}},Z=r=>{let t=new URL(r),n=t.searchParams.get(u.IdentifierParamName);if(n||(n=t.pathname.split("/")[1]),!n)return null;let i=decodeURIComponent(n);return V(i)},Nr=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Or=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Ie=r=>{let t=Or(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Ie(a);return[i,...s]},zt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(u.IdentifierParamName),e.toString()||null}catch{return null}},Gt=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},_t=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},Br=r=>{let t=V(r);return(t?t.identifierBase:X(r)).trim()},jr=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]||""]},Lr=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=St(r)[0];return t.has(e)};var Tt=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=st(a,e);return[i,B(s,t)]});return Object.fromEntries(n)};var Pe=K(require("qr-code-styling"),1);var G=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!Z(t):!1}build(t,e,n){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=W(t,this.adapters),s=e===u.IdentifierType.Alias?n:e+u.IdentifierParamSeparator+n,p=a.chainInfo.name+u.IdentifierParamSeparator+s,l=encodeURIComponent(p);return D.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${u.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=V(t);if(!e)return null;if(!e.chain){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=u.IdentifierAliasMarker+e.identifierBase;return D.SuperClientUrls.includes(i)?`${i}/${encodeURIComponent(a)}`:`${i}?${u.IdentifierParamName}=${encodeURIComponent(a)}`}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 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 Vr="https://",Hr=(r,t)=>{if(typeof r=="string")return r;if(r.when&&t){let e=M(r.when,t);if(!k(e))return null}return r.identifier},Fr=r=>typeof r=="object"&&!Array.isArray(r)&&!("identifier"in r),Et=(r,t,e)=>{if(!r)return null;let n;if(typeof r=="string")n=t==="success"?[r]:[];else if(Array.isArray(r))n=t==="success"?r:[];else if(Fr(r)){let a=r[t];n=a?Array.isArray(a)?a:[a]:[]}else n=t==="success"?[r]:[];if(n.length===0)return null;let i=[];for(let a of n){let s=Hr(a,e);s!==null&&i.push(s)}return i.length>0?i:null},Ur=(r,t,e)=>Et(r,t,e)?.[0]??null,Se=(r,t,e,n,i)=>{if(n.startsWith(Vr))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let f=B(a,{...e.vars,...i});return[{identifier:f,url:Jt(t,f,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let f=B(s,{...e.vars,...i}),g=f?`${a}?${f}`:a;return[{identifier:g,url:Jt(t,g,r)}]}let l=p[0];if(!l)return[];let o=l.match(/{{([^[]+)\[\]/),c=o?o[1]:null;if(!c||i[c]===void 0)return[];let d=Array.isArray(i[c])?i[c]:[i[c]];if(d.length===0)return[];let h=p.filter(f=>f.includes(`{{${c}[]`)).map(f=>{let g=f.match(/\[\](\.[^}]+)?}}/),y=g&&g[1]||"";return{placeholder:f,field:y?y.slice(1):"",regex:new RegExp(f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(f=>{let g=s;for(let{regex:x,field:C}of h){let v=C?Dr(f,C):f;if(v==null)return null;g=g.replace(x,v)}if(g.includes("{{")||g.includes("}}"))return null;let y=g?`${a}?${g}`:a;return{identifier:y,url:Jt(t,y,r)}}).filter(f=>f!==null)},ot=(r,t,e,n,i)=>{let a=E(e,n)?.next||e.next||null,s=Et(a,"success",i);if(!s)return null;let p=s.flatMap(l=>Se(r,t,e,l,i));return p.length>0?p:null},pt=(r,t,e,n,i,a)=>{let s=a==="error"?"error":"success",p=E(e,n)?.next||e.next||null,l=Et(p,s,i);if(!l)return null;let o=l.flatMap(c=>Se(r,t,e,c,i));return o.length>0?o:null},Jt=(r,t,e)=>{let[n,i]=t.split("?"),a=new G(e,r).buildFromPrefixedIdentifier(n);if(!a)throw new Error(`Cannot build URL for identifier: ${n}`);if(!i)return a;let s=new URL(a);return new URLSearchParams(i).forEach((p,l)=>s.searchParams.set(l,p)),s.toString().replace(/\/\?/,"?")},Dr=(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 b=_;function Te(r,t,e){return r.startsWith(u.Position.Payload)?r.slice(u.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function Qt(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]=Qt(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 j(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function J(r,t){let e={};return r.forEach(n=>{if(n.input.position==="local")return;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(u.Position.Payload)){let s=Te(n.input.position,i,a);e=Qt(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 c=o;if("identifier"in c&&"amount"in c){let d=String(c.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(c.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(u.Transform.Prefix))continue;let l=$e(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...c]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(c);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=(h,f)=>f.reduce((g,y)=>g&&g[y]!==void 0?g[y]:null,h),p=h=>h.length===0?t:s(t,h),{stringValues:l,nativeValues:o,output:c}=Re(r,e,p),d=J(n,i);for(let h of n)if(h.input.position==="local"){let f=h.input.as||h.input.name;if(f&&h.value){let[,g]=i.stringToNative(h.value);d[f]=g}}return{values:{string:l,native:o,mapped:d},output:await Kt(r,c,t,e,n,i,a)}},Kt=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=Mr(p,r,n,i,a),p=await kr(r,p,e,i,a,s.transform?.runner||null),p},Mr=(r,t,e,n,i)=>{let a={...r},s=E(t,e)?.inputs||[];for(let[p,l]of Object.entries(a))if(typeof l=="string"&&l.startsWith("in.")){let o=l.split(".")[1],c=s.findIndex(h=>h.as===o||h.name===o),d=c!==-1?n[c]?.value:null;a[p]=d?i.stringToNative(d)[1]:null}return a},kr=async(r,t,e,n,i,a)=>{if(!r.output)return t;let s={...t},p=Object.entries(r.output).filter(([,o])=>o.startsWith(u.Transform.Prefix)).map(([o,c])=>({key:o,code:c.substring(u.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:qr(e),inputs:lt(n,i)};for(let{key:o,code:c}of p)try{s[o]=await a.run(c,l),l[o]=s[o]}catch(d){b.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},qr=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},Xt=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),c=await Kt(r,o,t,e,n,i,a);return"PROMPT"in c||(c.PROMPT=t),{values:{string:p,native:l,mapped:J(n,i)},output:c}},$e=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 Ne=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Ht.some(t=>t in r),Zt=(r,t)=>{if(!Ne(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 zr=(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 Oe(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 Rt(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return Oe(r,i,e,5)}function $t(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function Gr(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Rt(r,e,n),p=await t(i);return $t(r,p,a,s)}function _r(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 Be=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,""),je=(r,t=24)=>{let e=Qr(r);return e?e.slice(0,t):"action"},Le=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)},Kr=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()}},Xr=(r,t,e)=>{let n=je((e||t||"").trim()||"action"),i=`${r.type}|${Kr(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=Le(i);return`private_src_${n}_${a}`},Ve=r=>{let t=Be(r),e=je(t),n=Le(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||Ve(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},Yr=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function tn(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 en(r,t,e){return null}var He=(r,t)=>{let e=null;try{e=N(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]:[]},rn=async(r,t,e,n)=>{try{let i=W(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 Nt=require("mppx/client");async function Yt(r){for(let t of r){if(!t.wallet.getMppAccount)continue;let e=await t.wallet.getMppAccount().catch(()=>null);if(!e)continue;return b.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),Nt.Mppx.create({methods:[(0,Nt.tempo)({account:e})],polyfill:!1}).fetch}return fetch}var Fe=/^(.+)\[\]$/,Ue={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},w=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=Ue[t]??t,Fe.test(t))return t+u.ArgParamsSeparator+JSON.stringify(e);if(t===m.Tuple&&Array.isArray(e)){if(e.length===0)return t+u.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(u.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(u.ArgCompositeSeparator)})${u.ArgParamsSeparator}${a.join(u.ArgListSeparator)}`}return t+u.ArgParamsSeparator+e.join(u.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})${u.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${u.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${u.ArgParamsSeparator}${s.join(u.ArgListSeparator)}`}if(t.startsWith(m.Vector)&&Array.isArray(e)){if(e.length===0)return`${t}${u.ArgParamsSeparator}`;let i=t.includes(u.IdentifierParamSeparator)?t.split(u.IdentifierParamSeparator)[1]:typeof e[0]=="string"&&e[0].includes(u.ArgParamsSeparator)?e[0].substring(0,e[0].indexOf(u.ArgParamsSeparator)):null;if(!i)return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator);let a=e.map(p=>{if(typeof p=="string"&&p.includes(u.ArgParamsSeparator)){let l=p.indexOf(u.ArgParamsSeparator),o=p.substring(l+1);return i.startsWith(m.Tuple)?o.replace(u.ArgListSeparator,u.ArgCompositeSeparator):o}return String(p)}),s=i.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a.join(s)}if(t===m.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?m.Asset+u.ArgParamsSeparator+e.identifier+u.ArgCompositeSeparator+String(e.amount)+u.ArgCompositeSeparator+String(e.decimals):m.Asset+u.ArgParamsSeparator+e.identifier+u.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==="json"?t+u.ArgParamsSeparator+JSON.stringify(e):t+u.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(u.ArgParamsSeparator),n=Ue[e[0]]??e[0],i=e.slice(1).join(u.ArgParamsSeparator);if(Fe.test(n)){if(!i)return[n,[]];try{return[n,JSON.parse(i)]}catch{return[n,i]}}if(n==="null")return[n,null];if(n===m.Option){let[a,s]=i.split(u.ArgParamsSeparator);return[m.Option+u.ArgParamsSeparator+a,s||null]}if(n===m.Vector){let a=i.indexOf(u.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator,c=(p?p.split(l):[]).map(d=>this.stringToNative(s+u.ArgParamsSeparator+d)[1]);return[m.Vector+u.ArgParamsSeparator+s,c]}else if(n.startsWith(m.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(u.ArgCompositeSeparator),p=i.split(u.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${u.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(u.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${u.ArgParamsSeparator}]+)${u.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,c,d,h]=o;p[c]=this.stringToNative(`${d}${u.IdentifierParamSeparator}${h}`)[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.Datetime)return[n,i];if(n===m.Asset){let[a,s]=i.split(u.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]}}if(n==="json")try{return[n,JSON.parse(i)]}catch{return[n,i]}if(n==="chain"||n==="nft"||n==="email"||n==="textarea"||n==="file")return[n,i];throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(u.ArgParamsSeparator)){let[e,n]=t.split(u.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 nn=r=>new w().nativeToString(m.String,r),an=r=>new w().nativeToString(m.Uint8,r),sn=r=>new w().nativeToString(m.Uint16,r),on=r=>new w().nativeToString(m.Uint32,r),pn=r=>new w().nativeToString(m.Uint64,r),ln=r=>new w().nativeToString(m.Biguint,r),cn=r=>new w().nativeToString(m.Bool,r),un=r=>new w().nativeToString(m.Address,r),te=r=>new w().nativeToString(m.Asset,r),dn=r=>new w().nativeToString(m.Hex,r),fn=(r,t)=>{if(t===null)return m.Option+u.ArgParamsSeparator;let e=r(t),n=e.indexOf(u.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return m.Option+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a},gn=(...r)=>new w().nativeToString(m.Tuple,r),hn=r=>new w().nativeToString(m.Struct,r),mn=r=>new w().nativeToString(m.Vector,r);var De=K(require("ajv"),1);var ee=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 De.default,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};var ke=K(require("ajv"),1);var Me={$ref:"#/definitions/Warp",$schema:"http://json-schema.org/draft-07/schema#",definitions:{Warp:{additionalProperties:!1,properties:{actions:{items:{$ref:"#/definitions/WarpAction"},type:"array"},bot:{type:"string"},chain:{$ref:"#/definitions/WarpChainName"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},messages:{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"},meta:{$ref:"#/definitions/WarpMeta"},name:{type:"string"},next:{$ref:"#/definitions/WarpNextConfig"},output:{additionalProperties:{$ref:"#/definitions/WarpResulutionPath"},type:"object"},preview:{type:"string"},protocol:{type:"string"},related:{items:{type:"string"},type:"array"},schedule:{$ref:"#/definitions/WarpSchedule"},sections:{items:{$ref:"#/definitions/WarpSection"},type:"array"},title:{$ref:"#/definitions/WarpText"},trigger:{$ref:"#/definitions/WarpTrigger"},ui:{type:"string"},vars:{additionalProperties:{type:"string"},type:"object"}},required:["protocol","name","title","description","actions"],type:"object"},WarpAction:{anyOf:[{$ref:"#/definitions/WarpTransferAction"},{$ref:"#/definitions/WarpContractAction"},{$ref:"#/definitions/WarpQueryAction"},{$ref:"#/definitions/WarpCollectAction"},{$ref:"#/definitions/WarpComputeAction"},{$ref:"#/definitions/WarpLinkAction"},{$ref:"#/definitions/WarpMcpAction"},{$ref:"#/definitions/WarpPromptAction"},{$ref:"#/definitions/WarpStateAction"},{$ref:"#/definitions/WarpMountAction"},{$ref:"#/definitions/WarpUnmountAction"},{$ref:"#/definitions/WarpLoopAction"},{$ref:"#/definitions/WarpInlineAction"}]},WarpActionInput:{additionalProperties:!1,properties:{as:{type:"string"},bot:{type:"string"},default:{type:["string","number","boolean"]},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},label:{$ref:"#/definitions/WarpText"},max:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},min:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},modifier:{type:"string"},name:{type:"string"},options:{anyOf:[{items:{type:"string"},type:"array"},{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"}]},pattern:{type:"string"},patternDescription:{$ref:"#/definitions/WarpText"},position:{$ref:"#/definitions/WarpActionInputPosition"},required:{type:"boolean"},source:{$ref:"#/definitions/WarpActionInputSource"},type:{$ref:"#/definitions/WarpActionInputType"}},required:["name","type","source"],type:"object"},WarpActionInputPosition:{anyOf:[{const:"receiver",type:"string"},{const:"value",type:"string"},{const:"transfer",type:"string"},{const:"arg:1",type:"string"},{const:"arg:2",type:"string"},{const:"arg:3",type:"string"},{const:"arg:4",type:"string"},{const:"arg:5",type:"string"},{const:"arg:6",type:"string"},{const:"arg:7",type:"string"},{const:"arg:8",type:"string"},{const:"arg:9",type:"string"},{const:"arg:10",type:"string"},{const:"data",type:"string"},{const:"chain",type:"string"},{type:"string"},{const:"destination",type:"string"},{const:"local",type:"string"},{$ref:"#/definitions/WarpActionInputPositionAssetObject"}]},WarpActionInputPositionAssetObject:{additionalProperties:!1,properties:{amount:{type:"string"},token:{type:"string"}},required:["token","amount"],type:"object"},WarpActionInputSource:{enum:["field","query","user:wallet","hidden"],type:"string"},WarpActionInputType:{type:"string"},WarpActionType:{enum:["transfer","contract","query","collect","compute","link","mcp","prompt","state","mount","unmount","loop","inline"],type:"string"},WarpChainName:{enum:["multiversx","claws","sui","ethereum","base","arbitrum","polygon","somnia","tempo","fastset","solana","near"],type:"string"},WarpCollectAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpCollectDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpCollectDestination:{anyOf:[{$ref:"#/definitions/WarpCollectDestinationHttp"},{type:"string"}]},WarpCollectDestinationHttp:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},method:{enum:["GET","POST","PUT","DELETE"],type:"string"},url:{type:"string"}},required:["url"],type:"object"},WarpComputeAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"compute",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpContractAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:["string","null"]},gasLimit:{type:"number"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label","gasLimit"],type:"object"},WarpI18nText:{additionalProperties:{type:"string"},type:"object"},WarpInlineAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},silent:{type:"boolean"},type:{const:"inline",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpLinkAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},type:{$ref:"#/definitions/WarpActionType"},url:{type:"string"},when:{type:"string"}},required:["type","label","url"],type:"object"},WarpLoopAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},delay:{type:"number"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},maxIterations:{type:"number"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"loop",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpMcpDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpDestination:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},tool:{type:"string"},url:{type:"string"}},required:["url","tool"],type:"object"},WarpMeta:{additionalProperties:!1,properties:{chain:{anyOf:[{$ref:"#/definitions/WarpChainName"},{type:"null"}]},createdAt:{type:"string"},creator:{type:"string"},hash:{type:"string"},identifier:{type:"string"},query:{anyOf:[{type:"object"},{type:"null"}]}},required:["chain","identifier","query","hash","creator","createdAt"],type:"object"},WarpMountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"mount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpNextConfig:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"},{additionalProperties:!1,properties:{error:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]},success:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]}},type:"object"}]},"WarpPlatformValue<string>":{anyOf:[{type:"string"},{additionalProperties:!1,properties:{linux:{type:"string"},macos:{type:"string"},windows:{type:"string"}},type:"object"}]},WarpPromptAction:{additionalProperties:!1,properties:{as:{type:"string",description:"Variable name to store the LLM-generated response in. Defaults to MESSAGE if not set."},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},expect:{anyOf:[{type:"string"},{type:"object"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},prompt:{$ref:"#/definitions/WarpPlatformValue%3Cstring%3E"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label","prompt"],type:"object"},WarpQueryAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:"string"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpResulutionPath:{type:"string"},WarpSchedule:{enum:["minutely","hourly","daily","weekly","monthly","yearly"],type:"string"},WarpSection:{additionalProperties:!1,properties:{description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{type:"string"},type:"array"},title:{$ref:"#/definitions/WarpText"}},required:["title","inputs"],type:"object"},WarpStateAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},data:{type:"object"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},keys:{items:{type:"string"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},op:{enum:["read","write","clear"],type:"string"},store:{type:"string"},type:{const:"state",type:"string"},when:{type:"string"}},required:["type","label","op","store"],type:"object"},WarpText:{anyOf:[{type:"string"},{$ref:"#/definitions/WarpI18nText"}]},WarpTransferAction:{additionalProperties:!1,properties:{address:{type:"string"},auto:{type:"boolean"},data:{type:"string"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpTrigger:{anyOf:[{additionalProperties:!1,properties:{pattern:{type:"string"},type:{const:"message",type:"string"}},required:["type","pattern"],type:"object"},{additionalProperties:!1,properties:{body:{$ref:"#/definitions/WarpText"},inputs:{additionalProperties:{type:"string"},type:"object"},label:{$ref:"#/definitions/WarpText"},match:{additionalProperties:{type:["string","number","boolean"]},type:"object"},source:{type:"string"},subject:{$ref:"#/definitions/WarpText"},type:{const:"webhook",type:"string"}},required:["type","source"],type:"object"}]},WarpUnmountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"unmount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpVarPlaceholder:{type:"string"}}};var Wn=new Set(["POST","PUT","PATCH","DELETE"]),xn=/^[A-Z][A-Z0-9_]*$/,ct=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validateHasActions(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...this.validateUrlPlaceholdersHaveInputs(t)),e.push(...this.validateNoArgPositionsOnHttpActions(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validateHasActions(t){try{let{action:e}=N(t);return e?[]:["Warp must have at least one action"]}catch(e){return[e instanceof Error?e.message:"Warp must have at least one action"]}}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"]:[]}validateUrlPlaceholdersHaveInputs(t){let e=[],n=new Set(Object.keys(t.vars??{})),i=new Set;for(let a of t.actions){let s=a.inputs??[];for(let o of s)typeof o.position=="string"&&o.position.startsWith("url:")&&i.add(o.position.slice(4));let p=a.destination;if(!p||typeof p=="string"||!p.url)continue;let l=this.extractUrlPlaceholders(p.url);if(l.length!==0)for(let o of l)n.has(o)||xn.test(o)||i.has(o)||e.push(`URL "${p.url}" contains {{${o}}} but no input has position "url:${o}" (and it is not declared in vars)`)}return e}validateNoArgPositionsOnHttpActions(t){let e=[];for(let n of t.actions){let i=n.destination;if(!i||typeof i=="string")continue;let a=i.method?.toUpperCase();if(!a||!Wn.has(a))continue;let s=n.inputs??[];for(let p of s)if(p.position?.startsWith("arg:")){let l=p.as??p.name??"(unnamed)";e.push(`Input "${l}" has position "${p.position}" on HTTP ${a} action \u2014 CLI arg positions are not sent in the JSON body. Remove the position (defaults to body) or use "payload:X" / "url:X" explicitly.`)}}return e}extractUrlPlaceholders(t){let n=t.split("?")[0].match(/\{\{([a-zA-Z_][a-zA-Z_0-9]*)\}\}/g);return n?n.map(i=>i.slice(2,-2)):[]}async validateSchema(t){try{let e=this.config.schema?.warp?await(await fetch(this.config.schema.warp)).json():Me,n=new ke.default({strict:!1}),i=n.compile(e);return i(t)?[]:[`Schema validation failed: ${n.errorsText(i.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var ut=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 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 ct(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
+ `))}};var T=require("fs"),et=require("path");var re="$bigint:",Ot=(r,t)=>typeof t=="bigint"?re+t.toString():t,tt=(r,t)=>typeof t=="string"&&t.startsWith(re)?BigInt(t.slice(re.length)):t;var Bt=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,T.existsSync)(this.cacheDir)||(0,T.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,T.existsSync)(e))return null;let n=(0,T.readFileSync)(e,"utf-8"),i=JSON.parse(n,tt);return i.expiresAt!==null&&Date.now()>i.expiresAt?((0,T.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,T.writeFileSync)(a,JSON.stringify(i,Ot),"utf-8")}async delete(t){try{let e=this.getFilePath(t);(0,T.existsSync)(e)&&(0,T.unlinkSync)(e)}catch{}}async keys(t){try{let e=(0,T.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,T.readdirSync)(this.cacheDir).forEach(e=>{e.endsWith(".json")&&(0,T.unlinkSync)((0,et.join)(this.cacheDir,e))})}catch{}}};var dt=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,Ot))}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 ft=H;var qe=require("fs"),ne=require("path");var jt=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,qe.readFileSync)(t,"utf-8");return new Map(Object.entries(JSON.parse(e,tt)))}catch(e){return b.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},ht={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 dt(t,e):e?.type==="memory"?new ft(t,e):e?.type==="static"?new jt(t,e):e?.type==="filesystem"?new Bt(t,e):typeof window<"u"&&window.localStorage?new dt(t,e):new ft(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 mt={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}},vn=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:c}=await Rt(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries($t(n,d,o,c)).forEach(([h,f])=>s.set(h,f))}let p=se(e.resolvedInputs,mt.Headers,i);if(p){let l=oe(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,c])=>typeof c=="string"&&s.set(o,c))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},An=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===ae.Get){let s=se(e.resolvedInputs,mt.Queries,i);if(s){let p=oe(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,c])=>c!=null&&l.searchParams.set(o,String(c))),a=l.toString()}}}return a},Cn=(r,t,e,n,i)=>{if(r===ae.Get)return;let a=se(t.resolvedInputs,mt.Payload,n);if(a&&oe(a)!==null)return a;let{[mt.Payload]:s,[mt.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},ze=async(r,t,e,n,i,a,s,p)=>{let l=t.method||ae.Get,o=await vn(r,t,e,n,a,p),c=An(r,t,e,l,a),d=Cn(l,e,i,a,s);return{url:c,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(`\\{\\{${bn(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(u.Vars.Query+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Query.length+1),[o,c]=l.split(u.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(u.Vars.Env+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Env.length+1),[o,c]=l.split(u.ArgCompositeSeparator),h={...this.config.vars,...e.envs}?.[o];h!=null&&a(s,h)}else p===u.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(u.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(u.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){if(!t||typeof t!="string"||!t.includes("{{"))return t;let i=this.applyGlobalsToText(t),a=this.buildInputBag(e,n);return B(i,a)}applyGlobalsToText(t){if(!Object.values(u.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(u.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),c={config:this.config,adapter:o},d=i(c);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e){let n={};return t.forEach(i=>{if(!i.value)return;let a=i.input.as||i.input.name,[,s]=e.stringToNative(i.value);n[a]=String(s)}),n}},bn=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var wn=["collect","compute","mcp","state","mount","unmount"],In=new Set(Object.values(m)),Pn=r=>{let t=r.indexOf(u.ArgParamsSeparator);return t===-1?!1:In.has(r.slice(0,t))},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}getCache(){return this.cache}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(ht.WarpExecutable(t,e||"",n))||[];return j(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(ht.WarpExecutable(t,e||"",n))||[]}async createExecutable(t,e,n,i={}){let a=E(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 $(this.config,p,this.adapters),o=await l.apply(t,i),c=E(o,e),{action:d,index:h}=N(o),f=[],g=[];if(h===e-1){let P=this.getStringTypedInputs(d,n);f=await this.getResolvedInputs(s.name,d,P,l,i.queries),g=await this.getModifiedInputs(f)}else c.inputs&&c.inputs.length>0&&(f=await this.resolveActionInputs(s.name,c,n,l,i.queries),g=await this.getModifiedInputs(f));let y=g.find(P=>P.input.position==="receiver"||P.input.position==="destination")?.value,x=this.getDestinationFromAction(c),C=y?this.serializer.stringToNative(y)[1]:x;if(C&&(C=l.applyInputs(C,g,this.serializer)),!C&&!wn.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let v=this.getPreparedArgs(c,g);v=v.map(P=>l.applyInputs(P,g,this.serializer));let R=g.find(P=>P.input.position==="value")?.value||null,A="value"in c?c.value:null,L=R?.split(u.ArgParamsSeparator)[1]||A||"0",F=l.applyInputs(L,g,this.serializer),O=BigInt(F),U=g.filter(P=>P.input.position==="transfer"&&P.value).map(P=>P.value),Ge=[...("transfers"in c?c.transfers:[])||[],...U||[]].map(P=>{let Lt=l.applyInputs(P,g,this.serializer),Ke=Lt.startsWith(`asset${u.ArgParamsSeparator}`)?Lt:`asset${u.ArgParamsSeparator}${Lt}`;return this.serializer.stringToNative(Ke)[1]}),_e=g.find(P=>P.input.position==="data")?.value,Je="data"in c?c.data||"":null,ue=_e||Je||null,Qe=ue?l.applyInputs(ue,g,this.serializer):null,de={adapter:p,warp:o,chain:s,action:e,destination:C,args:v,value:O,transfers:Ge,data:Qe,resolvedInputs:g};return await this.cache.set(ht.WarpExecutable(this.config.env,o.meta?.hash||"",e),de.resolvedInputs,ie.OneWeek),de}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||Pn(i)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(c=>i.applyInputs(c,[],this.serializer)),l=await Promise.all(p.map(c=>this.preprocessInput(t,c))),o=(c,d)=>{if(c.source===u.Source.UserWallet){let x=S(this.config,t);return x?this.serializer.nativeToString("address",x):null}if(c.source==="hidden"){if(c.default===void 0)return null;let x=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,x)}if(l[d])return l[d];let h=c.as||c.name,f=a?.[h],g=this.url.searchParams.get(h),y=f||g;return y?this.serializer.nativeToString(c.type,String(y)):null};return s.map((c,d)=>{let h=o(c,d),f=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(f!==void 0?this.serializer.nativeToString(c.type,f):null)}})}async resolveInputsFromQuery(t,e,n){let i=E(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=W(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=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(u.Transform.Prefix)){let a=i.input.modifier.substring(u.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 if(i.input.modifier?.startsWith("crypto:")){let[,a,s]=i.input.modifier.split(":"),p=a==="sha256"&&s?t.find(o=>(o.input.as||o.input.name)===s):null,l=p?.value?this.serializer.stringToNative(p.value)[1]??null:null;if(l){let c=await(await fetch(l)).arrayBuffer(),d=await globalThis.crypto.subtle.digest("SHA-256",c),h=Array.from(new Uint8Array(d)).map(f=>f.toString(16).padStart(2,"0")).join("");e.push({...i,value:this.serializer.nativeToString("string",h)})}else e.push(i)}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=St(e),a=W(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(u.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 c=at(p,o.decimals);return te({...o,amount:c})}else return e}catch(n){throw b.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 c=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:c,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 yt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.loopIterations=new Map;this.active=!0;this.warpResolver=null;this.handlers=n,this.factory=new Q(t,e)}setWarpResolver(t){this.warpResolver=t}stop(){this.active=!1,this.loopIterations.clear()}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},c={...n,queries:o},d={};if(t.vars)try{let f=this.adapters?.find(g=>g.chainInfo.name===(t.chain||this.adapters[0]?.chainInfo?.name));if(f){let g=await new $(this.config,f,this.adapters).apply(t,c);g?.actions&&(t.actions=g.actions),g?.meta&&(t.meta=g.meta)}}catch{}let{index:h}=N(t);for(let f=1;f<=t.actions.length;f++){let g=E(t,f);if(!It(g))continue;let y=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:x,chain:C,immediateExecution:v,executable:R}=await this.executeAction(t,f,e,y);if(x&&i.push(x),C&&(a=C),v&&s.push(v),v?.output){let{_DATA:A,...L}=v.output;Object.assign(d,L)}v?.values?.mapped&&Object.assign(d,v.values.mapped),R&&f===h+1&&R.resolvedInputs&&(p=j(R.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 this.scheduleLoops(t,e,c,d),{txs:i,chain:a,immediateExecutions:s,resolvedInputs:p}}async executeAction(t,e,n,i={}){let a=E(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):Ft.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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}if(a.type==="loop")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="state")return this.executeState(t,a,e,i);if(a.type==="mount"||a.type==="unmount"){if(a.when){let o=i.envs||{},c=M(a.when,o);if(!k(c))return{tx:null,chain:null,immediateExecution:null,executable:null}}return await this.handlers?.onMountAction?.({action:a,actionIndex:e,warp:t}),{tx:null,chain:null,immediateExecution:null,executable:null}}if(a.type==="inline"){if(!this.warpResolver)return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.when){let y=this.adapters[0]?.chainInfo.name||"";if(!await this.evaluateWhenCondition(t,a,n,i,[],y))return{tx:null,chain:null,immediateExecution:null,executable:null}}let o=a,c=await this.warpResolver(o.warp);if(!c)return{tx:null,chain:null,immediateExecution:null,executable:null};await this.callHandler(()=>this.handlers?.onActionProcessing?.(a));let d={...this.config.vars,...i.envs||{},...i.queries||{}},h={};for(let[y,x]of Object.entries(c.meta?.query||{}))h[y]=x.replace(/\{\{(.+?)\}\}/g,(C,v)=>{let R=d[v.trim()];return R==null?"":typeof R=="object"?JSON.stringify(R):String(R)});c.meta={...c.meta,query:h};let{immediateExecutions:f}=await this.execute(c,[],i),g=f[0];return g?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:g,tx:null})),{tx:null,chain:null,immediateExecution:g,executable:null}):{tx:null,chain:null,immediateExecution:null,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,void 0,i.envs);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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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(!It(s)||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),g={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:f};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:g})),g}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let f=t.meta?.query;f&&Object.keys(f).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,f))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=Sn(c,d.output);return d.next=pt(this.config,this.adapters,t,o,h,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,n){let i=S(this.config,t.chain.name),a=E(t.warp,t.action),s=this.factory.getSerializer(),p=J(t.resolvedInputs,s);if(a.destination&&typeof a.destination=="object"&&"url"in a.destination)return await this.doHttpRequest(t,a.destination,i,p,e,n);let{values:l,output:o}=await Y(t.warp,p,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,i,"unhandled",l,o)}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,s){let p=new $(this.config,W(t.chain.name,this.adapters),this.adapters),l=this.factory.getSerializer(),{url:o,method:c,headers:d,body:h}=await ze(p,e,t,n,i,l,a,async f=>await this.callHandler(()=>this.handlers?.onSignRequest?.(f)));s&&(o=B(o,s)),b.debug("WarpExecutor: Executing HTTP collect",{url:o,method:c,headers:d,body:h});try{let f={method:c,headers:d,body:h},y=await(await Yt(this.adapters))(o,f);b.debug("Collect response status",{status:y.status});let x=await y.json();b.debug("Collect response content",{content:x});let{values:C,output:v}=await Y(t.warp,x,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,S(this.config,t.chain.name),y.ok?"success":"error",C,v,x)}catch(f){b.error("WarpActionExecutor: Error executing collect",f);let g=j(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:g}}}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=E(t.warp,t.action);if(!i.destination){let f=j(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 g=j(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:g}}let p=this.factory.getSerializer(),l=new $(this.config,W(t.chain.name,this.adapters),this.adapters),o=i.destination,c=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),h={};o.headers&&Object.entries(o.headers).forEach(([f,g])=>{let y=l.applyInputs(g,t.resolvedInputs,this.factory.getSerializer());h[f]=y}),b.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let f=new s(new URL(c),{requestInit:{headers:h}}),g=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await g.connect(f);let y={};t.resolvedInputs.forEach(({input:A,value:L})=>{if(L&&A.position&&typeof A.position=="string"&&A.position.startsWith("payload:")){let F=A.position.replace("payload:",""),[O,U]=p.stringToNative(L);if(O==="string")y[F]=String(U);else if(O==="bool")y[F]=!!U;else if(O==="uint8"||O==="uint16"||O==="uint32"||O==="uint64"||O==="uint128"||O==="uint256"||O==="biguint"){let vt=Number(U);y[F]=(Number.isInteger(vt),vt)}else y[F]=U}}),e&&Object.assign(y,e);let x=await g.callTool({name:d,arguments:y});await g.close();let C;if(x.content&&x.content.length>0){let A=x.content[0];if(A.type==="text")try{C=JSON.parse(A.text)}catch{C=A.text}else A.type,C=A}else C=x;let{values:v,output:R}=await Y(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",v,R,x)}catch(f){b.error("WarpExecutor: Error executing MCP",f);let g=j(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:g}}}buildCollectResult(t,e,n,i,a,s){let p=pt(this.config,this.adapters,t.warp,t.action,a,n),l=j(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:Tt(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}scheduleLoops(t,e,n,i){if(this.active)for(let a of t.actions){if(a.type!=="loop"||a.auto===!1)continue;let s=a,l=`loop:${n.scope||"default"}:${t.meta?.identifier||t.name}`;if(s.when){let h={...n.envs,...i},f=M(s.when,h);try{if(!k(f)){this.loopIterations.delete(l);continue}}catch{this.loopIterations.delete(l);continue}}let o=s.maxIterations??1e4,c=(this.loopIterations.get(l)??0)+1;if(c>o){this.loopIterations.delete(l),b.debug(`Loop maxIterations (${o}) reached for warp ${t.meta?.identifier}`);continue}if(this.loopIterations.set(l,c),!this.handlers?.onLoop)continue;let d=s.delay??0;this.handlers.onLoop({warp:t,inputs:e,meta:n,delay:d})}}async executeState(t,e,n,i){if(e.when){let l=i.envs||{},o=M(e.when,l);if(!k(o))return{tx:null,chain:null,immediateExecution:null,executable:null}}let a=this.factory.getCache(),p=`state:${i.scope||"default"}:${e.store}`;if(e.op==="read"){let l=await a.get(p)??{},o=e.keys??Object.keys(l),c={};for(let h of o)l[h]!==void 0&&l[h]!==null&&(c[`state.${h}`]=l[h]);let d={status:"success",warp:t,action:n,user:null,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:c,messages:{},destination:null,resolvedInputs:[]};return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:n,chain:null,execution:d,tx:null})),{tx:null,chain:null,immediateExecution:d,executable:null}}if(e.op==="write"&&e.data){let l=await a.get(p)??{},o=i.envs||{},c={};for(let[d,h]of Object.entries(e.data))if(typeof h=="string"){let f=h.replace(/\{\{([^}]+)\}\}/g,(g,y)=>{let x=o[y.trim()];return x!=null?String(x):h});c[d]=Tn(f)}else c[d]=h;await a.set(p,{...l,...c})}return e.op==="clear"&&await a.delete(p),{tx:null,chain:null,immediateExecution:null,executable:null}}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=W(s.name,this.adapters),l=new $(this.config,p,this.adapters),o=await l.apply(t,a),c=E(o,n),d=[];if(e.inputs&&e.inputs.length>0){let A=this.factory.getStringTypedInputs(e,i),L=await this.factory.getResolvedInputs(s.name,e,A,l,a.queries);d=await this.factory.getModifiedInputs(L)}else{let{action:A}=N(o),L=this.factory.getStringTypedInputs(A,i),F=await this.factory.getResolvedInputs(s.name,A,L,l,a.queries);d=await this.factory.getModifiedInputs(F)}let h=Zt(c.prompt,this.config.platform),f=l.applyInputs(h,d,this.factory.getSerializer());a.envs&&(f=B(f,a.envs));let g=j(d),y=S(this.config,s.name),x=this.factory.getSerializer(),{values:C,output:v}=await Xt(o,f,n,d,x,this.config);if(this.handlers?.onPromptGenerate){let A=await this.handlers.onPromptGenerate(f,c.expect);A&&(v.MESSAGE=A,c.as&&(v[c.as]=A))}let R=d.find(A=>A.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:y,txHash:null,tx:null,next:ot(this.config,this.adapters,o,n,v),values:C,output:v,messages:Tt(o,{...C.mapped,...v},this.config),destination:R,resolvedInputs:g}}catch(s){return b.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=W(p.name,this.adapters),o=new $(this.config,l,this.adapters),c;if(a)c=a;else{let g=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(g)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},f=M(e.when,h);return k(f)}},Sn=(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}},Tn=r=>{if(r==="true")return!0;if(r==="false")return!1;let t=Number(r);return!isNaN(t)&&r.trim()!==""?t:r};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 b.error("WarpIndex: Error searching for warps: ",i),i}}};var xt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!Z(t):!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(u.HttpProtocolPrefix)?Z(t):V(t);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,c=t.startsWith(u.HttpProtocolPrefix)?zt(t):Gt(i.identifier);if(this.resolver){let g=null;if(a==="hash")g=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;g=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}g&&(p=g.warp,l=g.registryInfo,o=g.brand)}else{if(!i.chain)throw new Error(`WarpLinkDetecter: chain is required for identifier ${i.identifier}`);let g=W(i.chain,this.adapters);if(a==="hash"){p=await g.builder().createFromTransactionHash(s,e);let y=await g.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await g.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await g.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(En(p,i.chain,l,i.identifier),p.meta.query=c?_t(c):null),!p)return n;let d=p.chain||i.chain||null,h=d?this.adapters.find(g=>g.chainInfo.name.toLowerCase()===d.toLowerCase()):null,f=h?await new $(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:f,chain:d,registryInfo:l,brand:o}}catch(a){return b.error("Error detecting warp link",a),n}}},En=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?Pt(null,"alias",e.alias):Pt(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 rt(e));return new nt(t)}getConfig(){return this.config}mergeVars(t){this.config={...this.config,vars:{...this.config.vars,...t}}}getResolver(){return this.resolver}createExecutor(t){let e=new yt(this.config,this.chains,t);return e.setWarpResolver(async n=>(await this.detectWarp(n)).warp??null),e}async detectWarp(t,e){return new xt(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 g=await fetch(t);if(!g.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await g.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:c,immediateExecutions:d,resolvedInputs:h}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:c,immediateExecutions:d,evaluateOutput:async g=>{await l.evaluateOutput(p,g)},resolvedInputs:h}}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=V(t);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");if(!n.chain)throw new Error("WarpClient: createFromTransactionHash - chain is required");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??N(e).index+1,p=await W(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=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 Wt(this.config)}get linkBuilder(){return new G(this.config,this.chains)}createBuilder(t){return t?W(t,this.chains).builder():new ut(this.config)}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 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 Rn(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(ce(t,n)!==i)return!1;return!0}function $n(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,getGeneratedSourceWarpName,getLatestProtocolIdentifier,getMppFetch,getNextInfo,getNextInfoForStatus,getProviderConfig,getRandomBytes,getRandomHex,getRequiredAssetIds,getWalletFromConfigOrFail,getWarpActionByIndex,getWarpBrandLogoUrl,getWarpChainAssetLogoUrl,getWarpChainInfoLogoUrl,getWarpIdentifierWithQuery,getWarpInfoFromIdentifier,getWarpInputAction,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,resolveNextStrings,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 nt=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 it=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 Sr=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},Se=r=>r?typeof r=="string"?r:r.address:null,S=(r,t)=>Se(r.user?.wallets?.[t]||null),Te=r=>r?typeof r=="string"?r:r.privateKey||null:null,Ee=r=>r?typeof r=="string"?r:r.mnemonic||null:null,Re=r=>r?typeof r=="string"?r:r.externalId||null:null,Tr=(r,t)=>Te(r.user?.wallets?.[t]||null)?.trim()||null,Er=(r,t)=>Ee(r.user?.wallets?.[t]||null)?.trim()||null,$e=(r,t)=>Re(r.user?.wallets?.[t]||null)?.trim()||null,Rr=(r,t)=>{let e=$e(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},$r=r=>typeof r=="string",Nr=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},Or=(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()},Oe=(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`)},Br=(r,t=24)=>{let e=Ne(r);return Oe(e,t),e};var Be=(h=>(h.Multiversx="multiversx",h.Claws="claws",h.Sui="sui",h.Ethereum="ethereum",h.Base="base",h.Arbitrum="arbitrum",h.Polygon="polygon",h.Somnia="somnia",h.Tempo="tempo",h.Fastset="fastset",h.Solana="solana",h.Near="near",h))(Be||{}),Mt=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Mt||{}),kt=Object.values(Mt),Vr=["ethereum","base","arbitrum","polygon","somnia","tempo"],Hr=["multiversx","claws"],Fr=["coinbase","privy","gaupa"],u={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",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:"}},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",Datetime:"datetime",Email:"email",Textarea:"textarea",File:"file"},qt=typeof window<"u"?window:{open:()=>{}};var k={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},U={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/v${k.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/brand/v${k.Brand}.schema.json`,DefaultClientUrl:r=>r==="devnet"?"https://devnet.joai.ai":r==="testnet"?"https://testnet.joai.ai":"https://joai.ai",SuperClientUrls:["https://joai.ai","https://devnet.joai.ai","https://testnet.joai.ai","https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",u.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","string[]","json","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 kr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var at="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",P={baseUrl:at,chainLogo:r=>`${at}/chains/logos/${r}`,tokenLogo:r=>`${at}/tokens/logos/${r}`,walletLogo:r=>`${at}/wallets/logos/${r}`},je={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"},zr=r=>je[r]??r.charAt(0).toUpperCase()+r.slice(1),Le={ethereum:{light:P.chainLogo("ethereum-white.svg"),dark:P.chainLogo("ethereum-black.svg")},base:{light:P.chainLogo("base-white.svg"),dark:P.chainLogo("base-black.svg")},arbitrum:P.chainLogo("arbitrum.svg"),polygon:P.chainLogo("polygon.svg"),somnia:P.chainLogo("somnia.png"),tempo:{light:P.chainLogo("tempo-white.svg"),dark:P.chainLogo("tempo-black.svg")},multiversx:P.chainLogo("multiversx.svg"),claws:P.chainLogo("claws.png"),sui:P.chainLogo("sui.svg"),solana:P.chainLogo("solana.svg"),near:{light:P.chainLogo("near-white.svg"),dark:P.chainLogo("near-black.svg")},fastset:{light:P.chainLogo("fastset-white.svg"),dark:P.chainLogo("fastset-black.svg")}},Gr=(r,t="dark")=>{let e=Le[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var wt=(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:wt(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 wt(r.logoUrl,e)},Kr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return wt(r.logoUrl,e)};var bt=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}},It=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"}`)}}},D=null;function zt(){if(D)return D;if(typeof window<"u"&&window.crypto)return D=new bt,D;if(typeof process<"u"&&process.versions?.node)return D=new It,D;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Zr(r){D=r}async function Gt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||zt()).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 Yr(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 _t(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await Gt(r/2,t);return Ve(e)}async function tn(){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 Gt(16),r.randomBytes=!0}catch{}return r}function en(){return zt()}var an=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${u.Vars.Env}:`)).map(t=>{let e=t.replace(`${u.Vars.Env}:`,"").trim(),[n,i]=e.split(u.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},st=r=>{if(r==="warp")return`warp:${k.Warp}`;if(r==="brand")return`brand:${k.Brand}`;if(r==="abi")return`abi:${k.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},T=(r,t)=>r?.actions[t-1],He=["state","mount","unmount","loop"],$=r=>{if(r.actions.length===0)throw new Error(`Warp has no actions: ${r.meta?.identifier}`);let t=r.actions.find(e=>!He.includes(e.type));return t?{action:t,index:r.actions.indexOf(t)}:{action:r.actions[0],index:0}},Pt=r=>r.auto===!1?!1:r.type==="link"?r.auto===!0:!0,ot=(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)},Jt=(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},O=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="object"&&i!==null?JSON.stringify(i):String(i)}),J=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t")}'`:typeof i=="object"&&i!==null?`'${JSON.stringify(i).replace(/'/g,"\\'")}'`:String(i)}),cn=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===u.Source.UserWallet||n.default===`{{${u.Globals.UserWallet.Placeholder}}}`||n.default===`{{${u.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},Q=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 dn={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"},pt=(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""},fn=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,gn=r=>r;var K=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,Wn=(r,t)=>!r||!t?!1:K(r)===K(t),St=(r,t,e)=>{let n=K(e);if(t===u.IdentifierType.Alias)return u.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+u.IdentifierParamSeparator+t+u.IdentifierParamSeparator+n},F=r=>{let t=decodeURIComponent(r).trim(),e=K(t),n=e.split("?")[0],i=Qt(n);if(n.length===64&&/^[a-fA-F0-9]+$/.test(n))return{chain:null,type:u.IdentifierType.Hash,identifier:e,identifierBase:n};if(i.length===2&&/^[a-zA-Z0-9]{62}$/.test(i[0])&&/^[a-zA-Z0-9]{2}$/.test(i[1]))return null;if(i.length===3){let[a,s,p]=i;if(s===u.IdentifierType.Alias||s===u.IdentifierType.Hash){let l=e.includes("?")?p+e.substring(e.indexOf("?")):p;return{chain:a,type:s,identifier:l,identifierBase:p}}}if(i.length===2){let[a,s]=i;if(a===u.IdentifierType.Alias||a===u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s;return{chain:null,type:a,identifier:p,identifierBase:s}}}if(i.length===2){let[a,s]=i;if(a!==u.IdentifierType.Alias&&a!==u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s,l=Fe(s,a)?u.IdentifierType.Hash:u.IdentifierType.Alias;return{chain:a,type:l,identifier:p,identifierBase:s}}}return{chain:null,type:u.IdentifierType.Alias,identifier:e,identifierBase:n}},X=r=>{let t=new URL(r),n=t.searchParams.get(u.IdentifierParamName);if(n||(n=t.pathname.split("/")[1]),!n)return null;let i=decodeURIComponent(n);return F(i)},Fe=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Ue=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Qt=r=>{let t=Ue(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Qt(a);return[i,...s]},Kt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(u.IdentifierParamName),e.toString()||null}catch{return null}},Xt=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},Zt=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},xn=r=>{let t=F(r);return(t?t.identifierBase:K(r)).trim()},vn=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 Tt=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},wn=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=Tt(r)[0];return t.has(e)};var Et=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=pt(a,e);return[i,O(s,t)]});return Object.fromEntries(n)};import De from"qr-code-styling";var q=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!X(t):!1}build(t,e,n){let i=this.config.clientUrl||U.DefaultClientUrl(this.config.env),a=W(t,this.adapters),s=e===u.IdentifierType.Alias?n:e+u.IdentifierParamSeparator+n,p=a.chainInfo.name+u.IdentifierParamSeparator+s,l=encodeURIComponent(p);return U.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${u.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=F(t);if(!e)return null;if(!e.chain){let i=this.config.clientUrl||U.DefaultClientUrl(this.config.env),a=u.IdentifierAliasMarker+e.identifierBase;return U.SuperClientUrls.includes(i)?`${i}/${encodeURIComponent(a)}`:`${i}?${u.IdentifierParamName}=${encodeURIComponent(a)}`}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 De({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 Me="https://",$t=(r,t)=>{if(!r)return null;if(typeof r=="string")return t==="success"?[r]:null;if(Array.isArray(r))return t==="success"?r:null;let e=r[t];return e?Array.isArray(e)?e:[e]:null},Vn=(r,t)=>$t(r,t)?.[0]??null,Yt=(r,t,e,n,i)=>{if(n.startsWith(Me))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let f=O(a,{...e.vars,...i});return[{identifier:f,url:Rt(t,f,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let f=O(s,{...e.vars,...i}),g=f?`${a}?${f}`:a;return[{identifier:g,url:Rt(t,g,r)}]}let l=p[0];if(!l)return[];let o=l.match(/{{([^[]+)\[\]/),c=o?o[1]:null;if(!c||i[c]===void 0)return[];let d=Array.isArray(i[c])?i[c]:[i[c]];if(d.length===0)return[];let h=p.filter(f=>f.includes(`{{${c}[]`)).map(f=>{let g=f.match(/\[\](\.[^}]+)?}}/),y=g&&g[1]||"";return{placeholder:f,field:y?y.slice(1):"",regex:new RegExp(f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(f=>{let g=s;for(let{regex:x,field:C}of h){let v=C?ke(f,C):f;if(v==null)return null;g=g.replace(x,v)}if(g.includes("{{")||g.includes("}}"))return null;let y=g?`${a}?${g}`:a;return{identifier:y,url:Rt(t,y,r)}}).filter(f=>f!==null)},lt=(r,t,e,n,i)=>{let a=T(e,n)?.next||e.next||null,s=$t(a,"success");if(!s)return null;let p=s.flatMap(l=>Yt(r,t,e,l,i));return p.length>0?p:null},ct=(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;let o=l.flatMap(c=>Yt(r,t,e,c,i));return o.length>0?o:null},Rt=(r,t,e)=>{let[n,i]=t.split("?"),a=new q(e,r).buildFromPrefixedIdentifier(n);if(!a)throw new Error(`Cannot build URL for identifier: ${n}`);if(!i)return a;let s=new URL(a);return new URLSearchParams(i).forEach((p,l)=>s.searchParams.set(l,p)),s.toString().replace(/\/\?/,"?")},ke=(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 w=M;function qe(r,t,e){return r.startsWith(u.Position.Payload)?r.slice(u.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function te(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]=te(e[n],t[n]):e[n]=t[n]}),e}function ze(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 B(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function z(r,t){let e={};return r.forEach(n=>{if(n.input.position==="local")return;let i=n.input.as||n.input.name,a=ze(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(u.Position.Payload)){let s=qe(n.input.position,i,a);e=te(e,s)}else e[i]=a}),e}function ut(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 c=o;if("identifier"in c&&"amount"in c){let d=String(c.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(c.amount)}};for(let p=0;p<a;p++)s(r[p]);return s(n),i}var ee=(r,t,e)=>{let n=[],i=[],a={};if(r.output)for(let[s,p]of Object.entries(r.output)){if(p.startsWith(u.Transform.Prefix))continue;let l=Qe(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...c]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(c);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=(h,f)=>f.reduce((g,y)=>g&&g[y]!==void 0?g[y]:null,h),p=h=>h.length===0?t:s(t,h),{stringValues:l,nativeValues:o,output:c}=ee(r,e,p),d=z(n,i);for(let h of n)if(h.input.position==="local"){let f=h.input.as||h.input.name;if(f&&h.value){let[,g]=i.stringToNative(h.value);d[f]=g}}return{values:{string:l,native:o,mapped:d},output:await re(r,c,t,e,n,i,a)}},re=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=Ge(p,r,n,i,a),p=await _e(r,p,e,i,a,s.transform?.runner||null),p},Ge=(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],c=s.findIndex(h=>h.as===o||h.name===o),d=c!==-1?n[c]?.value:null;a[p]=d?i.stringToNative(d)[1]:null}return a},_e=async(r,t,e,n,i,a)=>{if(!r.output)return t;let s={...t},p=Object.entries(r.output).filter(([,o])=>o.startsWith(u.Transform.Prefix)).map(([o,c])=>({key:o,code:c.substring(u.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:Je(e),inputs:ut(n,i)};for(let{key:o,code:c}of p)try{s[o]=await a.run(c,l),l[o]=s[o]}catch(d){w.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Je=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},ne=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=ee(r,e,s),c=await re(r,o,t,e,n,i,a);return"PROMPT"in c||(c.PROMPT=t),{values:{string:p,native:l,mapped:z(n,i)},output:c}},Qe=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 Ke=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:kt.some(t=>t in r),ie=(r,t)=>{if(!Ke(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 Kn=(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 Xe(r,t,e,n=5){let i=await _t(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 Nt(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return Xe(r,i,e,5)}function Ot(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function ti(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Nt(r,e,n),p=await t(i);return Ot(r,p,a,s)}function ei(r){let t=new Date(r).getTime();return Date.now()<t}function ri(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 Ze=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",Ye=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),ae=(r,t=24)=>{let e=Ye(r);return e?e.slice(0,t):"action"},se=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)},tr=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()}},ii=(r,t,e)=>{let n=ae((e||t||"").trim()||"action"),i=`${r.type}|${tr(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=se(i);return`private_src_${n}_${a}`},er=r=>{let t=Ze(r),e=ae(t),n=se(t.trim().toLowerCase());return`private_gen_${e}_${n}`},ai=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||er(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},si=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function pi(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 ci(r,t,e){return null}var rr=(r,t)=>{let e=null;try{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]:[]},fi=async(r,t,e,n)=>{try{let i=W(e,n),a=rr(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 nr,tempo as ir}from"mppx/client";async function oe(r){for(let t of r){if(!t.wallet.getMppAccount)continue;let e=await t.wallet.getMppAccount().catch(()=>null);if(!e)continue;return w.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),nr.create({methods:[ir({account:e})],polyfill:!1}).fetch}return fetch}var pe=/^(.+)\[\]$/,le={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},b=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=le[t]??t,pe.test(t))return t+u.ArgParamsSeparator+JSON.stringify(e);if(t===m.Tuple&&Array.isArray(e)){if(e.length===0)return t+u.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(u.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(u.ArgCompositeSeparator)})${u.ArgParamsSeparator}${a.join(u.ArgListSeparator)}`}return t+u.ArgParamsSeparator+e.join(u.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})${u.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${u.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${u.ArgParamsSeparator}${s.join(u.ArgListSeparator)}`}if(t.startsWith(m.Vector)&&Array.isArray(e)){if(e.length===0)return`${t}${u.ArgParamsSeparator}`;let i=t.includes(u.IdentifierParamSeparator)?t.split(u.IdentifierParamSeparator)[1]:typeof e[0]=="string"&&e[0].includes(u.ArgParamsSeparator)?e[0].substring(0,e[0].indexOf(u.ArgParamsSeparator)):null;if(!i)return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator);let a=e.map(p=>{if(typeof p=="string"&&p.includes(u.ArgParamsSeparator)){let l=p.indexOf(u.ArgParamsSeparator),o=p.substring(l+1);return i.startsWith(m.Tuple)?o.replace(u.ArgListSeparator,u.ArgCompositeSeparator):o}return String(p)}),s=i.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a.join(s)}if(t===m.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?m.Asset+u.ArgParamsSeparator+e.identifier+u.ArgCompositeSeparator+String(e.amount)+u.ArgCompositeSeparator+String(e.decimals):m.Asset+u.ArgParamsSeparator+e.identifier+u.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==="json"?t+u.ArgParamsSeparator+JSON.stringify(e):t+u.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(u.ArgParamsSeparator),n=le[e[0]]??e[0],i=e.slice(1).join(u.ArgParamsSeparator);if(pe.test(n)){if(!i)return[n,[]];try{return[n,JSON.parse(i)]}catch{return[n,i]}}if(n==="null")return[n,null];if(n===m.Option){let[a,s]=i.split(u.ArgParamsSeparator);return[m.Option+u.ArgParamsSeparator+a,s||null]}if(n===m.Vector){let a=i.indexOf(u.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator,c=(p?p.split(l):[]).map(d=>this.stringToNative(s+u.ArgParamsSeparator+d)[1]);return[m.Vector+u.ArgParamsSeparator+s,c]}else if(n.startsWith(m.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(u.ArgCompositeSeparator),p=i.split(u.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${u.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(u.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${u.ArgParamsSeparator}]+)${u.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,c,d,h]=o;p[c]=this.stringToNative(`${d}${u.IdentifierParamSeparator}${h}`)[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.Datetime)return[n,i];if(n===m.Asset){let[a,s]=i.split(u.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]}}if(n==="json")try{return[n,JSON.parse(i)]}catch{return[n,i]}if(n==="chain"||n==="nft"||n==="email"||n==="textarea"||n==="file")return[n,i];throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(u.ArgParamsSeparator)){let[e,n]=t.split(u.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 Ci=r=>new b().nativeToString(m.String,r),wi=r=>new b().nativeToString(m.Uint8,r),bi=r=>new b().nativeToString(m.Uint16,r),Ii=r=>new b().nativeToString(m.Uint32,r),Pi=r=>new b().nativeToString(m.Uint64,r),Si=r=>new b().nativeToString(m.Biguint,r),Ti=r=>new b().nativeToString(m.Bool,r),Ei=r=>new b().nativeToString(m.Address,r),ce=r=>new b().nativeToString(m.Asset,r),Ri=r=>new b().nativeToString(m.Hex,r),$i=(r,t)=>{if(t===null)return m.Option+u.ArgParamsSeparator;let e=r(t),n=e.indexOf(u.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return m.Option+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a},Ni=(...r)=>new b().nativeToString(m.Tuple,r),Oi=r=>new b().nativeToString(m.Struct,r),Bi=r=>new b().nativeToString(m.Vector,r);import ar from"ajv";var ue=class{constructor(t){this.pendingBrand={protocol:st("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||U.LatestBrandSchemaUrl,i=await(await fetch(e)).json(),a=new ar,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};import or from"ajv";var de={$ref:"#/definitions/Warp",$schema:"http://json-schema.org/draft-07/schema#",definitions:{Warp:{additionalProperties:!1,properties:{actions:{items:{$ref:"#/definitions/WarpAction"},type:"array"},bot:{type:"string"},chain:{$ref:"#/definitions/WarpChainName"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},messages:{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"},meta:{$ref:"#/definitions/WarpMeta"},name:{type:"string"},next:{$ref:"#/definitions/WarpNextConfig"},output:{additionalProperties:{$ref:"#/definitions/WarpResulutionPath"},type:"object"},preview:{type:"string"},protocol:{type:"string"},related:{items:{type:"string"},type:"array"},schedule:{$ref:"#/definitions/WarpSchedule"},sections:{items:{$ref:"#/definitions/WarpSection"},type:"array"},title:{$ref:"#/definitions/WarpText"},trigger:{$ref:"#/definitions/WarpTrigger"},ui:{type:"string"},vars:{additionalProperties:{type:"string"},type:"object"}},required:["protocol","name","title","description","actions"],type:"object"},WarpAction:{anyOf:[{$ref:"#/definitions/WarpTransferAction"},{$ref:"#/definitions/WarpContractAction"},{$ref:"#/definitions/WarpQueryAction"},{$ref:"#/definitions/WarpCollectAction"},{$ref:"#/definitions/WarpComputeAction"},{$ref:"#/definitions/WarpLinkAction"},{$ref:"#/definitions/WarpMcpAction"},{$ref:"#/definitions/WarpPromptAction"},{$ref:"#/definitions/WarpStateAction"},{$ref:"#/definitions/WarpMountAction"},{$ref:"#/definitions/WarpUnmountAction"},{$ref:"#/definitions/WarpLoopAction"},{$ref:"#/definitions/WarpInlineAction"}]},WarpActionInput:{additionalProperties:!1,properties:{as:{type:"string"},bot:{type:"string"},default:{type:["string","number","boolean"]},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},label:{$ref:"#/definitions/WarpText"},max:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},min:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},modifier:{type:"string"},name:{type:"string"},options:{anyOf:[{items:{type:"string"},type:"array"},{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"}]},pattern:{type:"string"},patternDescription:{$ref:"#/definitions/WarpText"},position:{$ref:"#/definitions/WarpActionInputPosition"},required:{type:"boolean"},source:{$ref:"#/definitions/WarpActionInputSource"},type:{$ref:"#/definitions/WarpActionInputType"}},required:["name","type","source"],type:"object"},WarpActionInputPosition:{anyOf:[{const:"receiver",type:"string"},{const:"value",type:"string"},{const:"transfer",type:"string"},{const:"arg:1",type:"string"},{const:"arg:2",type:"string"},{const:"arg:3",type:"string"},{const:"arg:4",type:"string"},{const:"arg:5",type:"string"},{const:"arg:6",type:"string"},{const:"arg:7",type:"string"},{const:"arg:8",type:"string"},{const:"arg:9",type:"string"},{const:"arg:10",type:"string"},{const:"data",type:"string"},{const:"chain",type:"string"},{type:"string"},{const:"destination",type:"string"},{const:"local",type:"string"},{$ref:"#/definitions/WarpActionInputPositionAssetObject"}]},WarpActionInputPositionAssetObject:{additionalProperties:!1,properties:{amount:{type:"string"},token:{type:"string"}},required:["token","amount"],type:"object"},WarpActionInputSource:{enum:["field","query","user:wallet","hidden"],type:"string"},WarpActionInputType:{type:"string"},WarpActionType:{enum:["transfer","contract","query","collect","compute","link","mcp","prompt","state","mount","unmount","loop","inline"],type:"string"},WarpChainName:{enum:["multiversx","claws","sui","ethereum","base","arbitrum","polygon","somnia","tempo","fastset","solana","near"],type:"string"},WarpCollectAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpCollectDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpCollectDestination:{anyOf:[{$ref:"#/definitions/WarpCollectDestinationHttp"},{type:"string"}]},WarpCollectDestinationHttp:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},method:{enum:["GET","POST","PUT","DELETE"],type:"string"},url:{type:"string"}},required:["url"],type:"object"},WarpComputeAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"compute",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpContractAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:["string","null"]},gasLimit:{type:"number"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label","gasLimit"],type:"object"},WarpI18nText:{additionalProperties:{type:"string"},type:"object"},WarpInlineAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},silent:{type:"boolean"},type:{const:"inline",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpLinkAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},type:{$ref:"#/definitions/WarpActionType"},url:{type:"string"},when:{type:"string"}},required:["type","label","url"],type:"object"},WarpLoopAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},delay:{type:"number"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},maxIterations:{type:"number"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"loop",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpMcpDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpDestination:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},tool:{type:"string"},url:{type:"string"}},required:["url","tool"],type:"object"},WarpMeta:{additionalProperties:!1,properties:{chain:{anyOf:[{$ref:"#/definitions/WarpChainName"},{type:"null"}]},createdAt:{type:"string"},creator:{type:"string"},hash:{type:"string"},identifier:{type:"string"},query:{anyOf:[{type:"object"},{type:"null"}]}},required:["chain","identifier","query","hash","creator","createdAt"],type:"object"},WarpMountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"mount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpNextConfig:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"},{additionalProperties:!1,properties:{error:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]},success:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]}},type:"object"}]},"WarpPlatformValue<string>":{anyOf:[{type:"string"},{additionalProperties:!1,properties:{linux:{type:"string"},macos:{type:"string"},windows:{type:"string"}},type:"object"}]},WarpPromptAction:{additionalProperties:!1,properties:{as:{type:"string",description:"Variable name to store the LLM-generated response in. Defaults to MESSAGE if not set."},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},expect:{anyOf:[{type:"string"},{type:"object"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},prompt:{$ref:"#/definitions/WarpPlatformValue%3Cstring%3E"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label","prompt"],type:"object"},WarpQueryAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:"string"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpResulutionPath:{type:"string"},WarpSchedule:{enum:["minutely","hourly","daily","weekly","monthly","yearly"],type:"string"},WarpSection:{additionalProperties:!1,properties:{description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{type:"string"},type:"array"},title:{$ref:"#/definitions/WarpText"}},required:["title","inputs"],type:"object"},WarpStateAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},data:{type:"object"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},keys:{items:{type:"string"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},op:{enum:["read","write","clear"],type:"string"},store:{type:"string"},type:{const:"state",type:"string"},when:{type:"string"}},required:["type","label","op","store"],type:"object"},WarpText:{anyOf:[{type:"string"},{$ref:"#/definitions/WarpI18nText"}]},WarpTransferAction:{additionalProperties:!1,properties:{address:{type:"string"},auto:{type:"boolean"},data:{type:"string"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpTrigger:{anyOf:[{additionalProperties:!1,properties:{pattern:{type:"string"},type:{const:"message",type:"string"}},required:["type","pattern"],type:"object"},{additionalProperties:!1,properties:{body:{$ref:"#/definitions/WarpText"},inputs:{additionalProperties:{type:"string"},type:"object"},label:{$ref:"#/definitions/WarpText"},match:{additionalProperties:{type:["string","number","boolean"]},type:"object"},source:{type:"string"},subject:{$ref:"#/definitions/WarpText"},type:{const:"webhook",type:"string"}},required:["type","source"],type:"object"}]},WarpUnmountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"unmount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpVarPlaceholder:{type:"string"}}};var pr=new Set(["POST","PUT","PATCH","DELETE"]),lr=/^[A-Z][A-Z0-9_]*$/,dt=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validateHasActions(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...this.validateUrlPlaceholdersHaveInputs(t)),e.push(...this.validateNoArgPositionsOnHttpActions(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validateHasActions(t){try{let{action:e}=$(t);return e?[]:["Warp must have at least one action"]}catch(e){return[e instanceof Error?e.message:"Warp must have at least one action"]}}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"]:[]}validateUrlPlaceholdersHaveInputs(t){let e=[],n=new Set(Object.keys(t.vars??{})),i=new Set;for(let a of t.actions){let s=a.inputs??[];for(let o of s)typeof o.position=="string"&&o.position.startsWith("url:")&&i.add(o.position.slice(4));let p=a.destination;if(!p||typeof p=="string"||!p.url)continue;let l=this.extractUrlPlaceholders(p.url);if(l.length!==0)for(let o of l)n.has(o)||lr.test(o)||i.has(o)||e.push(`URL "${p.url}" contains {{${o}}} but no input has position "url:${o}" (and it is not declared in vars)`)}return e}validateNoArgPositionsOnHttpActions(t){let e=[];for(let n of t.actions){let i=n.destination;if(!i||typeof i=="string")continue;let a=i.method?.toUpperCase();if(!a||!pr.has(a))continue;let s=n.inputs??[];for(let p of s)if(p.position?.startsWith("arg:")){let l=p.as??p.name??"(unnamed)";e.push(`Input "${l}" has position "${p.position}" on HTTP ${a} action \u2014 CLI arg positions are not sent in the JSON body. Remove the position (defaults to body) or use "payload:X" / "url:X" explicitly.`)}}return e}extractUrlPlaceholders(t){let n=t.split("?")[0].match(/\{\{([a-zA-Z_][a-zA-Z_0-9]*)\}\}/g);return n?n.map(i=>i.slice(2,-2)):[]}async validateSchema(t){try{let e=this.config.schema?.warp?await(await fetch(this.config.schema.warp)).json():de,n=new or({strict:!1}),i=n.compile(e);return i(t)?[]:[`Schema validation failed: ${n.errorsText(i.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var ft=class{constructor(t){this.config=t;this.pendingWarp={protocol:st("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 Jt(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 dt(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
- `))}};import{existsSync as jt,mkdirSync as cr,readdirSync as fe,readFileSync as ur,unlinkSync as Lt,writeFileSync as dr}from"fs";import{join as ge,resolve as he}from"path";var Bt="$bigint:",gt=(r,t)=>typeof t=="bigint"?Bt+t.toString():t,G=(r,t)=>typeof t=="string"&&t.startsWith(Bt)?BigInt(t.slice(Bt.length)):t;var ht=class{constructor(t,e){let n=e?.path;this.cacheDir=n?he(n):he(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){jt(this.cacheDir)||cr(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return ge(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!jt(e))return null;let n=ur(e,"utf-8"),i=JSON.parse(n,G);return i.expiresAt!==null&&Date.now()>i.expiresAt?(Lt(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);dr(a,JSON.stringify(i,gt),"utf-8")}async delete(t){try{let e=this.getFilePath(t);jt(e)&&Lt(e)}catch{}}async keys(t){try{let e=fe(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{fe(this.cacheDir).forEach(e=>{e.endsWith(".json")&&Lt(ge(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,G);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,gt))}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 L=class L{constructor(t,e){}async get(t){let e=L.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(L.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;L.cache.set(t,{value:e,expiresAt:i})}async delete(t){L.cache.delete(t)}async keys(t){let e=Array.from(L.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){L.cache.clear()}};L.cache=new Map;var tt=L;import{readFileSync as fr}from"fs";import{resolve as me}from"path";var mt=class{constructor(t,e){let n=e?.path?me(e.path):me(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=fr(t,"utf-8");return new Map(Object.entries(JSON.parse(e,G)))}catch(e){return w.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 ye={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},Wt={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}`},yt=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 mt(t,e):e?.type==="filesystem"?new ht(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"},Vt={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},Ht=(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)},Ft=r=>{try{return JSON.parse(r)}catch{return null}},gr=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:c}=await Nt(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Ot(n,d,o,c)).forEach(([h,f])=>s.set(h,f))}let p=Ht(e.resolvedInputs,et.Headers,i);if(p){let l=Ft(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,c])=>typeof c=="string"&&s.set(o,c))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},hr=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===Vt.Get){let s=Ht(e.resolvedInputs,et.Queries,i);if(s){let p=Ft(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,c])=>c!=null&&l.searchParams.set(o,String(c))),a=l.toString()}}}return a},mr=(r,t,e,n,i)=>{if(r===Vt.Get)return;let a=Ht(t.resolvedInputs,et.Payload,n);if(a&&Ft(a)!==null)return a;let{[et.Payload]:s,[et.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},We=async(r,t,e,n,i,a,s,p)=>{let l=t.method||Vt.Get,o=await gr(r,t,e,n,a,p),c=hr(r,t,e,l,a),d=mr(l,e,i,a,s);return{url:c,method:l,headers:o,body:d}};var E=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(`\\{\\{${yr(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(u.Vars.Query+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Query.length+1),[o,c]=l.split(u.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(u.Vars.Env+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Env.length+1),[o,c]=l.split(u.ArgCompositeSeparator),h={...this.config.vars,...e.envs}?.[o];h!=null&&a(s,h)}else p===u.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(u.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(u.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){if(!t||typeof t!="string"||!t.includes("{{"))return t;let i=this.applyGlobalsToText(t),a=this.buildInputBag(e,n);return O(i,a)}applyGlobalsToText(t){if(!Object.values(u.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(u.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),c={config:this.config,adapter:o},d=i(c);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e){let n={};return t.forEach(i=>{if(!i.value)return;let a=i.input.as||i.input.name,[,s]=e.stringToNative(i.value);n[a]=String(s)}),n}},yr=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var Wr=["collect","compute","mcp","state","mount","unmount"],xr=new Set(Object.values(m)),vr=r=>{let t=r.indexOf(u.ArgParamsSeparator);return t===-1?!1:xr.has(r.slice(0,t))},_=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 b,this.cache=new yt(t.env,t.cache)}getSerializer(){return this.serializer}getCache(){return this.cache}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(Wt.WarpExecutable(t,e||"",n))||[];return B(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(Wt.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=W(s.name,this.adapters),l=new E(this.config,p,this.adapters),o=await l.apply(t,i),c=T(o,e),{action:d,index:h}=$(o),f=[],g=[];if(h===e-1){let I=this.getStringTypedInputs(d,n);f=await this.getResolvedInputs(s.name,d,I,l,i.queries),g=await this.getModifiedInputs(f)}else c.inputs&&c.inputs.length>0&&(f=await this.resolveActionInputs(s.name,c,n,l,i.queries),g=await this.getModifiedInputs(f));let y=g.find(I=>I.input.position==="receiver"||I.input.position==="destination")?.value,x=this.getDestinationFromAction(c),C=y?this.serializer.stringToNative(y)[1]:x;if(C&&(C=l.applyInputs(C,g,this.serializer)),!C&&!Wr.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let v=this.getPreparedArgs(c,g);v=v.map(I=>l.applyInputs(I,g,this.serializer));let j=g.find(I=>I.input.position==="value")?.value||null,A="value"in c?c.value:null,N=j?.split(u.ArgParamsSeparator)[1]||A||"0",V=l.applyInputs(N,g,this.serializer),R=BigInt(V),H=g.filter(I=>I.input.position==="transfer"&&I.value).map(I=>I.value),Ce=[...("transfers"in c?c.transfers:[])||[],...H||[]].map(I=>{let Ct=l.applyInputs(I,g,this.serializer),Pe=Ct.startsWith(`asset${u.ArgParamsSeparator}`)?Ct:`asset${u.ArgParamsSeparator}${Ct}`;return this.serializer.stringToNative(Pe)[1]}),we=g.find(I=>I.input.position==="data")?.value,be="data"in c?c.data||"":null,Ut=we||be||null,Ie=Ut?l.applyInputs(Ut,g,this.serializer):null,Dt={adapter:p,warp:o,chain:s,action:e,destination:C,args:v,value:R,transfers:Ce,data:Ie,resolvedInputs:g};return await this.cache.set(Wt.WarpExecutable(this.config.env,o.meta?.hash||"",e),Dt.resolvedInputs,ye.OneWeek),Dt}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||vr(i)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(c=>i.applyInputs(c,[],this.serializer)),l=await Promise.all(p.map(c=>this.preprocessInput(t,c))),o=(c,d)=>{if(c.source===u.Source.UserWallet){let x=S(this.config,t);return x?this.serializer.nativeToString("address",x):null}if(c.source==="hidden"){if(c.default===void 0)return null;let x=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,x)}if(l[d])return l[d];let h=c.as||c.name,f=a?.[h],g=this.url.searchParams.get(h),y=f||g;return y?this.serializer.nativeToString(c.type,String(y)):null};return s.map((c,d)=>{let h=o(c,d),f=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(f!==void 0?this.serializer.nativeToString(c.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=W(a.name,this.adapters),p=new E(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=ot(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=ot(s,+a);e.push({...i,value:`${i.input.type}:${p}`})}}else if(i.input.modifier?.startsWith(u.Transform.Prefix)){let a=i.input.modifier.substring(u.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=ut(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 if(i.input.modifier?.startsWith("crypto:")){let[,a,s]=i.input.modifier.split(":"),p=a==="sha256"&&s?t.find(o=>(o.input.as||o.input.name)===s):null,l=p?.value?this.serializer.stringToNative(p.value)[1]??null:null;if(l){let c=await(await fetch(l)).arrayBuffer(),d=await globalThis.crypto.subtle.digest("SHA-256",c),h=Array.from(new Uint8Array(d)).map(f=>f.toString(16).padStart(2,"0")).join("");e.push({...i,value:this.serializer.nativeToString("string",h)})}else e.push(i)}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=Tt(e),a=W(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(u.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 c=ot(p,o.decimals);return ce({...o,amount:c})}else return e}catch(n){throw w.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 c=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:c,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 xt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.loopIterations=new Map;this.active=!0;this.warpResolver=null;this.handlers=n,this.factory=new _(t,e)}setWarpResolver(t){this.warpResolver=t}stop(){this.active=!1,this.loopIterations.clear()}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},c={...n,queries:o},d={};if(t.vars)try{let f=this.adapters?.find(g=>g.chainInfo.name===(t.chain||this.adapters[0]?.chainInfo?.name));if(f){let g=await new E(this.config,f,this.adapters).apply(t,c);g?.actions&&(t.actions=g.actions),g?.meta&&(t.meta=g.meta)}}catch{}let{index:h}=$(t);for(let f=1;f<=t.actions.length;f++){let g=T(t,f);if(!Pt(g))continue;let y=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:x,chain:C,immediateExecution:v,executable:j}=await this.executeAction(t,f,e,y);if(x&&i.push(x),C&&(a=C),v&&s.push(v),v?.output){let{_DATA:A,...N}=v.output;Object.assign(d,N)}v?.values?.mapped&&Object.assign(d,v.values.mapped),j&&f===h+1&&j.resolvedInputs&&(p=B(j.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 this.scheduleLoops(t,e,c,d),{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):qt.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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}if(a.type==="loop")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="state")return this.executeState(t,a,e,i);if(a.type==="mount"||a.type==="unmount"){if(a.when){let o=i.envs||{},c=J(a.when,o);if(!Q(c))return{tx:null,chain:null,immediateExecution:null,executable:null}}return await this.handlers?.onMountAction?.({action:a,actionIndex:e,warp:t}),{tx:null,chain:null,immediateExecution:null,executable:null}}if(a.type==="inline"){if(!this.warpResolver)return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.when){let y=this.adapters[0]?.chainInfo.name||"";if(!await this.evaluateWhenCondition(t,a,n,i,[],y))return{tx:null,chain:null,immediateExecution:null,executable:null}}let o=a,c=await this.warpResolver(o.warp);if(!c)return{tx:null,chain:null,immediateExecution:null,executable:null};await this.callHandler(()=>this.handlers?.onActionProcessing?.(a));let d={...this.config.vars,...i.envs||{},...i.queries||{}},h={};for(let[y,x]of Object.entries(c.meta?.query||{}))h[y]=x.replace(/\{\{(.+?)\}\}/g,(C,v)=>String(d[v.trim()]??""));c.meta={...c.meta,query:h};let{immediateExecutions:f}=await this.execute(c,[],i),g=f[0];return g?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:g,tx:null})),{tx:null,chain:null,immediateExecution:g,executable:null}):{tx:null,chain:null,immediateExecution:null,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,void 0,i.envs);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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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(!Pt(s)||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),g={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:f};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:g})),g}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let f=t.meta?.query;f&&Object.keys(f).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,f))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=Ar(c,d.output);return d.next=ct(this.config,this.adapters,t,o,h,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,n){let i=S(this.config,t.chain.name),a=T(t.warp,t.action),s=this.factory.getSerializer(),p=z(t.resolvedInputs,s);if(a.destination&&typeof a.destination=="object"&&"url"in a.destination)return await this.doHttpRequest(t,a.destination,i,p,e,n);let{values:l,output:o}=await Z(t.warp,p,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,i,"unhandled",l,o)}async executeCompute(t){let e=S(this.config,t.chain.name),n=this.factory.getSerializer(),i=z(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,s){let p=new E(this.config,W(t.chain.name,this.adapters),this.adapters),l=this.factory.getSerializer(),{url:o,method:c,headers:d,body:h}=await We(p,e,t,n,i,l,a,async f=>await this.callHandler(()=>this.handlers?.onSignRequest?.(f)));s&&(o=O(o,s)),w.debug("WarpExecutor: Executing HTTP collect",{url:o,method:c,headers:d,body:h});try{let f={method:c,headers:d,body:h},y=await(await oe(this.adapters))(o,f);w.debug("Collect response status",{status:y.status});let x=await y.json();w.debug("Collect response content",{content:x});let{values:C,output:v}=await Z(t.warp,x,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,S(this.config,t.chain.name),y.ok?"success":"error",C,v,x)}catch(f){w.error("WarpActionExecutor: Error executing collect",f);let g=B(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:g}}}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=T(t.warp,t.action);if(!i.destination){let f=B(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 g=B(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:g}}let p=this.factory.getSerializer(),l=new E(this.config,W(t.chain.name,this.adapters),this.adapters),o=i.destination,c=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),h={};o.headers&&Object.entries(o.headers).forEach(([f,g])=>{let y=l.applyInputs(g,t.resolvedInputs,this.factory.getSerializer());h[f]=y}),w.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let f=new s(new URL(c),{requestInit:{headers:h}}),g=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await g.connect(f);let y={};t.resolvedInputs.forEach(({input:A,value:N})=>{if(N&&A.position&&typeof A.position=="string"&&A.position.startsWith("payload:")){let V=A.position.replace("payload:",""),[R,H]=p.stringToNative(N);if(R==="string")y[V]=String(H);else if(R==="bool")y[V]=!!H;else if(R==="uint8"||R==="uint16"||R==="uint32"||R==="uint64"||R==="uint128"||R==="uint256"||R==="biguint"){let rt=Number(H);y[V]=(Number.isInteger(rt),rt)}else y[V]=H}}),e&&Object.assign(y,e);let x=await g.callTool({name:d,arguments:y});await g.close();let C;if(x.content&&x.content.length>0){let A=x.content[0];if(A.type==="text")try{C=JSON.parse(A.text)}catch{C=A.text}else A.type,C=A}else C=x;let{values:v,output:j}=await Z(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",v,j,x)}catch(f){w.error("WarpExecutor: Error executing MCP",f);let g=B(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:g}}}buildCollectResult(t,e,n,i,a,s){let p=ct(this.config,this.adapters,t.warp,t.action,a,n),l=B(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:Et(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}scheduleLoops(t,e,n,i){if(this.active)for(let a of t.actions){if(a.type!=="loop"||a.auto===!1)continue;let s=a,l=`loop:${n.scope||"default"}:${t.meta?.identifier||t.name}`;if(s.when){let h={...n.envs,...i},f=J(s.when,h);try{if(!Q(f)){this.loopIterations.delete(l);continue}}catch{this.loopIterations.delete(l);continue}}let o=s.maxIterations??1e4,c=(this.loopIterations.get(l)??0)+1;if(c>o){this.loopIterations.delete(l),w.debug(`Loop maxIterations (${o}) reached for warp ${t.meta?.identifier}`);continue}if(this.loopIterations.set(l,c),!this.handlers?.onLoop)continue;let d=s.delay??0;this.handlers.onLoop({warp:t,inputs:e,meta:n,delay:d})}}async executeState(t,e,n,i){if(e.when){let l=i.envs||{},o=J(e.when,l);if(!Q(o))return{tx:null,chain:null,immediateExecution:null,executable:null}}let a=this.factory.getCache(),p=`state:${i.scope||"default"}:${e.store}`;if(e.op==="read"){let l=await a.get(p)??{},o=e.keys??Object.keys(l),c={};for(let h of o)l[h]!==void 0&&l[h]!==null&&(c[`state.${h}`]=l[h]);let d={status:"success",warp:t,action:n,user:null,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:c,messages:{},destination:null,resolvedInputs:[]};return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:n,chain:null,execution:d,tx:null})),{tx:null,chain:null,immediateExecution:d,executable:null}}if(e.op==="write"&&e.data){let l=await a.get(p)??{},o=i.envs||{},c={};for(let[d,h]of Object.entries(e.data))if(typeof h=="string"){let f=h.replace(/\{\{([^}]+)\}\}/g,(g,y)=>{let x=o[y.trim()];return x!=null?String(x):h});c[d]=Cr(f)}else c[d]=h;await a.set(p,{...l,...c})}return e.op==="clear"&&await a.delete(p),{tx:null,chain:null,immediateExecution:null,executable:null}}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=W(s.name,this.adapters),l=new E(this.config,p,this.adapters),o=await l.apply(t,a),c=T(o,n),d=[];if(e.inputs&&e.inputs.length>0){let A=this.factory.getStringTypedInputs(e,i),N=await this.factory.getResolvedInputs(s.name,e,A,l,a.queries);d=await this.factory.getModifiedInputs(N)}else{let{action:A}=$(o),N=this.factory.getStringTypedInputs(A,i),V=await this.factory.getResolvedInputs(s.name,A,N,l,a.queries);d=await this.factory.getModifiedInputs(V)}let h=ie(c.prompt,this.config.platform),f=l.applyInputs(h,d,this.factory.getSerializer());a.envs&&(f=O(f,a.envs));let g=B(d),y=S(this.config,s.name),x=this.factory.getSerializer(),{values:C,output:v}=await ne(o,f,n,d,x,this.config);if(this.handlers?.onPromptGenerate){let A=await this.handlers.onPromptGenerate(f,c.expect);A&&(v.MESSAGE=A,c.as&&(v[c.as]=A))}let j=d.find(A=>A.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:y,txHash:null,tx:null,next:lt(this.config,this.adapters,o,n,v),values:C,output:v,messages:Et(o,{...C.mapped,...v},this.config),destination:j,resolvedInputs:g}}catch(s){return w.error("WarpExecutor: Error executing prompt action",s),{status:"error",warp:t,action:n,user:null,txHash:null,tx:null,next:ct(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=W(p.name,this.adapters),o=new E(this.config,l,this.adapters),c;if(a)c=a;else{let g=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(g)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},f=J(e.when,h);return Q(f)}},Ar=(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}},Cr=r=>{if(r==="true")return!0;if(r==="false")return!1;let t=Number(r);return!isNaN(t)&&r.trim()!==""?t:r};var vt=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 w.error("WarpIndex: Error searching for warps: ",i),i}}};var At=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!X(t):!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(u.HttpProtocolPrefix)?X(t):F(t);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,c=t.startsWith(u.HttpProtocolPrefix)?Kt(t):Xt(i.identifier);if(this.resolver){let g=null;if(a==="hash")g=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;g=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}g&&(p=g.warp,l=g.registryInfo,o=g.brand)}else{if(!i.chain)throw new Error(`WarpLinkDetecter: chain is required for identifier ${i.identifier}`);let g=W(i.chain,this.adapters);if(a==="hash"){p=await g.builder().createFromTransactionHash(s,e);let y=await g.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await g.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await g.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(wr(p,i.chain,l,i.identifier),p.meta.query=c?Zt(c):null),!p)return n;let d=p.chain||i.chain||null,h=d?this.adapters.find(g=>g.chainInfo.name.toLowerCase()===d.toLowerCase()):null,f=h?await new E(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:f,chain:d,registryInfo:l,brand:o}}catch(a){return w.error("Error detecting warp link",a),n}}},wr=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?St(null,"alias",e.alias):St(t,"hash",e?.hash??n))};var xe=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 nt(e));return new it(t)}getConfig(){return this.config}mergeVars(t){this.config={...this.config,vars:{...this.config.vars,...t}}}getResolver(){return this.resolver}createExecutor(t){let e=new xt(this.config,this.chains,t);return e.setWarpResolver(async n=>(await this.detectWarp(n)).warp??null),e}async detectWarp(t,e){return new At(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 g=await fetch(t);if(!g.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await g.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:c,immediateExecutions:d,resolvedInputs:h}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:c,immediateExecutions:d,evaluateOutput:async g=>{await l.evaluateOutput(p,g)},resolvedInputs:h}}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=F(t);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");if(!n.chain)throw new Error("WarpClient: createFromTransactionHash - chain is required");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).index+1,p=await W(t,this.chains).output.getActionExecution(e,a,n);return p.next=lt(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 _(this.config,this.chains)}get index(){return new vt(this.config)}get linkBuilder(){return new q(this.config,this.chains)}createBuilder(t){return t?W(t,this.chains).builder():new ft(this.config)}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 pt(t,this.config)}};var ve=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 us(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(Ae(t,n)!==i)return!1;return!0}function ds(r,t){let e={};for(let[n,i]of Object.entries(r.inputs??{}))e[n]=i.includes(".")?Ae(t,i):i;return e}function Ae(r,t){return t.split(".").reduce((e,n)=>e?.[n],r)}export{bt as BrowserCryptoProvider,Fr as CLOUD_WALLET_PROVIDERS,ye as CacheTtl,Vr as EvmWalletChainNames,Hr as MultiversxWalletChainNames,It as NodeCryptoProvider,dn as WARP_LANGUAGES,P as WarpAssets,ue as WarpBrandBuilder,ft as WarpBuilder,yt as WarpCache,Wt as WarpCacheKey,je as WarpChainDisplayNames,Le as WarpChainLogos,Be as WarpChainName,nt as WarpChainResolver,xe as WarpClient,it as WarpCompositeResolver,U as WarpConfig,u as WarpConstants,xt as WarpExecutor,_ as WarpFactory,vt as WarpIndex,m as WarpInputTypes,E as WarpInterpolator,q as WarpLinkBuilder,At as WarpLinkDetecter,w as WarpLogger,Mt as WarpPlatformName,kt as WarpPlatforms,k as WarpProtocolVersions,b as WarpSerializer,ve as WarpTypeRegistry,dt as WarpValidator,Ei as address,Et as applyOutputToMessages,ce as asset,Si as biguint,Ti as bool,er as buildGeneratedFallbackWarpIdentifier,ii as buildGeneratedSourceWarpIdentifier,ut as buildInputsContext,z as buildMappedOutput,qe as buildNestedPayload,Yr as bytesToBase64,Ve as bytesToHex,fi as checkWarpAssetBalance,K as cleanWarpIdentifier,Ot as createAuthHeaders,Nt as createAuthMessage,en as createCryptoProvider,ci as createDefaultWalletProvider,ti as createHttpAuthHeaders,Xe as createSignableMessage,gn as createWarpI18nText,St as createWarpIdentifier,cn as doesWarpRequireWallet,re as evaluateOutputCommon,Q as evaluateWhenCondition,Z as extractCollectOutput,X as extractIdentifierInfoFromUrl,ne as extractPromptOutput,Xt as extractQueryStringFromIdentifier,Kt as extractQueryStringFromUrl,B as extractResolvedInputValues,an as extractWarpSecrets,W as findWarpAdapterForChain,zr as getChainDisplayName,Gr as getChainLogo,zt as getCryptoProvider,Ze as getGeneratedSourceWarpName,st as getLatestProtocolIdentifier,oe as getMppFetch,lt as getNextInfo,ct as getNextInfoForStatus,Kn as getProviderConfig,Gt as getRandomBytes,_t as getRandomHex,rr as getRequiredAssetIds,Sr as getWalletFromConfigOrFail,T as getWarpActionByIndex,Jr as getWarpBrandLogoUrl,Qr as getWarpChainAssetLogoUrl,Kr as getWarpChainInfoLogoUrl,vn as getWarpIdentifierWithQuery,F as getWarpInfoFromIdentifier,$ as getWarpInputAction,Se as getWarpWalletAddress,S as getWarpWalletAddressFromConfig,Re as getWarpWalletExternalId,$e as getWarpWalletExternalIdFromConfig,Rr as getWarpWalletExternalIdFromConfigOrFail,Ee as getWarpWalletMnemonic,Er as getWarpWalletMnemonicFromConfig,Te as getWarpWalletPrivateKey,Tr as getWarpWalletPrivateKeyFromConfig,wn as hasInputPrefix,Ri as hex,pi as initializeWalletCache,Wn as isEqualWarpIdentifier,si as isGeneratedSourcePrivateIdentifier,Ke as isPlatformValue,Pt as isWarpActionAutoExecute,fn as isWarpI18nText,$r as isWarpWalletReadOnly,us as matchesTrigger,te as mergeNestedPayload,Br as normalizeAndValidateMnemonic,Ne as normalizeMnemonic,$i as option,Qe as parseOutputOutIndex,ri as parseSignedMessage,Zt as parseWarpQueryStringToObject,xn as removeWarpChainPrefix,Or as removeWarpWalletFromConfig,O as replacePlaceholders,J as replacePlaceholdersInWhenExpression,ds as resolveInputs,Vn as resolveNextString,$t as resolveNextStrings,Ae as resolvePath,ie as resolvePlatformValue,pt as resolveWarpText,qt as safeWindow,Zr as setCryptoProvider,Nr as setWarpWalletInConfig,ot as shiftBigintBy,Tt as splitInput,ai as stampGeneratedWarpMeta,Ci as string,Oi as struct,tn as testCryptoAvailability,ze as toInputPayloadValue,Jt as toPreviewText,Ni as tuple,bi as uint16,Ii as uint32,Pi as uint64,wi as uint8,Oe as validateMnemonicLength,ei as validateSignedMessage,Bi as vector,kr as withAdapterFallback};
1
+ var nt=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 it=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 Er=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},Se=r=>r?typeof r=="string"?r:r.address:null,S=(r,t)=>Se(r.user?.wallets?.[t]||null),Te=r=>r?typeof r=="string"?r:r.privateKey||null:null,Ee=r=>r?typeof r=="string"?r:r.mnemonic||null:null,Re=r=>r?typeof r=="string"?r:r.externalId||null:null,Rr=(r,t)=>Te(r.user?.wallets?.[t]||null)?.trim()||null,$r=(r,t)=>Ee(r.user?.wallets?.[t]||null)?.trim()||null,$e=(r,t)=>Re(r.user?.wallets?.[t]||null)?.trim()||null,Nr=(r,t)=>{let e=$e(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},Or=r=>typeof r=="string",Br=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},jr=(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()},Oe=(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`)},Lr=(r,t=24)=>{let e=Ne(r);return Oe(e,t),e};var Be=(h=>(h.Multiversx="multiversx",h.Claws="claws",h.Sui="sui",h.Ethereum="ethereum",h.Base="base",h.Arbitrum="arbitrum",h.Polygon="polygon",h.Somnia="somnia",h.Tempo="tempo",h.Fastset="fastset",h.Solana="solana",h.Near="near",h))(Be||{}),Mt=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Mt||{}),kt=Object.values(Mt),Fr=["ethereum","base","arbitrum","polygon","somnia","tempo"],Ur=["multiversx","claws"],Dr=["coinbase","privy","gaupa"],u={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",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:"}},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",Datetime:"datetime",Email:"email",Textarea:"textarea",File:"file"},qt=typeof window<"u"?window:{open:()=>{}};var z={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},U={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/v${z.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/brand/v${z.Brand}.schema.json`,DefaultClientUrl:r=>r==="devnet"?"https://devnet.joai.ai":r==="testnet"?"https://testnet.joai.ai":"https://joai.ai",SuperClientUrls:["https://joai.ai","https://devnet.joai.ai","https://testnet.joai.ai","https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",u.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","string[]","json","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 zr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var at="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",P={baseUrl:at,chainLogo:r=>`${at}/chains/logos/${r}`,tokenLogo:r=>`${at}/tokens/logos/${r}`,walletLogo:r=>`${at}/wallets/logos/${r}`},je={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"},_r=r=>je[r]??r.charAt(0).toUpperCase()+r.slice(1),Le={ethereum:{light:P.chainLogo("ethereum-white.svg"),dark:P.chainLogo("ethereum-black.svg")},base:{light:P.chainLogo("base-white.svg"),dark:P.chainLogo("base-black.svg")},arbitrum:P.chainLogo("arbitrum.svg"),polygon:P.chainLogo("polygon.svg"),somnia:P.chainLogo("somnia.png"),tempo:{light:P.chainLogo("tempo-white.svg"),dark:P.chainLogo("tempo-black.svg")},multiversx:P.chainLogo("multiversx.svg"),claws:P.chainLogo("claws.png"),sui:P.chainLogo("sui.svg"),solana:P.chainLogo("solana.svg"),near:{light:P.chainLogo("near-white.svg"),dark:P.chainLogo("near-black.svg")},fastset:{light:P.chainLogo("fastset-white.svg"),dark:P.chainLogo("fastset-black.svg")}},Jr=(r,t="dark")=>{let e=Le[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var bt=(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:bt(r.logo,e)},Xr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return bt(r.logoUrl,e)},Zr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return bt(r.logoUrl,e)};var wt=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}},It=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"}`)}}},D=null;function zt(){if(D)return D;if(typeof window<"u"&&window.crypto)return D=new wt,D;if(typeof process<"u"&&process.versions?.node)return D=new It,D;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function tn(r){D=r}async function Gt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||zt()).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 en(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 _t(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await Gt(r/2,t);return Ve(e)}async function rn(){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 Gt(16),r.randomBytes=!0}catch{}return r}function nn(){return zt()}var on=r=>Object.values(r.vars||{}).filter(t=>t.startsWith(`${u.Vars.Env}:`)).map(t=>{let e=t.replace(`${u.Vars.Env}:`,"").trim(),[n,i]=e.split(u.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},st=r=>{if(r==="warp")return`warp:${z.Warp}`;if(r==="brand")return`brand:${z.Brand}`;if(r==="abi")return`abi:${z.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},E=(r,t)=>r?.actions[t-1],He=["state","mount","unmount","loop"],N=r=>{if(r.actions.length===0)throw new Error(`Warp has no actions: ${r.meta?.identifier}`);let t=r.actions.find(e=>!He.includes(e.type));return t?{action:t,index:r.actions.indexOf(t)}:{action:r.actions[0],index:0}},Pt=r=>r.auto===!1?!1:r.type==="link"?r.auto===!0:!0,ot=(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)},Jt=(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},B=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="object"&&i!==null?JSON.stringify(i):String(i)}),M=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t")}'`:typeof i=="object"&&i!==null?`'${JSON.stringify(i).replace(/'/g,"\\'")}'`:String(i)}),dn=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===u.Source.UserWallet||n.default===`{{${u.Globals.UserWallet.Placeholder}}}`||n.default===`{{${u.Globals.UserWalletPublicKey.Placeholder}}}`));return{required:t,chain:t?r.chain??null:null}},k=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 gn={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"},pt=(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""},hn=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,mn=r=>r;var K=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,vn=(r,t)=>!r||!t?!1:K(r)===K(t),St=(r,t,e)=>{let n=K(e);if(t===u.IdentifierType.Alias)return u.IdentifierAliasMarker+n;if(!r)throw new Error("Chain is required for hash warp identifiers");return r+u.IdentifierParamSeparator+t+u.IdentifierParamSeparator+n},F=r=>{let t=decodeURIComponent(r).trim(),e=K(t),n=e.split("?")[0],i=Qt(n);if(n.length===64&&/^[a-fA-F0-9]+$/.test(n))return{chain:null,type:u.IdentifierType.Hash,identifier:e,identifierBase:n};if(i.length===2&&/^[a-zA-Z0-9]{62}$/.test(i[0])&&/^[a-zA-Z0-9]{2}$/.test(i[1]))return null;if(i.length===3){let[a,s,p]=i;if(s===u.IdentifierType.Alias||s===u.IdentifierType.Hash){let l=e.includes("?")?p+e.substring(e.indexOf("?")):p;return{chain:a,type:s,identifier:l,identifierBase:p}}}if(i.length===2){let[a,s]=i;if(a===u.IdentifierType.Alias||a===u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s;return{chain:null,type:a,identifier:p,identifierBase:s}}}if(i.length===2){let[a,s]=i;if(a!==u.IdentifierType.Alias&&a!==u.IdentifierType.Hash){let p=e.includes("?")?s+e.substring(e.indexOf("?")):s,l=Fe(s,a)?u.IdentifierType.Hash:u.IdentifierType.Alias;return{chain:a,type:l,identifier:p,identifierBase:s}}}return{chain:null,type:u.IdentifierType.Alias,identifier:e,identifierBase:n}},X=r=>{let t=new URL(r),n=t.searchParams.get(u.IdentifierParamName);if(n||(n=t.pathname.split("/")[1]),!n)return null;let i=decodeURIComponent(n);return F(i)},Fe=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Ue=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Qt=r=>{let t=Ue(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Qt(a);return[i,...s]},Kt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(u.IdentifierParamName),e.toString()||null}catch{return null}},Xt=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},Zt=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},An=r=>{let t=F(r);return(t?t.identifierBase:K(r)).trim()},Cn=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 Tt=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},In=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=Tt(r)[0];return t.has(e)};var Et=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=pt(a,e);return[i,B(s,t)]});return Object.fromEntries(n)};import De from"qr-code-styling";var G=class{constructor(t,e){this.config=t;this.adapters=e}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!X(t):!1}build(t,e,n){let i=this.config.clientUrl||U.DefaultClientUrl(this.config.env),a=W(t,this.adapters),s=e===u.IdentifierType.Alias?n:e+u.IdentifierParamSeparator+n,p=a.chainInfo.name+u.IdentifierParamSeparator+s,l=encodeURIComponent(p);return U.SuperClientUrls.includes(i)?`${i}/${l}`:`${i}?${u.IdentifierParamName}=${l}`}buildFromPrefixedIdentifier(t){let e=F(t);if(!e)return null;if(!e.chain){let i=this.config.clientUrl||U.DefaultClientUrl(this.config.env),a=u.IdentifierAliasMarker+e.identifierBase;return U.SuperClientUrls.includes(i)?`${i}/${encodeURIComponent(a)}`:`${i}?${u.IdentifierParamName}=${encodeURIComponent(a)}`}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 De({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 Me="https://",ke=(r,t)=>{if(typeof r=="string")return r;if(r.when&&t){let e=M(r.when,t);if(!k(e))return null}return r.identifier},qe=r=>typeof r=="object"&&!Array.isArray(r)&&!("identifier"in r),$t=(r,t,e)=>{if(!r)return null;let n;if(typeof r=="string")n=t==="success"?[r]:[];else if(Array.isArray(r))n=t==="success"?r:[];else if(qe(r)){let a=r[t];n=a?Array.isArray(a)?a:[a]:[]}else n=t==="success"?[r]:[];if(n.length===0)return null;let i=[];for(let a of n){let s=ke(a,e);s!==null&&i.push(s)}return i.length>0?i:null},Fn=(r,t,e)=>$t(r,t,e)?.[0]??null,Yt=(r,t,e,n,i)=>{if(n.startsWith(Me))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let f=B(a,{...e.vars,...i});return[{identifier:f,url:Rt(t,f,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let f=B(s,{...e.vars,...i}),g=f?`${a}?${f}`:a;return[{identifier:g,url:Rt(t,g,r)}]}let l=p[0];if(!l)return[];let o=l.match(/{{([^[]+)\[\]/),c=o?o[1]:null;if(!c||i[c]===void 0)return[];let d=Array.isArray(i[c])?i[c]:[i[c]];if(d.length===0)return[];let h=p.filter(f=>f.includes(`{{${c}[]`)).map(f=>{let g=f.match(/\[\](\.[^}]+)?}}/),y=g&&g[1]||"";return{placeholder:f,field:y?y.slice(1):"",regex:new RegExp(f.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(f=>{let g=s;for(let{regex:x,field:C}of h){let v=C?ze(f,C):f;if(v==null)return null;g=g.replace(x,v)}if(g.includes("{{")||g.includes("}}"))return null;let y=g?`${a}?${g}`:a;return{identifier:y,url:Rt(t,y,r)}}).filter(f=>f!==null)},lt=(r,t,e,n,i)=>{let a=E(e,n)?.next||e.next||null,s=$t(a,"success",i);if(!s)return null;let p=s.flatMap(l=>Yt(r,t,e,l,i));return p.length>0?p:null},ct=(r,t,e,n,i,a)=>{let s=a==="error"?"error":"success",p=E(e,n)?.next||e.next||null,l=$t(p,s,i);if(!l)return null;let o=l.flatMap(c=>Yt(r,t,e,c,i));return o.length>0?o:null},Rt=(r,t,e)=>{let[n,i]=t.split("?"),a=new G(e,r).buildFromPrefixedIdentifier(n);if(!a)throw new Error(`Cannot build URL for identifier: ${n}`);if(!i)return a;let s=new URL(a);return new URLSearchParams(i).forEach((p,l)=>s.searchParams.set(l,p)),s.toString().replace(/\/\?/,"?")},ze=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var q=class q{static debug(...t){q.isTestEnv||console.debug(...t)}static info(...t){q.isTestEnv||console.info(...t)}static warn(...t){q.isTestEnv||console.warn(...t)}static error(...t){q.isTestEnv||console.error(...t)}};q.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var b=q;function Ge(r,t,e){return r.startsWith(u.Position.Payload)?r.slice(u.Position.Payload.length).split(".").reduceRight((n,i,a,s)=>({[i]:a===s.length-1?{[t]:e}:n}),{}):{[t]:e}}function te(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]=te(e[n],t[n]):e[n]=t[n]}),e}function _e(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 j(r){return r.map(t=>t.value).filter(t=>t!=null&&t!=="")}function _(r,t){let e={};return r.forEach(n=>{if(n.input.position==="local")return;let i=n.input.as||n.input.name,a=_e(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(u.Position.Payload)){let s=Ge(n.input.position,i,a);e=te(e,s)}else e[i]=a}),e}function ut(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 c=o;if("identifier"in c&&"amount"in c){let d=String(c.identifier);i[`${l}.token`]=d,i[`${l}.identifier`]=d,i[`${l}.amount`]=String(c.amount)}};for(let p=0;p<a;p++)s(r[p]);return s(n),i}var ee=(r,t,e)=>{let n=[],i=[],a={};if(r.output)for(let[s,p]of Object.entries(r.output)){if(p.startsWith(u.Transform.Prefix))continue;let l=Xe(p);if(l!==null&&l!==t){a[s]=null;continue}let[o,...c]=p.split(".");if(o==="out"||o.startsWith("out[")||o==="$"){let d=e(c);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=(h,f)=>f.reduce((g,y)=>g&&g[y]!==void 0?g[y]:null,h),p=h=>h.length===0?t:s(t,h),{stringValues:l,nativeValues:o,output:c}=ee(r,e,p),d=_(n,i);for(let h of n)if(h.input.position==="local"){let f=h.input.as||h.input.name;if(f&&h.value){let[,g]=i.stringToNative(h.value);d[f]=g}}return{values:{string:l,native:o,mapped:d},output:await re(r,c,t,e,n,i,a)}},re=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=E(t,e)?.inputs||[];for(let[p,l]of Object.entries(a))if(typeof l=="string"&&l.startsWith("in.")){let o=l.split(".")[1],c=s.findIndex(h=>h.as===o||h.name===o),d=c!==-1?n[c]?.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(u.Transform.Prefix)).map(([o,c])=>({key:o,code:c.substring(u.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:Ke(e),inputs:ut(n,i)};for(let{key:o,code:c}of p)try{s[o]=await a.run(c,l),l[o]=s[o]}catch(d){b.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Ke=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},ne=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=ee(r,e,s),c=await re(r,o,t,e,n,i,a);return"PROMPT"in c||(c.PROMPT=t),{values:{string:p,native:l,mapped:_(n,i)},output:c}},Xe=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 Ze=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:kt.some(t=>t in r),ie=(r,t)=>{if(!Ze(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 Zn=(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 Ye(r,t,e,n=5){let i=await _t(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 Nt(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return Ye(r,i,e,5)}function Ot(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function ri(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Nt(r,e,n),p=await t(i);return Ot(r,p,a,s)}function ni(r){let t=new Date(r).getTime();return Date.now()<t}function ii(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 tr=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",er=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),ae=(r,t=24)=>{let e=er(r);return e?e.slice(0,t):"action"},se=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)},rr=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()}},si=(r,t,e)=>{let n=ae((e||t||"").trim()||"action"),i=`${r.type}|${rr(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=se(i);return`private_src_${n}_${a}`},nr=r=>{let t=tr(r),e=ae(t),n=se(t.trim().toLowerCase());return`private_gen_${e}_${n}`},oi=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||nr(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},pi=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function ci(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 di(r,t,e){return null}var ir=(r,t)=>{let e=null;try{e=N(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]:[]},hi=async(r,t,e,n)=>{try{let i=W(e,n),a=ir(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 ar,tempo as sr}from"mppx/client";async function oe(r){for(let t of r){if(!t.wallet.getMppAccount)continue;let e=await t.wallet.getMppAccount().catch(()=>null);if(!e)continue;return b.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),ar.create({methods:[sr({account:e})],polyfill:!1}).fetch}return fetch}var pe=/^(.+)\[\]$/,le={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},w=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=le[t]??t,pe.test(t))return t+u.ArgParamsSeparator+JSON.stringify(e);if(t===m.Tuple&&Array.isArray(e)){if(e.length===0)return t+u.ArgParamsSeparator;if(e.every(n=>typeof n=="string"&&n.includes(u.ArgParamsSeparator))){let n=e.map(s=>this.getTypeAndValue(s)),i=n.map(([s])=>s),a=n.map(([,s])=>s);return`${t}(${i.join(u.ArgCompositeSeparator)})${u.ArgParamsSeparator}${a.join(u.ArgListSeparator)}`}return t+u.ArgParamsSeparator+e.join(u.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})${u.ArgParamsSeparator}`;let s=a.map(p=>{let[l,o]=this.getTypeAndValue(n[p]);return`(${p}${u.ArgParamsSeparator}${l})${o}`});return`${t}(${i})${u.ArgParamsSeparator}${s.join(u.ArgListSeparator)}`}if(t.startsWith(m.Vector)&&Array.isArray(e)){if(e.length===0)return`${t}${u.ArgParamsSeparator}`;let i=t.includes(u.IdentifierParamSeparator)?t.split(u.IdentifierParamSeparator)[1]:typeof e[0]=="string"&&e[0].includes(u.ArgParamsSeparator)?e[0].substring(0,e[0].indexOf(u.ArgParamsSeparator)):null;if(!i)return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator);let a=e.map(p=>{if(typeof p=="string"&&p.includes(u.ArgParamsSeparator)){let l=p.indexOf(u.ArgParamsSeparator),o=p.substring(l+1);return i.startsWith(m.Tuple)?o.replace(u.ArgListSeparator,u.ArgCompositeSeparator):o}return String(p)}),s=i.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a.join(s)}if(t===m.Asset&&typeof e=="object"&&e&&"identifier"in e&&"amount"in e)return"decimals"in e?m.Asset+u.ArgParamsSeparator+e.identifier+u.ArgCompositeSeparator+String(e.amount)+u.ArgCompositeSeparator+String(e.decimals):m.Asset+u.ArgParamsSeparator+e.identifier+u.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==="json"?t+u.ArgParamsSeparator+JSON.stringify(e):t+u.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(u.ArgParamsSeparator),n=le[e[0]]??e[0],i=e.slice(1).join(u.ArgParamsSeparator);if(pe.test(n)){if(!i)return[n,[]];try{return[n,JSON.parse(i)]}catch{return[n,i]}}if(n==="null")return[n,null];if(n===m.Option){let[a,s]=i.split(u.ArgParamsSeparator);return[m.Option+u.ArgParamsSeparator+a,s||null]}if(n===m.Vector){let a=i.indexOf(u.ArgParamsSeparator),s=i.substring(0,a),p=i.substring(a+1),l=s.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator,c=(p?p.split(l):[]).map(d=>this.stringToNative(s+u.ArgParamsSeparator+d)[1]);return[m.Vector+u.ArgParamsSeparator+s,c]}else if(n.startsWith(m.Tuple)){let a=n.match(/\(([^)]+)\)/)?.[1]?.split(u.ArgCompositeSeparator),p=i.split(u.ArgCompositeSeparator).map((l,o)=>this.stringToNative(`${a[o]}${u.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(u.ArgListSeparator).forEach(l=>{let o=l.match(new RegExp(`^\\(([^${u.ArgParamsSeparator}]+)${u.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(o){let[,c,d,h]=o;p[c]=this.stringToNative(`${d}${u.IdentifierParamSeparator}${h}`)[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.Datetime)return[n,i];if(n===m.Asset){let[a,s]=i.split(u.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]}}if(n==="json")try{return[n,JSON.parse(i)]}catch{return[n,i]}if(n==="chain"||n==="nft"||n==="email"||n==="textarea"||n==="file")return[n,i];throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${n}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(u.ArgParamsSeparator)){let[e,n]=t.split(u.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 wi=r=>new w().nativeToString(m.String,r),Ii=r=>new w().nativeToString(m.Uint8,r),Pi=r=>new w().nativeToString(m.Uint16,r),Si=r=>new w().nativeToString(m.Uint32,r),Ti=r=>new w().nativeToString(m.Uint64,r),Ei=r=>new w().nativeToString(m.Biguint,r),Ri=r=>new w().nativeToString(m.Bool,r),$i=r=>new w().nativeToString(m.Address,r),ce=r=>new w().nativeToString(m.Asset,r),Ni=r=>new w().nativeToString(m.Hex,r),Oi=(r,t)=>{if(t===null)return m.Option+u.ArgParamsSeparator;let e=r(t),n=e.indexOf(u.ArgParamsSeparator),i=e.substring(0,n),a=e.substring(n+1);return m.Option+u.ArgParamsSeparator+i+u.ArgParamsSeparator+a},Bi=(...r)=>new w().nativeToString(m.Tuple,r),ji=r=>new w().nativeToString(m.Struct,r),Li=r=>new w().nativeToString(m.Vector,r);import or from"ajv";var ue=class{constructor(t){this.pendingBrand={protocol:st("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||U.LatestBrandSchemaUrl,i=await(await fetch(e)).json(),a=new or,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};import lr from"ajv";var de={$ref:"#/definitions/Warp",$schema:"http://json-schema.org/draft-07/schema#",definitions:{Warp:{additionalProperties:!1,properties:{actions:{items:{$ref:"#/definitions/WarpAction"},type:"array"},bot:{type:"string"},chain:{$ref:"#/definitions/WarpChainName"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},messages:{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"},meta:{$ref:"#/definitions/WarpMeta"},name:{type:"string"},next:{$ref:"#/definitions/WarpNextConfig"},output:{additionalProperties:{$ref:"#/definitions/WarpResulutionPath"},type:"object"},preview:{type:"string"},protocol:{type:"string"},related:{items:{type:"string"},type:"array"},schedule:{$ref:"#/definitions/WarpSchedule"},sections:{items:{$ref:"#/definitions/WarpSection"},type:"array"},title:{$ref:"#/definitions/WarpText"},trigger:{$ref:"#/definitions/WarpTrigger"},ui:{type:"string"},vars:{additionalProperties:{type:"string"},type:"object"}},required:["protocol","name","title","description","actions"],type:"object"},WarpAction:{anyOf:[{$ref:"#/definitions/WarpTransferAction"},{$ref:"#/definitions/WarpContractAction"},{$ref:"#/definitions/WarpQueryAction"},{$ref:"#/definitions/WarpCollectAction"},{$ref:"#/definitions/WarpComputeAction"},{$ref:"#/definitions/WarpLinkAction"},{$ref:"#/definitions/WarpMcpAction"},{$ref:"#/definitions/WarpPromptAction"},{$ref:"#/definitions/WarpStateAction"},{$ref:"#/definitions/WarpMountAction"},{$ref:"#/definitions/WarpUnmountAction"},{$ref:"#/definitions/WarpLoopAction"},{$ref:"#/definitions/WarpInlineAction"}]},WarpActionInput:{additionalProperties:!1,properties:{as:{type:"string"},bot:{type:"string"},default:{type:["string","number","boolean"]},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},label:{$ref:"#/definitions/WarpText"},max:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},min:{anyOf:[{type:"number"},{$ref:"#/definitions/WarpVarPlaceholder"}]},modifier:{type:"string"},name:{type:"string"},options:{anyOf:[{items:{type:"string"},type:"array"},{additionalProperties:{$ref:"#/definitions/WarpText"},type:"object"}]},pattern:{type:"string"},patternDescription:{$ref:"#/definitions/WarpText"},position:{$ref:"#/definitions/WarpActionInputPosition"},required:{type:"boolean"},source:{$ref:"#/definitions/WarpActionInputSource"},type:{$ref:"#/definitions/WarpActionInputType"}},required:["name","type","source"],type:"object"},WarpActionInputPosition:{anyOf:[{const:"receiver",type:"string"},{const:"value",type:"string"},{const:"transfer",type:"string"},{const:"arg:1",type:"string"},{const:"arg:2",type:"string"},{const:"arg:3",type:"string"},{const:"arg:4",type:"string"},{const:"arg:5",type:"string"},{const:"arg:6",type:"string"},{const:"arg:7",type:"string"},{const:"arg:8",type:"string"},{const:"arg:9",type:"string"},{const:"arg:10",type:"string"},{const:"data",type:"string"},{const:"chain",type:"string"},{type:"string"},{const:"destination",type:"string"},{const:"local",type:"string"},{$ref:"#/definitions/WarpActionInputPositionAssetObject"}]},WarpActionInputPositionAssetObject:{additionalProperties:!1,properties:{amount:{type:"string"},token:{type:"string"}},required:["token","amount"],type:"object"},WarpActionInputSource:{enum:["field","query","user:wallet","hidden"],type:"string"},WarpActionInputType:{type:"string"},WarpActionType:{enum:["transfer","contract","query","collect","compute","link","mcp","prompt","state","mount","unmount","loop","inline"],type:"string"},WarpChainName:{enum:["multiversx","claws","sui","ethereum","base","arbitrum","polygon","somnia","tempo","fastset","solana","near"],type:"string"},WarpCollectAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpCollectDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpCollectDestination:{anyOf:[{$ref:"#/definitions/WarpCollectDestinationHttp"},{type:"string"}]},WarpCollectDestinationHttp:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},method:{enum:["GET","POST","PUT","DELETE"],type:"string"},url:{type:"string"}},required:["url"],type:"object"},WarpComputeAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"compute",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpContractAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:["string","null"]},gasLimit:{type:"number"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label","gasLimit"],type:"object"},WarpI18nText:{additionalProperties:{type:"string"},type:"object"},WarpInlineAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},silent:{type:"boolean"},type:{const:"inline",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpLinkAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},type:{$ref:"#/definitions/WarpActionType"},url:{type:"string"},when:{type:"string"}},required:["type","label","url"],type:"object"},WarpLoopAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},delay:{type:"number"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},maxIterations:{type:"number"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"loop",type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},destination:{$ref:"#/definitions/WarpMcpDestination"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpMcpDestination:{additionalProperties:!1,properties:{headers:{additionalProperties:{type:"string"},type:"object"},tool:{type:"string"},url:{type:"string"}},required:["url","tool"],type:"object"},WarpMeta:{additionalProperties:!1,properties:{chain:{anyOf:[{$ref:"#/definitions/WarpChainName"},{type:"null"}]},createdAt:{type:"string"},creator:{type:"string"},hash:{type:"string"},identifier:{type:"string"},query:{anyOf:[{type:"object"},{type:"null"}]}},required:["chain","identifier","query","hash","creator","createdAt"],type:"object"},WarpMountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"mount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpNextConfig:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"},{additionalProperties:!1,properties:{error:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]},success:{anyOf:[{type:"string"},{items:{type:"string"},type:"array"}]}},type:"object"}]},"WarpPlatformValue<string>":{anyOf:[{type:"string"},{additionalProperties:!1,properties:{linux:{type:"string"},macos:{type:"string"},windows:{type:"string"}},type:"object"}]},WarpPromptAction:{additionalProperties:!1,properties:{as:{type:"string",description:"Variable name to store the LLM-generated response in. Defaults to MESSAGE if not set."},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},expect:{anyOf:[{type:"string"},{type:"object"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},prompt:{$ref:"#/definitions/WarpPlatformValue%3Cstring%3E"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label","prompt"],type:"object"},WarpQueryAction:{additionalProperties:!1,properties:{abi:{type:"string"},address:{type:"string"},args:{items:{type:"string"},type:"array"},auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},func:{type:"string"},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{$ref:"#/definitions/WarpActionType"},when:{type:"string"}},required:["type","label"],type:"object"},WarpResulutionPath:{type:"string"},WarpSchedule:{enum:["minutely","hourly","daily","weekly","monthly","yearly"],type:"string"},WarpSection:{additionalProperties:!1,properties:{description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{type:"string"},type:"array"},title:{$ref:"#/definitions/WarpText"}},required:["title","inputs"],type:"object"},WarpStateAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},data:{type:"object"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},keys:{items:{type:"string"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},op:{enum:["read","write","clear"],type:"string"},store:{type:"string"},type:{const:"state",type:"string"},when:{type:"string"}},required:["type","label","op","store"],type:"object"},WarpText:{anyOf:[{type:"string"},{$ref:"#/definitions/WarpI18nText"}]},WarpTransferAction:{additionalProperties:!1,properties:{address:{type:"string"},auto:{type:"boolean"},data:{type:"string"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},transfers:{items:{type:"string"},type:"array"},type:{$ref:"#/definitions/WarpActionType"},value:{type:"string"},when:{type:"string"}},required:["type","label"],type:"object"},WarpTrigger:{anyOf:[{additionalProperties:!1,properties:{pattern:{type:"string"},type:{const:"message",type:"string"}},required:["type","pattern"],type:"object"},{additionalProperties:!1,properties:{body:{$ref:"#/definitions/WarpText"},inputs:{additionalProperties:{type:"string"},type:"object"},label:{$ref:"#/definitions/WarpText"},match:{additionalProperties:{type:["string","number","boolean"]},type:"object"},source:{type:"string"},subject:{$ref:"#/definitions/WarpText"},type:{const:"webhook",type:"string"}},required:["type","source"],type:"object"}]},WarpUnmountAction:{additionalProperties:!1,properties:{auto:{type:"boolean"},description:{anyOf:[{$ref:"#/definitions/WarpText"},{type:"null"}]},inputs:{items:{$ref:"#/definitions/WarpActionInput"},type:"array"},label:{$ref:"#/definitions/WarpText"},next:{$ref:"#/definitions/WarpNextConfig"},type:{const:"unmount",type:"string"},warp:{type:"string"},when:{type:"string"}},required:["type","label","warp"],type:"object"},WarpVarPlaceholder:{type:"string"}}};var cr=new Set(["POST","PUT","PATCH","DELETE"]),ur=/^[A-Z][A-Z0-9_]*$/,dt=class{constructor(t){this.config=t;this.config=t}async validate(t){let e=[];return e.push(...this.validateHasActions(t)),e.push(...this.validateMaxOneValuePosition(t)),e.push(...this.validateVariableNamesAndResultNamesUppercase(t)),e.push(...this.validateAbiIsSetIfApplicable(t)),e.push(...this.validateUrlPlaceholdersHaveInputs(t)),e.push(...this.validateNoArgPositionsOnHttpActions(t)),e.push(...await this.validateSchema(t)),{valid:e.length===0,errors:e}}validateHasActions(t){try{let{action:e}=N(t);return e?[]:["Warp must have at least one action"]}catch(e){return[e instanceof Error?e.message:"Warp must have at least one action"]}}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"]:[]}validateUrlPlaceholdersHaveInputs(t){let e=[],n=new Set(Object.keys(t.vars??{})),i=new Set;for(let a of t.actions){let s=a.inputs??[];for(let o of s)typeof o.position=="string"&&o.position.startsWith("url:")&&i.add(o.position.slice(4));let p=a.destination;if(!p||typeof p=="string"||!p.url)continue;let l=this.extractUrlPlaceholders(p.url);if(l.length!==0)for(let o of l)n.has(o)||ur.test(o)||i.has(o)||e.push(`URL "${p.url}" contains {{${o}}} but no input has position "url:${o}" (and it is not declared in vars)`)}return e}validateNoArgPositionsOnHttpActions(t){let e=[];for(let n of t.actions){let i=n.destination;if(!i||typeof i=="string")continue;let a=i.method?.toUpperCase();if(!a||!cr.has(a))continue;let s=n.inputs??[];for(let p of s)if(p.position?.startsWith("arg:")){let l=p.as??p.name??"(unnamed)";e.push(`Input "${l}" has position "${p.position}" on HTTP ${a} action \u2014 CLI arg positions are not sent in the JSON body. Remove the position (defaults to body) or use "payload:X" / "url:X" explicitly.`)}}return e}extractUrlPlaceholders(t){let n=t.split("?")[0].match(/\{\{([a-zA-Z_][a-zA-Z_0-9]*)\}\}/g);return n?n.map(i=>i.slice(2,-2)):[]}async validateSchema(t){try{let e=this.config.schema?.warp?await(await fetch(this.config.schema.warp)).json():de,n=new lr({strict:!1}),i=n.compile(e);return i(t)?[]:[`Schema validation failed: ${n.errorsText(i.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var ft=class{constructor(t){this.config=t;this.pendingWarp={protocol:st("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 Jt(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 dt(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
2
+ `))}};import{existsSync as jt,mkdirSync as dr,readdirSync as fe,readFileSync as fr,unlinkSync as Lt,writeFileSync as gr}from"fs";import{join as ge,resolve as he}from"path";var Bt="$bigint:",gt=(r,t)=>typeof t=="bigint"?Bt+t.toString():t,J=(r,t)=>typeof t=="string"&&t.startsWith(Bt)?BigInt(t.slice(Bt.length)):t;var ht=class{constructor(t,e){let n=e?.path;this.cacheDir=n?he(n):he(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){jt(this.cacheDir)||dr(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return ge(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!jt(e))return null;let n=fr(e,"utf-8"),i=JSON.parse(n,J);return i.expiresAt!==null&&Date.now()>i.expiresAt?(Lt(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);gr(a,JSON.stringify(i,gt),"utf-8")}async delete(t){try{let e=this.getFilePath(t);jt(e)&&Lt(e)}catch{}}async keys(t){try{let e=fe(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{fe(this.cacheDir).forEach(e=>{e.endsWith(".json")&&Lt(ge(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,gt))}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 L=class L{constructor(t,e){}async get(t){let e=L.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(L.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;L.cache.set(t,{value:e,expiresAt:i})}async delete(t){L.cache.delete(t)}async keys(t){let e=Array.from(L.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){L.cache.clear()}};L.cache=new Map;var tt=L;import{readFileSync as hr}from"fs";import{resolve as me}from"path";var mt=class{constructor(t,e){let n=e?.path?me(e.path):me(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=hr(t,"utf-8");return new Map(Object.entries(JSON.parse(e,J)))}catch(e){return b.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 ye={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},Wt={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}`},yt=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 mt(t,e):e?.type==="filesystem"?new ht(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"},Vt={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},Ht=(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)},Ft=r=>{try{return JSON.parse(r)}catch{return null}},mr=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:c}=await Nt(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Ot(n,d,o,c)).forEach(([h,f])=>s.set(h,f))}let p=Ht(e.resolvedInputs,et.Headers,i);if(p){let l=Ft(p);l&&typeof l=="object"&&Object.entries(l).forEach(([o,c])=>typeof c=="string"&&s.set(o,c))}else t.headers&&Object.entries(t.headers).forEach(([l,o])=>{s.set(l,r.applyInputs(o,e.resolvedInputs,i))});return s},yr=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===Vt.Get){let s=Ht(e.resolvedInputs,et.Queries,i);if(s){let p=Ft(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,c])=>c!=null&&l.searchParams.set(o,String(c))),a=l.toString()}}}return a},Wr=(r,t,e,n,i)=>{if(r===Vt.Get)return;let a=Ht(t.resolvedInputs,et.Payload,n);if(a&&Ft(a)!==null)return a;let{[et.Payload]:s,[et.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},We=async(r,t,e,n,i,a,s,p)=>{let l=t.method||Vt.Get,o=await mr(r,t,e,n,a,p),c=yr(r,t,e,l,a),d=Wr(l,e,i,a,s);return{url:c,method:l,headers:o,body:d}};var R=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(`\\{\\{${xr(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(u.Vars.Query+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Query.length+1),[o,c]=l.split(u.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(u.Vars.Env+u.ArgParamsSeparator)){let l=p.slice(u.Vars.Env.length+1),[o,c]=l.split(u.ArgCompositeSeparator),h={...this.config.vars,...e.envs}?.[o];h!=null&&a(s,h)}else p===u.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(u.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(u.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){if(!t||typeof t!="string"||!t.includes("{{"))return t;let i=this.applyGlobalsToText(t),a=this.buildInputBag(e,n);return B(i,a)}applyGlobalsToText(t){if(!Object.values(u.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(u.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),c={config:this.config,adapter:o},d=i(c);return d!=null?d.toString():s}catch{return s}})}buildInputBag(t,e){let n={};return t.forEach(i=>{if(!i.value)return;let a=i.input.as||i.input.name,[,s]=e.stringToNative(i.value);n[a]=String(s)}),n}},xr=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var vr=["collect","compute","mcp","state","mount","unmount"],Ar=new Set(Object.values(m)),Cr=r=>{let t=r.indexOf(u.ArgParamsSeparator);return t===-1?!1:Ar.has(r.slice(0,t))},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 yt(t.env,t.cache)}getSerializer(){return this.serializer}getCache(){return this.cache}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(Wt.WarpExecutable(t,e||"",n))||[];return j(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(Wt.WarpExecutable(t,e||"",n))||[]}async createExecutable(t,e,n,i={}){let a=E(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 R(this.config,p,this.adapters),o=await l.apply(t,i),c=E(o,e),{action:d,index:h}=N(o),f=[],g=[];if(h===e-1){let I=this.getStringTypedInputs(d,n);f=await this.getResolvedInputs(s.name,d,I,l,i.queries),g=await this.getModifiedInputs(f)}else c.inputs&&c.inputs.length>0&&(f=await this.resolveActionInputs(s.name,c,n,l,i.queries),g=await this.getModifiedInputs(f));let y=g.find(I=>I.input.position==="receiver"||I.input.position==="destination")?.value,x=this.getDestinationFromAction(c),C=y?this.serializer.stringToNative(y)[1]:x;if(C&&(C=l.applyInputs(C,g,this.serializer)),!C&&!vr.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let v=this.getPreparedArgs(c,g);v=v.map(I=>l.applyInputs(I,g,this.serializer));let T=g.find(I=>I.input.position==="value")?.value||null,A="value"in c?c.value:null,O=T?.split(u.ArgParamsSeparator)[1]||A||"0",V=l.applyInputs(O,g,this.serializer),$=BigInt(V),H=g.filter(I=>I.input.position==="transfer"&&I.value).map(I=>I.value),Ce=[...("transfers"in c?c.transfers:[])||[],...H||[]].map(I=>{let Ct=l.applyInputs(I,g,this.serializer),Pe=Ct.startsWith(`asset${u.ArgParamsSeparator}`)?Ct:`asset${u.ArgParamsSeparator}${Ct}`;return this.serializer.stringToNative(Pe)[1]}),be=g.find(I=>I.input.position==="data")?.value,we="data"in c?c.data||"":null,Ut=be||we||null,Ie=Ut?l.applyInputs(Ut,g,this.serializer):null,Dt={adapter:p,warp:o,chain:s,action:e,destination:C,args:v,value:$,transfers:Ce,data:Ie,resolvedInputs:g};return await this.cache.set(Wt.WarpExecutable(this.config.env,o.meta?.hash||"",e),Dt.resolvedInputs,ye.OneWeek),Dt}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||Cr(i)?i:this.serializer.nativeToString(s.type,i)})}async getResolvedInputs(t,e,n,i,a){let s=e.inputs||[],p=n.map(c=>i.applyInputs(c,[],this.serializer)),l=await Promise.all(p.map(c=>this.preprocessInput(t,c))),o=(c,d)=>{if(c.source===u.Source.UserWallet){let x=S(this.config,t);return x?this.serializer.nativeToString("address",x):null}if(c.source==="hidden"){if(c.default===void 0)return null;let x=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,x)}if(l[d])return l[d];let h=c.as||c.name,f=a?.[h],g=this.url.searchParams.get(h),y=f||g;return y?this.serializer.nativeToString(c.type,String(y)):null};return s.map((c,d)=>{let h=o(c,d),f=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(f!==void 0?this.serializer.nativeToString(c.type,f):null)}})}async resolveInputsFromQuery(t,e,n){let i=E(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=W(a.name,this.adapters),p=new R(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=ot(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=ot(s,+a);e.push({...i,value:`${i.input.type}:${p}`})}}else if(i.input.modifier?.startsWith(u.Transform.Prefix)){let a=i.input.modifier.substring(u.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=ut(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 if(i.input.modifier?.startsWith("crypto:")){let[,a,s]=i.input.modifier.split(":"),p=a==="sha256"&&s?t.find(o=>(o.input.as||o.input.name)===s):null,l=p?.value?this.serializer.stringToNative(p.value)[1]??null:null;if(l){let c=await(await fetch(l)).arrayBuffer(),d=await globalThis.crypto.subtle.digest("SHA-256",c),h=Array.from(new Uint8Array(d)).map(f=>f.toString(16).padStart(2,"0")).join("");e.push({...i,value:this.serializer.nativeToString("string",h)})}else e.push(i)}else e.push(i)}return e}async preprocessInput(t,e){try{let[n,i]=Tt(e),a=W(t,this.adapters);if(n==="asset"){let[s,p,l]=i.split(u.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 c=ot(p,o.decimals);return ce({...o,amount:c})}else return e}catch(n){throw b.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 c=Number(a.position.token.split(":")[1])-1,d=Number(a.position.amount.split(":")[1])-1;i.push({index:c,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 xt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.loopIterations=new Map;this.active=!0;this.warpResolver=null;this.handlers=n,this.factory=new Q(t,e)}setWarpResolver(t){this.warpResolver=t}stop(){this.active=!1,this.loopIterations.clear()}async execute(t,e,n={}){let i=[],a=null,s=[],p=[],o={...t.meta?.query??{},...n.queries},c={...n,queries:o},d={};if(t.vars)try{let f=this.adapters?.find(g=>g.chainInfo.name===(t.chain||this.adapters[0]?.chainInfo?.name));if(f){let g=await new R(this.config,f,this.adapters).apply(t,c);g?.actions&&(t.actions=g.actions),g?.meta&&(t.meta=g.meta)}}catch{}let{index:h}=N(t);for(let f=1;f<=t.actions.length;f++){let g=E(t,f);if(!Pt(g))continue;let y=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:x,chain:C,immediateExecution:v,executable:T}=await this.executeAction(t,f,e,y);if(x&&i.push(x),C&&(a=C),v&&s.push(v),v?.output){let{_DATA:A,...O}=v.output;Object.assign(d,O)}v?.values?.mapped&&Object.assign(d,v.values.mapped),T&&f===h+1&&T.resolvedInputs&&(p=j(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 f=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(f))}return this.scheduleLoops(t,e,c,d),{txs:i,chain:a,immediateExecutions:s,resolvedInputs:p}}async executeAction(t,e,n,i={}){let a=E(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):qt.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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,result:o}),{tx:null,chain:null,immediateExecution:o,executable:null}}}if(a.type==="loop")return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="state")return this.executeState(t,a,e,i);if(a.type==="mount"||a.type==="unmount"){if(a.when){let o=i.envs||{},c=M(a.when,o);if(!k(c))return{tx:null,chain:null,immediateExecution:null,executable:null}}return await this.handlers?.onMountAction?.({action:a,actionIndex:e,warp:t}),{tx:null,chain:null,immediateExecution:null,executable:null}}if(a.type==="inline"){if(!this.warpResolver)return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.when){let y=this.adapters[0]?.chainInfo.name||"";if(!await this.evaluateWhenCondition(t,a,n,i,[],y))return{tx:null,chain:null,immediateExecution:null,executable:null}}let o=a,c=await this.warpResolver(o.warp);if(!c)return{tx:null,chain:null,immediateExecution:null,executable:null};await this.callHandler(()=>this.handlers?.onActionProcessing?.(a));let d={...this.config.vars,...i.envs||{},...i.queries||{}},h={};for(let[y,x]of Object.entries(c.meta?.query||{}))h[y]=x.replace(/\{\{(.+?)\}\}/g,(C,v)=>{let T=d[v.trim()];return T==null?"":typeof T=="object"?JSON.stringify(T):String(T)});c.meta={...c.meta,query:h};let{immediateExecutions:f}=await this.execute(c,[],i),g=f[0];return g?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:g,tx:null})),{tx:null,chain:null,immediateExecution:g,executable:null}):{tx:null,chain:null,immediateExecution:null,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,void 0,i.envs);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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,result:o})}return{tx:null,chain:null,immediateExecution:null,executable:s}}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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);return this.handlers?.onError?.({message:c,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 c=o.output._DATA instanceof Error?o.output._DATA.message:JSON.stringify(o.output._DATA);this.handlers?.onError?.({message:c,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(!Pt(s)||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),g={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:f};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:g})),g}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let f=t.meta?.query;f&&Object.keys(f).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,f))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=br(c,d.output);return d.next=ct(this.config,this.adapters,t,o,h,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,n){let i=S(this.config,t.chain.name),a=E(t.warp,t.action),s=this.factory.getSerializer(),p=_(t.resolvedInputs,s);if(a.destination&&typeof a.destination=="object"&&"url"in a.destination)return await this.doHttpRequest(t,a.destination,i,p,e,n);let{values:l,output:o}=await Z(t.warp,p,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,i,"unhandled",l,o)}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,s){let p=new R(this.config,W(t.chain.name,this.adapters),this.adapters),l=this.factory.getSerializer(),{url:o,method:c,headers:d,body:h}=await We(p,e,t,n,i,l,a,async f=>await this.callHandler(()=>this.handlers?.onSignRequest?.(f)));s&&(o=B(o,s)),b.debug("WarpExecutor: Executing HTTP collect",{url:o,method:c,headers:d,body:h});try{let f={method:c,headers:d,body:h},y=await(await oe(this.adapters))(o,f);b.debug("Collect response status",{status:y.status});let x=await y.json();b.debug("Collect response content",{content:x});let{values:C,output:v}=await Z(t.warp,x,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,S(this.config,t.chain.name),y.ok?"success":"error",C,v,x)}catch(f){b.error("WarpActionExecutor: Error executing collect",f);let g=j(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:g}}}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=E(t.warp,t.action);if(!i.destination){let f=j(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 g=j(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:g}}let p=this.factory.getSerializer(),l=new R(this.config,W(t.chain.name,this.adapters),this.adapters),o=i.destination,c=l.applyInputs(o.url,t.resolvedInputs,this.factory.getSerializer()),d=l.applyInputs(o.tool,t.resolvedInputs,this.factory.getSerializer()),h={};o.headers&&Object.entries(o.headers).forEach(([f,g])=>{let y=l.applyInputs(g,t.resolvedInputs,this.factory.getSerializer());h[f]=y}),b.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let f=new s(new URL(c),{requestInit:{headers:h}}),g=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await g.connect(f);let y={};t.resolvedInputs.forEach(({input:A,value:O})=>{if(O&&A.position&&typeof A.position=="string"&&A.position.startsWith("payload:")){let V=A.position.replace("payload:",""),[$,H]=p.stringToNative(O);if($==="string")y[V]=String(H);else if($==="bool")y[V]=!!H;else if($==="uint8"||$==="uint16"||$==="uint32"||$==="uint64"||$==="uint128"||$==="uint256"||$==="biguint"){let rt=Number(H);y[V]=(Number.isInteger(rt),rt)}else y[V]=H}}),e&&Object.assign(y,e);let x=await g.callTool({name:d,arguments:y});await g.close();let C;if(x.content&&x.content.length>0){let A=x.content[0];if(A.type==="text")try{C=JSON.parse(A.text)}catch{C=A.text}else A.type,C=A}else C=x;let{values:v,output:T}=await Z(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",v,T,x)}catch(f){b.error("WarpExecutor: Error executing MCP",f);let g=j(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:g}}}buildCollectResult(t,e,n,i,a,s){let p=ct(this.config,this.adapters,t.warp,t.action,a,n),l=j(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:Et(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}scheduleLoops(t,e,n,i){if(this.active)for(let a of t.actions){if(a.type!=="loop"||a.auto===!1)continue;let s=a,l=`loop:${n.scope||"default"}:${t.meta?.identifier||t.name}`;if(s.when){let h={...n.envs,...i},f=M(s.when,h);try{if(!k(f)){this.loopIterations.delete(l);continue}}catch{this.loopIterations.delete(l);continue}}let o=s.maxIterations??1e4,c=(this.loopIterations.get(l)??0)+1;if(c>o){this.loopIterations.delete(l),b.debug(`Loop maxIterations (${o}) reached for warp ${t.meta?.identifier}`);continue}if(this.loopIterations.set(l,c),!this.handlers?.onLoop)continue;let d=s.delay??0;this.handlers.onLoop({warp:t,inputs:e,meta:n,delay:d})}}async executeState(t,e,n,i){if(e.when){let l=i.envs||{},o=M(e.when,l);if(!k(o))return{tx:null,chain:null,immediateExecution:null,executable:null}}let a=this.factory.getCache(),p=`state:${i.scope||"default"}:${e.store}`;if(e.op==="read"){let l=await a.get(p)??{},o=e.keys??Object.keys(l),c={};for(let h of o)l[h]!==void 0&&l[h]!==null&&(c[`state.${h}`]=l[h]);let d={status:"success",warp:t,action:n,user:null,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:c,messages:{},destination:null,resolvedInputs:[]};return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:n,chain:null,execution:d,tx:null})),{tx:null,chain:null,immediateExecution:d,executable:null}}if(e.op==="write"&&e.data){let l=await a.get(p)??{},o=i.envs||{},c={};for(let[d,h]of Object.entries(e.data))if(typeof h=="string"){let f=h.replace(/\{\{([^}]+)\}\}/g,(g,y)=>{let x=o[y.trim()];return x!=null?String(x):h});c[d]=wr(f)}else c[d]=h;await a.set(p,{...l,...c})}return e.op==="clear"&&await a.delete(p),{tx:null,chain:null,immediateExecution:null,executable:null}}async executePrompt(t,e,n,i,a={}){try{let s=await this.factory.getChainInfoForWarp(t,i),p=W(s.name,this.adapters),l=new R(this.config,p,this.adapters),o=await l.apply(t,a),c=E(o,n),d=[];if(e.inputs&&e.inputs.length>0){let A=this.factory.getStringTypedInputs(e,i),O=await this.factory.getResolvedInputs(s.name,e,A,l,a.queries);d=await this.factory.getModifiedInputs(O)}else{let{action:A}=N(o),O=this.factory.getStringTypedInputs(A,i),V=await this.factory.getResolvedInputs(s.name,A,O,l,a.queries);d=await this.factory.getModifiedInputs(V)}let h=ie(c.prompt,this.config.platform),f=l.applyInputs(h,d,this.factory.getSerializer());a.envs&&(f=B(f,a.envs));let g=j(d),y=S(this.config,s.name),x=this.factory.getSerializer(),{values:C,output:v}=await ne(o,f,n,d,x,this.config);if(this.handlers?.onPromptGenerate){let A=await this.handlers.onPromptGenerate(f,c.expect);A&&(v.MESSAGE=A,c.as&&(v[c.as]=A))}let T=d.find(A=>A.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:y,txHash:null,tx:null,next:lt(this.config,this.adapters,o,n,v),values:C,output:v,messages:Et(o,{...C.mapped,...v},this.config),destination:T,resolvedInputs:g}}catch(s){return b.error("WarpExecutor: Error executing prompt action",s),{status:"error",warp:t,action:n,user:null,txHash:null,tx:null,next:ct(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=W(p.name,this.adapters),o=new R(this.config,l,this.adapters),c;if(a)c=a;else{let g=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(g)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},f=M(e.when,h);return k(f)}},br=(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}},wr=r=>{if(r==="true")return!0;if(r==="false")return!1;let t=Number(r);return!isNaN(t)&&r.trim()!==""?t:r};var vt=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 b.error("WarpIndex: Error searching for warps: ",i),i}}};var At=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!X(t):!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(u.HttpProtocolPrefix)?X(t):F(t);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,c=t.startsWith(u.HttpProtocolPrefix)?Kt(t):Xt(i.identifier);if(this.resolver){let g=null;if(a==="hash")g=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;g=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}g&&(p=g.warp,l=g.registryInfo,o=g.brand)}else{if(!i.chain)throw new Error(`WarpLinkDetecter: chain is required for identifier ${i.identifier}`);let g=W(i.chain,this.adapters);if(a==="hash"){p=await g.builder().createFromTransactionHash(s,e);let y=await g.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await g.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await g.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(Ir(p,i.chain,l,i.identifier),p.meta.query=c?Zt(c):null),!p)return n;let d=p.chain||i.chain||null,h=d?this.adapters.find(g=>g.chainInfo.name.toLowerCase()===d.toLowerCase()):null,f=h?await new R(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:f,chain:d,registryInfo:l,brand:o}}catch(a){return b.error("Error detecting warp link",a),n}}},Ir=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?St(null,"alias",e.alias):St(t,"hash",e?.hash??n))};var xe=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 nt(e));return new it(t)}getConfig(){return this.config}mergeVars(t){this.config={...this.config,vars:{...this.config.vars,...t}}}getResolver(){return this.resolver}createExecutor(t){let e=new xt(this.config,this.chains,t);return e.setWarpResolver(async n=>(await this.detectWarp(n)).warp??null),e}async detectWarp(t,e){return new At(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 g=await fetch(t);if(!g.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await g.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:c,immediateExecutions:d,resolvedInputs:h}=await l.execute(p,e,{queries:i.queries});return{txs:o,chain:c,immediateExecutions:d,evaluateOutput:async g=>{await l.evaluateOutput(p,g)},resolvedInputs:h}}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=F(t);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");if(!n.chain)throw new Error("WarpClient: createFromTransactionHash - chain is required");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??N(e).index+1,p=await W(t,this.chains).output.getActionExecution(e,a,n);return p.next=lt(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 vt(this.config)}get linkBuilder(){return new G(this.config,this.chains)}createBuilder(t){return t?W(t,this.chains).builder():new ft(this.config)}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 pt(t,this.config)}};var ve=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 fs(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(Ae(t,n)!==i)return!1;return!0}function gs(r,t){let e={};for(let[n,i]of Object.entries(r.inputs??{}))e[n]=i.includes(".")?Ae(t,i):i;return e}function Ae(r,t){return t.split(".").reduce((e,n)=>e?.[n],r)}export{wt as BrowserCryptoProvider,Dr as CLOUD_WALLET_PROVIDERS,ye as CacheTtl,Fr as EvmWalletChainNames,Ur as MultiversxWalletChainNames,It as NodeCryptoProvider,gn as WARP_LANGUAGES,P as WarpAssets,ue as WarpBrandBuilder,ft as WarpBuilder,yt as WarpCache,Wt as WarpCacheKey,je as WarpChainDisplayNames,Le as WarpChainLogos,Be as WarpChainName,nt as WarpChainResolver,xe as WarpClient,it as WarpCompositeResolver,U as WarpConfig,u as WarpConstants,xt as WarpExecutor,Q as WarpFactory,vt as WarpIndex,m as WarpInputTypes,R as WarpInterpolator,G as WarpLinkBuilder,At as WarpLinkDetecter,b as WarpLogger,Mt as WarpPlatformName,kt as WarpPlatforms,z as WarpProtocolVersions,w as WarpSerializer,ve as WarpTypeRegistry,dt as WarpValidator,$i as address,Et as applyOutputToMessages,ce as asset,Ei as biguint,Ri as bool,nr as buildGeneratedFallbackWarpIdentifier,si as buildGeneratedSourceWarpIdentifier,ut as buildInputsContext,_ as buildMappedOutput,Ge as buildNestedPayload,en as bytesToBase64,Ve as bytesToHex,hi as checkWarpAssetBalance,K as cleanWarpIdentifier,Ot as createAuthHeaders,Nt as createAuthMessage,nn as createCryptoProvider,di as createDefaultWalletProvider,ri as createHttpAuthHeaders,Ye as createSignableMessage,mn as createWarpI18nText,St as createWarpIdentifier,dn as doesWarpRequireWallet,re as evaluateOutputCommon,k as evaluateWhenCondition,Z as extractCollectOutput,X as extractIdentifierInfoFromUrl,ne as extractPromptOutput,Xt as extractQueryStringFromIdentifier,Kt as extractQueryStringFromUrl,j as extractResolvedInputValues,on as extractWarpSecrets,W as findWarpAdapterForChain,_r as getChainDisplayName,Jr as getChainLogo,zt as getCryptoProvider,tr as getGeneratedSourceWarpName,st as getLatestProtocolIdentifier,oe as getMppFetch,lt as getNextInfo,ct as getNextInfoForStatus,Zn as getProviderConfig,Gt as getRandomBytes,_t as getRandomHex,ir as getRequiredAssetIds,Er as getWalletFromConfigOrFail,E as getWarpActionByIndex,Kr as getWarpBrandLogoUrl,Xr as getWarpChainAssetLogoUrl,Zr as getWarpChainInfoLogoUrl,Cn as getWarpIdentifierWithQuery,F as getWarpInfoFromIdentifier,N as getWarpInputAction,Se as getWarpWalletAddress,S as getWarpWalletAddressFromConfig,Re as getWarpWalletExternalId,$e as getWarpWalletExternalIdFromConfig,Nr as getWarpWalletExternalIdFromConfigOrFail,Ee as getWarpWalletMnemonic,$r as getWarpWalletMnemonicFromConfig,Te as getWarpWalletPrivateKey,Rr as getWarpWalletPrivateKeyFromConfig,In as hasInputPrefix,Ni as hex,ci as initializeWalletCache,vn as isEqualWarpIdentifier,pi as isGeneratedSourcePrivateIdentifier,Ze as isPlatformValue,Pt as isWarpActionAutoExecute,hn as isWarpI18nText,Or as isWarpWalletReadOnly,fs as matchesTrigger,te as mergeNestedPayload,Lr as normalizeAndValidateMnemonic,Ne as normalizeMnemonic,Oi as option,Xe as parseOutputOutIndex,ii as parseSignedMessage,Zt as parseWarpQueryStringToObject,An as removeWarpChainPrefix,jr as removeWarpWalletFromConfig,B as replacePlaceholders,M as replacePlaceholdersInWhenExpression,gs as resolveInputs,Fn as resolveNextString,$t as resolveNextStrings,Ae as resolvePath,ie as resolvePlatformValue,pt as resolveWarpText,qt as safeWindow,tn as setCryptoProvider,Br as setWarpWalletInConfig,ot as shiftBigintBy,Tt as splitInput,oi as stampGeneratedWarpMeta,wi as string,ji as struct,rn as testCryptoAvailability,_e as toInputPayloadValue,Jt as toPreviewText,Bi as tuple,Pi as uint16,Si as uint32,Ti as uint64,Ii as uint8,Oe as validateMnemonicLength,ni as validateSignedMessage,Li as vector,zr as withAdapterFallback};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@joai/warps",
3
- "version": "4.29.7",
3
+ "version": "4.31.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",