@joai/warps 4.22.1 → 4.24.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 +29 -19
- package/dist/index.d.ts +29 -19
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -233,7 +233,6 @@ type WarpClientConfig = {
|
|
|
233
233
|
};
|
|
234
234
|
walletProviders?: Partial<Record<WarpChainName, Partial<Record<WarpWalletProvider, WalletProviderFactory>>>>;
|
|
235
235
|
fallback?: WarpChainName;
|
|
236
|
-
defaultChain?: WarpChainName;
|
|
237
236
|
schema?: {
|
|
238
237
|
warp?: string;
|
|
239
238
|
brand?: string;
|
|
@@ -428,7 +427,6 @@ declare const WarpConstants: {
|
|
|
428
427
|
HttpProtocolPrefix: string;
|
|
429
428
|
IdentifierParamName: string;
|
|
430
429
|
IdentifierParamSeparator: string;
|
|
431
|
-
IdentifierChainDefault: WarpChainName;
|
|
432
430
|
IdentifierType: {
|
|
433
431
|
Alias: WarpIdentifierType;
|
|
434
432
|
Hash: WarpIdentifierType;
|
|
@@ -510,6 +508,12 @@ type WarpChainInfo = {
|
|
|
510
508
|
minGasPrice?: bigint;
|
|
511
509
|
};
|
|
512
510
|
type WarpIdentifierType = 'hash' | 'alias';
|
|
511
|
+
type WarpIdentifierInfo = {
|
|
512
|
+
chain: WarpChainName | null;
|
|
513
|
+
type: WarpIdentifierType;
|
|
514
|
+
identifier: string;
|
|
515
|
+
identifierBase: string;
|
|
516
|
+
};
|
|
513
517
|
type WarpVarPlaceholder = string;
|
|
514
518
|
type WarpOutputName = string;
|
|
515
519
|
type WarpResulutionPath = string;
|
|
@@ -545,7 +549,7 @@ type WarpSection = {
|
|
|
545
549
|
inputs: string[];
|
|
546
550
|
};
|
|
547
551
|
type WarpMeta = {
|
|
548
|
-
chain: WarpChainName;
|
|
552
|
+
chain: WarpChainName | null;
|
|
549
553
|
identifier: string;
|
|
550
554
|
query: Record<string, any> | null;
|
|
551
555
|
hash: string;
|
|
@@ -932,22 +936,12 @@ declare const createWarpI18nText: (translations: Record<string, string>) => Warp
|
|
|
932
936
|
declare const cleanWarpIdentifier: (identifier: string) => string;
|
|
933
937
|
declare const isEqualWarpIdentifier: (identifier1: string | null | undefined, identifier2: string | null | undefined) => boolean;
|
|
934
938
|
declare const createWarpIdentifier: (chain: WarpChainName | null, type: WarpIdentifierType, identifier: string) => string;
|
|
935
|
-
declare const getWarpInfoFromIdentifier: (prefixedIdentifier: string
|
|
936
|
-
|
|
937
|
-
type: WarpIdentifierType;
|
|
938
|
-
identifier: string;
|
|
939
|
-
identifierBase: string;
|
|
940
|
-
} | null;
|
|
941
|
-
declare const extractIdentifierInfoFromUrl: (url: string, defaultChain?: WarpChainName) => {
|
|
942
|
-
chain: WarpChainName;
|
|
943
|
-
type: WarpIdentifierType;
|
|
944
|
-
identifier: string;
|
|
945
|
-
identifierBase: string;
|
|
946
|
-
} | null;
|
|
939
|
+
declare const getWarpInfoFromIdentifier: (prefixedIdentifier: string) => WarpIdentifierInfo | null;
|
|
940
|
+
declare const extractIdentifierInfoFromUrl: (url: string) => WarpIdentifierInfo | null;
|
|
947
941
|
declare const extractQueryStringFromUrl: (url: string) => string | null;
|
|
948
942
|
declare const extractQueryStringFromIdentifier: (identifier: string) => string | null;
|
|
949
943
|
declare const parseWarpQueryStringToObject: (queryString: string | null) => Record<string, string>;
|
|
950
|
-
declare const removeWarpChainPrefix: (identifier: string
|
|
944
|
+
declare const removeWarpChainPrefix: (identifier: string) => string;
|
|
951
945
|
declare const getWarpIdentifierWithQuery: (warp: Warp) => string;
|
|
952
946
|
|
|
953
947
|
/**
|
|
@@ -961,7 +955,6 @@ declare const applyOutputToMessages: (warp: Warp, output: Record<string, any>, c
|
|
|
961
955
|
|
|
962
956
|
/** Resolve a next config into an array of strings for the given path. */
|
|
963
957
|
declare const resolveNextStrings: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string[] | null;
|
|
964
|
-
/** @deprecated Use resolveNextStrings. Kept for backwards compatibility. */
|
|
965
958
|
declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string | null;
|
|
966
959
|
declare const getNextInfo: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput) => WarpExecutionNextInfo | null;
|
|
967
960
|
/** Resolve the next chain for a given execution status. For string next, only resolves on success. For object next, resolves the matching path. */
|
|
@@ -1458,7 +1451,7 @@ declare class WarpClient {
|
|
|
1458
1451
|
get factory(): WarpFactory;
|
|
1459
1452
|
get index(): WarpIndex;
|
|
1460
1453
|
get linkBuilder(): WarpLinkBuilder;
|
|
1461
|
-
createBuilder(chain: WarpChainName): CombinedWarpBuilder;
|
|
1454
|
+
createBuilder(chain: WarpChainName | null): CombinedWarpBuilder | WarpBuilder;
|
|
1462
1455
|
createAbiBuilder(chain: WarpChainName): AdapterWarpAbiBuilder;
|
|
1463
1456
|
createBrandBuilder(chain: WarpChainName): AdapterWarpBrandBuilder;
|
|
1464
1457
|
createSerializer(chain: WarpChainName): AdapterWarpSerializer;
|
|
@@ -1498,6 +1491,23 @@ declare class WarpValidator {
|
|
|
1498
1491
|
private validateMaxOneValuePosition;
|
|
1499
1492
|
private validateVariableNamesAndResultNamesUppercase;
|
|
1500
1493
|
private validateAbiIsSetIfApplicable;
|
|
1494
|
+
/**
|
|
1495
|
+
* For each HTTP action with an URL, ensures every `{{X}}` placeholder in the
|
|
1496
|
+
* URL is either declared in `warp.vars` OR provided by an input with
|
|
1497
|
+
* `position: "url:X"`. Prevents dispatches where the URL collapses because
|
|
1498
|
+
* the placeholder was never interpolated (e.g. `/v1/contacts//activities`
|
|
1499
|
+
* becomes `/v1/contacts/activities`, which hits a different route).
|
|
1500
|
+
*/
|
|
1501
|
+
private validateUrlPlaceholdersHaveInputs;
|
|
1502
|
+
/**
|
|
1503
|
+
* For HTTP write actions (POST/PUT/PATCH/DELETE), flags inputs with
|
|
1504
|
+
* `position: "arg:N"` — these are CLI-style positional args that never
|
|
1505
|
+
* make it into the JSON body. The API receives an empty body and rejects
|
|
1506
|
+
* with "field required" errors. Inputs should omit `position` (default
|
|
1507
|
+
* body) or use `position: "payload:X"` / `position: "url:X"` explicitly.
|
|
1508
|
+
*/
|
|
1509
|
+
private validateNoArgPositionsOnHttpActions;
|
|
1510
|
+
private extractUrlPlaceholders;
|
|
1501
1511
|
private validateSchema;
|
|
1502
1512
|
}
|
|
1503
1513
|
|
|
@@ -1520,4 +1530,4 @@ declare function resolveInputs(trigger: WebhookTrigger, payload: unknown): Recor
|
|
|
1520
1530
|
*/
|
|
1521
1531
|
declare function resolvePath(obj: unknown, path: string): unknown;
|
|
1522
1532
|
|
|
1523
|
-
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 WarpIdentifierType, WarpIndex, 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 };
|
|
1533
|
+
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, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -233,7 +233,6 @@ type WarpClientConfig = {
|
|
|
233
233
|
};
|
|
234
234
|
walletProviders?: Partial<Record<WarpChainName, Partial<Record<WarpWalletProvider, WalletProviderFactory>>>>;
|
|
235
235
|
fallback?: WarpChainName;
|
|
236
|
-
defaultChain?: WarpChainName;
|
|
237
236
|
schema?: {
|
|
238
237
|
warp?: string;
|
|
239
238
|
brand?: string;
|
|
@@ -428,7 +427,6 @@ declare const WarpConstants: {
|
|
|
428
427
|
HttpProtocolPrefix: string;
|
|
429
428
|
IdentifierParamName: string;
|
|
430
429
|
IdentifierParamSeparator: string;
|
|
431
|
-
IdentifierChainDefault: WarpChainName;
|
|
432
430
|
IdentifierType: {
|
|
433
431
|
Alias: WarpIdentifierType;
|
|
434
432
|
Hash: WarpIdentifierType;
|
|
@@ -510,6 +508,12 @@ type WarpChainInfo = {
|
|
|
510
508
|
minGasPrice?: bigint;
|
|
511
509
|
};
|
|
512
510
|
type WarpIdentifierType = 'hash' | 'alias';
|
|
511
|
+
type WarpIdentifierInfo = {
|
|
512
|
+
chain: WarpChainName | null;
|
|
513
|
+
type: WarpIdentifierType;
|
|
514
|
+
identifier: string;
|
|
515
|
+
identifierBase: string;
|
|
516
|
+
};
|
|
513
517
|
type WarpVarPlaceholder = string;
|
|
514
518
|
type WarpOutputName = string;
|
|
515
519
|
type WarpResulutionPath = string;
|
|
@@ -545,7 +549,7 @@ type WarpSection = {
|
|
|
545
549
|
inputs: string[];
|
|
546
550
|
};
|
|
547
551
|
type WarpMeta = {
|
|
548
|
-
chain: WarpChainName;
|
|
552
|
+
chain: WarpChainName | null;
|
|
549
553
|
identifier: string;
|
|
550
554
|
query: Record<string, any> | null;
|
|
551
555
|
hash: string;
|
|
@@ -932,22 +936,12 @@ declare const createWarpI18nText: (translations: Record<string, string>) => Warp
|
|
|
932
936
|
declare const cleanWarpIdentifier: (identifier: string) => string;
|
|
933
937
|
declare const isEqualWarpIdentifier: (identifier1: string | null | undefined, identifier2: string | null | undefined) => boolean;
|
|
934
938
|
declare const createWarpIdentifier: (chain: WarpChainName | null, type: WarpIdentifierType, identifier: string) => string;
|
|
935
|
-
declare const getWarpInfoFromIdentifier: (prefixedIdentifier: string
|
|
936
|
-
|
|
937
|
-
type: WarpIdentifierType;
|
|
938
|
-
identifier: string;
|
|
939
|
-
identifierBase: string;
|
|
940
|
-
} | null;
|
|
941
|
-
declare const extractIdentifierInfoFromUrl: (url: string, defaultChain?: WarpChainName) => {
|
|
942
|
-
chain: WarpChainName;
|
|
943
|
-
type: WarpIdentifierType;
|
|
944
|
-
identifier: string;
|
|
945
|
-
identifierBase: string;
|
|
946
|
-
} | null;
|
|
939
|
+
declare const getWarpInfoFromIdentifier: (prefixedIdentifier: string) => WarpIdentifierInfo | null;
|
|
940
|
+
declare const extractIdentifierInfoFromUrl: (url: string) => WarpIdentifierInfo | null;
|
|
947
941
|
declare const extractQueryStringFromUrl: (url: string) => string | null;
|
|
948
942
|
declare const extractQueryStringFromIdentifier: (identifier: string) => string | null;
|
|
949
943
|
declare const parseWarpQueryStringToObject: (queryString: string | null) => Record<string, string>;
|
|
950
|
-
declare const removeWarpChainPrefix: (identifier: string
|
|
944
|
+
declare const removeWarpChainPrefix: (identifier: string) => string;
|
|
951
945
|
declare const getWarpIdentifierWithQuery: (warp: Warp) => string;
|
|
952
946
|
|
|
953
947
|
/**
|
|
@@ -961,7 +955,6 @@ declare const applyOutputToMessages: (warp: Warp, output: Record<string, any>, c
|
|
|
961
955
|
|
|
962
956
|
/** Resolve a next config into an array of strings for the given path. */
|
|
963
957
|
declare const resolveNextStrings: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string[] | null;
|
|
964
|
-
/** @deprecated Use resolveNextStrings. Kept for backwards compatibility. */
|
|
965
958
|
declare const resolveNextString: (raw: WarpNextConfig | null | undefined, path: "success" | "error") => string | null;
|
|
966
959
|
declare const getNextInfo: (config: WarpClientConfig, adapters: ChainAdapter[], warp: Warp, actionIndex: number, output: WarpExecutionOutput) => WarpExecutionNextInfo | null;
|
|
967
960
|
/** Resolve the next chain for a given execution status. For string next, only resolves on success. For object next, resolves the matching path. */
|
|
@@ -1458,7 +1451,7 @@ declare class WarpClient {
|
|
|
1458
1451
|
get factory(): WarpFactory;
|
|
1459
1452
|
get index(): WarpIndex;
|
|
1460
1453
|
get linkBuilder(): WarpLinkBuilder;
|
|
1461
|
-
createBuilder(chain: WarpChainName): CombinedWarpBuilder;
|
|
1454
|
+
createBuilder(chain: WarpChainName | null): CombinedWarpBuilder | WarpBuilder;
|
|
1462
1455
|
createAbiBuilder(chain: WarpChainName): AdapterWarpAbiBuilder;
|
|
1463
1456
|
createBrandBuilder(chain: WarpChainName): AdapterWarpBrandBuilder;
|
|
1464
1457
|
createSerializer(chain: WarpChainName): AdapterWarpSerializer;
|
|
@@ -1498,6 +1491,23 @@ declare class WarpValidator {
|
|
|
1498
1491
|
private validateMaxOneValuePosition;
|
|
1499
1492
|
private validateVariableNamesAndResultNamesUppercase;
|
|
1500
1493
|
private validateAbiIsSetIfApplicable;
|
|
1494
|
+
/**
|
|
1495
|
+
* For each HTTP action with an URL, ensures every `{{X}}` placeholder in the
|
|
1496
|
+
* URL is either declared in `warp.vars` OR provided by an input with
|
|
1497
|
+
* `position: "url:X"`. Prevents dispatches where the URL collapses because
|
|
1498
|
+
* the placeholder was never interpolated (e.g. `/v1/contacts//activities`
|
|
1499
|
+
* becomes `/v1/contacts/activities`, which hits a different route).
|
|
1500
|
+
*/
|
|
1501
|
+
private validateUrlPlaceholdersHaveInputs;
|
|
1502
|
+
/**
|
|
1503
|
+
* For HTTP write actions (POST/PUT/PATCH/DELETE), flags inputs with
|
|
1504
|
+
* `position: "arg:N"` — these are CLI-style positional args that never
|
|
1505
|
+
* make it into the JSON body. The API receives an empty body and rejects
|
|
1506
|
+
* with "field required" errors. Inputs should omit `position` (default
|
|
1507
|
+
* body) or use `position: "payload:X"` / `position: "url:X"` explicitly.
|
|
1508
|
+
*/
|
|
1509
|
+
private validateNoArgPositionsOnHttpActions;
|
|
1510
|
+
private extractUrlPlaceholders;
|
|
1501
1511
|
private validateSchema;
|
|
1502
1512
|
}
|
|
1503
1513
|
|
|
@@ -1520,4 +1530,4 @@ declare function resolveInputs(trigger: WebhookTrigger, payload: unknown): Recor
|
|
|
1520
1530
|
*/
|
|
1521
1531
|
declare function resolvePath(obj: unknown, path: string): unknown;
|
|
1522
1532
|
|
|
1523
|
-
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 WarpIdentifierType, WarpIndex, 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 };
|
|
1533
|
+
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, 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 };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var Qe=Object.create;var xt=Object.defineProperty;var Ke=Object.getOwnPropertyDescriptor;var Xe=Object.getOwnPropertyNames;var Ye=Object.getPrototypeOf,Ze=Object.prototype.hasOwnProperty;var tr=(r,t)=>{for(var e in t)xt(r,e,{get:t[e],enumerable:!0})},ge=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Xe(t))!Ze.call(r,i)&&i!==e&&xt(r,i,{get:()=>t[i],enumerable:!(n=Ke(t,i))||n.enumerable});return r};var J=(r,t,e)=>(e=r!=null?Qe(Ye(r)):{},ge(t||!r||!r.__esModule?xt(e,"default",{value:r,enumerable:!0}):e,r)),er=r=>ge(xt({},"__esModule",{value:!0}),r);var Sn={};tr(Sn,{BrowserCryptoProvider:()=>Ct,CLOUD_WALLET_PROVIDERS:()=>dr,CacheTtl:()=>ie,EvmWalletChainNames:()=>cr,MultiversxWalletChainNames:()=>ur,NodeCryptoProvider:()=>wt,WARP_LANGUAGES:()=>br,WarpAssets:()=>S,WarpBrandBuilder:()=>te,WarpBuilder:()=>ee,WarpCache:()=>gt,WarpCacheKey:()=>ft,WarpChainDisplayNames:()=>Ce,WarpChainLogos:()=>we,WarpChainName:()=>Ae,WarpChainResolver:()=>rt,WarpClient:()=>pe,WarpCompositeResolver:()=>nt,WarpConfig:()=>D,WarpConstants:()=>u,WarpExecutor:()=>mt,WarpFactory:()=>_,WarpIndex:()=>yt,WarpInputTypes:()=>m,WarpInterpolator:()=>R,WarpLinkBuilder:()=>q,WarpLinkDetecter:()=>Wt,WarpLogger:()=>A,WarpPlatformName:()=>Lt,WarpPlatforms:()=>Vt,WarpProtocolVersions:()=>j,WarpSerializer:()=>I,WarpTypeRegistry:()=>le,WarpValidator:()=>ct,address:()=>on,applyOutputToMessages:()=>Pt,asset:()=>Zt,biguint:()=>an,bool:()=>sn,buildGeneratedFallbackWarpIdentifier:()=>Ve,buildGeneratedSourceWarpIdentifier:()=>_r,buildInputsContext:()=>lt,buildMappedOutput:()=>G,buildNestedPayload:()=>Te,bytesToBase64:()=>xr,bytesToHex:()=>Ie,checkWarpAssetBalance:()=>Yr,cleanWarpIdentifier:()=>X,createAuthHeaders:()=>Rt,createAuthMessage:()=>Et,createCryptoProvider:()=>Cr,createDefaultWalletProvider:()=>Xr,createHttpAuthHeaders:()=>jr,createSignableMessage:()=>$e,createWarpI18nText:()=>Tr,createWarpIdentifier:()=>St,doesWarpRequireWallet:()=>Sr,evaluateOutputCommon:()=>Qt,evaluateWhenCondition:()=>K,extractCollectOutput:()=>Z,extractIdentifierInfoFromUrl:()=>Y,extractPromptOutput:()=>Kt,extractQueryStringFromIdentifier:()=>zt,extractQueryStringFromUrl:()=>qt,extractResolvedInputValues:()=>O,extractWarpSecrets:()=>wr,findWarpAdapterForChain:()=>y,getChainDisplayName:()=>fr,getChainLogo:()=>hr,getCryptoProvider:()=>Dt,getGeneratedSourceWarpName:()=>Oe,getLatestProtocolIdentifier:()=>it,getMppFetch:()=>Yt,getNextInfo:()=>ot,getNextInfoForStatus:()=>pt,getProviderConfig:()=>Mr,getRandomBytes:()=>Mt,getRandomHex:()=>jt,getRequiredAssetIds:()=>He,getWalletFromConfigOrFail:()=>rr,getWarpActionByIndex:()=>E,getWarpBrandLogoUrl:()=>mr,getWarpChainAssetLogoUrl:()=>yr,getWarpChainInfoLogoUrl:()=>Wr,getWarpIdentifierWithQuery:()=>$r,getWarpInfoFromIdentifier:()=>$,getWarpInputAction:()=>N,getWarpWalletAddress:()=>fe,getWarpWalletAddressFromConfig:()=>P,getWarpWalletExternalId:()=>ye,getWarpWalletExternalIdFromConfig:()=>We,getWarpWalletExternalIdFromConfigOrFail:()=>ar,getWarpWalletMnemonic:()=>me,getWarpWalletMnemonicFromConfig:()=>ir,getWarpWalletPrivateKey:()=>he,getWarpWalletPrivateKeyFromConfig:()=>nr,hasInputPrefix:()=>Or,hex:()=>pn,initializeWalletCache:()=>Kr,isEqualWarpIdentifier:()=>Er,isGeneratedSourcePrivateIdentifier:()=>Qr,isPlatformValue:()=>Be,isWarpActionAutoExecute:()=>It,isWarpI18nText:()=>Pr,isWarpWalletReadOnly:()=>sr,matchesTrigger:()=>wn,mergeNestedPayload:()=>Jt,normalizeAndValidateMnemonic:()=>lr,normalizeMnemonic:()=>ve,option:()=>ln,parseOutputOutIndex:()=>Ne,parseSignedMessage:()=>qr,parseWarpQueryStringToObject:()=>Gt,removeWarpChainPrefix:()=>Br,removeWarpWalletFromConfig:()=>pr,replacePlaceholders:()=>M,replacePlaceholdersInWhenExpression:()=>Q,resolveInputs:()=>In,resolveNextString:()=>Lr,resolveNextStrings:()=>Tt,resolvePath:()=>ce,resolvePlatformValue:()=>Xt,resolveWarpText:()=>st,safeWindow:()=>Ht,setCryptoProvider:()=>vr,setWarpWalletInConfig:()=>or,shiftBigintBy:()=>at,splitInput:()=>bt,stampGeneratedWarpMeta:()=>Jr,string:()=>Zr,struct:()=>un,testCryptoAvailability:()=>Ar,toInputPayloadValue:()=>Ee,toPreviewText:()=>kt,tuple:()=>cn,uint16:()=>en,uint32:()=>rn,uint64:()=>nn,uint8:()=>tn,validateMnemonicLength:()=>xe,validateSignedMessage:()=>kr,vector:()=>dn,withAdapterFallback:()=>gr});module.exports=er(Sn);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 rr=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},fe=r=>r?typeof r=="string"?r:r.address:null,P=(r,t)=>fe(r.user?.wallets?.[t]||null),he=r=>r?typeof r=="string"?r:r.privateKey||null:null,me=r=>r?typeof r=="string"?r:r.mnemonic||null:null,ye=r=>r?typeof r=="string"?r:r.externalId||null:null,nr=(r,t)=>he(r.user?.wallets?.[t]||null)?.trim()||null,ir=(r,t)=>me(r.user?.wallets?.[t]||null)?.trim()||null,We=(r,t)=>ye(r.user?.wallets?.[t]||null)?.trim()||null,ar=(r,t)=>{let e=We(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},sr=r=>typeof r=="string",or=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},pr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},ve=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},xe=(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=ve(r);return xe(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||{}),Lt=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Lt||{}),Vt=Object.values(Lt),cr=["ethereum","base","arbitrum","polygon","somnia","tempo"],ur=["multiversx","claws"],dr=["coinbase","privy","gaupa"],u={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:r=>P(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"}},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"},Ht=typeof window<"u"?window:{open:()=>{}};var j={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},D={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/v${j.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/JoAiHQ/warps-specs/refs/heads/main/schemas/brand/v${j.Brand}.schema.json`,DefaultClientUrl:r=>r==="devnet"?"https://devnet.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","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 gr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var At="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",S={baseUrl:At,chainLogo:r=>`${At}/chains/logos/${r}`,tokenLogo:r=>`${At}/tokens/logos/${r}`,walletLogo:r=>`${At}/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"},fr=r=>Ce[r]??r.charAt(0).toUpperCase()+r.slice(1),we={ethereum:{light:S.chainLogo("ethereum-white.svg"),dark:S.chainLogo("ethereum-black.svg")},base:{light:S.chainLogo("base-white.svg"),dark:S.chainLogo("base-black.svg")},arbitrum:S.chainLogo("arbitrum.svg"),polygon:S.chainLogo("polygon.svg"),somnia:S.chainLogo("somnia.png"),tempo:{light:S.chainLogo("tempo-white.svg"),dark:S.chainLogo("tempo-black.svg")},multiversx:S.chainLogo("multiversx.svg"),claws:S.chainLogo("claws.png"),sui:S.chainLogo("sui.svg"),solana:S.chainLogo("solana.svg"),near:{light:S.chainLogo("near-white.svg"),dark:S.chainLogo("near-black.svg")},fastset:{light:S.chainLogo("fastset-white.svg"),dark:S.chainLogo("fastset-black.svg")}},hr=(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],mr=(r,t)=>{let e=t?.preferences?.theme??"light";return typeof r.logo=="string"?r.logo:Ut(r.logo,e)},yr=(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)},Wr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ut(r.logoUrl,e)};var Ct=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let e=new Uint8Array(t);return window.crypto.getRandomValues(e),e}},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"}`)}}},k=null;function Dt(){if(k)return k;if(typeof window<"u"&&window.crypto)return k=new Ct,k;if(typeof process<"u"&&process.versions?.node)return k=new wt,k;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function vr(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 Ie(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(r.length*2);for(let e=0;e<r.length;e++){let n=r[e];t[e*2]=(n>>>4).toString(16),t[e*2+1]=(n&15).toString(16)}return t.join("")}function xr(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(r).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(r));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function jt(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await Mt(r/2,t);return Ie(e)}async function Ar(){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 Cr(){return Dt()}var wr=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 y=(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:${j.Warp}`;if(r==="brand")return`brand:${j.Brand}`;if(r==="abi")return`abi:${j.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${r}`)},E=(r,t)=>r?.actions[t-1],Ir=["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=>!Ir.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)},kt=(r,t=100)=>{if(!r)return"";let e=r.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return e=e.startsWith("- ")?e.slice(2):e,e=e.length>t?e.substring(0,e.lastIndexOf(" ",t))+"...":e,e},M=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),Q=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${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 br={de:"German",en:"English",es:"Spanish",fr:"French",it:"Italian",pt:"Portuguese",ru:"Russian",zh:"Chinese",ja:"Japanese",ko:"Korean",ar:"Arabic",hi:"Hindi",nl:"Dutch",sv:"Swedish",da:"Danish",no:"Norwegian",fi:"Finnish",pl:"Polish",tr:"Turkish",el:"Greek",he:"Hebrew",th:"Thai",vi:"Vietnamese",id:"Indonesian",ms:"Malay",tl:"Tagalog"},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""},Pr=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,Tr=r=>r;var X=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,Er=(r,t)=>!r||!t?!1:X(r)===X(t),St=(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},$=(r,t)=>{let e=t||u.IdentifierChainDefault,n=decodeURIComponent(r).trim(),i=X(n),a=i.split("?")[0],s=Se(a);if(a.length===64&&/^[a-fA-F0-9]+$/.test(a))return{chain:e,type:u.IdentifierType.Hash,identifier:i,identifierBase:a};if(s.length===2&&/^[a-zA-Z0-9]{62}$/.test(s[0])&&/^[a-zA-Z0-9]{2}$/.test(s[1]))return null;if(s.length===3){let[p,l,o]=s;if(l===u.IdentifierType.Alias||l===u.IdentifierType.Hash){let c=i.includes("?")?o+i.substring(i.indexOf("?")):o;return{chain:p,type:l,identifier:c,identifierBase:o}}}if(s.length===2){let[p,l]=s;if(p===u.IdentifierType.Alias||p===u.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l;return{chain:e,type:p,identifier:o,identifierBase:l}}}if(s.length===2){let[p,l]=s;if(p!==u.IdentifierType.Alias&&p!==u.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l,c=Rr(l,p)?u.IdentifierType.Hash:u.IdentifierType.Alias;return{chain:p,type:c,identifier:o,identifierBase:l}}}return{chain:e,type:u.IdentifierType.Alias,identifier:i,identifierBase:a}},Y=(r,t)=>{let e=new URL(r),i=e.searchParams.get(u.IdentifierParamName);if(i||(i=e.pathname.split("/")[1]),!i)return null;let a=decodeURIComponent(i);return $(a,t)},Rr=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Nr=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Se=r=>{let t=Nr(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Se(a);return[i,...s]},qt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(u.IdentifierParamName),e.toString()||null}catch{return null}},zt=r=>{let t=r.indexOf("?");if(t===-1||t===r.length-1)return null;let e=r.substring(t+1);return e.length>0?e:null},Gt=r=>{if(!r)return{};let t=r.startsWith("?")?r.slice(1):r;if(!t)return{};let e=new URLSearchParams(t),n={};return e.forEach((i,a)=>{n[a]=i}),n},Br=(r,t)=>{let e=$(r,t);return(e?e.identifierBase:X(r)).trim()},$r=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 bt=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},Or=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=bt(r)[0];return t.has(e)};var Pt=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=st(a,e);return[i,M(s,t)]});return Object.fromEntries(n)};var be=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)?!!Y(t,this.config.defaultChain):!1}build(t,e,n){let i=this.config.clientUrl||D.DefaultClientUrl(this.config.env),a=y(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=$(t,this.config.defaultChain);if(!e)return null;let n=y(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=y(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new be.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 Fr="https://",Tt=(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},Lr=(r,t)=>Tt(r,t)?.[0]??null,Pe=(r,t,e,n,i)=>{if(n.startsWith(Fr))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let g=M(a,{...e.vars,...i});return[{identifier:g,url:_t(t,g,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let g=M(s,{...e.vars,...i}),f=g?`${a}?${g}`:a;return[{identifier:f,url:_t(t,f,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(g=>g.includes(`{{${c}[]`)).map(g=>{let f=g.match(/\[\](\.[^}]+)?}}/),W=f&&f[1]||"";return{placeholder:g,field:W?W.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(g=>{let f=s;for(let{regex:v,field:C}of h){let w=C?Vr(g,C):g;if(w==null)return null;f=f.replace(v,w)}if(f.includes("{{")||f.includes("}}"))return null;let W=f?`${a}?${f}`:a;return{identifier:W,url:_t(t,W,r)}}).filter(g=>g!==null)},ot=(r,t,e,n,i)=>{let a=E(e,n)?.next||e.next||null,s=Tt(a,"success");if(!s)return null;let p=s.flatMap(l=>Pe(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=Tt(p,s);if(!l)return null;let o=l.flatMap(c=>Pe(r,t,e,c,i));return o.length>0?o:null},_t=(r,t,e)=>{let[n,i]=t.split("?"),a=$(n,e.defaultChain)||{chain:u.IdentifierChainDefault,type:"alias",identifier:n,identifierBase:n},s=y(a.chain,r);if(!s)throw new Error(`Adapter not found for chain ${a.chain}`);let p=new q(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,c)=>l.searchParams.set(c,o)),l.toString().replace(/\/\?/,"?")},Vr=(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 A=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 Jt(r,t){if(!r)return{...t};if(!t)return{...r};let e={...r};return Object.keys(t).forEach(n=>{e[n]&&typeof e[n]=="object"&&typeof t[n]=="object"?e[n]=Jt(e[n],t[n]):e[n]=t[n]}),e}function Ee(r,t){if(!r.value)return null;let e=t.stringToNative(r.value)[1];if(r.input.type==="biguint")return e.toString();if(r.input.type==="asset"){let{identifier:n,amount:i}=e;return{identifier:n,amount:i.toString()}}else return e}function O(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=Jt(e,s)}else e[i]=a}),e}function lt(r,t,e,n){let i={},a=e!==void 0?e:r.length,s=p=>{if(!p?.value)return;let l=p.input.as||p.input.name,[,o]=t.stringToNative(p.value);if(i[l]=o,p.input.type!=="asset"||typeof o!="object"||o===null)return;let 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=Ne(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=(d,h)=>h.reduce((g,f)=>g&&g[f]!==void 0?g[f]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:c}=Re(r,e,p);return{values:{string:l,native:o,mapped:G(n,i)},output:await Qt(r,c,t,e,n,i,a)}},Qt=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=Hr(p,r,n,i,a),p=await Ur(r,p,e,i,a,s.transform?.runner||null),p},Hr=(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},Ur=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:Dr(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){A.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Dr=r=>{if(!r||typeof r!="object"||Array.isArray(r)||!Array.isArray(r.data))return r;let t=[...r.data];return t.data=r.data,t},Kt=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=Re(r,e,s),c=await Qt(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}},Ne=r=>{if(r==="out")return 1;let t=r.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(r.startsWith("out.")||r.startsWith("event."),null)};var Be=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Vt.some(t=>t in r),Xt=(r,t)=>{if(!Be(r))return r;if(!t)throw new Error("Platform-specific value requires platform in client config");let e=r[t];if(e===void 0)throw new Error(`Warp does not support platform: ${t}`);return e};var Mr=(r,t,e,n)=>{let i=r.preferences?.providers?.[t];return i?.[e]?typeof i[e]=="string"?{url:i[e]}:i[e]:{url:n}};async function $e(r,t,e,n=5){let i=await jt(64,e),a=new Date(Date.now()+n*60*1e3).toISOString();return{message:JSON.stringify({wallet:r,nonce:i,expiresAt:a,purpose:t}),nonce:i,expiresAt:a}}async function Et(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return $e(r,i,e,5)}function Rt(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function jr(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Et(r,e,n),p=await t(i);return Rt(r,p,a,s)}function kr(r){let t=new Date(r).getTime();return Date.now()<t}function qr(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 Oe=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",zr=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),Fe=(r,t=24)=>{let e=zr(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)},Gr=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()}},_r=(r,t,e)=>{let n=Fe((e||t||"").trim()||"action"),i=`${r.type}|${Gr(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=Le(i);return`private_src_${n}_${a}`},Ve=r=>{let t=Oe(r),e=Fe(t),n=Le(t.trim().toLowerCase());return`private_gen_${e}_${n}`},Jr=(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}},Qr=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function Kr(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 Xr(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]:[]},Yr=async(r,t,e,n)=>{try{let i=y(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 A.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),Nt.Mppx.create({methods:[(0,Nt.tempo)({account:e})],polyfill:!1}).fetch}return fetch}var Ue={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},I=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=Ue[t]??t,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===m.Vector&&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[0],i=n.indexOf(u.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(u.ArgParamsSeparator),c=l.substring(o+1);return a.startsWith(m.Tuple)?c.replace(u.ArgListSeparator,u.ArgCompositeSeparator):c}),p=a.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+a+u.ArgParamsSeparator+s.join(p)}return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator)}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+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(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==="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 Zr=r=>new I().nativeToString(m.String,r),tn=r=>new I().nativeToString(m.Uint8,r),en=r=>new I().nativeToString(m.Uint16,r),rn=r=>new I().nativeToString(m.Uint32,r),nn=r=>new I().nativeToString(m.Uint64,r),an=r=>new I().nativeToString(m.Biguint,r),sn=r=>new I().nativeToString(m.Bool,r),on=r=>new I().nativeToString(m.Address,r),Zt=r=>new I().nativeToString(m.Asset,r),pn=r=>new I().nativeToString(m.Hex,r),ln=(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},cn=(...r)=>new I().nativeToString(m.Tuple,r),un=r=>new I().nativeToString(m.Struct,r),dn=r=>new I().nativeToString(m.Vector,r);var De=J(require("ajv"),1);var te=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 Me=J(require("ajv"),1);var 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(...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"]:[]}async validateSchema(t){try{let e=this.config.schema?.warp||D.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new Me.default({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var ee=class{constructor(t){this.config=t;this.pendingWarp={protocol: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 kt(t,e)}ensure(t,e){if(!t)throw new Error(e)}ensureWarpText(t,e){if(!t)throw new Error(e);if(typeof t=="object"&&!t.en)throw new Error(e)}async validate(t){let n=await new ct(this.config).validate(t);if(!n.valid)throw new Error(n.errors.join(`
|
|
2
|
-
`))}};var T=require("fs"),et=require("path");var re="$bigint:",Bt=(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 $t=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,Bt),"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 ut=class{constructor(t,e){this.prefix="warp-cache"}getKey(t){return`${this.prefix}:${t}`}async get(t){try{let e=localStorage.getItem(this.getKey(t));if(!e)return null;let n=JSON.parse(e,tt);return n.expiresAt!==null&&Date.now()>n.expiresAt?(localStorage.removeItem(this.getKey(t)),null):n.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null};localStorage.setItem(this.getKey(t),JSON.stringify(i,Bt))}async delete(t){localStorage.removeItem(this.getKey(t))}async keys(t){let e=[];for(let i=0;i<localStorage.length;i++){let a=localStorage.key(i);a?.startsWith(this.prefix+":")&&e.push(a.slice(this.prefix.length+1))}if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){for(let t=0;t<localStorage.length;t++){let e=localStorage.key(t);e?.startsWith(this.prefix)&&localStorage.removeItem(e)}}};var V=class V{constructor(t,e){}async get(t){let e=V.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(V.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;V.cache.set(t,{value:e,expiresAt:i})}async delete(t){V.cache.delete(t)}async keys(t){let e=Array.from(V.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){V.cache.clear()}};V.cache=new Map;var dt=V;var je=require("fs"),ne=require("path");var Ot=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,je.readFileSync)(t,"utf-8");return new Map(Object.entries(JSON.parse(e,tt)))}catch(e){return A.warn(`StaticCacheStrategy (loadManifest): Failed to load manifest from ${t}:`,e),new Map}}async get(t){let e=this.cache.get(t);return!e||e.expiresAt!==null&&Date.now()>e.expiresAt?(e&&this.cache.delete(t),null):e.value}async set(t,e,n){let i=n?Date.now()+n*1e3:null,a={value:e,expiresAt:i};this.cache.set(t,a)}async delete(t){this.cache.delete(t)}async keys(t){let e=Array.from(this.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){this.cache.clear()}};var ie={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},ft={Warp:(r,t)=>`warp:${r}:${t}`,WarpAbi:(r,t)=>`warp-abi:${r}:${t}`,WarpExecutable:(r,t,e)=>`warp-exec:${r}:${t}:${e}`,RegistryInfo:(r,t)=>`registry-info:${r}:${t}`,Brand:(r,t)=>`brand:${r}:${t}`,Asset:(r,t,e)=>`asset:${r}:${t}:${e}`,AccountNfts:(r,t,e,n,i)=>`account-nfts:${r}:${t}:${e}:${n}:${i}`},gt=class{constructor(t,e){this.strategy=this.selectStrategy(t,e)}selectStrategy(t,e){return e?.adapter?e.adapter:e?.type==="localStorage"?new ut(t,e):e?.type==="memory"?new dt(t,e):e?.type==="static"?new Ot(t,e):e?.type==="filesystem"?new $t(t,e):typeof window<"u"&&window.localStorage?new ut(t,e):new dt(t,e)}async set(t,e,n){await this.strategy.set(t,e,n)}async get(t){return await this.strategy.get(t)}async delete(t){await this.strategy.delete(t)}async keys(t){return await this.strategy.keys(t)}async clear(){await this.strategy.clear()}};var ht={Queries:"QUERIES",Payload:"PAYLOAD",Headers:"HEADERS"},ae={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},se=(r,t,e)=>{let n=r.find(a=>a.input.as===t||a.input.name===t);if(!n?.value)return null;let[,i]=e.stringToNative(n.value);return typeof i=="string"?i:String(i)},oe=r=>{try{return JSON.parse(r)}catch{return null}},gn=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 Et(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Rt(n,d,o,c)).forEach(([h,g])=>s.set(h,g))}let p=se(e.resolvedInputs,ht.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},fn=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===ae.Get){let s=se(e.resolvedInputs,ht.Queries,i);if(s){let p=oe(s);if(p&&typeof p=="object"){let l=new URL(a);Object.entries(p).forEach(([o,c])=>c!=null&&l.searchParams.set(o,String(c))),a=l.toString()}}}return a},hn=(r,t,e,n,i)=>{if(r===ae.Get)return;let a=se(t.resolvedInputs,ht.Payload,n);if(a&&oe(a)!==null)return a;let{[ht.Payload]:s,[ht.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},ke=async(r,t,e,n,i,a,s,p)=>{let l=t.method||ae.Get,o=await gn(r,t,e,n,a,p),c=fn(r,t,e,l,a),d=hn(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(`\\{\\{${mn(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=P(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(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,g=e.queries?.[o]??null??d;g!=null&&a(s,g)}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 M(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=y(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}},mn=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var yn=["collect","compute","mcp","state","mount","unmount"],Wn=new Set(Object.values(m)),vn=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 I,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(ft.WarpExecutable(t,e||"",n))||[];return O(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(ft.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=y(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),g=[],f=[];if(h===e-1){let b=this.getStringTypedInputs(d,n);g=await this.getResolvedInputs(s.name,d,b,l,i.queries),f=await this.getModifiedInputs(g)}else c.inputs&&c.inputs.length>0&&(g=await this.resolveActionInputs(s.name,c,n,l,i.queries),f=await this.getModifiedInputs(g));let W=f.find(b=>b.input.position==="receiver"||b.input.position==="destination")?.value,v=this.getDestinationFromAction(c),C=W?this.serializer.stringToNative(W)[1]:v;if(C&&(C=l.applyInputs(C,f,this.serializer)),!C&&!yn.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let w=this.getPreparedArgs(c,f);w=w.map(b=>l.applyInputs(b,f,this.serializer));let L=f.find(b=>b.input.position==="value")?.value||null,x="value"in c?c.value:null,F=L?.split(u.ArgParamsSeparator)[1]||x||"0",H=l.applyInputs(F,f,this.serializer),B=BigInt(H),U=f.filter(b=>b.input.position==="transfer"&&b.value).map(b=>b.value),qe=[...("transfers"in c?c.transfers:[])||[],...U||[]].map(b=>{let Ft=l.applyInputs(b,f,this.serializer),Je=Ft.startsWith(`asset${u.ArgParamsSeparator}`)?Ft:`asset${u.ArgParamsSeparator}${Ft}`;return this.serializer.stringToNative(Je)[1]}),ze=f.find(b=>b.input.position==="data")?.value,Ge="data"in c?c.data||"":null,ue=ze||Ge||null,_e=ue?l.applyInputs(ue,f,this.serializer):null,de={adapter:p,warp:o,chain:s,action:e,destination:C,args:w,value:B,transfers:qe,data:_e,resolvedInputs:f};return await this.cache.set(ft.WarpExecutable(this.config.env,o.meta?.hash||"",e),de.resolvedInputs,ie.OneWeek),de}async getChainInfoForWarp(t,e){if(t.chain)return y(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||vn(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 v=P(this.config,t);return v?this.serializer.nativeToString("address",v):null}if(c.source==="hidden"){if(c.default===void 0)return null;let v=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,v)}if(l[d])return l[d];let h=c.as||c.name,g=a?.[h],f=this.url.searchParams.get(h),W=g||f;return W?this.serializer.nativeToString(c.type,String(W)):null};return s.map((c,d)=>{let h=o(c,d),g=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(g!==void 0?this.serializer.nativeToString(c.type,g):null)}})}async resolveInputsFromQuery(t,e,n){let i=E(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=y(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(g=>g.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]=bt(e),a=y(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 Zt({...o,amount:c})}else return e}catch(n){throw A.warn("WarpFactory: Preprocess input failed",n),n}}getDestinationFromAction(t){if("address"in t&&t.address)return t.address;if("destination"in t&&t.destination){if(typeof t.destination=="string")return t.destination;if(typeof t.destination=="object"&&"url"in t.destination)return t.destination.url}return null}getPreparedArgs(t,e){let n="args"in t?t.args||[]:[],i=[];return e.forEach(({input:a,value:s})=>{if(!(!s||!a.position)){if(typeof a.position=="object"){if(a.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${a.name}" has type "${a.type}"`);if(!a.position.token?.startsWith("arg:")||!a.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${a.name}"`);let[p,l]=this.serializer.stringToNative(s),o=l;if(!o||typeof o!="object"||!("identifier"in o)||!("amount"in o))throw new Error(`WarpFactory: Invalid asset value for input "${a.name}"`);let 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 y(s,this.adapters).chainInfo}};var mt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.loopIterations=new Map;this.active=!0;this.handlers=n,this.factory=new _(t,e)}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={},{index:h}=N(t);for(let g=1;g<=t.actions.length;g++){let f=E(t,g);if(!It(f))continue;let W=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:v,chain:C,immediateExecution:w,executable:L}=await this.executeAction(t,g,e,W);if(v&&i.push(v),C&&(a=C),w&&s.push(w),w?.output){let{_DATA:x,...F}=w.output;Object.assign(d,F)}w?.values?.mapped&&Object.assign(d,w.values.mapped),L&&g===h+1&&L.resolvedInputs&&(p=O(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 g=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(g))}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):Ht.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}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let 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=y(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=y(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 g=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),f={status:"error",warp:t,action:o,user:P(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:g};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:f})),f}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let g=t.meta?.query;g&&Object.keys(g).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,g))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=xn(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){let n=P(this.config,t.chain.name),i=E(t.warp,t.action),a=this.factory.getSerializer(),s=G(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Z(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=P(this.config,t.chain.name),n=this.factory.getSerializer(),i=G(t.resolvedInputs,n),{values:a,output:s}=await Z(t.warp,i,t.action,t.resolvedInputs,n,this.config);return this.buildCollectResult(t,e,"success",a,s)}async doHttpRequest(t,e,n,i,a){let s=new R(this.config,y(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:c,body:d}=await ke(s,e,t,n,i,p,a,async h=>await this.callHandler(()=>this.handlers?.onSignRequest?.(h)));A.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:c,body:d});try{let h={method:o,headers:c,body:d},f=await(await Yt(this.adapters))(l,h);A.debug("Collect response status",{status:f.status});let W=await f.json();A.debug("Collect response content",{content:W});let{values:v,output:C}=await Z(t.warp,W,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,P(this.config,t.chain.name),f.ok?"success":"error",v,C,W)}catch(h){A.error("WarpActionExecutor: Error executing collect",h);let g=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:h},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs: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=P(this.config,t.chain.name),i=E(t.warp,t.action);if(!i.destination){let g=O(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:g}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let f=O(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:f}}let p=this.factory.getSerializer(),l=new R(this.config,y(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(([g,f])=>{let W=l.applyInputs(f,t.resolvedInputs,this.factory.getSerializer());h[g]=W}),A.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let g=new s(new URL(c),{requestInit:{headers:h}}),f=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await f.connect(g);let W={};t.resolvedInputs.forEach(({input:x,value:F})=>{if(F&&x.position&&typeof x.position=="string"&&x.position.startsWith("payload:")){let H=x.position.replace("payload:",""),[B,U]=p.stringToNative(F);if(B==="string")W[H]=String(U);else if(B==="bool")W[H]=!!U;else if(B==="uint8"||B==="uint16"||B==="uint32"||B==="uint64"||B==="uint128"||B==="uint256"||B==="biguint"){let vt=Number(U);W[H]=(Number.isInteger(vt),vt)}else W[H]=U}}),e&&Object.assign(W,e);let v=await f.callTool({name:d,arguments:W});await f.close();let C;if(v.content&&v.content.length>0){let x=v.content[0];if(x.type==="text")try{C=JSON.parse(x.text)}catch{C=x.text}else x.type,C=x}else C=v;let{values:w,output:L}=await Z(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",w,L,v)}catch(g){A.error("WarpExecutor: Error executing MCP",g);let f=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}}buildCollectResult(t,e,n,i,a,s){let p=pt(this.config,this.adapters,t.warp,t.action,a,n),l=O(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||P(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages:Pt(t.warp,{...i.mapped,...a},this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:l}}async callHandler(t){if(t)return await t()}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},g=Q(s.when,h);try{if(!K(g)){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),A.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 g=h.replace(/\{\{([^}]+)\}\}/g,(f,W)=>{let v=o[W.trim()];return v!=null?String(v):h});c[d]=An(g)}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=y(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 x=this.factory.getStringTypedInputs(e,i),F=await this.factory.getResolvedInputs(s.name,e,x,l,a.queries);d=await this.factory.getModifiedInputs(F)}else{let{action:x}=N(o),F=this.factory.getStringTypedInputs(x,i),H=await this.factory.getResolvedInputs(s.name,x,F,l,a.queries);d=await this.factory.getModifiedInputs(H)}let h=Xt(c.prompt,this.config.platform),g=l.applyInputs(h,d,this.factory.getSerializer()),f=O(d),W=P(this.config,s.name),v=this.factory.getSerializer(),{values:C,output:w}=await Kt(o,g,n,d,v,this.config);if(this.handlers?.onPromptGenerate){let x=await this.handlers.onPromptGenerate(g,c.expect);x&&(w.MESSAGE=x)}let L=d.find(x=>x.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:W,txHash:null,tx:null,next:ot(this.config,this.adapters,o,n,w),values:C,output:w,messages:Pt(o,{...C.mapped,...w},this.config),destination:L,resolvedInputs:f}}catch(s){return A.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=y(p.name,this.adapters),o=new R(this.config,l,this.adapters),c;if(a)c=a;else{let f=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(f)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},g=Q(e.when,h);return K(g)}},xn=(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}},An=r=>{if(r==="true")return!0;if(r==="false")return!1;let t=Number(r);return!isNaN(t)&&r.trim()!==""?t:r};var yt=class{constructor(t){this.config=t}async search(t,e,n){if(!this.config.index?.url)throw new Error("WarpIndex: Index URL is not set");try{let i=await fetch(this.config.index?.url,{method:"POST",headers:{"Content-Type":"application/json",Authorization:`Bearer ${this.config.index?.apiKey}`,...n},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...e})});if(!i.ok)throw new Error(`WarpIndex: search failed with status ${i.status}: ${await i.text()}`);return(await i.json()).hits}catch(i){throw A.error("WarpIndex: Error searching for warps: ",i),i}}};var Wt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(u.HttpProtocolPrefix)?!!Y(t,this.config.defaultChain):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(o=>o[0]).filter(o=>this.isValid(o)).map(o=>this.detect(o)),s=(await Promise.all(i)).filter(o=>o.match),p=s.length>0,l=s.map(o=>({url:o.url,warp:o.warp}));return{match:p,output:l}}async detect(t,e){let n={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(u.HttpProtocolPrefix)?Y(t,this.config.defaultChain):$(t,this.config.defaultChain);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,c=t.startsWith(u.HttpProtocolPrefix)?qt(t):zt(i.identifier);if(this.resolver){let f=null;if(a==="hash")f=await this.resolver.getByHash(s,e);else if(a==="alias"){let W=`${i.chain}:${s}`;f=await this.resolver.getByAlias(W,e)||await this.resolver.getByAlias(s,e)}f&&(p=f.warp,l=f.registryInfo,o=f.brand)}else{let f=y(i.chain,this.adapters);if(a==="hash"){p=await f.builder().createFromTransactionHash(s,e);let W=await f.registry.getInfoByHash(s,e);l=W.registryInfo,o=W.brand}else if(a==="alias"){let W=await f.registry.getInfoByAlias(s,e);l=W.registryInfo,o=W.brand,W.registryInfo&&(p=await f.builder().createFromTransactionHash(W.registryInfo.hash,e))}}if(p&&p.meta&&(Cn(p,i.chain,l,i.identifier),p.meta.query=c?Gt(c):null),!p)return n;let d=p.chain||i.chain,h=this.adapters.find(f=>f.chainInfo.name.toLowerCase()===d.toLowerCase()),g=h?await new R(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:g,chain:d,registryInfo:l,brand:o}}catch(a){return A.error("Error detecting warp link",a),n}}},Cn=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?St(null,"alias",e.alias):St(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){return new mt(this.config,this.chains,t)}async detectWarp(t,e){return new Wt(this.config,this.chains,this.resolver).detect(t,e)}async executeWarp(t,e,n,i={}){let a=typeof t=="object",s=!a&&t.startsWith("http")&&t.endsWith(".json"),p=a?t:null;if(!p&&s){let f=await fetch(t);if(!f.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await f.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 f=>{await l.evaluateOutput(p,f)},resolvedInputs:h}}async createInscriptionTransaction(t,e){return await y(t,this.chains).builder().createInscriptionTransaction(e)}async createFromTransaction(t,e,n=!1){return y(t,this.chains).builder().createFromTransaction(e,n)}async createFromTransactionHash(t,e){let n=$(t,this.config.defaultChain);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return y(n.chain,this.chains).builder().createFromTransactionHash(t,e)}async signMessage(t,e){if(!P(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return y(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 y(t,this.chains).explorer}getOutput(t){return y(t,this.chains).output}async getActionExecution(t,e,n,i){let a=i??N(e).index+1,p=await y(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=y(t,this.chains).registry;return await e.init(),e}getDataLoader(t){return y(t,this.chains).dataLoader}getWallet(t){return y(t,this.chains).wallet}get factory(){return new _(this.config,this.chains)}get index(){return new yt(this.config)}get linkBuilder(){return new q(this.config,this.chains)}createBuilder(t){return y(t,this.chains).builder()}createAbiBuilder(t){return y(t,this.chains).abiBuilder()}createBrandBuilder(t){return y(t,this.chains).brandBuilder()}createSerializer(t){return y(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 wn(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(ce(t,n)!==i)return!1;return!0}function In(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 Qe=Object.create;var At=Object.defineProperty;var Ke=Object.getOwnPropertyDescriptor;var Xe=Object.getOwnPropertyNames;var Ze=Object.getPrototypeOf,Ye=Object.prototype.hasOwnProperty;var tr=(r,t)=>{for(var e in t)At(r,e,{get:t[e],enumerable:!0})},ge=(r,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of Xe(t))!Ye.call(r,i)&&i!==e&&At(r,i,{get:()=>t[i],enumerable:!(n=Ke(t,i))||n.enumerable});return r};var J=(r,t,e)=>(e=r!=null?Qe(Ze(r)):{},ge(t||!r||!r.__esModule?At(e,"default",{value:r,enumerable:!0}):e,r)),er=r=>ge(At({},"__esModule",{value:!0}),r);var Pn={};tr(Pn,{BrowserCryptoProvider:()=>wt,CLOUD_WALLET_PROVIDERS:()=>dr,CacheTtl:()=>ie,EvmWalletChainNames:()=>cr,MultiversxWalletChainNames:()=>ur,NodeCryptoProvider:()=>It,WARP_LANGUAGES:()=>br,WarpAssets:()=>S,WarpBrandBuilder:()=>ee,WarpBuilder:()=>ut,WarpCache:()=>ft,WarpCacheKey:()=>ht,WarpChainDisplayNames:()=>Ce,WarpChainLogos:()=>we,WarpChainName:()=>Ae,WarpChainResolver:()=>rt,WarpClient:()=>pe,WarpCompositeResolver:()=>nt,WarpConfig:()=>D,WarpConstants:()=>u,WarpExecutor:()=>yt,WarpFactory:()=>G,WarpIndex:()=>Wt,WarpInputTypes:()=>m,WarpInterpolator:()=>R,WarpLinkBuilder:()=>q,WarpLinkDetecter:()=>vt,WarpLogger:()=>A,WarpPlatformName:()=>Ft,WarpPlatforms:()=>Ht,WarpProtocolVersions:()=>k,WarpSerializer:()=>I,WarpTypeRegistry:()=>le,WarpValidator:()=>ct,address:()=>on,applyOutputToMessages:()=>Et,asset:()=>te,biguint:()=>an,bool:()=>sn,buildGeneratedFallbackWarpIdentifier:()=>Fe,buildGeneratedSourceWarpIdentifier:()=>Gr,buildInputsContext:()=>lt,buildMappedOutput:()=>_,buildNestedPayload:()=>Ee,bytesToBase64:()=>xr,bytesToHex:()=>Ie,checkWarpAssetBalance:()=>Zr,cleanWarpIdentifier:()=>X,createAuthHeaders:()=>Nt,createAuthMessage:()=>Rt,createCryptoProvider:()=>Cr,createDefaultWalletProvider:()=>Xr,createHttpAuthHeaders:()=>kr,createSignableMessage:()=>Be,createWarpI18nText:()=>Er,createWarpIdentifier:()=>bt,doesWarpRequireWallet:()=>Sr,evaluateOutputCommon:()=>Kt,evaluateWhenCondition:()=>K,extractCollectOutput:()=>Y,extractIdentifierInfoFromUrl:()=>Z,extractPromptOutput:()=>Xt,extractQueryStringFromIdentifier:()=>_t,extractQueryStringFromUrl:()=>zt,extractResolvedInputValues:()=>O,extractWarpSecrets:()=>wr,findWarpAdapterForChain:()=>y,getChainDisplayName:()=>fr,getChainLogo:()=>hr,getCryptoProvider:()=>jt,getGeneratedSourceWarpName:()=>Oe,getLatestProtocolIdentifier:()=>it,getMppFetch:()=>Yt,getNextInfo:()=>ot,getNextInfoForStatus:()=>pt,getProviderConfig:()=>jr,getRandomBytes:()=>kt,getRandomHex:()=>Mt,getRequiredAssetIds:()=>He,getWalletFromConfigOrFail:()=>rr,getWarpActionByIndex:()=>T,getWarpBrandLogoUrl:()=>mr,getWarpChainAssetLogoUrl:()=>yr,getWarpChainInfoLogoUrl:()=>Wr,getWarpIdentifierWithQuery:()=>Br,getWarpInfoFromIdentifier:()=>B,getWarpInputAction:()=>N,getWarpWalletAddress:()=>fe,getWarpWalletAddressFromConfig:()=>P,getWarpWalletExternalId:()=>ye,getWarpWalletExternalIdFromConfig:()=>We,getWarpWalletExternalIdFromConfigOrFail:()=>ar,getWarpWalletMnemonic:()=>me,getWarpWalletMnemonicFromConfig:()=>ir,getWarpWalletPrivateKey:()=>he,getWarpWalletPrivateKeyFromConfig:()=>nr,hasInputPrefix:()=>Or,hex:()=>pn,initializeWalletCache:()=>Kr,isEqualWarpIdentifier:()=>Tr,isGeneratedSourcePrivateIdentifier:()=>Qr,isPlatformValue:()=>$e,isWarpActionAutoExecute:()=>St,isWarpI18nText:()=>Pr,isWarpWalletReadOnly:()=>sr,matchesTrigger:()=>Sn,mergeNestedPayload:()=>Qt,normalizeAndValidateMnemonic:()=>lr,normalizeMnemonic:()=>ve,option:()=>ln,parseOutputOutIndex:()=>Ne,parseSignedMessage:()=>qr,parseWarpQueryStringToObject:()=>Gt,removeWarpChainPrefix:()=>$r,removeWarpWalletFromConfig:()=>pr,replacePlaceholders:()=>j,replacePlaceholdersInWhenExpression:()=>Q,resolveInputs:()=>bn,resolveNextString:()=>Vr,resolveNextStrings:()=>Tt,resolvePath:()=>ce,resolvePlatformValue:()=>Zt,resolveWarpText:()=>st,safeWindow:()=>Ut,setCryptoProvider:()=>vr,setWarpWalletInConfig:()=>or,shiftBigintBy:()=>at,splitInput:()=>Pt,stampGeneratedWarpMeta:()=>Jr,string:()=>Yr,struct:()=>un,testCryptoAvailability:()=>Ar,toInputPayloadValue:()=>Te,toPreviewText:()=>qt,tuple:()=>cn,uint16:()=>en,uint32:()=>rn,uint64:()=>nn,uint8:()=>tn,validateMnemonicLength:()=>xe,validateSignedMessage:()=>Mr,vector:()=>dn,withAdapterFallback:()=>gr});module.exports=er(Pn);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 rr=(r,t)=>{let e=r.user?.wallets?.[t]||null;if(!e)throw new Error(`No wallet configured for chain ${t}`);return e},fe=r=>r?typeof r=="string"?r:r.address:null,P=(r,t)=>fe(r.user?.wallets?.[t]||null),he=r=>r?typeof r=="string"?r:r.privateKey||null:null,me=r=>r?typeof r=="string"?r:r.mnemonic||null:null,ye=r=>r?typeof r=="string"?r:r.externalId||null:null,nr=(r,t)=>he(r.user?.wallets?.[t]||null)?.trim()||null,ir=(r,t)=>me(r.user?.wallets?.[t]||null)?.trim()||null,We=(r,t)=>ye(r.user?.wallets?.[t]||null)?.trim()||null,ar=(r,t)=>{let e=We(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},sr=r=>typeof r=="string",or=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},pr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},ve=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},xe=(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=ve(r);return xe(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||{}),Ft=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(Ft||{}),Ht=Object.values(Ft),cr=["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=>P(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"}},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"},Ut=typeof window<"u"?window:{open:()=>{}};var k={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${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","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 gr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var Ct="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",S={baseUrl:Ct,chainLogo:r=>`${Ct}/chains/logos/${r}`,tokenLogo:r=>`${Ct}/tokens/logos/${r}`,walletLogo:r=>`${Ct}/wallets/logos/${r}`},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"},fr=r=>Ce[r]??r.charAt(0).toUpperCase()+r.slice(1),we={ethereum:{light:S.chainLogo("ethereum-white.svg"),dark:S.chainLogo("ethereum-black.svg")},base:{light:S.chainLogo("base-white.svg"),dark:S.chainLogo("base-black.svg")},arbitrum:S.chainLogo("arbitrum.svg"),polygon:S.chainLogo("polygon.svg"),somnia:S.chainLogo("somnia.png"),tempo:{light:S.chainLogo("tempo-white.svg"),dark:S.chainLogo("tempo-black.svg")},multiversx:S.chainLogo("multiversx.svg"),claws:S.chainLogo("claws.png"),sui:S.chainLogo("sui.svg"),solana:S.chainLogo("solana.svg"),near:{light:S.chainLogo("near-white.svg"),dark:S.chainLogo("near-black.svg")},fastset:{light:S.chainLogo("fastset-white.svg"),dark:S.chainLogo("fastset-black.svg")}},hr=(r,t="dark")=>{let e=we[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var Dt=(r,t)=>r[t]??r.default??Object.values(r)[0],mr=(r,t)=>{let e=t?.preferences?.theme??"light";return typeof r.logo=="string"?r.logo:Dt(r.logo,e)},yr=(r,t)=>{if(!r.logoUrl)return null;if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Dt(r.logoUrl,e)},Wr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Dt(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"}`)}}},M=null;function jt(){if(M)return M;if(typeof window<"u"&&window.crypto)return M=new wt,M;if(typeof process<"u"&&process.versions?.node)return M=new It,M;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function vr(r){M=r}async function kt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||jt()).getRandomBytes(r)}function Ie(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(r.length*2);for(let e=0;e<r.length;e++){let n=r[e];t[e*2]=(n>>>4).toString(16),t[e*2+1]=(n&15).toString(16)}return t.join("")}function xr(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 Mt(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await kt(r/2,t);return Ie(e)}async function Ar(){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 kt(16),r.randomBytes=!0}catch{}return r}function Cr(){return jt()}var wr=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 y=(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:${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],Ir=["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=>!Ir.includes(e.type));return t?{action:t,index:r.actions.indexOf(t)}:{action:r.actions[0],index:0}},St=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},j=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),Q=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${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 br={de:"German",en:"English",es:"Spanish",fr:"French",it:"Italian",pt:"Portuguese",ru:"Russian",zh:"Chinese",ja:"Japanese",ko:"Korean",ar:"Arabic",hi:"Hindi",nl:"Dutch",sv:"Swedish",da:"Danish",no:"Norwegian",fi:"Finnish",pl:"Polish",tr:"Turkish",el:"Greek",he:"Hebrew",th:"Thai",vi:"Vietnamese",id:"Indonesian",ms:"Malay",tl:"Tagalog"},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""},Pr=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,Er=r=>r;var X=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,Tr=(r,t)=>!r||!t?!1:X(r)===X(t),bt=(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},B=r=>{let t=decodeURIComponent(r).trim(),e=X(t),n=e.split("?")[0],i=Se(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=Rr(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 B(i)},Rr=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,Nr=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Se=r=>{let t=Nr(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Se(a);return[i,...s]},zt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(u.IdentifierParamName),e.toString()||null}catch{return null}},_t=r=>{let t=r.indexOf("?");if(t===-1||t===r.length-1)return null;let e=r.substring(t+1);return e.length>0?e:null},Gt=r=>{if(!r)return{};let t=r.startsWith("?")?r.slice(1):r;if(!t)return{};let e=new URLSearchParams(t),n={};return e.forEach((i,a)=>{n[a]=i}),n},$r=r=>{let t=B(r);return(t?t.identifierBase:X(r)).trim()},Br=r=>{let t=r.meta?.identifier;if(!t)return"";let e=r.meta?.query;if(e&&typeof e=="object"&&Object.keys(e).length>0){let n=new URLSearchParams(e);return`${t}?${n.toString()}`}return t};var Pt=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},Or=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=Pt(r)[0];return t.has(e)};var Et=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=st(a,e);return[i,j(s,t)]});return Object.fromEntries(n)};var be=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=y(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=B(t);if(!e||!e.chain)return null;let n=y(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=y(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new be.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 Lr="https://",Tt=(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},Vr=(r,t)=>Tt(r,t)?.[0]??null,Pe=(r,t,e,n,i)=>{if(n.startsWith(Lr))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let g=j(a,{...e.vars,...i});return[{identifier:g,url:Jt(t,g,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let g=j(s,{...e.vars,...i}),f=g?`${a}?${g}`:a;return[{identifier:f,url:Jt(t,f,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(g=>g.includes(`{{${c}[]`)).map(g=>{let f=g.match(/\[\](\.[^}]+)?}}/),W=f&&f[1]||"";return{placeholder:g,field:W?W.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(g=>{let f=s;for(let{regex:v,field:C}of h){let w=C?Fr(g,C):g;if(w==null)return null;f=f.replace(v,w)}if(f.includes("{{")||f.includes("}}"))return null;let W=f?`${a}?${f}`:a;return{identifier:W,url:Jt(t,W,r)}}).filter(g=>g!==null)},ot=(r,t,e,n,i)=>{let a=T(e,n)?.next||e.next||null,s=Tt(a,"success");if(!s)return null;let p=s.flatMap(l=>Pe(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=T(e,n)?.next||e.next||null,l=Tt(p,s);if(!l)return null;let o=l.flatMap(c=>Pe(r,t,e,c,i));return o.length>0?o:null},Jt=(r,t,e)=>{let[n,i]=t.split("?"),a=B(n)??{chain:null,type:"alias",identifier:n,identifierBase:n},s=a.chain?y(a.chain,r):null;if(!s)throw new Error(`Adapter not found for chain ${a.chain??"unknown"}`);let p=new q(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,c)=>l.searchParams.set(c,o)),l.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 A=z;function Ee(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 Te(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 O(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=Te(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(u.Position.Payload)){let s=Ee(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=Ne(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=(d,h)=>h.reduce((g,f)=>g&&g[f]!==void 0?g[f]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:c}=Re(r,e,p);return{values:{string:l,native:o,mapped:_(n,i)},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=Hr(p,r,n,i,a),p=await Ur(r,p,e,i,a,s.transform?.runner||null),p},Hr=(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},Ur=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:Dr(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){A.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Dr=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:_(n,i)},output:c}},Ne=r=>{if(r==="out")return 1;let t=r.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(r.startsWith("out.")||r.startsWith("event."),null)};var $e=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Ht.some(t=>t in r),Zt=(r,t)=>{if(!$e(r))return r;if(!t)throw new Error("Platform-specific value requires platform in client config");let e=r[t];if(e===void 0)throw new Error(`Warp does not support platform: ${t}`);return e};var jr=(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 Be(r,t,e,n=5){let i=await Mt(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 Be(r,i,e,5)}function Nt(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function kr(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Rt(r,e,n),p=await t(i);return Nt(r,p,a,s)}function Mr(r){let t=new Date(r).getTime();return Date.now()<t}function qr(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 Oe=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",zr=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),Le=(r,t=24)=>{let e=zr(r);return e?e.slice(0,t):"action"},Ve=r=>{let t=3735928559^r.length,e=1103547991^r.length;for(let a=0;a<r.length;a++){let s=r.charCodeAt(a);t=Math.imul(t^s,2654435761),e=Math.imul(e^s,1597334677)}t=Math.imul(t^t>>>16,2246822507)^Math.imul(e^e>>>13,3266489909),e=Math.imul(e^e>>>16,2246822507)^Math.imul(t^t>>>13,3266489909);let n=(e>>>0).toString(16).padStart(8,"0"),i=(t>>>0).toString(16).padStart(8,"0");return`${n}${i}`.slice(0,12)},_r=r=>{let t=(r||"").trim();if(!t)return"";try{let e=new URL(t),n=e.pathname.replace(/\/+$/,"").toLowerCase()||"/";return`${e.origin.toLowerCase()}${n}`}catch{return t.toLowerCase()}},Gr=(r,t,e)=>{let n=Le((e||t||"").trim()||"action"),i=`${r.type}|${_r(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=Ve(i);return`private_src_${n}_${a}`},Fe=r=>{let t=Oe(r),e=Le(t),n=Ve(t.trim().toLowerCase());return`private_gen_${e}_${n}`},Jr=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Fe(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},Qr=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function Kr(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 Xr(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]:[]},Zr=async(r,t,e,n)=>{try{let i=y(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 $t=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 A.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),$t.Mppx.create({methods:[(0,$t.tempo)({account:e})],polyfill:!1}).fetch}return fetch}var Ue={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},I=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=Ue[t]??t,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===m.Vector&&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[0],i=n.indexOf(u.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(u.ArgParamsSeparator),c=l.substring(o+1);return a.startsWith(m.Tuple)?c.replace(u.ArgListSeparator,u.ArgCompositeSeparator):c}),p=a.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+a+u.ArgParamsSeparator+s.join(p)}return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator)}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+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(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==="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 Yr=r=>new I().nativeToString(m.String,r),tn=r=>new I().nativeToString(m.Uint8,r),en=r=>new I().nativeToString(m.Uint16,r),rn=r=>new I().nativeToString(m.Uint32,r),nn=r=>new I().nativeToString(m.Uint64,r),an=r=>new I().nativeToString(m.Biguint,r),sn=r=>new I().nativeToString(m.Bool,r),on=r=>new I().nativeToString(m.Address,r),te=r=>new I().nativeToString(m.Asset,r),pn=r=>new I().nativeToString(m.Hex,r),ln=(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},cn=(...r)=>new I().nativeToString(m.Tuple,r),un=r=>new I().nativeToString(m.Struct,r),dn=r=>new I().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 je=J(require("ajv"),1);var gn=new Set(["POST","PUT","PATCH","DELETE"]),fn=/^[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??{}));for(let i of t.actions){let a=i.destination;if(!a||typeof a=="string"||!a.url)continue;let s=this.extractUrlPlaceholders(a.url);if(s.length===0)continue;let p=i.inputs??[],l=new Set(p.map(o=>o.position).filter(o=>typeof o=="string"&&o.startsWith("url:")).map(o=>o.slice(4)));for(let o of s)n.has(o)||fn.test(o)||l.has(o)||e.push(`URL "${a.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||!gn.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||D.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new je.default({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var 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 E=require("fs"),et=require("path");var re="$bigint:",Bt=(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 Ot=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,E.existsSync)(this.cacheDir)||(0,E.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,E.existsSync)(e))return null;let n=(0,E.readFileSync)(e,"utf-8"),i=JSON.parse(n,tt);return i.expiresAt!==null&&Date.now()>i.expiresAt?((0,E.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,E.writeFileSync)(a,JSON.stringify(i,Bt),"utf-8")}async delete(t){try{let e=this.getFilePath(t);(0,E.existsSync)(e)&&(0,E.unlinkSync)(e)}catch{}}async keys(t){try{let e=(0,E.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,E.readdirSync)(this.cacheDir).forEach(e=>{e.endsWith(".json")&&(0,E.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,Bt))}async delete(t){localStorage.removeItem(this.getKey(t))}async keys(t){let e=[];for(let i=0;i<localStorage.length;i++){let a=localStorage.key(i);a?.startsWith(this.prefix+":")&&e.push(a.slice(this.prefix.length+1))}if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){for(let t=0;t<localStorage.length;t++){let e=localStorage.key(t);e?.startsWith(this.prefix)&&localStorage.removeItem(e)}}};var F=class F{constructor(t,e){}async get(t){let e=F.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(F.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;F.cache.set(t,{value:e,expiresAt:i})}async delete(t){F.cache.delete(t)}async keys(t){let e=Array.from(F.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){F.cache.clear()}};F.cache=new Map;var gt=F;var ke=require("fs"),ne=require("path");var Lt=class{constructor(t,e){let n=e?.path?(0,ne.resolve)(e.path):(0,ne.resolve)(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=(0,ke.readFileSync)(t,"utf-8");return new Map(Object.entries(JSON.parse(e,tt)))}catch(e){return A.warn(`StaticCacheStrategy (loadManifest): Failed to load manifest from ${t}:`,e),new Map}}async get(t){let e=this.cache.get(t);return!e||e.expiresAt!==null&&Date.now()>e.expiresAt?(e&&this.cache.delete(t),null):e.value}async set(t,e,n){let i=n?Date.now()+n*1e3:null,a={value:e,expiresAt:i};this.cache.set(t,a)}async delete(t){this.cache.delete(t)}async keys(t){let e=Array.from(this.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){this.cache.clear()}};var 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}`},ft=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 gt(t,e):e?.type==="static"?new Lt(t,e):e?.type==="filesystem"?new Ot(t,e):typeof window<"u"&&window.localStorage?new dt(t,e):new gt(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}},hn=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(Nt(n,d,o,c)).forEach(([h,g])=>s.set(h,g))}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},mn=(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},yn=(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})},Me=async(r,t,e,n,i,a,s,p)=>{let l=t.method||ae.Get,o=await hn(r,t,e,n,a,p),c=mn(r,t,e,l,a),d=yn(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(`\\{\\{${Wn(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=P(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(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,g=e.queries?.[o]??null??d;g!=null&&a(s,g)}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 j(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=y(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}},Wn=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var vn=["collect","compute","mcp","state","mount","unmount"],xn=new Set(Object.values(m)),An=r=>{let t=r.indexOf(u.ArgParamsSeparator);return t===-1?!1:xn.has(r.slice(0,t))},G=class{constructor(t,e){this.config=t;this.adapters=e;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new I,this.cache=new ft(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 O(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(ht.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=y(s.name,this.adapters),l=new R(this.config,p,this.adapters),o=await l.apply(t,i),c=T(o,e),{action:d,index:h}=N(o),g=[],f=[];if(h===e-1){let b=this.getStringTypedInputs(d,n);g=await this.getResolvedInputs(s.name,d,b,l,i.queries),f=await this.getModifiedInputs(g)}else c.inputs&&c.inputs.length>0&&(g=await this.resolveActionInputs(s.name,c,n,l,i.queries),f=await this.getModifiedInputs(g));let W=f.find(b=>b.input.position==="receiver"||b.input.position==="destination")?.value,v=this.getDestinationFromAction(c),C=W?this.serializer.stringToNative(W)[1]:v;if(C&&(C=l.applyInputs(C,f,this.serializer)),!C&&!vn.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let w=this.getPreparedArgs(c,f);w=w.map(b=>l.applyInputs(b,f,this.serializer));let V=f.find(b=>b.input.position==="value")?.value||null,x="value"in c?c.value:null,L=V?.split(u.ArgParamsSeparator)[1]||x||"0",H=l.applyInputs(L,f,this.serializer),$=BigInt(H),U=f.filter(b=>b.input.position==="transfer"&&b.value).map(b=>b.value),qe=[...("transfers"in c?c.transfers:[])||[],...U||[]].map(b=>{let Vt=l.applyInputs(b,f,this.serializer),Je=Vt.startsWith(`asset${u.ArgParamsSeparator}`)?Vt:`asset${u.ArgParamsSeparator}${Vt}`;return this.serializer.stringToNative(Je)[1]}),ze=f.find(b=>b.input.position==="data")?.value,_e="data"in c?c.data||"":null,ue=ze||_e||null,Ge=ue?l.applyInputs(ue,f,this.serializer):null,de={adapter:p,warp:o,chain:s,action:e,destination:C,args:w,value:$,transfers:qe,data:Ge,resolvedInputs:f};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 y(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||An(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 v=P(this.config,t);return v?this.serializer.nativeToString("address",v):null}if(c.source==="hidden"){if(c.default===void 0)return null;let v=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,v)}if(l[d])return l[d];let h=c.as||c.name,g=a?.[h],f=this.url.searchParams.get(h),W=g||f;return W?this.serializer.nativeToString(c.type,String(W)):null};return s.map((c,d)=>{let h=o(c,d),g=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(g!==void 0?this.serializer.nativeToString(c.type,g):null)}})}async resolveInputsFromQuery(t,e,n){let i=T(t,e);if(!i||!i.inputs?.length)return[];let a=await this.getChainInfoForWarp(t),s=y(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(g=>g.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]=Pt(e),a=y(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 A.warn("WarpFactory: Preprocess input failed",n),n}}getDestinationFromAction(t){if("address"in t&&t.address)return t.address;if("destination"in t&&t.destination){if(typeof t.destination=="string")return t.destination;if(typeof t.destination=="object"&&"url"in t.destination)return t.destination.url}return null}getPreparedArgs(t,e){let n="args"in t?t.args||[]:[],i=[];return e.forEach(({input:a,value:s})=>{if(!(!s||!a.position)){if(typeof a.position=="object"){if(a.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${a.name}" has type "${a.type}"`);if(!a.position.token?.startsWith("arg:")||!a.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${a.name}"`);let[p,l]=this.serializer.stringToNative(s),o=l;if(!o||typeof o!="object"||!("identifier"in o)||!("amount"in o))throw new Error(`WarpFactory: Invalid asset value for input "${a.name}"`);let 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 y(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.handlers=n,this.factory=new G(t,e)}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={},{index:h}=N(t);for(let g=1;g<=t.actions.length;g++){let f=T(t,g);if(!St(f))continue;let W=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:v,chain:C,immediateExecution:w,executable:V}=await this.executeAction(t,g,e,W);if(v&&i.push(v),C&&(a=C),w&&s.push(w),w?.output){let{_DATA:x,...L}=w.output;Object.assign(d,L)}w?.values?.mapped&&Object.assign(d,w.values.mapped),V&&g===h+1&&V.resolvedInputs&&(p=O(V.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 g=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(g))}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):Ut.open(o,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null});if(a.type==="prompt"){let o=await this.executePrompt(t,a,e,n,i);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:null};{let 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}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let 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=y(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=y(n.name,this.adapters),a=(await Promise.all(t.actions.map(async(s,p)=>{if(!St(s)||s.type!=="transfer"&&s.type!=="contract")return null;let l=e[p],o=p+1;if(!l){let g=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),f={status:"error",warp:t,action:o,user:P(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:g};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:f})),f}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let g=t.meta?.query;g&&Object.keys(g).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,g))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=Cn(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){let n=P(this.config,t.chain.name),i=T(t.warp,t.action),a=this.factory.getSerializer(),s=_(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Y(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=P(this.config,t.chain.name),n=this.factory.getSerializer(),i=_(t.resolvedInputs,n),{values:a,output:s}=await Y(t.warp,i,t.action,t.resolvedInputs,n,this.config);return this.buildCollectResult(t,e,"success",a,s)}async doHttpRequest(t,e,n,i,a){let s=new R(this.config,y(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:c,body:d}=await Me(s,e,t,n,i,p,a,async h=>await this.callHandler(()=>this.handlers?.onSignRequest?.(h)));A.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:c,body:d});try{let h={method:o,headers:c,body:d},f=await(await Yt(this.adapters))(l,h);A.debug("Collect response status",{status:f.status});let W=await f.json();A.debug("Collect response content",{content:W});let{values:v,output:C}=await Y(t.warp,W,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,P(this.config,t.chain.name),f.ok?"success":"error",v,C,W)}catch(h){A.error("WarpActionExecutor: Error executing collect",h);let g=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:h},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs: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=P(this.config,t.chain.name),i=T(t.warp,t.action);if(!i.destination){let g=O(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:g}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let f=O(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:f}}let p=this.factory.getSerializer(),l=new R(this.config,y(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(([g,f])=>{let W=l.applyInputs(f,t.resolvedInputs,this.factory.getSerializer());h[g]=W}),A.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let g=new s(new URL(c),{requestInit:{headers:h}}),f=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await f.connect(g);let W={};t.resolvedInputs.forEach(({input:x,value:L})=>{if(L&&x.position&&typeof x.position=="string"&&x.position.startsWith("payload:")){let H=x.position.replace("payload:",""),[$,U]=p.stringToNative(L);if($==="string")W[H]=String(U);else if($==="bool")W[H]=!!U;else if($==="uint8"||$==="uint16"||$==="uint32"||$==="uint64"||$==="uint128"||$==="uint256"||$==="biguint"){let xt=Number(U);W[H]=(Number.isInteger(xt),xt)}else W[H]=U}}),e&&Object.assign(W,e);let v=await f.callTool({name:d,arguments:W});await f.close();let C;if(v.content&&v.content.length>0){let x=v.content[0];if(x.type==="text")try{C=JSON.parse(x.text)}catch{C=x.text}else x.type,C=x}else C=v;let{values:w,output:V}=await Y(t.warp,C,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",w,V,v)}catch(g){A.error("WarpExecutor: Error executing MCP",g);let f=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}}buildCollectResult(t,e,n,i,a,s){let p=pt(this.config,this.adapters,t.warp,t.action,a,n),l=O(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||P(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages: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},g=Q(s.when,h);try{if(!K(g)){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),A.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 g=h.replace(/\{\{([^}]+)\}\}/g,(f,W)=>{let v=o[W.trim()];return v!=null?String(v):h});c[d]=wn(g)}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=y(s.name,this.adapters),l=new R(this.config,p,this.adapters),o=await l.apply(t,a),c=T(o,n),d=[];if(e.inputs&&e.inputs.length>0){let x=this.factory.getStringTypedInputs(e,i),L=await this.factory.getResolvedInputs(s.name,e,x,l,a.queries);d=await this.factory.getModifiedInputs(L)}else{let{action:x}=N(o),L=this.factory.getStringTypedInputs(x,i),H=await this.factory.getResolvedInputs(s.name,x,L,l,a.queries);d=await this.factory.getModifiedInputs(H)}let h=Zt(c.prompt,this.config.platform),g=l.applyInputs(h,d,this.factory.getSerializer()),f=O(d),W=P(this.config,s.name),v=this.factory.getSerializer(),{values:C,output:w}=await Xt(o,g,n,d,v,this.config);if(this.handlers?.onPromptGenerate){let x=await this.handlers.onPromptGenerate(g,c.expect);x&&(w.MESSAGE=x)}let V=d.find(x=>x.input.position==="destination")?.value||null;return{status:"success",warp:o,action:n,user:W,txHash:null,tx:null,next:ot(this.config,this.adapters,o,n,w),values:C,output:w,messages:Et(o,{...C.mapped,...w},this.config),destination:V,resolvedInputs:f}}catch(s){return A.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=y(p.name,this.adapters),o=new R(this.config,l,this.adapters),c;if(a)c=a;else{let f=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(f)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},g=Q(e.when,h);return K(g)}},Cn=(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}},wn=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 A.error("WarpIndex: Error searching for warps: ",i),i}}};var vt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.resolver=n}isValid(t){return t.startsWith(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):B(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):_t(i.identifier);if(this.resolver){let f=null;if(a==="hash")f=await this.resolver.getByHash(s,e);else if(a==="alias"){let W=`${i.chain}:${s}`;f=await this.resolver.getByAlias(W,e)||await this.resolver.getByAlias(s,e)}f&&(p=f.warp,l=f.registryInfo,o=f.brand)}else{if(!i.chain)throw new Error(`WarpLinkDetecter: chain is required for identifier ${i.identifier}`);let f=y(i.chain,this.adapters);if(a==="hash"){p=await f.builder().createFromTransactionHash(s,e);let W=await f.registry.getInfoByHash(s,e);l=W.registryInfo,o=W.brand}else if(a==="alias"){let W=await f.registry.getInfoByAlias(s,e);l=W.registryInfo,o=W.brand,W.registryInfo&&(p=await f.builder().createFromTransactionHash(W.registryInfo.hash,e))}}if(p&&p.meta&&(In(p,i.chain,l,i.identifier),p.meta.query=c?Gt(c):null),!p)return n;let d=p.chain||i.chain||null,h=d?this.adapters.find(f=>f.chainInfo.name.toLowerCase()===d.toLowerCase()):null,g=h?await new R(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:g,chain:d,registryInfo:l,brand:o}}catch(a){return A.error("Error detecting warp link",a),n}}},In=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?bt(null,"alias",e.alias):bt(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){return new yt(this.config,this.chains,t)}async detectWarp(t,e){return new vt(this.config,this.chains,this.resolver).detect(t,e)}async executeWarp(t,e,n,i={}){let a=typeof t=="object",s=!a&&t.startsWith("http")&&t.endsWith(".json"),p=a?t:null;if(!p&&s){let f=await fetch(t);if(!f.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await f.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 f=>{await l.evaluateOutput(p,f)},resolvedInputs:h}}async createInscriptionTransaction(t,e){return await y(t,this.chains).builder().createInscriptionTransaction(e)}async createFromTransaction(t,e,n=!1){return y(t,this.chains).builder().createFromTransaction(e,n)}async createFromTransactionHash(t,e){let n=B(t);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");if(!n.chain)throw new Error("WarpClient: createFromTransactionHash - chain is required");return y(n.chain,this.chains).builder().createFromTransactionHash(t,e)}async signMessage(t,e){if(!P(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return y(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 y(t,this.chains).explorer}getOutput(t){return y(t,this.chains).output}async getActionExecution(t,e,n,i){let a=i??N(e).index+1,p=await y(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=y(t,this.chains).registry;return await e.init(),e}getDataLoader(t){return y(t,this.chains).dataLoader}getWallet(t){return y(t,this.chains).wallet}get factory(){return new G(this.config,this.chains)}get index(){return new Wt(this.config)}get linkBuilder(){return new q(this.config,this.chains)}createBuilder(t){return t?y(t,this.chains).builder():new ut(this.config)}createAbiBuilder(t){return y(t,this.chains).abiBuilder()}createBrandBuilder(t){return y(t,this.chains).brandBuilder()}createSerializer(t){return y(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 Sn(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(ce(t,n)!==i)return!1;return!0}function bn(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 Cr=(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,P=(r,t)=>Se(r.user?.wallets?.[t]||null),be=r=>r?typeof r=="string"?r:r.privateKey||null:null,Pe=r=>r?typeof r=="string"?r:r.mnemonic||null:null,Te=r=>r?typeof r=="string"?r:r.externalId||null:null,wr=(r,t)=>be(r.user?.wallets?.[t]||null)?.trim()||null,Ir=(r,t)=>Pe(r.user?.wallets?.[t]||null)?.trim()||null,Ee=(r,t)=>Te(r.user?.wallets?.[t]||null)?.trim()||null,Sr=(r,t)=>{let e=Ee(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},br=r=>typeof r=="string",Pr=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},Tr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},Re=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},Ne=(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`)},Er=(r,t=24)=>{let e=Re(r);return Ne(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||{}),jt=Object.values(Mt),Br=["ethereum","base","arbitrum","polygon","somnia","tempo"],$r=["multiversx","claws"],Or=["coinbase","privy","gaupa"],u={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:r=>P(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"}},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"},kt=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","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 at="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",b={baseUrl:at,chainLogo:r=>`${at}/chains/logos/${r}`,tokenLogo:r=>`${at}/tokens/logos/${r}`,walletLogo:r=>`${at}/wallets/logos/${r}`},$e={multiversx:"MultiversX",claws:"Claws Network",sui:"Sui",ethereum:"Ethereum",base:"Base",arbitrum:"Arbitrum",polygon:"Polygon",somnia:"Somnia",tempo:"Tempo",fastset:"Fastset",solana:"Solana",near:"NEAR"},Dr=r=>$e[r]??r.charAt(0).toUpperCase()+r.slice(1),Oe={ethereum:{light:b.chainLogo("ethereum-white.svg"),dark:b.chainLogo("ethereum-black.svg")},base:{light:b.chainLogo("base-white.svg"),dark:b.chainLogo("base-black.svg")},arbitrum:b.chainLogo("arbitrum.svg"),polygon:b.chainLogo("polygon.svg"),somnia:b.chainLogo("somnia.png"),tempo:{light:b.chainLogo("tempo-white.svg"),dark:b.chainLogo("tempo-black.svg")},multiversx:b.chainLogo("multiversx.svg"),claws:b.chainLogo("claws.png"),sui:b.chainLogo("sui.svg"),solana:b.chainLogo("solana.svg"),near:{light:b.chainLogo("near-white.svg"),dark:b.chainLogo("near-black.svg")},fastset:{light:b.chainLogo("fastset-white.svg"),dark:b.chainLogo("fastset-black.svg")}},Mr=(r,t="dark")=>{let e=Oe[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var Ct=(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:Ct(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 Ct(r.logoUrl,e)},zr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return Ct(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 qt(){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 _r(r){D=r}async function zt(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||qt()).getRandomBytes(r)}function Fe(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(r.length*2);for(let e=0;e<r.length;e++){let n=r[e];t[e*2]=(n>>>4).toString(16),t[e*2+1]=(n&15).toString(16)}return t.join("")}function Jr(r){if(!(r instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(r).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(r));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function Gt(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await zt(r/2,t);return Fe(e)}async function Qr(){let r={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?r.environment="browser":typeof process<"u"&&process.versions?.node&&(r.environment="nodejs"),await zt(16),r.randomBytes=!0}catch{}return r}function Kr(){return qt()}var Zr=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],Le=["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=>!Le.includes(e.type));return t?{action:t,index:r.actions.indexOf(t)}:{action:r.actions[0],index:0}},St=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)},_t=(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},M=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),J=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),an=r=>{let t=r.actions.some(e=>["transfer","contract"].includes(e.type)?!0:(e.inputs??[]).some(n=>n.source===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 on={de:"German",en:"English",es:"Spanish",fr:"French",it:"Italian",pt:"Portuguese",ru:"Russian",zh:"Chinese",ja:"Japanese",ko:"Korean",ar:"Arabic",hi:"Hindi",nl:"Dutch",sv:"Swedish",da:"Danish",no:"Norwegian",fi:"Finnish",pl:"Polish",tr:"Turkish",el:"Greek",he:"Hebrew",th:"Thai",vi:"Vietnamese",id:"Indonesian",ms:"Malay",tl:"Tagalog"},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""},pn=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,ln=r=>r;var K=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,gn=(r,t)=>!r||!t?!1:K(r)===K(t),bt=(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},$=(r,t)=>{let e=t||u.IdentifierChainDefault,n=decodeURIComponent(r).trim(),i=K(n),a=i.split("?")[0],s=Jt(a);if(a.length===64&&/^[a-fA-F0-9]+$/.test(a))return{chain:e,type:u.IdentifierType.Hash,identifier:i,identifierBase:a};if(s.length===2&&/^[a-zA-Z0-9]{62}$/.test(s[0])&&/^[a-zA-Z0-9]{2}$/.test(s[1]))return null;if(s.length===3){let[p,l,o]=s;if(l===u.IdentifierType.Alias||l===u.IdentifierType.Hash){let c=i.includes("?")?o+i.substring(i.indexOf("?")):o;return{chain:p,type:l,identifier:c,identifierBase:o}}}if(s.length===2){let[p,l]=s;if(p===u.IdentifierType.Alias||p===u.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l;return{chain:e,type:p,identifier:o,identifierBase:l}}}if(s.length===2){let[p,l]=s;if(p!==u.IdentifierType.Alias&&p!==u.IdentifierType.Hash){let o=i.includes("?")?l+i.substring(i.indexOf("?")):l,c=Ve(l,p)?u.IdentifierType.Hash:u.IdentifierType.Alias;return{chain:p,type:c,identifier:o,identifierBase:l}}}return{chain:e,type:u.IdentifierType.Alias,identifier:i,identifierBase:a}},X=(r,t)=>{let e=new URL(r),i=e.searchParams.get(u.IdentifierParamName);if(i||(i=e.pathname.split("/")[1]),!i)return null;let a=decodeURIComponent(i);return $(a,t)},Ve=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,He=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Jt=r=>{let t=He(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=Jt(a);return[i,...s]},Qt=r=>{try{let t=new URL(r),e=new URLSearchParams(t.search);return e.delete(u.IdentifierParamName),e.toString()||null}catch{return null}},Kt=r=>{let t=r.indexOf("?");if(t===-1||t===r.length-1)return null;let e=r.substring(t+1);return e.length>0?e:null},Xt=r=>{if(!r)return{};let t=r.startsWith("?")?r.slice(1):r;if(!t)return{};let e=new URLSearchParams(t),n={};return e.forEach((i,a)=>{n[a]=i}),n},fn=(r,t)=>{let e=$(r,t);return(e?e.identifierBase:K(r)).trim()},hn=r=>{let t=r.meta?.identifier;if(!t)return"";let e=r.meta?.query;if(e&&typeof e=="object"&&Object.keys(e).length>0){let n=new URLSearchParams(e);return`${t}?${n.toString()}`}return t};var Pt=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},Wn=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=Pt(r)[0];return t.has(e)};var Tt=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=pt(a,e);return[i,M(s,t)]});return Object.fromEntries(n)};import Ue 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,this.config.defaultChain):!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=$(t,this.config.defaultChain);if(!e)return null;let n=W(e.chain,this.adapters);return n?this.build(n.chainInfo.name,e.type,e.identifierBase):null}generateQrCode(t,e,n,i=512,a="white",s="black",p="#23F7DD"){let l=W(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new Ue({type:"svg",width:i,height:i,data:String(o),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:a},dotsOptions:{type:"extra-rounded",color:s},cornersSquareOptions:{type:"extra-rounded",color:s},cornersDotOptions:{type:"square",color:s},imageOptions:{hideBackgroundDots:!0,imageSize:.4,margin:8},image:`data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 100 100" fill="${encodeURIComponent(p)}" xmlns="http://www.w3.org/2000/svg"><path d="M54.8383 50.0242L95 28.8232L88.2456 16L51.4717 30.6974C50.5241 31.0764 49.4759 31.0764 48.5283 30.6974L11.7544 16L5 28.8232L45.1616 50.0242L5 71.2255L11.7544 84.0488L48.5283 69.351C49.4759 68.9724 50.5241 68.9724 51.4717 69.351L88.2456 84.0488L95 71.2255L54.8383 50.0242Z"/></svg>`})}};var De="https://",Rt=(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},Fn=(r,t)=>Rt(r,t)?.[0]??null,Yt=(r,t,e,n,i)=>{if(n.startsWith(De))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let g=M(a,{...e.vars,...i});return[{identifier:g,url:Et(t,g,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let g=M(s,{...e.vars,...i}),f=g?`${a}?${g}`:a;return[{identifier:f,url:Et(t,f,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(g=>g.includes(`{{${c}[]`)).map(g=>{let f=g.match(/\[\](\.[^}]+)?}}/),y=f&&f[1]||"";return{placeholder:g,field:y?y.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(g=>{let f=s;for(let{regex:v,field:A}of h){let w=A?Me(g,A):g;if(w==null)return null;f=f.replace(v,w)}if(f.includes("{{")||f.includes("}}"))return null;let y=f?`${a}?${f}`:a;return{identifier:y,url:Et(t,y,r)}}).filter(g=>g!==null)},lt=(r,t,e,n,i)=>{let a=T(e,n)?.next||e.next||null,s=Rt(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=Rt(p,s);if(!l)return null;let o=l.flatMap(c=>Yt(r,t,e,c,i));return o.length>0?o:null},Et=(r,t,e)=>{let[n,i]=t.split("?"),a=$(n,e.defaultChain)||{chain:u.IdentifierChainDefault,type:"alias",identifier:n,identifierBase:n},s=W(a.chain,r);if(!s)throw new Error(`Adapter not found for chain ${a.chain}`);let p=new q(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,c)=>l.searchParams.set(c,o)),l.toString().replace(/\/\?/,"?")},Me=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var j=class j{static debug(...t){j.isTestEnv||console.debug(...t)}static info(...t){j.isTestEnv||console.info(...t)}static warn(...t){j.isTestEnv||console.warn(...t)}static error(...t){j.isTestEnv||console.error(...t)}};j.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var C=j;function je(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 Zt(r,t){if(!r)return{...t};if(!t)return{...r};let e={...r};return Object.keys(t).forEach(n=>{e[n]&&typeof e[n]=="object"&&typeof t[n]=="object"?e[n]=Zt(e[n],t[n]):e[n]=t[n]}),e}function ke(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 O(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=ke(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(u.Position.Payload)){let s=je(n.input.position,i,a);e=Zt(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 te=(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=(d,h)=>h.reduce((g,f)=>g&&g[f]!==void 0?g[f]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:c}=te(r,e,p);return{values:{string:l,native:o,mapped:z(n,i)},output:await ee(r,c,t,e,n,i,a)}},ee=async(r,t,e,n,i,a,s)=>{if(!r.output)return t;let p={...t};return p=qe(p,r,n,i,a),p=await ze(r,p,e,i,a,s.transform?.runner||null),p},qe=(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},ze=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:Ge(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){C.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},Ge=r=>{if(!r||typeof r!="object"||Array.isArray(r)||!Array.isArray(r.data))return r;let t=[...r.data];return t.data=r.data,t},re=async(r,t,e,n,i,a)=>{let s=d=>d.length===0?t:null,{stringValues:p,nativeValues:l,output:o}=te(r,e,s),c=await ee(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}},_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 Je=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:jt.some(t=>t in r),ne=(r,t)=>{if(!Je(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 Jn=(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 Qe(r,t,e,n=5){let i=await Gt(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 Qe(r,i,e,5)}function Bt(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function Yn(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await Nt(r,e,n),p=await t(i);return Bt(r,p,a,s)}function Zn(r){let t=new Date(r).getTime();return Date.now()<t}function ti(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 Ke=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",Xe=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),ie=(r,t=24)=>{let e=Xe(r);return e?e.slice(0,t):"action"},ae=r=>{let t=3735928559^r.length,e=1103547991^r.length;for(let a=0;a<r.length;a++){let s=r.charCodeAt(a);t=Math.imul(t^s,2654435761),e=Math.imul(e^s,1597334677)}t=Math.imul(t^t>>>16,2246822507)^Math.imul(e^e>>>13,3266489909),e=Math.imul(e^e>>>16,2246822507)^Math.imul(t^t>>>13,3266489909);let n=(e>>>0).toString(16).padStart(8,"0"),i=(t>>>0).toString(16).padStart(8,"0");return`${n}${i}`.slice(0,12)},Ye=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()}},ri=(r,t,e)=>{let n=ie((e||t||"").trim()||"action"),i=`${r.type}|${Ye(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=ae(i);return`private_src_${n}_${a}`},Ze=r=>{let t=Ke(r),e=ie(t),n=ae(t.trim().toLowerCase());return`private_gen_${e}_${n}`},ni=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Ze(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},ii=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function si(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 pi(r,t,e){return null}var tr=(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]:[]},ui=async(r,t,e,n)=>{try{let i=W(e,n),a=tr(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 er,tempo as rr}from"mppx/client";async function se(r){for(let t of r){if(!t.wallet.getMppAccount)continue;let e=await t.wallet.getMppAccount().catch(()=>null);if(!e)continue;return C.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),er.create({methods:[rr({account:e})],polyfill:!1}).fetch}return fetch}var oe={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},I=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=oe[t]??t,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===m.Vector&&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[0],i=n.indexOf(u.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(u.ArgParamsSeparator),c=l.substring(o+1);return a.startsWith(m.Tuple)?c.replace(u.ArgListSeparator,u.ArgCompositeSeparator):c}),p=a.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+a+u.ArgParamsSeparator+s.join(p)}return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator)}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+u.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(u.ArgParamsSeparator),n=oe[e[0]]??e[0],i=e.slice(1).join(u.ArgParamsSeparator);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==="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 xi=r=>new I().nativeToString(m.String,r),Ai=r=>new I().nativeToString(m.Uint8,r),Ci=r=>new I().nativeToString(m.Uint16,r),wi=r=>new I().nativeToString(m.Uint32,r),Ii=r=>new I().nativeToString(m.Uint64,r),Si=r=>new I().nativeToString(m.Biguint,r),bi=r=>new I().nativeToString(m.Bool,r),Pi=r=>new I().nativeToString(m.Address,r),pe=r=>new I().nativeToString(m.Asset,r),Ti=r=>new I().nativeToString(m.Hex,r),Ei=(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},Ri=(...r)=>new I().nativeToString(m.Tuple,r),Ni=r=>new I().nativeToString(m.Struct,r),Bi=r=>new I().nativeToString(m.Vector,r);import nr from"ajv";var le=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 nr,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};import ir from"ajv";var 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(...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"]:[]}async validateSchema(t){try{let e=this.config.schema?.warp||U.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new ir({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var ce=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 _t(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 Ot,mkdirSync as ar,readdirSync as ue,readFileSync as sr,unlinkSync as Ft,writeFileSync as or}from"fs";import{join as de,resolve as ge}from"path";var $t="$bigint:",gt=(r,t)=>typeof t=="bigint"?$t+t.toString():t,G=(r,t)=>typeof t=="string"&&t.startsWith($t)?BigInt(t.slice($t.length)):t;var ft=class{constructor(t,e){let n=e?.path;this.cacheDir=n?ge(n):ge(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){Ot(this.cacheDir)||ar(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return de(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!Ot(e))return null;let n=sr(e,"utf-8"),i=JSON.parse(n,G);return i.expiresAt!==null&&Date.now()>i.expiresAt?(Ft(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);or(a,JSON.stringify(i,gt),"utf-8")}async delete(t){try{let e=this.getFilePath(t);Ot(e)&&Ft(e)}catch{}}async keys(t){try{let e=ue(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{ue(this.cacheDir).forEach(e=>{e.endsWith(".json")&&Ft(de(this.cacheDir,e))})}catch{}}};var Z=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 pr}from"fs";import{resolve as fe}from"path";var ht=class{constructor(t,e){let n=e?.path?fe(e.path):fe(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=pr(t,"utf-8");return new Map(Object.entries(JSON.parse(e,G)))}catch(e){return C.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 he={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},yt={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}`},mt=class{constructor(t,e){this.strategy=this.selectStrategy(t,e)}selectStrategy(t,e){return e?.adapter?e.adapter:e?.type==="localStorage"?new Z(t,e):e?.type==="memory"?new tt(t,e):e?.type==="static"?new ht(t,e):e?.type==="filesystem"?new ft(t,e):typeof window<"u"&&window.localStorage?new Z(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"},Lt={Get:"GET",Post:"POST",Put:"PUT",Delete:"DELETE"},Vt=(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)},Ht=r=>{try{return JSON.parse(r)}catch{return null}},lr=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(Bt(n,d,o,c)).forEach(([h,g])=>s.set(h,g))}let p=Vt(e.resolvedInputs,et.Headers,i);if(p){let l=Ht(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},cr=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===Lt.Get){let s=Vt(e.resolvedInputs,et.Queries,i);if(s){let p=Ht(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},ur=(r,t,e,n,i)=>{if(r===Lt.Get)return;let a=Vt(t.resolvedInputs,et.Payload,n);if(a&&Ht(a)!==null)return a;let{[et.Payload]:s,[et.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},me=async(r,t,e,n,i,a,s,p)=>{let l=t.method||Lt.Get,o=await lr(r,t,e,n,a,p),c=cr(r,t,e,l,a),d=ur(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(`\\{\\{${dr(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=P(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(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,g=e.queries?.[o]??null??d;g!=null&&a(s,g)}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 M(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}},dr=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var gr=["collect","compute","mcp","state","mount","unmount"],fr=new Set(Object.values(m)),hr=r=>{let t=r.indexOf(u.ArgParamsSeparator);return t===-1?!1:fr.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 I,this.cache=new mt(t.env,t.cache)}getSerializer(){return this.serializer}getCache(){return this.cache}async getResolvedInputsFromCache(t,e,n){let i=await this.cache.get(yt.WarpExecutable(t,e||"",n))||[];return O(i)}async getRawResolvedInputsFromCache(t,e,n){return await this.cache.get(yt.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}=N(o),g=[],f=[];if(h===e-1){let S=this.getStringTypedInputs(d,n);g=await this.getResolvedInputs(s.name,d,S,l,i.queries),f=await this.getModifiedInputs(g)}else c.inputs&&c.inputs.length>0&&(g=await this.resolveActionInputs(s.name,c,n,l,i.queries),f=await this.getModifiedInputs(g));let y=f.find(S=>S.input.position==="receiver"||S.input.position==="destination")?.value,v=this.getDestinationFromAction(c),A=y?this.serializer.stringToNative(y)[1]:v;if(A&&(A=l.applyInputs(A,f,this.serializer)),!A&&!gr.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let w=this.getPreparedArgs(c,f);w=w.map(S=>l.applyInputs(S,f,this.serializer));let F=f.find(S=>S.input.position==="value")?.value||null,x="value"in c?c.value:null,B=F?.split(u.ArgParamsSeparator)[1]||x||"0",V=l.applyInputs(B,f,this.serializer),R=BigInt(V),H=f.filter(S=>S.input.position==="transfer"&&S.value).map(S=>S.value),xe=[...("transfers"in c?c.transfers:[])||[],...H||[]].map(S=>{let At=l.applyInputs(S,f,this.serializer),Ie=At.startsWith(`asset${u.ArgParamsSeparator}`)?At:`asset${u.ArgParamsSeparator}${At}`;return this.serializer.stringToNative(Ie)[1]}),Ae=f.find(S=>S.input.position==="data")?.value,Ce="data"in c?c.data||"":null,Ut=Ae||Ce||null,we=Ut?l.applyInputs(Ut,f,this.serializer):null,Dt={adapter:p,warp:o,chain:s,action:e,destination:A,args:w,value:R,transfers:xe,data:we,resolvedInputs:f};return await this.cache.set(yt.WarpExecutable(this.config.env,o.meta?.hash||"",e),Dt.resolvedInputs,he.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||hr(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 v=P(this.config,t);return v?this.serializer.nativeToString("address",v):null}if(c.source==="hidden"){if(c.default===void 0)return null;let v=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,v)}if(l[d])return l[d];let h=c.as||c.name,g=a?.[h],f=this.url.searchParams.get(h),y=g||f;return y?this.serializer.nativeToString(c.type,String(y)):null};return s.map((c,d)=>{let h=o(c,d),g=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(g!==void 0?this.serializer.nativeToString(c.type,g):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(g=>g.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]=Pt(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 pe({...o,amount:c})}else return e}catch(n){throw C.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 Wt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.loopIterations=new Map;this.active=!0;this.handlers=n,this.factory=new _(t,e)}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={},{index:h}=N(t);for(let g=1;g<=t.actions.length;g++){let f=T(t,g);if(!St(f))continue;let y=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:v,chain:A,immediateExecution:w,executable:F}=await this.executeAction(t,g,e,y);if(v&&i.push(v),A&&(a=A),w&&s.push(w),w?.output){let{_DATA:x,...B}=w.output;Object.assign(d,B)}w?.values?.mapped&&Object.assign(d,w.values.mapped),F&&g===h+1&&F.resolvedInputs&&(p=O(F.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 g=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(g))}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):kt.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}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let 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(!St(s)||s.type!=="transfer"&&s.type!=="contract")return null;let l=e[p],o=p+1;if(!l){let g=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),f={status:"error",warp:t,action:o,user:P(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:g};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:f})),f}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let g=t.meta?.query;g&&Object.keys(g).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,g))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=mr(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){let n=P(this.config,t.chain.name),i=T(t.warp,t.action),a=this.factory.getSerializer(),s=z(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Y(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=P(this.config,t.chain.name),n=this.factory.getSerializer(),i=z(t.resolvedInputs,n),{values:a,output:s}=await Y(t.warp,i,t.action,t.resolvedInputs,n,this.config);return this.buildCollectResult(t,e,"success",a,s)}async doHttpRequest(t,e,n,i,a){let s=new E(this.config,W(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:c,body:d}=await me(s,e,t,n,i,p,a,async h=>await this.callHandler(()=>this.handlers?.onSignRequest?.(h)));C.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:c,body:d});try{let h={method:o,headers:c,body:d},f=await(await se(this.adapters))(l,h);C.debug("Collect response status",{status:f.status});let y=await f.json();C.debug("Collect response content",{content:y});let{values:v,output:A}=await Y(t.warp,y,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,P(this.config,t.chain.name),f.ok?"success":"error",v,A,y)}catch(h){C.error("WarpActionExecutor: Error executing collect",h);let g=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:h},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs: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=P(this.config,t.chain.name),i=T(t.warp,t.action);if(!i.destination){let g=O(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:g}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let f=O(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:f}}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(([g,f])=>{let y=l.applyInputs(f,t.resolvedInputs,this.factory.getSerializer());h[g]=y}),C.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let g=new s(new URL(c),{requestInit:{headers:h}}),f=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await f.connect(g);let y={};t.resolvedInputs.forEach(({input:x,value:B})=>{if(B&&x.position&&typeof x.position=="string"&&x.position.startsWith("payload:")){let V=x.position.replace("payload:",""),[R,H]=p.stringToNative(B);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 v=await f.callTool({name:d,arguments:y});await f.close();let A;if(v.content&&v.content.length>0){let x=v.content[0];if(x.type==="text")try{A=JSON.parse(x.text)}catch{A=x.text}else x.type,A=x}else A=v;let{values:w,output:F}=await Y(t.warp,A,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",w,F,v)}catch(g){C.error("WarpExecutor: Error executing MCP",g);let f=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}}buildCollectResult(t,e,n,i,a,s){let p=ct(this.config,this.adapters,t.warp,t.action,a,n),l=O(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||P(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages: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},g=J(s.when,h);try{if(!Q(g)){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),C.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 g=h.replace(/\{\{([^}]+)\}\}/g,(f,y)=>{let v=o[y.trim()];return v!=null?String(v):h});c[d]=yr(g)}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 x=this.factory.getStringTypedInputs(e,i),B=await this.factory.getResolvedInputs(s.name,e,x,l,a.queries);d=await this.factory.getModifiedInputs(B)}else{let{action:x}=N(o),B=this.factory.getStringTypedInputs(x,i),V=await this.factory.getResolvedInputs(s.name,x,B,l,a.queries);d=await this.factory.getModifiedInputs(V)}let h=ne(c.prompt,this.config.platform),g=l.applyInputs(h,d,this.factory.getSerializer()),f=O(d),y=P(this.config,s.name),v=this.factory.getSerializer(),{values:A,output:w}=await re(o,g,n,d,v,this.config);if(this.handlers?.onPromptGenerate){let x=await this.handlers.onPromptGenerate(g,c.expect);x&&(w.MESSAGE=x)}let F=d.find(x=>x.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,w),values:A,output:w,messages:Tt(o,{...A.mapped,...w},this.config),destination:F,resolvedInputs:f}}catch(s){return C.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 f=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(f)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},g=J(e.when,h);return Q(g)}},mr=(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}},yr=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 C.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)?!!X(t,this.config.defaultChain):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(o=>o[0]).filter(o=>this.isValid(o)).map(o=>this.detect(o)),s=(await Promise.all(i)).filter(o=>o.match),p=s.length>0,l=s.map(o=>({url:o.url,warp:o.warp}));return{match:p,output:l}}async detect(t,e){let n={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(u.HttpProtocolPrefix)?X(t,this.config.defaultChain):$(t,this.config.defaultChain);if(!i)return n;try{let{type:a,identifierBase:s}=i,p=null,l=null,o=null,c=t.startsWith(u.HttpProtocolPrefix)?Qt(t):Kt(i.identifier);if(this.resolver){let f=null;if(a==="hash")f=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;f=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}f&&(p=f.warp,l=f.registryInfo,o=f.brand)}else{let f=W(i.chain,this.adapters);if(a==="hash"){p=await f.builder().createFromTransactionHash(s,e);let y=await f.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await f.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await f.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(Wr(p,i.chain,l,i.identifier),p.meta.query=c?Xt(c):null),!p)return n;let d=p.chain||i.chain,h=this.adapters.find(f=>f.chainInfo.name.toLowerCase()===d.toLowerCase()),g=h?await new E(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:g,chain:d,registryInfo:l,brand:o}}catch(a){return C.error("Error detecting warp link",a),n}}},Wr=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?bt(null,"alias",e.alias):bt(t,"hash",e?.hash??n))};var ye=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){return new Wt(this.config,this.chains,t)}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 f=await fetch(t);if(!f.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await f.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 f=>{await l.evaluateOutput(p,f)},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=$(t,this.config.defaultChain);if(!n)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return W(n.chain,this.chains).builder().createFromTransactionHash(t,e)}async signMessage(t,e){if(!P(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 _(this.config,this.chains)}get index(){return new vt(this.config)}get linkBuilder(){return new q(this.config,this.chains)}createBuilder(t){return W(t,this.chains).builder()}createAbiBuilder(t){return W(t,this.chains).abiBuilder()}createBrandBuilder(t){return W(t,this.chains).brandBuilder()}createSerializer(t){return W(t,this.chains).serializer}resolveText(t){return pt(t,this.config)}};var We=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 os(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(ve(t,n)!==i)return!1;return!0}function ps(r,t){let e={};for(let[n,i]of Object.entries(r.inputs??{}))e[n]=i.includes(".")?ve(t,i):i;return e}function ve(r,t){return t.split(".").reduce((e,n)=>e?.[n],r)}export{wt as BrowserCryptoProvider,Or as CLOUD_WALLET_PROVIDERS,he as CacheTtl,Br as EvmWalletChainNames,$r as MultiversxWalletChainNames,It as NodeCryptoProvider,on as WARP_LANGUAGES,b as WarpAssets,le as WarpBrandBuilder,ce as WarpBuilder,mt as WarpCache,yt as WarpCacheKey,$e as WarpChainDisplayNames,Oe as WarpChainLogos,Be as WarpChainName,nt as WarpChainResolver,ye as WarpClient,it as WarpCompositeResolver,U as WarpConfig,u as WarpConstants,Wt as WarpExecutor,_ as WarpFactory,vt as WarpIndex,m as WarpInputTypes,E as WarpInterpolator,q as WarpLinkBuilder,xt as WarpLinkDetecter,C as WarpLogger,Mt as WarpPlatformName,jt as WarpPlatforms,k as WarpProtocolVersions,I as WarpSerializer,We as WarpTypeRegistry,dt as WarpValidator,Pi as address,Tt as applyOutputToMessages,pe as asset,Si as biguint,bi as bool,Ze as buildGeneratedFallbackWarpIdentifier,ri as buildGeneratedSourceWarpIdentifier,ut as buildInputsContext,z as buildMappedOutput,je as buildNestedPayload,Jr as bytesToBase64,Fe as bytesToHex,ui as checkWarpAssetBalance,K as cleanWarpIdentifier,Bt as createAuthHeaders,Nt as createAuthMessage,Kr as createCryptoProvider,pi as createDefaultWalletProvider,Yn as createHttpAuthHeaders,Qe as createSignableMessage,ln as createWarpI18nText,bt as createWarpIdentifier,an as doesWarpRequireWallet,ee as evaluateOutputCommon,Q as evaluateWhenCondition,Y as extractCollectOutput,X as extractIdentifierInfoFromUrl,re as extractPromptOutput,Kt as extractQueryStringFromIdentifier,Qt as extractQueryStringFromUrl,O as extractResolvedInputValues,Zr as extractWarpSecrets,W as findWarpAdapterForChain,Dr as getChainDisplayName,Mr as getChainLogo,qt as getCryptoProvider,Ke as getGeneratedSourceWarpName,st as getLatestProtocolIdentifier,se as getMppFetch,lt as getNextInfo,ct as getNextInfoForStatus,Jn as getProviderConfig,zt as getRandomBytes,Gt as getRandomHex,tr as getRequiredAssetIds,Cr as getWalletFromConfigOrFail,T as getWarpActionByIndex,kr as getWarpBrandLogoUrl,qr as getWarpChainAssetLogoUrl,zr as getWarpChainInfoLogoUrl,hn as getWarpIdentifierWithQuery,$ as getWarpInfoFromIdentifier,N as getWarpInputAction,Se as getWarpWalletAddress,P as getWarpWalletAddressFromConfig,Te as getWarpWalletExternalId,Ee as getWarpWalletExternalIdFromConfig,Sr as getWarpWalletExternalIdFromConfigOrFail,Pe as getWarpWalletMnemonic,Ir as getWarpWalletMnemonicFromConfig,be as getWarpWalletPrivateKey,wr as getWarpWalletPrivateKeyFromConfig,Wn as hasInputPrefix,Ti as hex,si as initializeWalletCache,gn as isEqualWarpIdentifier,ii as isGeneratedSourcePrivateIdentifier,Je as isPlatformValue,St as isWarpActionAutoExecute,pn as isWarpI18nText,br as isWarpWalletReadOnly,os as matchesTrigger,Zt as mergeNestedPayload,Er as normalizeAndValidateMnemonic,Re as normalizeMnemonic,Ei as option,_e as parseOutputOutIndex,ti as parseSignedMessage,Xt as parseWarpQueryStringToObject,fn as removeWarpChainPrefix,Tr as removeWarpWalletFromConfig,M as replacePlaceholders,J as replacePlaceholdersInWhenExpression,ps as resolveInputs,Fn as resolveNextString,Rt as resolveNextStrings,ve as resolvePath,ne as resolvePlatformValue,pt as resolveWarpText,kt as safeWindow,_r as setCryptoProvider,Pr as setWarpWalletInConfig,ot as shiftBigintBy,Pt as splitInput,ni as stampGeneratedWarpMeta,xi as string,Ni as struct,Qr as testCryptoAvailability,ke as toInputPayloadValue,_t as toPreviewText,Ri as tuple,Ci as uint16,wi as uint32,Ii as uint64,Ai as uint8,Ne as validateMnemonicLength,Zn as validateSignedMessage,Bi as vector,Hr 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 Ir=(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,P=(r,t)=>Se(r.user?.wallets?.[t]||null),be=r=>r?typeof r=="string"?r:r.privateKey||null:null,Pe=r=>r?typeof r=="string"?r:r.mnemonic||null:null,Ee=r=>r?typeof r=="string"?r:r.externalId||null:null,Sr=(r,t)=>be(r.user?.wallets?.[t]||null)?.trim()||null,br=(r,t)=>Pe(r.user?.wallets?.[t]||null)?.trim()||null,Te=(r,t)=>Ee(r.user?.wallets?.[t]||null)?.trim()||null,Pr=(r,t)=>{let e=Te(r,t);if(!e)throw new Error(`No external ID configured for wallet onchain ${t}`);return e},Er=r=>typeof r=="string",Tr=(r,t,e)=>{r.user||(r.user={}),r.user.wallets||(r.user.wallets={}),r.user.wallets[t]=e},Rr=(r,t)=>{r.user?.wallets&&delete r.user.wallets[t]},Re=r=>{if(!r)throw new Error("Mnemonic is required");return typeof r=="string"?r.trim():String(r).trim()},Ne=(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`)},Nr=(r,t=24)=>{let e=Re(r);return Ne(e,t),e};var $e=(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))($e||{}),kt=(n=>(n.Macos="macos",n.Linux="linux",n.Windows="windows",n))(kt||{}),Mt=Object.values(kt),Or=["ethereum","base","arbitrum","polygon","somnia","tempo"],Lr=["multiversx","claws"],Vr=["coinbase","privy","gaupa"],u={HttpProtocolPrefix:"https://",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:r=>P(r.config,r.adapter.chainInfo.name)},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:r=>{if(!r.adapter.wallet)return null;try{return r.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:r=>r.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:r=>r.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"}},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 M={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${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","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 Dr=(r,t)=>(e,n)=>{let i=t(e,n);return r(e,i)};var at="https://raw.githubusercontent.com/JoAiHQ/assets/refs/heads/main",b={baseUrl:at,chainLogo:r=>`${at}/chains/logos/${r}`,tokenLogo:r=>`${at}/tokens/logos/${r}`,walletLogo:r=>`${at}/wallets/logos/${r}`},Be={multiversx:"MultiversX",claws:"Claws Network",sui:"Sui",ethereum:"Ethereum",base:"Base",arbitrum:"Arbitrum",polygon:"Polygon",somnia:"Somnia",tempo:"Tempo",fastset:"Fastset",solana:"Solana",near:"NEAR"},kr=r=>Be[r]??r.charAt(0).toUpperCase()+r.slice(1),Oe={ethereum:{light:b.chainLogo("ethereum-white.svg"),dark:b.chainLogo("ethereum-black.svg")},base:{light:b.chainLogo("base-white.svg"),dark:b.chainLogo("base-black.svg")},arbitrum:b.chainLogo("arbitrum.svg"),polygon:b.chainLogo("polygon.svg"),somnia:b.chainLogo("somnia.png"),tempo:{light:b.chainLogo("tempo-white.svg"),dark:b.chainLogo("tempo-black.svg")},multiversx:b.chainLogo("multiversx.svg"),claws:b.chainLogo("claws.png"),sui:b.chainLogo("sui.svg"),solana:b.chainLogo("solana.svg"),near:{light:b.chainLogo("near-white.svg"),dark:b.chainLogo("near-black.svg")},fastset:{light:b.chainLogo("fastset-white.svg"),dark:b.chainLogo("fastset-black.svg")}},Mr=(r,t="dark")=>{let e=Oe[r];return typeof e=="string"?e:t==="dark"?e.light:e.dark};var wt=(r,t)=>r[t]??r.default??Object.values(r)[0],zr=(r,t)=>{let e=t?.preferences?.theme??"light";return typeof r.logo=="string"?r.logo:wt(r.logo,e)},_r=(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)},Gr=(r,t)=>{if(typeof r.logoUrl=="string")return r.logoUrl;let e=t?.preferences?.theme??"light";return wt(r.logoUrl,e)};var It=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}},St=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 It,D;if(typeof process<"u"&&process.versions?.node)return D=new St,D;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Qr(r){D=r}async function _t(r,t){if(r<=0||!Number.isInteger(r))throw new Error("Size must be a positive integer");return(t||zt()).getRandomBytes(r)}function Le(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 Kr(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 Gt(r,t){if(r<=0||r%2!==0)throw new Error("Length must be a positive even number");let e=await _t(r/2,t);return Le(e)}async function Xr(){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 _t(16),r.randomBytes=!0}catch{}return r}function Zr(){return zt()}var en=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:${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],Ve=["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=>!Ve.includes(e.type));return t?{action:t,index:r.actions.indexOf(t)}:{action:r.actions[0],index:0}},bt=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},j=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":String(i)}),J=(r,t)=>r.replace(/\{\{([^}]+)\}\}/g,(e,n)=>{let i=t[n];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),on=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 ln={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""},cn=r=>typeof r=="object"&&r!==null&&Object.keys(r).length>0,un=r=>r;var K=r=>r.startsWith(u.IdentifierAliasMarker)?r.replace(u.IdentifierAliasMarker,""):r,hn=(r,t)=>!r||!t?!1:K(r)===K(t),Pt=(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},B=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 B(i)},Fe=(r,t)=>/^[a-fA-F0-9]+$/.test(r)&&r.length>32,He=r=>{let t=u.IdentifierParamSeparator,e=r.indexOf(t);return e!==-1?{separator:t,index:e}:null},Qt=r=>{let t=He(r);if(!t)return[r];let{separator:e,index:n}=t,i=r.substring(0,n),a=r.substring(n+e.length),s=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},mn=r=>{let t=B(r);return(t?t.identifierBase:K(r)).trim()},yn=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 Et=r=>{let[t,...e]=r.split(/:(.*)/,2);return[t,e[0]||""]},xn=r=>{let t=new Set(Object.values(m));if(!r.includes(u.ArgParamsSeparator))return!1;let e=Et(r)[0];return t.has(e)};var Tt=(r,t,e)=>{let n=Object.entries(r.messages||{}).map(([i,a])=>{let s=pt(a,e);return[i,j(s,t)]});return Object.fromEntries(n)};import Ue 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=B(t);if(!e||!e.chain)return null;let n=W(e.chain,this.adapters);return n?this.build(n.chainInfo.name,e.type,e.identifierBase):null}generateQrCode(t,e,n,i=512,a="white",s="black",p="#23F7DD"){let l=W(t,this.adapters),o=this.build(l.chainInfo.name,e,n);return new Ue({type:"svg",width:i,height:i,data:String(o),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:a},dotsOptions:{type:"extra-rounded",color:s},cornersSquareOptions:{type:"extra-rounded",color:s},cornersDotOptions:{type:"square",color:s},imageOptions:{hideBackgroundDots:!0,imageSize:.4,margin:8},image:`data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 100 100" fill="${encodeURIComponent(p)}" xmlns="http://www.w3.org/2000/svg"><path d="M54.8383 50.0242L95 28.8232L88.2456 16L51.4717 30.6974C50.5241 31.0764 49.4759 31.0764 48.5283 30.6974L11.7544 16L5 28.8232L45.1616 50.0242L5 71.2255L11.7544 84.0488L48.5283 69.351C49.4759 68.9724 50.5241 68.9724 51.4717 69.351L88.2456 84.0488L95 71.2255L54.8383 50.0242Z"/></svg>`})}};var De="https://",Nt=(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},Ln=(r,t)=>Nt(r,t)?.[0]??null,Yt=(r,t,e,n,i)=>{if(n.startsWith(De))return[{identifier:null,url:n}];let[a,s]=n.split("?");if(!s){let g=j(a,{...e.vars,...i});return[{identifier:g,url:Rt(t,g,r)}]}let p=s.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(p.length===0){let g=j(s,{...e.vars,...i}),f=g?`${a}?${g}`:a;return[{identifier:f,url:Rt(t,f,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(g=>g.includes(`{{${c}[]`)).map(g=>{let f=g.match(/\[\](\.[^}]+)?}}/),y=f&&f[1]||"";return{placeholder:g,field:y?y.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return d.map(g=>{let f=s;for(let{regex:v,field:A}of h){let w=A?je(g,A):g;if(w==null)return null;f=f.replace(v,w)}if(f.includes("{{")||f.includes("}}"))return null;let y=f?`${a}?${f}`:a;return{identifier:y,url:Rt(t,y,r)}}).filter(g=>g!==null)},lt=(r,t,e,n,i)=>{let a=E(e,n)?.next||e.next||null,s=Nt(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=E(e,n)?.next||e.next||null,l=Nt(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=B(n)??{chain:null,type:"alias",identifier:n,identifierBase:n},s=a.chain?W(a.chain,r):null;if(!s)throw new Error(`Adapter not found for chain ${a.chain??"unknown"}`);let p=new q(e,r).build(s.chainInfo.name,a.type,a.identifierBase);if(!i)return p;let l=new URL(p);return new URLSearchParams(i).forEach((o,c)=>l.searchParams.set(c,o)),l.toString().replace(/\/\?/,"?")},je=(r,t)=>t.split(".").reduce((e,n)=>e?.[n],r);var k=class k{static debug(...t){k.isTestEnv||console.debug(...t)}static info(...t){k.isTestEnv||console.info(...t)}static warn(...t){k.isTestEnv||console.warn(...t)}static error(...t){k.isTestEnv||console.error(...t)}};k.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var C=k;function ke(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 Me(r,t){if(!r.value)return null;let e=t.stringToNative(r.value)[1];if(r.input.type==="biguint")return e.toString();if(r.input.type==="asset"){let{identifier:n,amount:i}=e;return{identifier:n,amount:i.toString()}}else return e}function O(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=Me(n,t);if(n.input.position&&typeof n.input.position=="string"&&n.input.position.startsWith(u.Position.Payload)){let s=ke(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=Ge(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=(d,h)=>h.reduce((g,f)=>g&&g[f]!==void 0?g[f]:null,d),p=d=>d.length===0?t:s(t,d),{stringValues:l,nativeValues:o,output:c}=ee(r,e,p);return{values:{string:l,native:o,mapped:z(n,i)},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=qe(p,r,n,i,a),p=await ze(r,p,e,i,a,s.transform?.runner||null),p},qe=(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},ze=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:_e(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){C.error(`Transform error for Warp '${r.name}' with output '${o}':`,d),s[o]=null,l[o]=null}return s},_e=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}},Ge=r=>{if(r==="out")return 1;let t=r.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(r.startsWith("out.")||r.startsWith("event."),null)};var Je=r=>r==null||typeof r!="object"||Array.isArray(r)?!1:Mt.some(t=>t in r),ie=(r,t)=>{if(!Je(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 Jn=(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 Qe(r,t,e,n=5){let i=await Gt(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 $t(r,t,e,n){let i=n||`prove-wallet-ownership for app "${t}"`;return Qe(r,i,e,5)}function Bt(r,t,e,n){return{"X-Signer-Wallet":r,"X-Signer-Signature":t,"X-Signer-Nonce":e,"X-Signer-ExpiresAt":n}}async function Zn(r,t,e,n){let{message:i,nonce:a,expiresAt:s}=await $t(r,e,n),p=await t(i);return Bt(r,p,a,s)}function Yn(r){let t=new Date(r).getTime();return Date.now()<t}function ti(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 Ke=r=>typeof r.name=="string"&&r.name.trim()?r.name.trim():typeof r.title=="string"&&r.title.trim()?r.title.trim():"generated-warp",Xe=r=>r.normalize("NFKD").replace(/[^\w\s-]/g,"").toLowerCase().replace(/[\s_]+/g,"-").replace(/-+/g,"-").replace(/^-|-$/g,""),ae=(r,t=24)=>{let e=Xe(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)},Ze=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()}},ri=(r,t,e)=>{let n=ae((e||t||"").trim()||"action"),i=`${r.type}|${Ze(r.url)}|${(r.contract||"").trim().toLowerCase()}|${t.trim().toLowerCase()}`,a=se(i);return`private_src_${n}_${a}`},Ye=r=>{let t=Ke(r),e=ae(t),n=se(t.trim().toLowerCase());return`private_gen_${e}_${n}`},ni=(r,t,e,n)=>{(!r.name||!r.name.trim())&&n&&(r.name=n);let i=r.chain||t;r.meta={chain:i,identifier:e||Ye(r),hash:r.meta?.hash||"",creator:r.meta?.creator||"",createdAt:r.meta?.createdAt||"",query:r.meta?.query||null}},ii=r=>!!r&&(r.startsWith("private_src_")||r.startsWith("private_gen_"));async function si(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 pi(r,t,e){return null}var tr=(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]:[]},ui=async(r,t,e,n)=>{try{let i=W(e,n),a=tr(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 er,tempo as rr}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 C.debug("WarpExecutor: Using mppx fetch for MPP auto-payment"),er.create({methods:[rr({account:e})],polyfill:!1}).fetch}return fetch}var pe={boolean:m.Bool,integer:m.Uint32,int:m.Uint32,number:m.Uint64},I=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,e){if(t=pe[t]??t,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===m.Vector&&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[0],i=n.indexOf(u.ArgParamsSeparator),a=n.substring(0,i),s=e.map(l=>{let o=l.indexOf(u.ArgParamsSeparator),c=l.substring(o+1);return a.startsWith(m.Tuple)?c.replace(u.ArgListSeparator,u.ArgCompositeSeparator):c}),p=a.startsWith(m.Struct)?u.ArgStructSeparator:u.ArgListSeparator;return t+u.ArgParamsSeparator+a+u.ArgParamsSeparator+s.join(p)}return t+u.ArgParamsSeparator+e.join(u.ArgListSeparator)}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+u.ArgParamsSeparator+(e?.toString()??"")}stringToNative(t){let e=t.split(u.ArgParamsSeparator),n=pe[e[0]]??e[0],i=e.slice(1).join(u.ArgParamsSeparator);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==="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 xi=r=>new I().nativeToString(m.String,r),Ai=r=>new I().nativeToString(m.Uint8,r),Ci=r=>new I().nativeToString(m.Uint16,r),wi=r=>new I().nativeToString(m.Uint32,r),Ii=r=>new I().nativeToString(m.Uint64,r),Si=r=>new I().nativeToString(m.Biguint,r),bi=r=>new I().nativeToString(m.Bool,r),Pi=r=>new I().nativeToString(m.Address,r),le=r=>new I().nativeToString(m.Asset,r),Ei=r=>new I().nativeToString(m.Hex,r),Ti=(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},Ri=(...r)=>new I().nativeToString(m.Tuple,r),Ni=r=>new I().nativeToString(m.Struct,r),$i=r=>new I().nativeToString(m.Vector,r);import nr from"ajv";var ce=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 nr,s=a.compile(i);if(!s(t))throw new Error(`BrandBuilder: schema validation failed: ${a.errorsText(s.errors)}`)}};import ir from"ajv";var ar=new Set(["POST","PUT","PATCH","DELETE"]),sr=/^[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??{}));for(let i of t.actions){let a=i.destination;if(!a||typeof a=="string"||!a.url)continue;let s=this.extractUrlPlaceholders(a.url);if(s.length===0)continue;let p=i.inputs??[],l=new Set(p.map(o=>o.position).filter(o=>typeof o=="string"&&o.startsWith("url:")).map(o=>o.slice(4)));for(let o of s)n.has(o)||sr.test(o)||l.has(o)||e.push(`URL "${a.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||!ar.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||U.LatestWarpSchemaUrl,i=await(await fetch(e)).json(),a=new ir({strict:!1}),s=a.compile(i);return s(t)?[]:[`Schema validation failed: ${a.errorsText(s.errors)}`]}catch(e){return[`Schema validation failed: ${e instanceof Error?e.message:String(e)}`]}}};var gt=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 Lt,mkdirSync as or,readdirSync as ue,readFileSync as pr,unlinkSync as Vt,writeFileSync as lr}from"fs";import{join as de,resolve as ge}from"path";var Ot="$bigint:",ft=(r,t)=>typeof t=="bigint"?Ot+t.toString():t,_=(r,t)=>typeof t=="string"&&t.startsWith(Ot)?BigInt(t.slice(Ot.length)):t;var ht=class{constructor(t,e){let n=e?.path;this.cacheDir=n?ge(n):ge(process.cwd(),".warp-cache"),this.ensureCacheDir()}ensureCacheDir(){Lt(this.cacheDir)||or(this.cacheDir,{recursive:!0})}getFilePath(t){let e=t.replace(/[^a-zA-Z0-9_-]/g,"_");return de(this.cacheDir,`${e}.json`)}async get(t){try{let e=this.getFilePath(t);if(!Lt(e))return null;let n=pr(e,"utf-8"),i=JSON.parse(n,_);return i.expiresAt!==null&&Date.now()>i.expiresAt?(Vt(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);lr(a,JSON.stringify(i,ft),"utf-8")}async delete(t){try{let e=this.getFilePath(t);Lt(e)&&Vt(e)}catch{}}async keys(t){try{let e=ue(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{ue(this.cacheDir).forEach(e=>{e.endsWith(".json")&&Vt(de(this.cacheDir,e))})}catch{}}};var Y=class{constructor(t,e){this.prefix="warp-cache"}getKey(t){return`${this.prefix}:${t}`}async get(t){try{let e=localStorage.getItem(this.getKey(t));if(!e)return null;let n=JSON.parse(e,_);return n.expiresAt!==null&&Date.now()>n.expiresAt?(localStorage.removeItem(this.getKey(t)),null):n.value}catch{return null}}async set(t,e,n){let i={value:e,expiresAt:n?Date.now()+n*1e3:null};localStorage.setItem(this.getKey(t),JSON.stringify(i,ft))}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 V=class V{constructor(t,e){}async get(t){let e=V.cache.get(t);return e?e.expiresAt!==null&&Date.now()>e.expiresAt?(V.cache.delete(t),null):e.value:null}async set(t,e,n){let i=n?Date.now()+n*1e3:null;V.cache.set(t,{value:e,expiresAt:i})}async delete(t){V.cache.delete(t)}async keys(t){let e=Array.from(V.cache.keys());if(!t)return e;let n=new RegExp("^"+t.replace(/\*/g,".*")+"$");return e.filter(i=>n.test(i))}async clear(){V.cache.clear()}};V.cache=new Map;var tt=V;import{readFileSync as cr}from"fs";import{resolve as fe}from"path";var mt=class{constructor(t,e){let n=e?.path?fe(e.path):fe(process.cwd(),`warps-manifest-${t}.json`);this.cache=this.loadManifest(n)}loadManifest(t){try{let e=cr(t,"utf-8");return new Map(Object.entries(JSON.parse(e,_)))}catch(e){return C.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 he={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"},Ft={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)},Ut=r=>{try{return JSON.parse(r)}catch{return null}},ur=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 $t(n,`${e.chain.name}-adapter`),d=await a({message:l,chain:e.chain});d&&Object.entries(Bt(n,d,o,c)).forEach(([h,g])=>s.set(h,g))}let p=Ht(e.resolvedInputs,et.Headers,i);if(p){let l=Ut(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},dr=(r,t,e,n,i)=>{let a=r.applyInputs(t.url,e.resolvedInputs,i);if(n===Ft.Get){let s=Ht(e.resolvedInputs,et.Queries,i);if(s){let p=Ut(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},gr=(r,t,e,n,i)=>{if(r===Ft.Get)return;let a=Ht(t.resolvedInputs,et.Payload,n);if(a&&Ut(a)!==null)return a;let{[et.Payload]:s,[et.Queries]:p,...l}=e;return JSON.stringify({...l,...i})},me=async(r,t,e,n,i,a,s,p)=>{let l=t.method||Ft.Get,o=await ur(r,t,e,n,a,p),c=dr(r,t,e,l,a),d=gr(l,e,i,a,s);return{url:c,method:l,headers:o,body:d}};var T=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(`\\{\\{${fr(i)}\\}\\}`,"g"),s)}return JSON.parse(n)}async applyGlobals(t){let e={...t};return e.actions=await Promise.all((e.actions||[]).map(async n=>await this.applyActionGlobals(n))),e=await this.applyRootGlobals(e),e}applyVars(t,e={}){if(!t?.vars)return t;let n=P(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),a=(s,p)=>{i=i.replace(new RegExp(`{{${s.toUpperCase()}}}`,"g"),p.toString())};return Object.entries(t.vars).forEach(([s,p])=>{if(typeof p!="string")a(s,p);else if(p.startsWith(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,g=e.queries?.[o]??null??d;g!=null&&a(s,g)}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 j(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}},fr=r=>r.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");var hr=["collect","compute","mcp","state","mount","unmount"],mr=new Set(Object.values(m)),yr=r=>{let t=r.indexOf(u.ArgParamsSeparator);return t===-1?!1:mr.has(r.slice(0,t))},G=class{constructor(t,e){this.config=t;this.adapters=e;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new I,this.cache=new 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 O(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 T(this.config,p,this.adapters),o=await l.apply(t,i),c=E(o,e),{action:d,index:h}=N(o),g=[],f=[];if(h===e-1){let S=this.getStringTypedInputs(d,n);g=await this.getResolvedInputs(s.name,d,S,l,i.queries),f=await this.getModifiedInputs(g)}else c.inputs&&c.inputs.length>0&&(g=await this.resolveActionInputs(s.name,c,n,l,i.queries),f=await this.getModifiedInputs(g));let y=f.find(S=>S.input.position==="receiver"||S.input.position==="destination")?.value,v=this.getDestinationFromAction(c),A=y?this.serializer.stringToNative(y)[1]:v;if(A&&(A=l.applyInputs(A,f,this.serializer)),!A&&!hr.includes(a.type))throw new Error("WarpActionExecutor: Destination/Receiver not provided");let w=this.getPreparedArgs(c,f);w=w.map(S=>l.applyInputs(S,f,this.serializer));let L=f.find(S=>S.input.position==="value")?.value||null,x="value"in c?c.value:null,$=L?.split(u.ArgParamsSeparator)[1]||x||"0",F=l.applyInputs($,f,this.serializer),R=BigInt(F),H=f.filter(S=>S.input.position==="transfer"&&S.value).map(S=>S.value),xe=[...("transfers"in c?c.transfers:[])||[],...H||[]].map(S=>{let Ct=l.applyInputs(S,f,this.serializer),Ie=Ct.startsWith(`asset${u.ArgParamsSeparator}`)?Ct:`asset${u.ArgParamsSeparator}${Ct}`;return this.serializer.stringToNative(Ie)[1]}),Ae=f.find(S=>S.input.position==="data")?.value,Ce="data"in c?c.data||"":null,Dt=Ae||Ce||null,we=Dt?l.applyInputs(Dt,f,this.serializer):null,jt={adapter:p,warp:o,chain:s,action:e,destination:A,args:w,value:R,transfers:xe,data:we,resolvedInputs:f};return await this.cache.set(Wt.WarpExecutable(this.config.env,o.meta?.hash||"",e),jt.resolvedInputs,he.OneWeek),jt}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||yr(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 v=P(this.config,t);return v?this.serializer.nativeToString("address",v):null}if(c.source==="hidden"){if(c.default===void 0)return null;let v=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,v)}if(l[d])return l[d];let h=c.as||c.name,g=a?.[h],f=this.url.searchParams.get(h),y=g||f;return y?this.serializer.nativeToString(c.type,String(y)):null};return s.map((c,d)=>{let h=o(c,d),g=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:h||(g!==void 0?this.serializer.nativeToString(c.type,g):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 T(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(g=>g.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]=Et(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 le({...o,amount:c})}else return e}catch(n){throw C.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 vt=class{constructor(t,e,n){this.config=t;this.adapters=e;this.handlers=n;this.loopIterations=new Map;this.active=!0;this.handlers=n,this.factory=new G(t,e)}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={},{index:h}=N(t);for(let g=1;g<=t.actions.length;g++){let f=E(t,g);if(!bt(f))continue;let y=Object.keys(d).length>0?{...c,envs:{...c.envs,...d}}:c,{tx:v,chain:A,immediateExecution:w,executable:L}=await this.executeAction(t,g,e,y);if(v&&i.push(v),A&&(a=A),w&&s.push(w),w?.output){let{_DATA:x,...$}=w.output;Object.assign(d,$)}w?.values?.mapped&&Object.assign(d,w.values.mapped),L&&g===h+1&&L.resolvedInputs&&(p=O(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 g=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(g))}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=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}}let s=await this.factory.createExecutable(t,e,n,i);if(a.when&&!await this.evaluateWhenCondition(t,a,n,i,s.resolvedInputs,s.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(a.type==="collect"){let o=await this.executeCollect(s);if(o.status==="success")return await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};if(o.status==="unhandled")return await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:e,chain:null,execution:o,tx:null})),{tx:null,chain:null,immediateExecution:o,executable:s};{let 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(!bt(s)||s.type!=="transfer"&&s.type!=="contract")return null;let l=e[p],o=p+1;if(!l){let g=await this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,o),f={status:"error",warp:t,action:o,user:P(this.config,n.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:g};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${o} failed: Transaction not found`,result:f})),f}let c=await this.factory.getRawResolvedInputsFromCache(this.config.env,t.meta?.hash,o);if(c.length===0){let g=t.meta?.query;g&&Object.keys(g).length>0&&(c=await this.factory.resolveInputsFromQuery(t,o,g))}let d=await i.output.getActionExecution(t,o,l.tx,c),h=Wr(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){let n=P(this.config,t.chain.name),i=E(t.warp,t.action),a=this.factory.getSerializer(),s=z(t.resolvedInputs,a);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,n,s,e);let{values:p,output:l}=await Z(t.warp,s,t.action,t.resolvedInputs,a,this.config);return this.buildCollectResult(t,n,"unhandled",p,l)}async executeCompute(t){let e=P(this.config,t.chain.name),n=this.factory.getSerializer(),i=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){let s=new T(this.config,W(t.chain.name,this.adapters),this.adapters),p=this.factory.getSerializer(),{url:l,method:o,headers:c,body:d}=await me(s,e,t,n,i,p,a,async h=>await this.callHandler(()=>this.handlers?.onSignRequest?.(h)));C.debug("WarpExecutor: Executing HTTP collect",{url:l,method:o,headers:c,body:d});try{let h={method:o,headers:c,body:d},f=await(await oe(this.adapters))(l,h);C.debug("Collect response status",{status:f.status});let y=await f.json();C.debug("Collect response content",{content:y});let{values:v,output:A}=await Z(t.warp,y,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,P(this.config,t.chain.name),f.ok?"success":"error",v,A,y)}catch(h){C.error("WarpActionExecutor: Error executing collect",h);let g=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:h},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs: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=P(this.config,t.chain.name),i=E(t.warp,t.action);if(!i.destination){let g=O(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:g}}let a,s;try{a=(await import("@modelcontextprotocol/sdk/client/index.js")).Client,s=(await import("@modelcontextprotocol/sdk/client/streamableHttp.js")).StreamableHTTPClientTransport}catch{let f=O(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:f}}let p=this.factory.getSerializer(),l=new T(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(([g,f])=>{let y=l.applyInputs(f,t.resolvedInputs,this.factory.getSerializer());h[g]=y}),C.debug("WarpExecutor: Executing MCP",{url:c,tool:d,headers:h});try{let g=new s(new URL(c),{requestInit:{headers:h}}),f=new a({name:"warps-mcp-client",version:"1.0.0"},{capabilities:{}});await f.connect(g);let y={};t.resolvedInputs.forEach(({input:x,value:$})=>{if($&&x.position&&typeof x.position=="string"&&x.position.startsWith("payload:")){let F=x.position.replace("payload:",""),[R,H]=p.stringToNative($);if(R==="string")y[F]=String(H);else if(R==="bool")y[F]=!!H;else if(R==="uint8"||R==="uint16"||R==="uint32"||R==="uint64"||R==="uint128"||R==="uint256"||R==="biguint"){let rt=Number(H);y[F]=(Number.isInteger(rt),rt)}else y[F]=H}}),e&&Object.assign(y,e);let v=await f.callTool({name:d,arguments:y});await f.close();let A;if(v.content&&v.content.length>0){let x=v.content[0];if(x.type==="text")try{A=JSON.parse(x.text)}catch{A=x.text}else x.type,A=x}else A=v;let{values:w,output:L}=await Z(t.warp,A,t.action,t.resolvedInputs,p,this.config);return this.buildCollectResult(t,n,"success",w,L,v)}catch(g){C.error("WarpExecutor: Error executing MCP",g);let f=O(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:n,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:g},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:f}}}buildCollectResult(t,e,n,i,a,s){let p=ct(this.config,this.adapters,t.warp,t.action,a,n),l=O(t.resolvedInputs);return{status:n,warp:t.warp,action:t.action,user:e||P(this.config,t.chain.name),txHash:null,tx:null,next:p,values:i,output:s?{...a,_DATA:s}:a,messages: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},g=J(s.when,h);try{if(!Q(g)){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),C.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 g=h.replace(/\{\{([^}]+)\}\}/g,(f,y)=>{let v=o[y.trim()];return v!=null?String(v):h});c[d]=vr(g)}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 T(this.config,p,this.adapters),o=await l.apply(t,a),c=E(o,n),d=[];if(e.inputs&&e.inputs.length>0){let x=this.factory.getStringTypedInputs(e,i),$=await this.factory.getResolvedInputs(s.name,e,x,l,a.queries);d=await this.factory.getModifiedInputs($)}else{let{action:x}=N(o),$=this.factory.getStringTypedInputs(x,i),F=await this.factory.getResolvedInputs(s.name,x,$,l,a.queries);d=await this.factory.getModifiedInputs(F)}let h=ie(c.prompt,this.config.platform),g=l.applyInputs(h,d,this.factory.getSerializer()),f=O(d),y=P(this.config,s.name),v=this.factory.getSerializer(),{values:A,output:w}=await ne(o,g,n,d,v,this.config);if(this.handlers?.onPromptGenerate){let x=await this.handlers.onPromptGenerate(g,c.expect);x&&(w.MESSAGE=x)}let L=d.find(x=>x.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,w),values:A,output:w,messages:Tt(o,{...A.mapped,...w},this.config),destination:L,resolvedInputs:f}}catch(s){return C.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 T(this.config,l,this.adapters),c;if(a)c=a;else{let f=await this.factory.getResolvedInputs(p.name,e,this.factory.getStringTypedInputs(e,n),o,i.queries);c=await this.factory.getModifiedInputs(f)}let d=o.buildInputBag(c,this.factory.getSerializer()),h={...i.envs??{},...d},g=J(e.when,h);return Q(g)}},Wr=(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}},vr=r=>{if(r==="true")return!0;if(r==="false")return!1;let t=Number(r);return!isNaN(t)&&r.trim()!==""?t:r};var xt=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 C.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):B(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 f=null;if(a==="hash")f=await this.resolver.getByHash(s,e);else if(a==="alias"){let y=`${i.chain}:${s}`;f=await this.resolver.getByAlias(y,e)||await this.resolver.getByAlias(s,e)}f&&(p=f.warp,l=f.registryInfo,o=f.brand)}else{if(!i.chain)throw new Error(`WarpLinkDetecter: chain is required for identifier ${i.identifier}`);let f=W(i.chain,this.adapters);if(a==="hash"){p=await f.builder().createFromTransactionHash(s,e);let y=await f.registry.getInfoByHash(s,e);l=y.registryInfo,o=y.brand}else if(a==="alias"){let y=await f.registry.getInfoByAlias(s,e);l=y.registryInfo,o=y.brand,y.registryInfo&&(p=await f.builder().createFromTransactionHash(y.registryInfo.hash,e))}}if(p&&p.meta&&(xr(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(f=>f.chainInfo.name.toLowerCase()===d.toLowerCase()):null,g=h?await new T(this.config,h,this.adapters).apply(p):p;return{match:!0,url:t,warp:g,chain:d,registryInfo:l,brand:o}}catch(a){return C.error("Error detecting warp link",a),n}}},xr=(r,t,e,n)=>{r.meta&&(r.meta.identifier=e?.alias?Pt(null,"alias",e.alias):Pt(t,"hash",e?.hash??n))};var ye=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){return new vt(this.config,this.chains,t)}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 f=await fetch(t);if(!f.ok)throw new Error("WarpClient: executeWarp - invalid url");p=await f.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 f=>{await l.evaluateOutput(p,f)},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=B(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(!P(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 G(this.config,this.chains)}get index(){return new xt(this.config)}get linkBuilder(){return new q(this.config,this.chains)}createBuilder(t){return t?W(t,this.chains).builder():new gt(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 We=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 ps(r,t){let e=r.match??{};for(let[n,i]of Object.entries(e))if(ve(t,n)!==i)return!1;return!0}function ls(r,t){let e={};for(let[n,i]of Object.entries(r.inputs??{}))e[n]=i.includes(".")?ve(t,i):i;return e}function ve(r,t){return t.split(".").reduce((e,n)=>e?.[n],r)}export{It as BrowserCryptoProvider,Vr as CLOUD_WALLET_PROVIDERS,he as CacheTtl,Or as EvmWalletChainNames,Lr as MultiversxWalletChainNames,St as NodeCryptoProvider,ln as WARP_LANGUAGES,b as WarpAssets,ce as WarpBrandBuilder,gt as WarpBuilder,yt as WarpCache,Wt as WarpCacheKey,Be as WarpChainDisplayNames,Oe as WarpChainLogos,$e as WarpChainName,nt as WarpChainResolver,ye as WarpClient,it as WarpCompositeResolver,U as WarpConfig,u as WarpConstants,vt as WarpExecutor,G as WarpFactory,xt as WarpIndex,m as WarpInputTypes,T as WarpInterpolator,q as WarpLinkBuilder,At as WarpLinkDetecter,C as WarpLogger,kt as WarpPlatformName,Mt as WarpPlatforms,M as WarpProtocolVersions,I as WarpSerializer,We as WarpTypeRegistry,dt as WarpValidator,Pi as address,Tt as applyOutputToMessages,le as asset,Si as biguint,bi as bool,Ye as buildGeneratedFallbackWarpIdentifier,ri as buildGeneratedSourceWarpIdentifier,ut as buildInputsContext,z as buildMappedOutput,ke as buildNestedPayload,Kr as bytesToBase64,Le as bytesToHex,ui as checkWarpAssetBalance,K as cleanWarpIdentifier,Bt as createAuthHeaders,$t as createAuthMessage,Zr as createCryptoProvider,pi as createDefaultWalletProvider,Zn as createHttpAuthHeaders,Qe as createSignableMessage,un as createWarpI18nText,Pt as createWarpIdentifier,on as doesWarpRequireWallet,re as evaluateOutputCommon,Q as evaluateWhenCondition,Z as extractCollectOutput,X as extractIdentifierInfoFromUrl,ne as extractPromptOutput,Xt as extractQueryStringFromIdentifier,Kt as extractQueryStringFromUrl,O as extractResolvedInputValues,en as extractWarpSecrets,W as findWarpAdapterForChain,kr as getChainDisplayName,Mr as getChainLogo,zt as getCryptoProvider,Ke as getGeneratedSourceWarpName,st as getLatestProtocolIdentifier,oe as getMppFetch,lt as getNextInfo,ct as getNextInfoForStatus,Jn as getProviderConfig,_t as getRandomBytes,Gt as getRandomHex,tr as getRequiredAssetIds,Ir as getWalletFromConfigOrFail,E as getWarpActionByIndex,zr as getWarpBrandLogoUrl,_r as getWarpChainAssetLogoUrl,Gr as getWarpChainInfoLogoUrl,yn as getWarpIdentifierWithQuery,B as getWarpInfoFromIdentifier,N as getWarpInputAction,Se as getWarpWalletAddress,P as getWarpWalletAddressFromConfig,Ee as getWarpWalletExternalId,Te as getWarpWalletExternalIdFromConfig,Pr as getWarpWalletExternalIdFromConfigOrFail,Pe as getWarpWalletMnemonic,br as getWarpWalletMnemonicFromConfig,be as getWarpWalletPrivateKey,Sr as getWarpWalletPrivateKeyFromConfig,xn as hasInputPrefix,Ei as hex,si as initializeWalletCache,hn as isEqualWarpIdentifier,ii as isGeneratedSourcePrivateIdentifier,Je as isPlatformValue,bt as isWarpActionAutoExecute,cn as isWarpI18nText,Er as isWarpWalletReadOnly,ps as matchesTrigger,te as mergeNestedPayload,Nr as normalizeAndValidateMnemonic,Re as normalizeMnemonic,Ti as option,Ge as parseOutputOutIndex,ti as parseSignedMessage,Zt as parseWarpQueryStringToObject,mn as removeWarpChainPrefix,Rr as removeWarpWalletFromConfig,j as replacePlaceholders,J as replacePlaceholdersInWhenExpression,ls as resolveInputs,Ln as resolveNextString,Nt as resolveNextStrings,ve as resolvePath,ie as resolvePlatformValue,pt as resolveWarpText,qt as safeWindow,Qr as setCryptoProvider,Tr as setWarpWalletInConfig,ot as shiftBigintBy,Et as splitInput,ni as stampGeneratedWarpMeta,xi as string,Ni as struct,Xr as testCryptoAvailability,Me as toInputPayloadValue,Jt as toPreviewText,Ri as tuple,Ci as uint16,wi as uint32,Ii as uint64,Ai as uint8,Ne as validateMnemonicLength,Yn as validateSignedMessage,$i as vector,Dr as withAdapterFallback};
|