@vleap/warps 3.0.0-beta.165 → 3.0.0-beta.167
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 +12 -3
- package/dist/index.d.ts +12 -3
- package/dist/index.js +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -377,6 +377,7 @@ type WarpTransferAction = {
|
|
|
377
377
|
primary?: boolean;
|
|
378
378
|
auto?: boolean;
|
|
379
379
|
next?: string;
|
|
380
|
+
when?: string;
|
|
380
381
|
};
|
|
381
382
|
type WarpContractAction = {
|
|
382
383
|
type: WarpActionType;
|
|
@@ -393,6 +394,7 @@ type WarpContractAction = {
|
|
|
393
394
|
primary?: boolean;
|
|
394
395
|
auto?: boolean;
|
|
395
396
|
next?: string;
|
|
397
|
+
when?: string;
|
|
396
398
|
};
|
|
397
399
|
type WarpQueryAction = {
|
|
398
400
|
type: WarpActionType;
|
|
@@ -406,6 +408,7 @@ type WarpQueryAction = {
|
|
|
406
408
|
primary?: boolean;
|
|
407
409
|
auto?: boolean;
|
|
408
410
|
next?: string;
|
|
411
|
+
when?: string;
|
|
409
412
|
};
|
|
410
413
|
type WarpCollectAction = {
|
|
411
414
|
type: WarpActionType;
|
|
@@ -416,6 +419,7 @@ type WarpCollectAction = {
|
|
|
416
419
|
primary?: boolean;
|
|
417
420
|
auto?: boolean;
|
|
418
421
|
next?: string;
|
|
422
|
+
when?: string;
|
|
419
423
|
};
|
|
420
424
|
type WarpCollectDestination = WarpCollectDestinationHttp | string;
|
|
421
425
|
type WarpCollectDestinationHttp = {
|
|
@@ -431,6 +435,7 @@ type WarpLinkAction = {
|
|
|
431
435
|
inputs?: WarpActionInput[];
|
|
432
436
|
primary?: boolean;
|
|
433
437
|
auto?: boolean;
|
|
438
|
+
when?: string;
|
|
434
439
|
};
|
|
435
440
|
type WarpActionInputSource = 'field' | 'query' | 'user:wallet' | 'hidden';
|
|
436
441
|
type BaseWarpActionInputType = 'string' | 'uint8' | 'uint16' | 'uint32' | 'uint64' | 'uint128' | 'uint256' | 'biguint' | 'bool' | 'address' | 'hex' | string;
|
|
@@ -537,7 +542,8 @@ declare enum WarpChainName {
|
|
|
537
542
|
Base = "base",
|
|
538
543
|
Arbitrum = "arbitrum",
|
|
539
544
|
Somnia = "somnia",
|
|
540
|
-
Fastset = "fastset"
|
|
545
|
+
Fastset = "fastset",
|
|
546
|
+
Solana = "solana"
|
|
541
547
|
}
|
|
542
548
|
declare const WarpConstants: {
|
|
543
549
|
HttpProtocolPrefix: string;
|
|
@@ -648,6 +654,8 @@ declare const isWarpActionAutoExecute: (action: WarpAction, warp: Warp) => boole
|
|
|
648
654
|
declare const shiftBigintBy: (value: bigint | string | number, decimals: number) => bigint;
|
|
649
655
|
declare const toPreviewText: (text: string, maxChars?: number) => string;
|
|
650
656
|
declare const replacePlaceholders: (message: string, bag: Record<string, any>) => string;
|
|
657
|
+
declare const replacePlaceholdersInWhenExpression: (expression: string, bag: Record<string, any>) => string;
|
|
658
|
+
declare const evaluateWhenCondition: (expression: string) => boolean;
|
|
651
659
|
|
|
652
660
|
declare const WARP_LANGUAGES: {
|
|
653
661
|
readonly de: "German";
|
|
@@ -970,6 +978,7 @@ declare class WarpExecutor {
|
|
|
970
978
|
private getDestinationFromResolvedInputs;
|
|
971
979
|
private buildCollectResult;
|
|
972
980
|
private callHandler;
|
|
981
|
+
private evaluateWhenCondition;
|
|
973
982
|
}
|
|
974
983
|
|
|
975
984
|
declare class WarpInterpolator {
|
|
@@ -991,7 +1000,7 @@ declare class WarpInterpolator {
|
|
|
991
1000
|
applyInputs(text: string, resolvedInputs: ResolvedInput[], serializer: WarpSerializer, primaryInputs?: ResolvedInput[]): string;
|
|
992
1001
|
private applyGlobalsToText;
|
|
993
1002
|
private replacePlaceholdersWithChain;
|
|
994
|
-
|
|
1003
|
+
buildInputBag(resolvedInputs: ResolvedInput[], serializer: WarpSerializer, primaryInputs?: ResolvedInput[]): Record<string, string>;
|
|
995
1004
|
}
|
|
996
1005
|
|
|
997
1006
|
declare class WarpFactory {
|
|
@@ -1165,4 +1174,4 @@ declare class WarpValidator {
|
|
|
1165
1174
|
private validateSchema;
|
|
1166
1175
|
}
|
|
1167
1176
|
|
|
1168
|
-
export { type Adapter, type AdapterFactory, 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, CacheTtl, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, type ExecutionHandlers, type HttpAuthHeaders, type InterpolationBag, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheConfig, WarpCacheKey, type WarpChain, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetValue, type WarpChainEnv, type WarpChainInfo, WarpChainName, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, 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 WarpMessageName, type WarpMeta, type WarpNativeValue, type WarpOutputName, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResulutionPath, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStructValue, type WarpText, type WarpTransferAction, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, address, applyOutputToMessages, asset, biguint, bool, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, evaluateOutputCommon, extractCollectOutput, extractIdentifierInfoFromUrl, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getCryptoProvider, getEventNameFromWarp, getLatestProtocolIdentifier, getNextInfo, getProviderConfig, getRandomBytes, getRandomHex, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, hasInputPrefix, hex, isEqualWarpIdentifier, isWarpActionAutoExecute, isWarpI18nText, mergeNestedPayload, option, parseOutputOutIndex, parseSignedMessage, replacePlaceholders, resolveWarpText, safeWindow, setCryptoProvider, shiftBigintBy, splitInput, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateSignedMessage, vector };
|
|
1177
|
+
export { type Adapter, type AdapterFactory, 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, CacheTtl, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, type ExecutionHandlers, type HttpAuthHeaders, type InterpolationBag, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheConfig, WarpCacheKey, type WarpChain, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetValue, type WarpChainEnv, type WarpChainInfo, WarpChainName, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, 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 WarpMessageName, type WarpMeta, type WarpNativeValue, type WarpOutputName, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResulutionPath, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStructValue, type WarpText, type WarpTransferAction, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, address, applyOutputToMessages, asset, biguint, bool, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, evaluateOutputCommon, evaluateWhenCondition, extractCollectOutput, extractIdentifierInfoFromUrl, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getCryptoProvider, getEventNameFromWarp, getLatestProtocolIdentifier, getNextInfo, getProviderConfig, getRandomBytes, getRandomHex, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, hasInputPrefix, hex, isEqualWarpIdentifier, isWarpActionAutoExecute, isWarpI18nText, mergeNestedPayload, option, parseOutputOutIndex, parseSignedMessage, replacePlaceholders, replacePlaceholdersInWhenExpression, resolveWarpText, safeWindow, setCryptoProvider, shiftBigintBy, splitInput, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateSignedMessage, vector };
|
package/dist/index.d.ts
CHANGED
|
@@ -377,6 +377,7 @@ type WarpTransferAction = {
|
|
|
377
377
|
primary?: boolean;
|
|
378
378
|
auto?: boolean;
|
|
379
379
|
next?: string;
|
|
380
|
+
when?: string;
|
|
380
381
|
};
|
|
381
382
|
type WarpContractAction = {
|
|
382
383
|
type: WarpActionType;
|
|
@@ -393,6 +394,7 @@ type WarpContractAction = {
|
|
|
393
394
|
primary?: boolean;
|
|
394
395
|
auto?: boolean;
|
|
395
396
|
next?: string;
|
|
397
|
+
when?: string;
|
|
396
398
|
};
|
|
397
399
|
type WarpQueryAction = {
|
|
398
400
|
type: WarpActionType;
|
|
@@ -406,6 +408,7 @@ type WarpQueryAction = {
|
|
|
406
408
|
primary?: boolean;
|
|
407
409
|
auto?: boolean;
|
|
408
410
|
next?: string;
|
|
411
|
+
when?: string;
|
|
409
412
|
};
|
|
410
413
|
type WarpCollectAction = {
|
|
411
414
|
type: WarpActionType;
|
|
@@ -416,6 +419,7 @@ type WarpCollectAction = {
|
|
|
416
419
|
primary?: boolean;
|
|
417
420
|
auto?: boolean;
|
|
418
421
|
next?: string;
|
|
422
|
+
when?: string;
|
|
419
423
|
};
|
|
420
424
|
type WarpCollectDestination = WarpCollectDestinationHttp | string;
|
|
421
425
|
type WarpCollectDestinationHttp = {
|
|
@@ -431,6 +435,7 @@ type WarpLinkAction = {
|
|
|
431
435
|
inputs?: WarpActionInput[];
|
|
432
436
|
primary?: boolean;
|
|
433
437
|
auto?: boolean;
|
|
438
|
+
when?: string;
|
|
434
439
|
};
|
|
435
440
|
type WarpActionInputSource = 'field' | 'query' | 'user:wallet' | 'hidden';
|
|
436
441
|
type BaseWarpActionInputType = 'string' | 'uint8' | 'uint16' | 'uint32' | 'uint64' | 'uint128' | 'uint256' | 'biguint' | 'bool' | 'address' | 'hex' | string;
|
|
@@ -537,7 +542,8 @@ declare enum WarpChainName {
|
|
|
537
542
|
Base = "base",
|
|
538
543
|
Arbitrum = "arbitrum",
|
|
539
544
|
Somnia = "somnia",
|
|
540
|
-
Fastset = "fastset"
|
|
545
|
+
Fastset = "fastset",
|
|
546
|
+
Solana = "solana"
|
|
541
547
|
}
|
|
542
548
|
declare const WarpConstants: {
|
|
543
549
|
HttpProtocolPrefix: string;
|
|
@@ -648,6 +654,8 @@ declare const isWarpActionAutoExecute: (action: WarpAction, warp: Warp) => boole
|
|
|
648
654
|
declare const shiftBigintBy: (value: bigint | string | number, decimals: number) => bigint;
|
|
649
655
|
declare const toPreviewText: (text: string, maxChars?: number) => string;
|
|
650
656
|
declare const replacePlaceholders: (message: string, bag: Record<string, any>) => string;
|
|
657
|
+
declare const replacePlaceholdersInWhenExpression: (expression: string, bag: Record<string, any>) => string;
|
|
658
|
+
declare const evaluateWhenCondition: (expression: string) => boolean;
|
|
651
659
|
|
|
652
660
|
declare const WARP_LANGUAGES: {
|
|
653
661
|
readonly de: "German";
|
|
@@ -970,6 +978,7 @@ declare class WarpExecutor {
|
|
|
970
978
|
private getDestinationFromResolvedInputs;
|
|
971
979
|
private buildCollectResult;
|
|
972
980
|
private callHandler;
|
|
981
|
+
private evaluateWhenCondition;
|
|
973
982
|
}
|
|
974
983
|
|
|
975
984
|
declare class WarpInterpolator {
|
|
@@ -991,7 +1000,7 @@ declare class WarpInterpolator {
|
|
|
991
1000
|
applyInputs(text: string, resolvedInputs: ResolvedInput[], serializer: WarpSerializer, primaryInputs?: ResolvedInput[]): string;
|
|
992
1001
|
private applyGlobalsToText;
|
|
993
1002
|
private replacePlaceholdersWithChain;
|
|
994
|
-
|
|
1003
|
+
buildInputBag(resolvedInputs: ResolvedInput[], serializer: WarpSerializer, primaryInputs?: ResolvedInput[]): Record<string, string>;
|
|
995
1004
|
}
|
|
996
1005
|
|
|
997
1006
|
declare class WarpFactory {
|
|
@@ -1165,4 +1174,4 @@ declare class WarpValidator {
|
|
|
1165
1174
|
private validateSchema;
|
|
1166
1175
|
}
|
|
1167
1176
|
|
|
1168
|
-
export { type Adapter, type AdapterFactory, 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, CacheTtl, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, type ExecutionHandlers, type HttpAuthHeaders, type InterpolationBag, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheConfig, WarpCacheKey, type WarpChain, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetValue, type WarpChainEnv, type WarpChainInfo, WarpChainName, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, 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 WarpMessageName, type WarpMeta, type WarpNativeValue, type WarpOutputName, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResulutionPath, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStructValue, type WarpText, type WarpTransferAction, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, address, applyOutputToMessages, asset, biguint, bool, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, evaluateOutputCommon, extractCollectOutput, extractIdentifierInfoFromUrl, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getCryptoProvider, getEventNameFromWarp, getLatestProtocolIdentifier, getNextInfo, getProviderConfig, getRandomBytes, getRandomHex, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, hasInputPrefix, hex, isEqualWarpIdentifier, isWarpActionAutoExecute, isWarpI18nText, mergeNestedPayload, option, parseOutputOutIndex, parseSignedMessage, replacePlaceholders, resolveWarpText, safeWindow, setCryptoProvider, shiftBigintBy, splitInput, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateSignedMessage, vector };
|
|
1177
|
+
export { type Adapter, type AdapterFactory, 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, CacheTtl, type ClientIndexConfig, type ClientTransformConfig, type CodecFunc, type CombinedWarpBuilder, type CryptoProvider, type DetectionResult, type DetectionResultFromHtml, type ExecutionHandlers, type HttpAuthHeaders, type InterpolationBag, NodeCryptoProvider, type ProtocolName, type ResolvedInput, type SignableMessage, type TransformRunner, WARP_LANGUAGES, type Warp, type WarpAbi, type WarpAbiContents, type WarpAction, type WarpActionExecutionResult, type WarpActionExecutionStatus, type WarpActionIndex, type WarpActionInput, type WarpActionInputModifier, type WarpActionInputPosition, type WarpActionInputPositionAssetObject, type WarpActionInputSource, type WarpActionInputType, type WarpActionType, type WarpAdapterGenericRemoteTransaction, type WarpAdapterGenericTransaction, type WarpAdapterGenericType, type WarpAdapterGenericValue, type WarpAlert, type WarpAlertName, type WarpAlerts, type WarpBrand, WarpBrandBuilder, type WarpBrandColors, type WarpBrandCta, type WarpBrandLogo, type WarpBrandLogoThemed, type WarpBrandUrls, WarpBuilder, WarpCache, type WarpCacheConfig, WarpCacheKey, type WarpChain, type WarpChainAccount, type WarpChainAction, type WarpChainActionStatus, type WarpChainAsset, type WarpChainAssetValue, type WarpChainEnv, type WarpChainInfo, WarpChainName, WarpClient, type WarpClientConfig, type WarpCollectAction, type WarpCollectDestination, type WarpCollectDestinationHttp, 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 WarpMessageName, type WarpMeta, type WarpNativeValue, type WarpOutputName, WarpProtocolVersions, type WarpProviderConfig, type WarpProviderPreferences, type WarpQueryAction, type WarpRegistryConfigInfo, type WarpRegistryInfo, type WarpResulutionPath, type WarpSearchHit, type WarpSearchResult, type WarpSecret, WarpSerializer, type WarpStructValue, type WarpText, type WarpTransferAction, type WarpTrustStatus, type WarpTypeHandler, WarpTypeRegistry, type WarpUserWallets, WarpValidator, type WarpVarPlaceholder, type WarpWalletDetails, address, applyOutputToMessages, asset, biguint, bool, buildMappedOutput, buildNestedPayload, bytesToBase64, bytesToHex, cleanWarpIdentifier, createAuthHeaders, createAuthMessage, createCryptoProvider, createHttpAuthHeaders, createSignableMessage, createWarpI18nText, createWarpIdentifier, evaluateOutputCommon, evaluateWhenCondition, extractCollectOutput, extractIdentifierInfoFromUrl, extractQueryStringFromIdentifier, extractQueryStringFromUrl, extractResolvedInputValues, extractWarpSecrets, findWarpAdapterForChain, getCryptoProvider, getEventNameFromWarp, getLatestProtocolIdentifier, getNextInfo, getProviderConfig, getRandomBytes, getRandomHex, getWarpActionByIndex, getWarpBrandLogoUrl, getWarpInfoFromIdentifier, getWarpPrimaryAction, getWarpWalletAddress, getWarpWalletAddressFromConfig, getWarpWalletMnemonic, getWarpWalletMnemonicFromConfig, getWarpWalletPrivateKey, getWarpWalletPrivateKeyFromConfig, hasInputPrefix, hex, isEqualWarpIdentifier, isWarpActionAutoExecute, isWarpI18nText, mergeNestedPayload, option, parseOutputOutIndex, parseSignedMessage, replacePlaceholders, replacePlaceholdersInWhenExpression, resolveWarpText, safeWindow, setCryptoProvider, shiftBigintBy, splitInput, string, struct, testCryptoAvailability, toInputPayloadValue, toPreviewText, tuple, uint16, uint32, uint64, uint8, validateSignedMessage, vector };
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";var ir=Object.create;var tt=Object.defineProperty;var ar=Object.getOwnPropertyDescriptor;var sr=Object.getOwnPropertyNames;var or=Object.getPrototypeOf,pr=Object.prototype.hasOwnProperty;var cr=(n,t)=>{for(var r in t)tt(n,r,{get:t[r],enumerable:!0})},Bt=(n,t,r,e)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of sr(t))!pr.call(n,i)&&i!==r&&tt(n,i,{get:()=>t[i],enumerable:!(e=ar(t,i))||e.enumerable});return n};var rt=(n,t,r)=>(r=n!=null?ir(or(n)):{},Bt(t||!n||!n.__esModule?tt(r,"default",{value:n,enumerable:!0}):r,n)),lr=n=>Bt(tt({},"__esModule",{value:!0}),n);var Xr={};cr(Xr,{BrowserCryptoProvider:()=>et,CacheTtl:()=>bt,NodeCryptoProvider:()=>nt,WARP_LANGUAGES:()=>yr,WarpBrandBuilder:()=>wt,WarpBuilder:()=>St,WarpCache:()=>_,WarpCacheKey:()=>lt,WarpChainName:()=>$t,WarpClient:()=>Tt,WarpConfig:()=>R,WarpConstants:()=>p,WarpExecutor:()=>X,WarpFactory:()=>j,WarpIndex:()=>Z,WarpInputTypes:()=>f,WarpInterpolator:()=>P,WarpLinkBuilder:()=>F,WarpLinkDetecter:()=>Y,WarpLogger:()=>C,WarpProtocolVersions:()=>O,WarpSerializer:()=>x,WarpTypeRegistry:()=>Pt,WarpValidator:()=>J,address:()=>kr,applyOutputToMessages:()=>vt,asset:()=>It,biguint:()=>jr,bool:()=>Dr,buildMappedOutput:()=>G,buildNestedPayload:()=>Ut,bytesToBase64:()=>gr,bytesToHex:()=>Vt,cleanWarpIdentifier:()=>M,createAuthHeaders:()=>ct,createAuthMessage:()=>pt,createCryptoProvider:()=>mr,createHttpAuthHeaders:()=>Rr,createSignableMessage:()=>jt,createWarpI18nText:()=>Ar,createWarpIdentifier:()=>at,evaluateOutputCommon:()=>Ht,extractCollectOutput:()=>ot,extractIdentifierInfoFromUrl:()=>D,extractQueryStringFromIdentifier:()=>yt,extractQueryStringFromUrl:()=>Wt,extractResolvedInputValues:()=>H,extractWarpSecrets:()=>Wr,findWarpAdapterForChain:()=>m,getCryptoProvider:()=>ft,getEventNameFromWarp:()=>ur,getLatestProtocolIdentifier:()=>k,getNextInfo:()=>xt,getProviderConfig:()=>Tr,getRandomBytes:()=>gt,getRandomHex:()=>ht,getWarpActionByIndex:()=>S,getWarpBrandLogoUrl:()=>dr,getWarpInfoFromIdentifier:()=>b,getWarpPrimaryAction:()=>B,getWarpWalletAddress:()=>Dt,getWarpWalletAddressFromConfig:()=>w,getWarpWalletMnemonic:()=>qt,getWarpWalletMnemonicFromConfig:()=>Nr,getWarpWalletPrivateKey:()=>kt,getWarpWalletPrivateKeyFromConfig:()=>Vr,hasInputPrefix:()=>wr,hex:()=>qr,isEqualWarpIdentifier:()=>xr,isWarpActionAutoExecute:()=>it,isWarpI18nText:()=>vr,mergeNestedPayload:()=>Ct,option:()=>zr,parseOutputOutIndex:()=>Lt,parseSignedMessage:()=>$r,replacePlaceholders:()=>$,resolveWarpText:()=>z,safeWindow:()=>dt,setCryptoProvider:()=>fr,shiftBigintBy:()=>q,splitInput:()=>st,string:()=>Or,struct:()=>Gr,testCryptoAvailability:()=>hr,toInputPayloadValue:()=>Ft,toPreviewText:()=>mt,tuple:()=>Mr,uint16:()=>Fr,uint32:()=>Hr,uint64:()=>Lr,uint8:()=>Ur,validateSignedMessage:()=>Br,vector:()=>Jr});module.exports=lr(Xr);var $t=(c=>(c.Multiversx="multiversx",c.Vibechain="vibechain",c.Sui="sui",c.Ethereum="ethereum",c.Base="base",c.Arbitrum="arbitrum",c.Somnia="somnia",c.Fastset="fastset",c))($t||{}),p={HttpProtocolPrefix:"http",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:n=>n.config.user?.wallets?.[n.adapter.chainInfo.name]},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:n=>{if(!n.adapter.wallet)return null;try{return n.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:n=>n.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:n=>n.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},f={Option:"option",Vector:"vector",Tuple:"tuple",Struct:"struct",String:"string",Uint8:"uint8",Uint16:"uint16",Uint32:"uint32",Uint64:"uint64",Uint128:"uint128",Uint256:"uint256",Biguint:"biguint",Bool:"bool",Address:"address",Asset:"asset",Hex:"hex"},dt=typeof window<"u"?window:{open:()=>{}};var O={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},R={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/v${O.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/brand/v${O.Brand}.schema.json`,DefaultClientUrl:n=>n==="devnet"?"https://devnet.usewarp.to":n==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",p.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","uint8","uint16","uint32","uint64","biguint","boolean","address"],AvailableActionInputPositions:["receiver","value","transfer","arg:1","arg:2","arg:3","arg:4","arg:5","arg:6","arg:7","arg:8","arg:9","arg:10","data","ignore"]};var ur=(n,t)=>{let r=n.alerts?.[t];if(!r)return null;let e=p.Alerts.TriggerEventPrefix+p.ArgParamsSeparator;if(!r.trigger.startsWith(e))return null;let i=r.trigger.replace(e,"");return i||null};var dr=(n,t)=>typeof n.logo=="string"?n.logo:n.logo[t?.scheme??"light"];var et=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let r=new Uint8Array(t);return window.crypto.getRandomValues(r),r}},nt=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let r=await import("crypto");return new Uint8Array(r.randomBytes(t))}catch(r){throw new Error(`Node.js crypto not available: ${r instanceof Error?r.message:"Unknown error"}`)}}},U=null;function ft(){if(U)return U;if(typeof window<"u"&&window.crypto)return U=new et,U;if(typeof process<"u"&&process.versions?.node)return U=new nt,U;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function fr(n){U=n}async function gt(n,t){if(n<=0||!Number.isInteger(n))throw new Error("Size must be a positive integer");return(t||ft()).getRandomBytes(n)}function Vt(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(n.length*2);for(let r=0;r<n.length;r++){let e=n[r];t[r*2]=(e>>>4).toString(16),t[r*2+1]=(e&15).toString(16)}return t.join("")}function gr(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(n).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(n));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function ht(n,t){if(n<=0||n%2!==0)throw new Error("Length must be a positive even number");let r=await gt(n/2,t);return Vt(r)}async function hr(){let n={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?n.environment="browser":typeof process<"u"&&process.versions?.node&&(n.environment="nodejs"),await gt(16),n.randomBytes=!0}catch{}return n}function mr(){return ft()}var Wr=n=>Object.values(n.vars||{}).filter(t=>t.startsWith(`${p.Vars.Env}:`)).map(t=>{let r=t.replace(`${p.Vars.Env}:`,"").trim(),[e,i]=r.split(p.ArgCompositeSeparator);return{key:e,description:i||null}});var m=(n,t)=>{let r=t.find(e=>e.chainInfo.name.toLowerCase()===n.toLowerCase());if(!r)throw new Error(`Adapter not found for chain: ${n}`);return r},k=n=>{if(n==="warp")return`warp:${O.Warp}`;if(n==="brand")return`brand:${O.Brand}`;if(n==="abi")return`abi:${O.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${n}`)},S=(n,t)=>n?.actions[t-1],B=n=>{if(n.actions.length===0)throw new Error(`Warp has no primary action: ${n.meta?.identifier}`);let t=n.actions.find(s=>s.primary===!0);if(t)return{action:t,index:n.actions.indexOf(t)};let r=["transfer","contract","query","collect"],e=n.actions.find(s=>r.includes(s.type));return e?{action:e,index:n.actions.indexOf(e)}:{action:n.actions[0],index:0}},it=(n,t)=>{if(n.auto===!1)return!1;if(n.type==="link"){if(n.auto===!0)return!0;let{action:r}=B(t);return n===r}return!0},q=(n,t)=>{let r=n.toString(),[e,i=""]=r.split("."),s=Math.abs(t);if(t>0)return BigInt(e+i.padEnd(s,"0"));if(t<0){let a=e+i;if(s>=a.length)return 0n;let o=a.slice(0,-s)||"0";return BigInt(o)}else return r.includes(".")?BigInt(r.split(".")[0]):BigInt(r)},mt=(n,t=100)=>{if(!n)return"";let r=n.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return r=r.startsWith("- ")?r.slice(2):r,r=r.length>t?r.substring(0,r.lastIndexOf(" ",t))+"...":r,r},$=(n,t)=>n.replace(/\{\{([^}]+)\}\}/g,(r,e)=>t[e]||"");var yr={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"},z=(n,t)=>{let r=t?.preferences?.locale||"en";if(typeof n=="string")return n;if(typeof n=="object"&&n!==null){if(r in n)return n[r];if("en"in n)return n.en;let e=Object.keys(n);if(e.length>0)return n[e[0]]}return""},vr=n=>typeof n=="object"&&n!==null&&Object.keys(n).length>0,Ar=n=>n;var M=n=>n.startsWith(p.IdentifierAliasMarker)?n.replace(p.IdentifierAliasMarker,""):n,xr=(n,t)=>!n||!t?!1:M(n)===M(t),at=(n,t,r)=>{let e=M(r);return t===p.IdentifierType.Alias?p.IdentifierAliasMarker+n+p.IdentifierParamSeparator+e:n+p.IdentifierParamSeparator+t+p.IdentifierParamSeparator+e},b=n=>{let t=decodeURIComponent(n).trim(),r=M(t),e=r.split("?")[0],i=Nt(e);if(e.length===64&&/^[a-fA-F0-9]+$/.test(e))return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Hash,identifier:r,identifierBase:e};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[s,a,o]=i;if(a===p.IdentifierType.Alias||a===p.IdentifierType.Hash){let c=r.includes("?")?o+r.substring(r.indexOf("?")):o;return{chain:s,type:a,identifier:c,identifierBase:o}}}if(i.length===2){let[s,a]=i;if(s===p.IdentifierType.Alias||s===p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a;return{chain:p.IdentifierChainDefault,type:s,identifier:o,identifierBase:a}}}if(i.length===2){let[s,a]=i;if(s!==p.IdentifierType.Alias&&s!==p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a,c=Cr(a,s)?p.IdentifierType.Hash:p.IdentifierType.Alias;return{chain:s,type:c,identifier:o,identifierBase:a}}}return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Alias,identifier:r,identifierBase:e}},D=n=>{let t=new URL(n),e=t.searchParams.get(p.IdentifierParamName);if(e||(e=t.pathname.split("/")[1]),!e)return null;let i=decodeURIComponent(e);return b(i)},Cr=(n,t)=>/^[a-fA-F0-9]+$/.test(n)&&n.length>32,Ir=n=>{let t=p.IdentifierParamSeparator,r=n.indexOf(t);return r!==-1?{separator:t,index:r}:null},Nt=n=>{let t=Ir(n);if(!t)return[n];let{separator:r,index:e}=t,i=n.substring(0,e),s=n.substring(e+r.length),a=Nt(s);return[i,...a]},Wt=n=>{try{let t=new URL(n),r=new URLSearchParams(t.search);return r.delete(p.IdentifierParamName),r.toString()||null}catch{return null}},yt=n=>{let t=n.indexOf("?");if(t===-1||t===n.length-1)return null;let r=n.substring(t+1);return r.length>0?r:null};var st=n=>{let[t,...r]=n.split(/:(.*)/,2);return[t,r[0]||""]},wr=n=>{let t=new Set(Object.values(f));if(!n.includes(p.ArgParamsSeparator))return!1;let r=st(n)[0];return t.has(r)};var vt=(n,t,r)=>{let e=Object.entries(n.messages||{}).map(([i,s])=>{let a=z(s,r);return[i,$(a,t)]});return Object.fromEntries(e)};var Ot=rt(require("qr-code-styling"),1);var F=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}build(t,r,e){let i=this.config.clientUrl||R.DefaultClientUrl(this.config.env),s=m(t,this.adapters),a=r===p.IdentifierType.Alias?e:r+p.IdentifierParamSeparator+e,o=s.chainInfo.name+p.IdentifierParamSeparator+a,c=encodeURIComponent(o);return R.SuperClientUrls.includes(i)?`${i}/${c}`:`${i}?${p.IdentifierParamName}=${c}`}buildFromPrefixedIdentifier(t){let r=b(t);if(!r)return null;let e=m(r.chain,this.adapters);return e?this.build(e.chainInfo.name,r.type,r.identifierBase):null}generateQrCode(t,r,e,i=512,s="white",a="black",o="#23F7DD"){let c=m(t,this.adapters),l=this.build(c.chainInfo.name,r,e);return new Ot.default({type:"svg",width:i,height:i,data:String(l),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:s},dotsOptions:{type:"extra-rounded",color:a},cornersSquareOptions:{type:"extra-rounded",color:a},cornersDotOptions:{type:"square",color:a},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(o)}" 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 Sr="https://",xt=(n,t,r,e,i)=>{let s=r.actions?.[e-1]?.next||r.next||null;if(!s)return null;if(s.startsWith(Sr))return[{identifier:null,url:s}];let[a,o]=s.split("?");if(!o){let g=$(a,{...r.vars,...i});return[{identifier:g,url:At(t,g,n)}]}let c=o.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(c.length===0){let g=$(o,{...r.vars,...i}),W=g?`${a}?${g}`:a;return[{identifier:W,url:At(t,W,n)}]}let l=c[0];if(!l)return[];let u=l.match(/{{([^[]+)\[\]/),d=u?u[1]:null;if(!d||i[d]===void 0)return[];let h=Array.isArray(i[d])?i[d]:[i[d]];if(h.length===0)return[];let v=c.filter(g=>g.includes(`{{${d}[]`)).map(g=>{let W=g.match(/\[\](\.[^}]+)?}}/),y=W&&W[1]||"";return{placeholder:g,field:y?y.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return h.map(g=>{let W=o;for(let{regex:E,field:N}of v){let T=N?br(g,N):g;if(T==null)return null;W=W.replace(E,T)}if(W.includes("{{")||W.includes("}}"))return null;let y=W?`${a}?${W}`:a;return{identifier:y,url:At(t,y,n)}}).filter(g=>g!==null)},At=(n,t,r)=>{let[e,i]=t.split("?"),s=b(e)||{chain:p.IdentifierChainDefault,type:"alias",identifier:e,identifierBase:e},a=m(s.chain,n);if(!a)throw new Error(`Adapter not found for chain ${s.chain}`);let o=new F(r,n).build(a.chainInfo.name,s.type,s.identifierBase);if(!i)return o;let c=new URL(o);return new URLSearchParams(i).forEach((l,u)=>c.searchParams.set(u,l)),c.toString().replace(/\/\?/,"?")},br=(n,t)=>t.split(".").reduce((r,e)=>r?.[e],n);function Ut(n,t,r){return n.startsWith(p.Position.Payload)?n.slice(p.Position.Payload.length).split(".").reduceRight((e,i,s,a)=>({[i]:s===a.length-1?{[t]:r}:e}),{}):{[t]:r}}function Ct(n,t){if(!n)return{...t};if(!t)return{...n};let r={...n};return Object.keys(t).forEach(e=>{r[e]&&typeof r[e]=="object"&&typeof t[e]=="object"?r[e]=Ct(r[e],t[e]):r[e]=t[e]}),r}function Ft(n,t){if(!n.value)return null;let r=t.stringToNative(n.value)[1];if(n.input.type==="biguint")return r.toString();if(n.input.type==="asset"){let{identifier:e,amount:i}=r;return{identifier:e,amount:i.toString()}}else return r}function H(n){return n.map(t=>t.value).filter(t=>t!=null&&t!=="")}function G(n,t){let r={};return n.forEach(e=>{let i=e.input.as||e.input.name,s=Ft(e,t);if(e.input.position&&typeof e.input.position=="string"&&e.input.position.startsWith(p.Position.Payload)){let a=Ut(e.input.position,i,s);r=Ct(r,a)}else r[i]=s}),r}var Tr=(n,t,r,e)=>{let i=n.preferences?.providers?.[t];return i?.[r]?typeof i[r]=="string"?{url:i[r]}:i[r]:{url:e}};var L=class L{static debug(...t){L.isTestEnv||console.debug(...t)}static info(...t){L.isTestEnv||console.info(...t)}static warn(...t){L.isTestEnv||console.warn(...t)}static error(...t){L.isTestEnv||console.error(...t)}};L.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var C=L;var ot=async(n,t,r,e,i,s)=>{let a=[],o=[],c={};for(let[u,d]of Object.entries(n.output||{})){if(d.startsWith(p.Transform.Prefix))continue;let h=Lt(d);if(h!==null&&h!==r){c[u]=null;continue}let[v,...A]=d.split("."),g=(W,y)=>y.reduce((E,N)=>E&&E[N]!==void 0?E[N]:null,W);if(v==="out"||v.startsWith("out[")){let W=A.length===0?t?.data||t:g(t,A);a.push(String(W)),o.push(W),c[u]=W}else c[u]=d}let l=G(e,i);return{values:{string:a,native:o,mapped:l},output:await Ht(n,c,r,e,i,s)}},Ht=async(n,t,r,e,i,s)=>{if(!n.output)return t;let a={...t};return a=Pr(a,n,r,e,i),a=await Er(n,a,s.transform?.runner||null),a},Pr=(n,t,r,e,i)=>{let s={...n},a=S(t,r)?.inputs||[];for(let[o,c]of Object.entries(s))if(typeof c=="string"&&c.startsWith("in.")){let l=c.split(".")[1],u=a.findIndex(h=>h.as===l||h.name===l),d=u!==-1?e[u]?.value:null;s[o]=d?i.stringToNative(d)[1]:null}return s},Er=async(n,t,r)=>{if(!n.output)return t;let e={...t},i=Object.entries(n.output).filter(([,s])=>s.startsWith(p.Transform.Prefix)).map(([s,a])=>({key:s,code:a.substring(p.Transform.Prefix.length)}));if(i.length>0&&(!r||typeof r.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");for(let{key:s,code:a}of i)try{e[s]=await r.run(a,e)}catch(o){C.error(`Transform error for output '${s}':`,o),e[s]=null}return e},Lt=n=>{if(n==="out")return 1;let t=n.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(n.startsWith("out.")||n.startsWith("event."),null)};async function jt(n,t,r,e=5){let i=await ht(64,r),s=new Date(Date.now()+e*60*1e3).toISOString();return{message:JSON.stringify({wallet:n,nonce:i,expiresAt:s,purpose:t}),nonce:i,expiresAt:s}}async function pt(n,t,r,e){let i=e||`prove-wallet-ownership for app "${t}"`;return jt(n,i,r,5)}function ct(n,t,r,e){return{"X-Signer-Wallet":n,"X-Signer-Signature":t,"X-Signer-Nonce":r,"X-Signer-ExpiresAt":e}}async function Rr(n,t,r,e){let{message:i,nonce:s,expiresAt:a}=await pt(n,r,e),o=await t(i);return ct(n,o,s,a)}function Br(n){let t=new Date(n).getTime();return Date.now()<t}function $r(n){try{let t=JSON.parse(n);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 Dt=n=>n?typeof n=="string"?n:n.address:null,w=(n,t)=>Dt(n.user?.wallets?.[t]||null),kt=n=>n?typeof n=="string"?n:n.privateKey:null,qt=n=>n?typeof n=="string"?n:n.mnemonic:null,Vr=(n,t)=>kt(n.user?.wallets?.[t]||null)?.trim()||null,Nr=(n,t)=>qt(n.user?.wallets?.[t]||null)?.trim()||null;var x=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,r){if(t===f.Tuple&&Array.isArray(r)){if(r.length===0)return t+p.ArgParamsSeparator;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r.map(a=>this.getTypeAndValue(a)),i=e.map(([a])=>a),s=e.map(([,a])=>a);return`${t}(${i.join(p.ArgCompositeSeparator)})${p.ArgParamsSeparator}${s.join(p.ArgListSeparator)}`}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Struct&&typeof r=="object"&&r!==null&&!Array.isArray(r)){let e=r;if(!e._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=e._name,s=Object.keys(e).filter(o=>o!=="_name");if(s.length===0)return`${t}(${i})${p.ArgParamsSeparator}`;let a=s.map(o=>{let[c,l]=this.getTypeAndValue(e[o]);return`(${o}${p.ArgParamsSeparator}${c})${l}`});return`${t}(${i})${p.ArgParamsSeparator}${a.join(p.ArgListSeparator)}`}if(t===f.Vector&&Array.isArray(r)){if(r.length===0)return`${t}${p.ArgParamsSeparator}`;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r[0],i=e.indexOf(p.ArgParamsSeparator),s=e.substring(0,i),a=r.map(c=>{let l=c.indexOf(p.ArgParamsSeparator),u=c.substring(l+1);return s.startsWith(f.Tuple)?u.replace(p.ArgListSeparator,p.ArgCompositeSeparator):u}),o=s.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator;return t+p.ArgParamsSeparator+s+p.ArgParamsSeparator+a.join(o)}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Asset&&typeof r=="object"&&r&&"identifier"in r&&"amount"in r)return"decimals"in r?f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount)+p.ArgCompositeSeparator+String(r.decimals):f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount);if(this.typeRegistry){let e=this.typeRegistry.getHandler(t);if(e)return e.nativeToString(r);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,r)}return t+p.ArgParamsSeparator+(r?.toString()??"")}stringToNative(t){let r=t.split(p.ArgParamsSeparator),e=r[0],i=r.slice(1).join(p.ArgParamsSeparator);if(e==="null")return[e,null];if(e===f.Option){let[s,a]=i.split(p.ArgParamsSeparator);return[f.Option+p.ArgParamsSeparator+s,a||null]}if(e===f.Vector){let s=i.indexOf(p.ArgParamsSeparator),a=i.substring(0,s),o=i.substring(s+1),c=a.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator,u=(o?o.split(c):[]).map(d=>this.stringToNative(a+p.ArgParamsSeparator+d)[1]);return[f.Vector+p.ArgParamsSeparator+a,u]}else if(e.startsWith(f.Tuple)){let s=e.match(/\(([^)]+)\)/)?.[1]?.split(p.ArgCompositeSeparator),o=i.split(p.ArgCompositeSeparator).map((c,l)=>this.stringToNative(`${s[l]}${p.IdentifierParamSeparator}${c}`)[1]);return[e,o]}else if(e.startsWith(f.Struct)){let s=e.match(/\(([^)]+)\)/);if(!s)throw new Error("Struct type must include a name in the format struct(Name)");let o={_name:s[1]};return i&&i.split(p.ArgListSeparator).forEach(c=>{let l=c.match(new RegExp(`^\\(([^${p.ArgParamsSeparator}]+)${p.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(l){let[,u,d,h]=l;o[u]=this.stringToNative(`${d}${p.IdentifierParamSeparator}${h}`)[1]}}),[e,o]}else{if(e===f.String)return[e,i];if(e===f.Uint8||e===f.Uint16||e===f.Uint32)return[e,Number(i)];if(e===f.Uint64||e===f.Uint128||e===f.Uint256||e===f.Biguint)return[e,BigInt(i||0)];if(e===f.Bool)return[e,i==="true"];if(e===f.Address)return[e,i];if(e===f.Hex)return[e,i];if(e===f.Asset){let[s,a]=i.split(p.ArgCompositeSeparator),o={identifier:s,amount:BigInt(a)};return[e,o]}}if(this.typeRegistry){let s=this.typeRegistry.getHandler(e);if(s){let o=s.stringToNative(i);return[e,o]}let a=this.typeRegistry.resolveType(e);if(a!==e){let[o,c]=this.stringToNative(`${a}:${i}`);return[e,c]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${e}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(p.ArgParamsSeparator)){let[r,e]=t.split(p.ArgParamsSeparator);return[r,e]}return typeof t=="number"?[f.Uint32,t]:typeof t=="bigint"?[f.Uint64,t]:typeof t=="boolean"?[f.Bool,t]:[typeof t,t]}};var Or=n=>new x().nativeToString(f.String,n),Ur=n=>new x().nativeToString(f.Uint8,n),Fr=n=>new x().nativeToString(f.Uint16,n),Hr=n=>new x().nativeToString(f.Uint32,n),Lr=n=>new x().nativeToString(f.Uint64,n),jr=n=>new x().nativeToString(f.Biguint,n),Dr=n=>new x().nativeToString(f.Bool,n),kr=n=>new x().nativeToString(f.Address,n),It=n=>new x().nativeToString(f.Asset,n),qr=n=>new x().nativeToString(f.Hex,n),zr=(n,t)=>{if(t===null)return f.Option+p.ArgParamsSeparator;let r=n(t),e=r.indexOf(p.ArgParamsSeparator),i=r.substring(0,e),s=r.substring(e+1);return f.Option+p.ArgParamsSeparator+i+p.ArgParamsSeparator+s},Mr=(...n)=>new x().nativeToString(f.Tuple,n),Gr=n=>new x().nativeToString(f.Struct,n),Jr=n=>new x().nativeToString(f.Vector,n);var zt=rt(require("ajv"),1);var wt=class{constructor(t){this.pendingBrand={protocol:k("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.ensureValidSchema(e),e}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,r){if(!t)throw new Error(`Warp: ${r}`)}ensureWarpText(t,r){if(!t)throw new Error(`Warp: ${r}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${r}`)}async ensureValidSchema(t){let r=this.config.schema?.brand||R.LatestBrandSchemaUrl,i=await(await fetch(r)).json(),s=new zt.default,a=s.compile(i);if(!a(t))throw new Error(`BrandBuilder: schema validation failed: ${s.errorsText(a.errors)}`)}};var Mt=rt(require("ajv"),1);var J=class{constructor(t){this.config=t;this.config=t}async validate(t){let r=[];return r.push(...this.validatePrimaryAction(t)),r.push(...this.validateMaxOneValuePosition(t)),r.push(...this.validateVariableNamesAndResultNamesUppercase(t)),r.push(...this.validateAbiIsSetIfApplicable(t)),r.push(...await this.validateSchema(t)),{valid:r.length===0,errors:r}}validatePrimaryAction(t){try{let{action:r}=B(t);return r?[]:["Primary action is required"]}catch(r){return[r instanceof Error?r.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(e=>e.inputs?e.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let r=[],e=(i,s)=>{i&&Object.keys(i).forEach(a=>{a!==a.toUpperCase()&&r.push(`${s} name '${a}' must be uppercase`)})};return e(t.vars,"Variable"),e(t.output,"Output"),r}validateAbiIsSetIfApplicable(t){let r=t.actions.some(a=>a.type==="contract"),e=t.actions.some(a=>a.type==="query");if(!r&&!e)return[];let i=t.actions.some(a=>a.abi),s=Object.values(t.output||{}).some(a=>a.startsWith("out.")||a.startsWith("event."));return t.output&&!i&&s?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let r=this.config.schema?.warp||R.LatestWarpSchemaUrl,i=await(await fetch(r)).json(),s=new Mt.default({strict:!1}),a=s.compile(i);return a(t)?[]:[`Schema validation failed: ${s.errorsText(a.errors)}`]}catch(r){return[`Schema validation failed: ${r instanceof Error?r.message:String(r)}`]}}};var St=class{constructor(t){this.config=t;this.pendingWarp={protocol:k("warp"),chain:"",name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.validate(e),e}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}async build(){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"),await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,r=100){return mt(t,r)}ensure(t,r){if(!t)throw new Error(r)}ensureWarpText(t,r){if(!t)throw new Error(r);if(typeof t=="object"&&!t.en)throw new Error(r)}async validate(t){let e=await new J(this.config).validate(t);if(!e.valid)throw new Error(e.errors.join(`
|
|
2
|
-
`))}};var Q=class{constructor(t="warp-cache"){this.prefix=t}getKey(t){return`${this.prefix}:${t}`}get(t){try{let r=localStorage.getItem(this.getKey(t));if(!r)return null;let e=JSON.parse(r,Kr);return Date.now()>e.expiresAt?(localStorage.removeItem(this.getKey(t)),null):e.value}catch{return null}}set(t,r,e){let i={value:r,expiresAt:Date.now()+e*1e3};localStorage.setItem(this.getKey(t),JSON.stringify(i,Qr))}forget(t){localStorage.removeItem(this.getKey(t))}clear(){for(let t=0;t<localStorage.length;t++){let r=localStorage.key(t);r?.startsWith(this.prefix)&&localStorage.removeItem(r)}}},Gt=new x,Qr=(n,t)=>typeof t=="bigint"?Gt.nativeToString("biguint",t):t,Kr=(n,t)=>typeof t=="string"&&t.startsWith(f.Biguint+":")?Gt.stringToNative(t)[1]:t;var V=class V{get(t){let r=V.cache.get(t);return r?Date.now()>r.expiresAt?(V.cache.delete(t),null):r.value:null}set(t,r,e){let i=Date.now()+e*1e3;V.cache.set(t,{value:r,expiresAt:i})}forget(t){V.cache.delete(t)}clear(){V.cache.clear()}};V.cache=new Map;var K=V;var bt={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},lt={Warp:(n,t)=>`warp:${n}:${t}`,WarpAbi:(n,t)=>`warp-abi:${n}:${t}`,WarpExecutable:(n,t,r)=>`warp-exec:${n}:${t}:${r}`,RegistryInfo:(n,t)=>`registry-info:${n}:${t}`,Brand:(n,t)=>`brand:${n}:${t}`,Asset:(n,t,r)=>`asset:${n}:${t}:${r}`},_=class{constructor(t){this.strategy=this.selectStrategy(t)}selectStrategy(t){return t==="localStorage"?new Q:t==="memory"?new K:typeof window<"u"&&window.localStorage?new Q:new K}set(t,r,e){this.strategy.set(t,r,e)}get(t){return this.strategy.get(t)}forget(t){this.strategy.forget(t)}clear(){this.strategy.clear()}};var P=class{constructor(t,r,e){this.config=t;this.adapter=r;this.adapters=e}async apply(t,r={}){let e=this.applyVars(t,r);return await this.applyGlobals(e)}async applyGlobals(t){let r={...t};return r.actions=await Promise.all((r.actions||[]).map(async e=>await this.applyActionGlobals(e))),r=await this.applyRootGlobals(r),r}applyVars(t,r={}){if(!t?.vars)return t;let e=w(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),s=(a,o)=>{i=i.replace(new RegExp(`{{${a.toUpperCase()}}}`,"g"),o.toString())};return Object.entries(t.vars).forEach(([a,o])=>{if(typeof o!="string")s(a,o);else if(o.startsWith(p.Vars.Query+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Query.length+1),[l,u]=c.split(p.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(l):null,v=r.queries?.[l]||null||d;v&&s(a,v)}else if(o.startsWith(p.Vars.Env+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Env.length+1),[l,u]=c.split(p.ArgCompositeSeparator),h={...this.config.vars,...r.envs}?.[l];h&&s(a,h)}else o===p.Source.UserWallet&&e?s(a,e):s(a,o)}),JSON.parse(i)}async applyRootGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}async applyActionGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}applyInputs(t,r,e,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let s=this.applyGlobalsToText(t),a=this.buildInputBag(r,e,i);return $(s,a)}applyGlobalsToText(t){if(!Object.values(p.Globals).map(a=>a.Placeholder).some(a=>t.includes(`{{${a}}}`)||t.includes(`{{${a}:`)))return t;let i={config:this.config,adapter:this.adapter},s=t;return Object.values(p.Globals).forEach(a=>{let o=a.Accessor(i);o!=null&&(s=s.replace(new RegExp(`{{${a.Placeholder}}}`,"g"),o.toString())),s=this.replacePlaceholdersWithChain(s,a.Placeholder,i,a.Accessor)}),s}replacePlaceholdersWithChain(t,r,e,i){let s=new RegExp(`\\{\\{${r}:([^}]+)\\}\\}`,"g");return t.replace(s,(a,o)=>{let c=o.trim().toLowerCase();if(!this.adapters)return a;try{let l=m(c,this.adapters),u={config:this.config,adapter:l},d=i(u);return d!=null?d.toString():a}catch{return a}})}buildInputBag(t,r,e){let i={};return t.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);i[a]=String(o)}),e&&e.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);if(i[`primary.${a}`]=String(o),s.input.type==="asset"&&typeof s.input.position=="object"){let c=o;c&&typeof c=="object"&&"identifier"in c&&"amount"in c&&(i[`primary.${a}.token`]=String(c.identifier),i[`primary.${a}.amount`]=String(c.amount))}}),i}};var j=class{constructor(t,r){this.config=t;this.adapters=r;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new x,this.cache=new _(t.cache?.type)}getSerializer(){return this.serializer}getResolvedInputsFromCache(t,r,e){let i=this.cache.get(lt.WarpExecutable(t,r||"",e))||[];return H(i)}async createExecutable(t,r,e,i={}){let s=S(t,r);if(!s)throw new Error("WarpFactory: Action not found");let a=await this.getChainInfoForWarp(t,e),o=m(a.name,this.adapters),c=new P(this.config,o,this.adapters),l=await c.apply(t,i),u=S(l,r),{action:d,index:h}=B(l),v=this.getStringTypedInputs(d,e),A=await this.getResolvedInputs(a.name,d,v,c),g=await this.getModifiedInputs(A),W=[],y=[];h===r-1&&(W=A,y=g);let E=y.find(I=>I.input.position==="receiver"||I.input.position==="destination")?.value,N=this.getDestinationFromAction(u),T=E?this.serializer.stringToNative(E)[1]:N;if(T&&(T=c.applyInputs(T,y,this.serializer,g)),!T&&s.type!=="collect")throw new Error("WarpActionExecutor: Destination/Receiver not provided");let ut=this.getPreparedArgs(u,y);ut=ut.map(I=>c.applyInputs(I,y,this.serializer,g));let Jt=y.find(I=>I.input.position==="value")?.value||null,Qt="value"in u?u.value:null,Kt=Jt?.split(p.ArgParamsSeparator)[1]||Qt||"0",_t=c.applyInputs(Kt,y,this.serializer,g),Xt=BigInt(_t),Zt=y.filter(I=>I.input.position==="transfer"&&I.value).map(I=>I.value),Yt=[...("transfers"in u?u.transfers:[])||[],...Zt||[]].map(I=>{let nr=c.applyInputs(I,y,this.serializer,g);return this.serializer.stringToNative(nr)[1]}),tr=y.find(I=>I.input.position==="data")?.value,rr="data"in u?u.data||"":null,Et=tr||rr||null,er=Et?c.applyInputs(Et,y,this.serializer,g):null,Rt={warp:l,chain:a,action:r,destination:T,args:ut,value:Xt,transfers:Yt,data:er,resolvedInputs:y};return this.cache.set(lt.WarpExecutable(this.config.env,l.meta?.hash||"",r),Rt.resolvedInputs,bt.OneWeek),Rt}async getChainInfoForWarp(t,r){if(t.chain)return m(t.chain,this.adapters).chainInfo;if(r){let i=await this.tryGetChainFromInputs(t,r);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,r){let e=t.inputs||[];return r.map((i,s)=>{let a=e[s];return!a||i.includes(p.ArgParamsSeparator)?i:this.serializer.nativeToString(a.type,i)})}async getResolvedInputs(t,r,e,i){let s=r.inputs||[],a=await Promise.all(e.map(c=>this.preprocessInput(t,c))),o=(c,l)=>{if(c.source==="query"){let u=this.url.searchParams.get(c.name);return u?this.serializer.nativeToString(c.type,u):null}else if(c.source===p.Source.UserWallet){let u=w(this.config,t);return u?this.serializer.nativeToString("address",u):null}else if(c.source==="hidden"){if(c.default===void 0)return null;let u=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,u)}else return a[l]||null};return s.map((c,l)=>{let u=o(c,l),d=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:u||(d!==void 0?this.serializer.nativeToString(c.type,d):null)}})}async getModifiedInputs(t){let r=[];for(let e=0;e<t.length;e++){let i=t[e];if(i.input.modifier?.startsWith("scale:")){let[,s]=i.input.modifier.split(":");if(isNaN(Number(s))){let a=Number(t.find(l=>l.input.name===s)?.value?.split(":")[1]);if(!a)throw new Error(`WarpActionExecutor: Exponent value not found for input ${s}`);let o=i.value?.split(":")[1];if(!o)throw new Error("WarpActionExecutor: Scalable value not found");let c=q(o,+a);r.push({...i,value:`${i.input.type}:${c}`})}else{let a=i.value?.split(":")[1];if(!a)throw new Error("WarpActionExecutor: Scalable value not found");let o=q(a,+s);r.push({...i,value:`${i.input.type}:${o}`})}}else if(i.input.modifier?.startsWith(p.Transform.Prefix)){let s=i.input.modifier.substring(p.Transform.Prefix.length),a=this.config.transform?.runner;if(!a||typeof a.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let o=this.buildInputContext(t,e,i),c=await a.run(s,o);if(c==null)r.push(i);else{let l=this.serializer.nativeToString(i.input.type,c);r.push({...i,value:l})}}else r.push(i)}return r}buildInputContext(t,r,e){let i={};for(let s=0;s<r;s++){let a=t[s];if(!a.value)continue;let o=a.input.as||a.input.name,[,c]=this.serializer.stringToNative(a.value);if(i[o]=c,a.input.type==="asset"&&typeof c=="object"&&c!==null){let l=c;"identifier"in l&&"amount"in l&&(i[`${o}.token`]=String(l.identifier),i[`${o}.amount`]=String(l.amount),i[`${o}.identifier`]=String(l.identifier))}}if(e&&e.value){let s=e.input.as||e.input.name,[,a]=this.serializer.stringToNative(e.value);if(i[s]=a,e.input.type==="asset"&&typeof a=="object"&&a!==null){let o=a;"identifier"in o&&"amount"in o&&(i[`${s}.token`]=String(o.identifier),i[`${s}.amount`]=String(o.amount),i[`${s}.identifier`]=String(o.identifier))}}return i}async preprocessInput(t,r){try{let[e,i]=st(r),s=m(t,this.adapters);if(e==="asset"){let[a,o,c]=i.split(p.ArgCompositeSeparator);if(c)return r;let l=await s.dataLoader.getAsset(a);if(!l)throw new Error(`WarpFactory: Asset not found for asset ${a}`);if(typeof l.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${a}`);let u=q(o,l.decimals);return It({...l,amount:u})}else return r}catch(e){throw C.warn("WarpFactory: Preprocess input failed",e),e}}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,r){let e="args"in t?t.args||[]:[],i=[];return r.forEach(({input:s,value:a})=>{if(!(!a||!s.position)){if(typeof s.position=="object"){if(s.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${s.name}" has type "${s.type}"`);if(!s.position.token?.startsWith("arg:")||!s.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${s.name}"`);let[o,c]=this.serializer.stringToNative(a),l=c;if(!l||typeof l!="object"||!("identifier"in l)||!("amount"in l))throw new Error(`WarpFactory: Invalid asset value for input "${s.name}"`);let u=Number(s.position.token.split(":")[1])-1,d=Number(s.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",l.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",l.amount)})}else if(s.position.startsWith("arg:")){let o=Number(s.position.split(":")[1])-1;i.push({index:o,value:a})}}}),i.forEach(({index:s,value:a})=>{for(;e.length<=s;)e.push(void 0);e[s]=a}),e.filter(s=>s!==void 0)}async tryGetChainFromInputs(t,r){let e=t.actions.find(c=>c.inputs?.some(l=>l.position==="chain"));if(!e)return null;let i=e.inputs?.findIndex(c=>c.position==="chain");if(i===-1||i===void 0)return null;let s=r[i];if(!s)throw new Error("Chain input not found");let a=this.serializer.stringToNative(s)[1];return m(a,this.adapters).chainInfo}};var X=class{constructor(t,r,e){this.config=t;this.adapters=r;this.handlers=e;this.handlers=e,this.factory=new j(t,r)}async execute(t,r,e={}){let i=[],s=null,a=[],o=[],{action:c,index:l}=B(t);for(let u=1;u<=t.actions.length;u++){let d=S(t,u);if(!it(d,t))continue;let{tx:h,chain:v,immediateExecution:A,executable:g}=await this.executeAction(t,u,r,e);h&&i.push(h),v&&(s=v),A&&a.push(A),g&&u===l+1&&g.resolvedInputs&&(o=H(g.resolvedInputs))}if(!s&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&a.length>0){let u=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(u))}return{txs:i,chain:s,immediateExecutions:a,resolvedInputs:o}}async executeAction(t,r,e,i={}){let s=S(t,r);if(s.type==="link")return await this.callHandler(async()=>{let l=s.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(l):dt.open(l,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null};let a=await this.factory.createExecutable(t,r,e,i);if(s.type==="collect"){let l=await this.executeCollect(a);return l.status==="success"?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):l.status==="unhandled"?(await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):(this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:null,immediateExecution:null,executable:a})}let o=m(a.chain.name,this.adapters);if(s.type==="query"){let l=await o.executor.executeQuery(a);return l.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:a.chain,execution:l,tx:null})):this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:a.chain,immediateExecution:l,executable:a}}return{tx:await o.executor.createTransaction(a),chain:a.chain,immediateExecution:null,executable:a}}async evaluateOutput(t,r){if(r.length===0||t.actions.length===0||!this.handlers)return;let e=await this.factory.getChainInfoForWarp(t),i=m(e.name,this.adapters),s=(await Promise.all(t.actions.map(async(a,o)=>{if(!it(a,t)||a.type!=="transfer"&&a.type!=="contract")return null;let c=r[o],l=o+1;if(!c){let d=this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,l),h={status:"error",warp:t,action:l,user:w(this.config,e.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:d};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${l} failed: Transaction not found`})),h}let u=await i.output.getActionExecution(t,l,c);return u.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:l,chain:e,execution:u,tx:c})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(u.values)})),u}))).filter(a=>a!==null);if(s.every(a=>a.status==="success")){let a=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(a))}else await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(s.map(a=>a.values))}`}))}async executeCollect(t,r){let e=w(this.config,t.chain.name),i=S(t.warp,t.action),s=this.factory.getSerializer(),a=G(t.resolvedInputs,s);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,e,a,r);let{values:o,output:c}=await ot(t.warp,a,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,e,"unhandled",o,c)}async doHttpRequest(t,r,e,i,s){let a=new P(this.config,m(t.chain.name,this.adapters),this.adapters),o=new Headers;if(o.set("Content-Type","application/json"),o.set("Accept","application/json"),this.handlers?.onSignRequest){if(!e)throw new Error(`No wallet configured for chain ${t.chain.name}`);let{message:d,nonce:h,expiresAt:v}=await pt(e,`${t.chain.name}-adapter`),A=await this.callHandler(()=>this.handlers?.onSignRequest?.({message:d,chain:t.chain}));if(A){let g=ct(e,A,h,v);Object.entries(g).forEach(([W,y])=>o.set(W,y))}}r.headers&&Object.entries(r.headers).forEach(([d,h])=>{let v=a.applyInputs(h,t.resolvedInputs,this.factory.getSerializer());o.set(d,v)});let c=r.method||"GET",l=c==="GET"?void 0:JSON.stringify({...i,...s}),u=a.applyInputs(r.url,t.resolvedInputs,this.factory.getSerializer());C.debug("WarpExecutor: Executing HTTP collect",{url:u,method:c,headers:o,body:l});try{let d=await fetch(u,{method:c,headers:o,body:l});C.debug("Collect response status",{status:d.status});let h=await d.json();C.debug("Collect response content",{content:h});let{values:v,output:A}=await ot(t.warp,h,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,w(this.config,t.chain.name),d.ok?"success":"error",v,A,h)}catch(d){C.error("WarpActionExecutor: Error executing collect",d);let h=H(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:e,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:d},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(e=>e.input.position==="receiver"||e.input.position==="destination")?.value||t.destination}buildCollectResult(t,r,e,i,s,a){let o=xt(this.config,this.adapters,t.warp,t.action,s),c=H(t.resolvedInputs);return{status:e,warp:t.warp,action:t.action,user:r||w(this.config,t.chain.name),txHash:null,tx:null,next:o,values:i,output:a?{...s,_DATA:a}:s,messages:vt(t.warp,s,this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:c}}async callHandler(t){if(t)return await t()}};var Z=class{constructor(t){this.config=t}async search(t,r,e){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}`,...e},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...r})});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 Y=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(l=>l[0]).filter(l=>this.isValid(l)).map(l=>this.detect(l)),a=(await Promise.all(i)).filter(l=>l.match),o=a.length>0,c=a.map(l=>({url:l.url,warp:l.warp}));return{match:o,output:c}}async detect(t,r){let e={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(p.HttpProtocolPrefix)?D(t):b(t);if(!i)return e;try{let{type:s,identifierBase:a}=i,o=null,c=null,l=null,u=m(i.chain,this.adapters),d=t.startsWith(p.HttpProtocolPrefix)?Wt(t):yt(i.identifier);if(s==="hash"){o=await u.builder().createFromTransactionHash(a,r);let g=await u.registry.getInfoByHash(a,r);c=g.registryInfo,l=g.brand}else if(s==="alias"){let g=await u.registry.getInfoByAlias(a,r);c=g.registryInfo,l=g.brand,g.registryInfo&&(o=await u.builder().createFromTransactionHash(g.registryInfo.hash,r))}if(o&&o.meta&&(_r(o,u.chainInfo.name,c,i.identifier),o.meta.query=d),!o)return e;let h=o.chain||u.chainInfo.name,v=m(h,this.adapters),A=await new P(this.config,v,this.adapters).apply(o);return{match:!0,url:t,warp:A,chain:h,registryInfo:c,brand:l}}catch(s){return C.error("Error detecting warp link",s),e}}},_r=(n,t,r,e)=>{n.meta&&(n.meta.identifier=r?.alias?at(t,"alias",r.alias):at(t,"hash",r?.hash??e))};var Tt=class{constructor(t,r){this.config=t;this.adapters=r}getConfig(){return this.config}getAdapters(){return this.adapters}addAdapter(t){return this.adapters.push(t),this}createExecutor(t){return new X(this.config,this.adapters,t)}async detectWarp(t,r){return new Y(this.config,this.adapters).detect(t,r)}async executeWarp(t,r,e,i={}){let s=typeof t=="object",a=!s&&t.startsWith("http")&&t.endsWith(".json"),o=s?t:null;if(!o&&a){let A=await fetch(t);if(!A.ok)throw new Error("WarpClient: executeWarp - invalid url");o=await A.json()}if(o||(o=(await this.detectWarp(t,i.cache)).warp),!o)throw new Error("Warp not found");let c=this.createExecutor(e),{txs:l,chain:u,immediateExecutions:d,resolvedInputs:h}=await c.execute(o,r,{queries:i.queries});return{txs:l,chain:u,immediateExecutions:d,evaluateOutput:async A=>{await c.evaluateOutput(o,A)},resolvedInputs:h}}async createInscriptionTransaction(t,r){return await m(t,this.adapters).builder().createInscriptionTransaction(r)}async createFromTransaction(t,r,e=!1){return m(t,this.adapters).builder().createFromTransaction(r,e)}async createFromTransactionHash(t,r){let e=b(t);if(!e)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return m(e.chain,this.adapters).builder().createFromTransactionHash(t,r)}async signMessage(t,r){if(!w(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return m(t,this.adapters).wallet.signMessage(r)}async getActions(t,r,e=!1){let i=this.getDataLoader(t);return(await Promise.all(r.map(async a=>i.getAction(a,e)))).filter(a=>a!==null)}getExplorer(t){return m(t,this.adapters).explorer}getOutput(t){return m(t,this.adapters).output}async getRegistry(t){let r=m(t,this.adapters).registry;return await r.init(),r}getDataLoader(t){return m(t,this.adapters).dataLoader}getWallet(t){return m(t,this.adapters).wallet}get factory(){return new j(this.config,this.adapters)}get index(){return new Z(this.config)}get linkBuilder(){return new F(this.config,this.adapters)}createBuilder(t){return m(t,this.adapters).builder()}createAbiBuilder(t){return m(t,this.adapters).abiBuilder()}createBrandBuilder(t){return m(t,this.adapters).brandBuilder()}createSerializer(t){return m(t,this.adapters).serializer}resolveText(t){return z(t,this.config)}};var Pt=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,r){this.typeHandlers.set(t,r)}registerTypeAlias(t,r){this.typeAliases.set(t,r)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let r=this.typeAliases.get(t);return r?this.getHandler(r):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let r=this.typeAliases.get(t);return r?this.resolveType(r):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};0&&(module.exports={BrowserCryptoProvider,CacheTtl,NodeCryptoProvider,WARP_LANGUAGES,WarpBrandBuilder,WarpBuilder,WarpCache,WarpCacheKey,WarpChainName,WarpClient,WarpConfig,WarpConstants,WarpExecutor,WarpFactory,WarpIndex,WarpInputTypes,WarpInterpolator,WarpLinkBuilder,WarpLinkDetecter,WarpLogger,WarpProtocolVersions,WarpSerializer,WarpTypeRegistry,WarpValidator,address,applyOutputToMessages,asset,biguint,bool,buildMappedOutput,buildNestedPayload,bytesToBase64,bytesToHex,cleanWarpIdentifier,createAuthHeaders,createAuthMessage,createCryptoProvider,createHttpAuthHeaders,createSignableMessage,createWarpI18nText,createWarpIdentifier,evaluateOutputCommon,extractCollectOutput,extractIdentifierInfoFromUrl,extractQueryStringFromIdentifier,extractQueryStringFromUrl,extractResolvedInputValues,extractWarpSecrets,findWarpAdapterForChain,getCryptoProvider,getEventNameFromWarp,getLatestProtocolIdentifier,getNextInfo,getProviderConfig,getRandomBytes,getRandomHex,getWarpActionByIndex,getWarpBrandLogoUrl,getWarpInfoFromIdentifier,getWarpPrimaryAction,getWarpWalletAddress,getWarpWalletAddressFromConfig,getWarpWalletMnemonic,getWarpWalletMnemonicFromConfig,getWarpWalletPrivateKey,getWarpWalletPrivateKeyFromConfig,hasInputPrefix,hex,isEqualWarpIdentifier,isWarpActionAutoExecute,isWarpI18nText,mergeNestedPayload,option,parseOutputOutIndex,parseSignedMessage,replacePlaceholders,resolveWarpText,safeWindow,setCryptoProvider,shiftBigintBy,splitInput,string,struct,testCryptoAvailability,toInputPayloadValue,toPreviewText,tuple,uint16,uint32,uint64,uint8,validateSignedMessage,vector});
|
|
1
|
+
"use strict";var sr=Object.create;var tt=Object.defineProperty;var or=Object.getOwnPropertyDescriptor;var pr=Object.getOwnPropertyNames;var cr=Object.getPrototypeOf,lr=Object.prototype.hasOwnProperty;var ur=(n,t)=>{for(var r in t)tt(n,r,{get:t[r],enumerable:!0})},Vt=(n,t,r,e)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of pr(t))!lr.call(n,i)&&i!==r&&tt(n,i,{get:()=>t[i],enumerable:!(e=or(t,i))||e.enumerable});return n};var rt=(n,t,r)=>(r=n!=null?sr(cr(n)):{},Vt(t||!n||!n.__esModule?tt(r,"default",{value:n,enumerable:!0}):r,n)),dr=n=>Vt(tt({},"__esModule",{value:!0}),n);var Yr={};ur(Yr,{BrowserCryptoProvider:()=>et,CacheTtl:()=>Pt,NodeCryptoProvider:()=>nt,WARP_LANGUAGES:()=>Ar,WarpBrandBuilder:()=>bt,WarpBuilder:()=>Tt,WarpCache:()=>_,WarpCacheKey:()=>lt,WarpChainName:()=>Ot,WarpClient:()=>Et,WarpConfig:()=>B,WarpConstants:()=>p,WarpExecutor:()=>X,WarpFactory:()=>j,WarpIndex:()=>Z,WarpInputTypes:()=>f,WarpInterpolator:()=>T,WarpLinkBuilder:()=>U,WarpLinkDetecter:()=>Y,WarpLogger:()=>C,WarpProtocolVersions:()=>N,WarpSerializer:()=>x,WarpTypeRegistry:()=>Rt,WarpValidator:()=>J,address:()=>zr,applyOutputToMessages:()=>xt,asset:()=>St,biguint:()=>kr,bool:()=>qr,buildMappedOutput:()=>G,buildNestedPayload:()=>Ht,bytesToBase64:()=>mr,bytesToHex:()=>Nt,cleanWarpIdentifier:()=>M,createAuthHeaders:()=>ct,createAuthMessage:()=>pt,createCryptoProvider:()=>yr,createHttpAuthHeaders:()=>$r,createSignableMessage:()=>kt,createWarpI18nText:()=>Cr,createWarpIdentifier:()=>at,evaluateOutputCommon:()=>jt,evaluateWhenCondition:()=>yt,extractCollectOutput:()=>ot,extractIdentifierInfoFromUrl:()=>D,extractQueryStringFromIdentifier:()=>At,extractQueryStringFromUrl:()=>vt,extractResolvedInputValues:()=>H,extractWarpSecrets:()=>vr,findWarpAdapterForChain:()=>m,getCryptoProvider:()=>ft,getEventNameFromWarp:()=>fr,getLatestProtocolIdentifier:()=>k,getNextInfo:()=>It,getProviderConfig:()=>Er,getRandomBytes:()=>gt,getRandomHex:()=>ht,getWarpActionByIndex:()=>S,getWarpBrandLogoUrl:()=>gr,getWarpInfoFromIdentifier:()=>b,getWarpPrimaryAction:()=>E,getWarpWalletAddress:()=>qt,getWarpWalletAddressFromConfig:()=>w,getWarpWalletMnemonic:()=>Mt,getWarpWalletMnemonicFromConfig:()=>Fr,getWarpWalletPrivateKey:()=>zt,getWarpWalletPrivateKeyFromConfig:()=>Nr,hasInputPrefix:()=>br,hex:()=>Mr,isEqualWarpIdentifier:()=>Ir,isWarpActionAutoExecute:()=>it,isWarpI18nText:()=>xr,mergeNestedPayload:()=>wt,option:()=>Gr,parseOutputOutIndex:()=>Dt,parseSignedMessage:()=>Or,replacePlaceholders:()=>$,replacePlaceholdersInWhenExpression:()=>Wt,resolveWarpText:()=>z,safeWindow:()=>dt,setCryptoProvider:()=>hr,shiftBigintBy:()=>q,splitInput:()=>st,string:()=>Ur,struct:()=>Qr,testCryptoAvailability:()=>Wr,toInputPayloadValue:()=>Lt,toPreviewText:()=>mt,tuple:()=>Jr,uint16:()=>Lr,uint32:()=>jr,uint64:()=>Dr,uint8:()=>Hr,validateSignedMessage:()=>Vr,vector:()=>Kr});module.exports=dr(Yr);var Ot=(l=>(l.Multiversx="multiversx",l.Vibechain="vibechain",l.Sui="sui",l.Ethereum="ethereum",l.Base="base",l.Arbitrum="arbitrum",l.Somnia="somnia",l.Fastset="fastset",l.Solana="solana",l))(Ot||{}),p={HttpProtocolPrefix:"http",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:n=>n.config.user?.wallets?.[n.adapter.chainInfo.name]},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:n=>{if(!n.adapter.wallet)return null;try{return n.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:n=>n.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:n=>n.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},f={Option:"option",Vector:"vector",Tuple:"tuple",Struct:"struct",String:"string",Uint8:"uint8",Uint16:"uint16",Uint32:"uint32",Uint64:"uint64",Uint128:"uint128",Uint256:"uint256",Biguint:"biguint",Bool:"bool",Address:"address",Asset:"asset",Hex:"hex"},dt=typeof window<"u"?window:{open:()=>{}};var N={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},B={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/v${N.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/brand/v${N.Brand}.schema.json`,DefaultClientUrl:n=>n==="devnet"?"https://devnet.usewarp.to":n==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",p.Source.UserWallet,"hidden"],AvailableActionInputTypes:["string","uint8","uint16","uint32","uint64","biguint","boolean","address"],AvailableActionInputPositions:["receiver","value","transfer","arg:1","arg:2","arg:3","arg:4","arg:5","arg:6","arg:7","arg:8","arg:9","arg:10","data","ignore"]};var fr=(n,t)=>{let r=n.alerts?.[t];if(!r)return null;let e=p.Alerts.TriggerEventPrefix+p.ArgParamsSeparator;if(!r.trigger.startsWith(e))return null;let i=r.trigger.replace(e,"");return i||null};var gr=(n,t)=>typeof n.logo=="string"?n.logo:n.logo[t?.scheme??"light"];var et=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let r=new Uint8Array(t);return window.crypto.getRandomValues(r),r}},nt=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let r=await import("crypto");return new Uint8Array(r.randomBytes(t))}catch(r){throw new Error(`Node.js crypto not available: ${r instanceof Error?r.message:"Unknown error"}`)}}},F=null;function ft(){if(F)return F;if(typeof window<"u"&&window.crypto)return F=new et,F;if(typeof process<"u"&&process.versions?.node)return F=new nt,F;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function hr(n){F=n}async function gt(n,t){if(n<=0||!Number.isInteger(n))throw new Error("Size must be a positive integer");return(t||ft()).getRandomBytes(n)}function Nt(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(n.length*2);for(let r=0;r<n.length;r++){let e=n[r];t[r*2]=(e>>>4).toString(16),t[r*2+1]=(e&15).toString(16)}return t.join("")}function mr(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(n).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(n));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function ht(n,t){if(n<=0||n%2!==0)throw new Error("Length must be a positive even number");let r=await gt(n/2,t);return Nt(r)}async function Wr(){let n={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?n.environment="browser":typeof process<"u"&&process.versions?.node&&(n.environment="nodejs"),await gt(16),n.randomBytes=!0}catch{}return n}function yr(){return ft()}var vr=n=>Object.values(n.vars||{}).filter(t=>t.startsWith(`${p.Vars.Env}:`)).map(t=>{let r=t.replace(`${p.Vars.Env}:`,"").trim(),[e,i]=r.split(p.ArgCompositeSeparator);return{key:e,description:i||null}});var m=(n,t)=>{let r=t.find(e=>e.chainInfo.name.toLowerCase()===n.toLowerCase());if(!r)throw new Error(`Adapter not found for chain: ${n}`);return r},k=n=>{if(n==="warp")return`warp:${N.Warp}`;if(n==="brand")return`brand:${N.Brand}`;if(n==="abi")return`abi:${N.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${n}`)},S=(n,t)=>n?.actions[t-1],E=n=>{if(n.actions.length===0)throw new Error(`Warp has no primary action: ${n.meta?.identifier}`);let t=n.actions.find(s=>s.primary===!0);if(t)return{action:t,index:n.actions.indexOf(t)};let r=["transfer","contract","query","collect"],e=n.actions.find(s=>r.includes(s.type));return e?{action:e,index:n.actions.indexOf(e)}:{action:n.actions[0],index:0}},it=(n,t)=>{if(n.auto===!1)return!1;if(n.type==="link"){if(n.auto===!0)return!0;let{action:r}=E(t);return n===r}return!0},q=(n,t)=>{let r=n.toString(),[e,i=""]=r.split("."),s=Math.abs(t);if(t>0)return BigInt(e+i.padEnd(s,"0"));if(t<0){let a=e+i;if(s>=a.length)return 0n;let o=a.slice(0,-s)||"0";return BigInt(o)}else return r.includes(".")?BigInt(r.split(".")[0]):BigInt(r)},mt=(n,t=100)=>{if(!n)return"";let r=n.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return r=r.startsWith("- ")?r.slice(2):r,r=r.length>t?r.substring(0,r.lastIndexOf(" ",t))+"...":r,r},$=(n,t)=>n.replace(/\{\{([^}]+)\}\}/g,(r,e)=>t[e]||""),Wt=(n,t)=>n.replace(/\{\{([^}]+)\}\}/g,(r,e)=>{let i=t[e];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),yt=n=>{if(!n||typeof n!="string")return!0;try{return!!new Function(`return ${n}`)()}catch(t){throw new Error(`Failed to evaluate 'when' condition: ${n}. Error: ${t}`)}};var Ar={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"},z=(n,t)=>{let r=t?.preferences?.locale||"en";if(typeof n=="string")return n;if(typeof n=="object"&&n!==null){if(r in n)return n[r];if("en"in n)return n.en;let e=Object.keys(n);if(e.length>0)return n[e[0]]}return""},xr=n=>typeof n=="object"&&n!==null&&Object.keys(n).length>0,Cr=n=>n;var M=n=>n.startsWith(p.IdentifierAliasMarker)?n.replace(p.IdentifierAliasMarker,""):n,Ir=(n,t)=>!n||!t?!1:M(n)===M(t),at=(n,t,r)=>{let e=M(r);return t===p.IdentifierType.Alias?p.IdentifierAliasMarker+n+p.IdentifierParamSeparator+e:n+p.IdentifierParamSeparator+t+p.IdentifierParamSeparator+e},b=n=>{let t=decodeURIComponent(n).trim(),r=M(t),e=r.split("?")[0],i=Ft(e);if(e.length===64&&/^[a-fA-F0-9]+$/.test(e))return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Hash,identifier:r,identifierBase:e};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[s,a,o]=i;if(a===p.IdentifierType.Alias||a===p.IdentifierType.Hash){let c=r.includes("?")?o+r.substring(r.indexOf("?")):o;return{chain:s,type:a,identifier:c,identifierBase:o}}}if(i.length===2){let[s,a]=i;if(s===p.IdentifierType.Alias||s===p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a;return{chain:p.IdentifierChainDefault,type:s,identifier:o,identifierBase:a}}}if(i.length===2){let[s,a]=i;if(s!==p.IdentifierType.Alias&&s!==p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a,c=wr(a,s)?p.IdentifierType.Hash:p.IdentifierType.Alias;return{chain:s,type:c,identifier:o,identifierBase:a}}}return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Alias,identifier:r,identifierBase:e}},D=n=>{let t=new URL(n),e=t.searchParams.get(p.IdentifierParamName);if(e||(e=t.pathname.split("/")[1]),!e)return null;let i=decodeURIComponent(e);return b(i)},wr=(n,t)=>/^[a-fA-F0-9]+$/.test(n)&&n.length>32,Sr=n=>{let t=p.IdentifierParamSeparator,r=n.indexOf(t);return r!==-1?{separator:t,index:r}:null},Ft=n=>{let t=Sr(n);if(!t)return[n];let{separator:r,index:e}=t,i=n.substring(0,e),s=n.substring(e+r.length),a=Ft(s);return[i,...a]},vt=n=>{try{let t=new URL(n),r=new URLSearchParams(t.search);return r.delete(p.IdentifierParamName),r.toString()||null}catch{return null}},At=n=>{let t=n.indexOf("?");if(t===-1||t===n.length-1)return null;let r=n.substring(t+1);return r.length>0?r:null};var st=n=>{let[t,...r]=n.split(/:(.*)/,2);return[t,r[0]||""]},br=n=>{let t=new Set(Object.values(f));if(!n.includes(p.ArgParamsSeparator))return!1;let r=st(n)[0];return t.has(r)};var xt=(n,t,r)=>{let e=Object.entries(n.messages||{}).map(([i,s])=>{let a=z(s,r);return[i,$(a,t)]});return Object.fromEntries(e)};var Ut=rt(require("qr-code-styling"),1);var U=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}build(t,r,e){let i=this.config.clientUrl||B.DefaultClientUrl(this.config.env),s=m(t,this.adapters),a=r===p.IdentifierType.Alias?e:r+p.IdentifierParamSeparator+e,o=s.chainInfo.name+p.IdentifierParamSeparator+a,c=encodeURIComponent(o);return B.SuperClientUrls.includes(i)?`${i}/${c}`:`${i}?${p.IdentifierParamName}=${c}`}buildFromPrefixedIdentifier(t){let r=b(t);if(!r)return null;let e=m(r.chain,this.adapters);return e?this.build(e.chainInfo.name,r.type,r.identifierBase):null}generateQrCode(t,r,e,i=512,s="white",a="black",o="#23F7DD"){let c=m(t,this.adapters),l=this.build(c.chainInfo.name,r,e);return new Ut.default({type:"svg",width:i,height:i,data:String(l),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:s},dotsOptions:{type:"extra-rounded",color:a},cornersSquareOptions:{type:"extra-rounded",color:a},cornersDotOptions:{type:"square",color:a},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(o)}" 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 Tr="https://",It=(n,t,r,e,i)=>{let s=r.actions?.[e-1]?.next||r.next||null;if(!s)return null;if(s.startsWith(Tr))return[{identifier:null,url:s}];let[a,o]=s.split("?");if(!o){let g=$(a,{...r.vars,...i});return[{identifier:g,url:Ct(t,g,n)}]}let c=o.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(c.length===0){let g=$(o,{...r.vars,...i}),y=g?`${a}?${g}`:a;return[{identifier:y,url:Ct(t,y,n)}]}let l=c[0];if(!l)return[];let u=l.match(/{{([^[]+)\[\]/),d=u?u[1]:null;if(!d||i[d]===void 0)return[];let h=Array.isArray(i[d])?i[d]:[i[d]];if(h.length===0)return[];let A=c.filter(g=>g.includes(`{{${d}[]`)).map(g=>{let y=g.match(/\[\](\.[^}]+)?}}/),v=y&&y[1]||"";return{placeholder:g,field:v?v.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return h.map(g=>{let y=o;for(let{regex:R,field:O}of A){let P=O?Pr(g,O):g;if(P==null)return null;y=y.replace(R,P)}if(y.includes("{{")||y.includes("}}"))return null;let v=y?`${a}?${y}`:a;return{identifier:v,url:Ct(t,v,n)}}).filter(g=>g!==null)},Ct=(n,t,r)=>{let[e,i]=t.split("?"),s=b(e)||{chain:p.IdentifierChainDefault,type:"alias",identifier:e,identifierBase:e},a=m(s.chain,n);if(!a)throw new Error(`Adapter not found for chain ${s.chain}`);let o=new U(r,n).build(a.chainInfo.name,s.type,s.identifierBase);if(!i)return o;let c=new URL(o);return new URLSearchParams(i).forEach((l,u)=>c.searchParams.set(u,l)),c.toString().replace(/\/\?/,"?")},Pr=(n,t)=>t.split(".").reduce((r,e)=>r?.[e],n);function Ht(n,t,r){return n.startsWith(p.Position.Payload)?n.slice(p.Position.Payload.length).split(".").reduceRight((e,i,s,a)=>({[i]:s===a.length-1?{[t]:r}:e}),{}):{[t]:r}}function wt(n,t){if(!n)return{...t};if(!t)return{...n};let r={...n};return Object.keys(t).forEach(e=>{r[e]&&typeof r[e]=="object"&&typeof t[e]=="object"?r[e]=wt(r[e],t[e]):r[e]=t[e]}),r}function Lt(n,t){if(!n.value)return null;let r=t.stringToNative(n.value)[1];if(n.input.type==="biguint")return r.toString();if(n.input.type==="asset"){let{identifier:e,amount:i}=r;return{identifier:e,amount:i.toString()}}else return r}function H(n){return n.map(t=>t.value).filter(t=>t!=null&&t!=="")}function G(n,t){let r={};return n.forEach(e=>{let i=e.input.as||e.input.name,s=Lt(e,t);if(e.input.position&&typeof e.input.position=="string"&&e.input.position.startsWith(p.Position.Payload)){let a=Ht(e.input.position,i,s);r=wt(r,a)}else r[i]=s}),r}var Er=(n,t,r,e)=>{let i=n.preferences?.providers?.[t];return i?.[r]?typeof i[r]=="string"?{url:i[r]}:i[r]:{url:e}};var L=class L{static debug(...t){L.isTestEnv||console.debug(...t)}static info(...t){L.isTestEnv||console.info(...t)}static warn(...t){L.isTestEnv||console.warn(...t)}static error(...t){L.isTestEnv||console.error(...t)}};L.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var C=L;var ot=async(n,t,r,e,i,s)=>{let a=[],o=[],c={};for(let[u,d]of Object.entries(n.output||{})){if(d.startsWith(p.Transform.Prefix))continue;let h=Dt(d);if(h!==null&&h!==r){c[u]=null;continue}let[A,...W]=d.split("."),g=(y,v)=>v.reduce((R,O)=>R&&R[O]!==void 0?R[O]:null,y);if(A==="out"||A.startsWith("out[")){let y=W.length===0?t?.data||t:g(t,W);a.push(String(y)),o.push(y),c[u]=y}else c[u]=d}let l=G(e,i);return{values:{string:a,native:o,mapped:l},output:await jt(n,c,r,e,i,s)}},jt=async(n,t,r,e,i,s)=>{if(!n.output)return t;let a={...t};return a=Rr(a,n,r,e,i),a=await Br(n,a,s.transform?.runner||null),a},Rr=(n,t,r,e,i)=>{let s={...n},a=S(t,r)?.inputs||[];for(let[o,c]of Object.entries(s))if(typeof c=="string"&&c.startsWith("in.")){let l=c.split(".")[1],u=a.findIndex(h=>h.as===l||h.name===l),d=u!==-1?e[u]?.value:null;s[o]=d?i.stringToNative(d)[1]:null}return s},Br=async(n,t,r)=>{if(!n.output)return t;let e={...t},i=Object.entries(n.output).filter(([,s])=>s.startsWith(p.Transform.Prefix)).map(([s,a])=>({key:s,code:a.substring(p.Transform.Prefix.length)}));if(i.length>0&&(!r||typeof r.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");for(let{key:s,code:a}of i)try{e[s]=await r.run(a,e)}catch(o){C.error(`Transform error for output '${s}':`,o),e[s]=null}return e},Dt=n=>{if(n==="out")return 1;let t=n.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(n.startsWith("out.")||n.startsWith("event."),null)};async function kt(n,t,r,e=5){let i=await ht(64,r),s=new Date(Date.now()+e*60*1e3).toISOString();return{message:JSON.stringify({wallet:n,nonce:i,expiresAt:s,purpose:t}),nonce:i,expiresAt:s}}async function pt(n,t,r,e){let i=e||`prove-wallet-ownership for app "${t}"`;return kt(n,i,r,5)}function ct(n,t,r,e){return{"X-Signer-Wallet":n,"X-Signer-Signature":t,"X-Signer-Nonce":r,"X-Signer-ExpiresAt":e}}async function $r(n,t,r,e){let{message:i,nonce:s,expiresAt:a}=await pt(n,r,e),o=await t(i);return ct(n,o,s,a)}function Vr(n){let t=new Date(n).getTime();return Date.now()<t}function Or(n){try{let t=JSON.parse(n);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 qt=n=>n?typeof n=="string"?n:n.address:null,w=(n,t)=>qt(n.user?.wallets?.[t]||null),zt=n=>n?typeof n=="string"?n:n.privateKey:null,Mt=n=>n?typeof n=="string"?n:n.mnemonic:null,Nr=(n,t)=>zt(n.user?.wallets?.[t]||null)?.trim()||null,Fr=(n,t)=>Mt(n.user?.wallets?.[t]||null)?.trim()||null;var x=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,r){if(t===f.Tuple&&Array.isArray(r)){if(r.length===0)return t+p.ArgParamsSeparator;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r.map(a=>this.getTypeAndValue(a)),i=e.map(([a])=>a),s=e.map(([,a])=>a);return`${t}(${i.join(p.ArgCompositeSeparator)})${p.ArgParamsSeparator}${s.join(p.ArgListSeparator)}`}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Struct&&typeof r=="object"&&r!==null&&!Array.isArray(r)){let e=r;if(!e._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=e._name,s=Object.keys(e).filter(o=>o!=="_name");if(s.length===0)return`${t}(${i})${p.ArgParamsSeparator}`;let a=s.map(o=>{let[c,l]=this.getTypeAndValue(e[o]);return`(${o}${p.ArgParamsSeparator}${c})${l}`});return`${t}(${i})${p.ArgParamsSeparator}${a.join(p.ArgListSeparator)}`}if(t===f.Vector&&Array.isArray(r)){if(r.length===0)return`${t}${p.ArgParamsSeparator}`;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r[0],i=e.indexOf(p.ArgParamsSeparator),s=e.substring(0,i),a=r.map(c=>{let l=c.indexOf(p.ArgParamsSeparator),u=c.substring(l+1);return s.startsWith(f.Tuple)?u.replace(p.ArgListSeparator,p.ArgCompositeSeparator):u}),o=s.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator;return t+p.ArgParamsSeparator+s+p.ArgParamsSeparator+a.join(o)}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Asset&&typeof r=="object"&&r&&"identifier"in r&&"amount"in r)return"decimals"in r?f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount)+p.ArgCompositeSeparator+String(r.decimals):f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount);if(this.typeRegistry){let e=this.typeRegistry.getHandler(t);if(e)return e.nativeToString(r);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,r)}return t+p.ArgParamsSeparator+(r?.toString()??"")}stringToNative(t){let r=t.split(p.ArgParamsSeparator),e=r[0],i=r.slice(1).join(p.ArgParamsSeparator);if(e==="null")return[e,null];if(e===f.Option){let[s,a]=i.split(p.ArgParamsSeparator);return[f.Option+p.ArgParamsSeparator+s,a||null]}if(e===f.Vector){let s=i.indexOf(p.ArgParamsSeparator),a=i.substring(0,s),o=i.substring(s+1),c=a.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator,u=(o?o.split(c):[]).map(d=>this.stringToNative(a+p.ArgParamsSeparator+d)[1]);return[f.Vector+p.ArgParamsSeparator+a,u]}else if(e.startsWith(f.Tuple)){let s=e.match(/\(([^)]+)\)/)?.[1]?.split(p.ArgCompositeSeparator),o=i.split(p.ArgCompositeSeparator).map((c,l)=>this.stringToNative(`${s[l]}${p.IdentifierParamSeparator}${c}`)[1]);return[e,o]}else if(e.startsWith(f.Struct)){let s=e.match(/\(([^)]+)\)/);if(!s)throw new Error("Struct type must include a name in the format struct(Name)");let o={_name:s[1]};return i&&i.split(p.ArgListSeparator).forEach(c=>{let l=c.match(new RegExp(`^\\(([^${p.ArgParamsSeparator}]+)${p.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(l){let[,u,d,h]=l;o[u]=this.stringToNative(`${d}${p.IdentifierParamSeparator}${h}`)[1]}}),[e,o]}else{if(e===f.String)return[e,i];if(e===f.Uint8||e===f.Uint16||e===f.Uint32)return[e,Number(i)];if(e===f.Uint64||e===f.Uint128||e===f.Uint256||e===f.Biguint)return[e,BigInt(i||0)];if(e===f.Bool)return[e,i==="true"];if(e===f.Address)return[e,i];if(e===f.Hex)return[e,i];if(e===f.Asset){let[s,a]=i.split(p.ArgCompositeSeparator),o={identifier:s,amount:BigInt(a)};return[e,o]}}if(this.typeRegistry){let s=this.typeRegistry.getHandler(e);if(s){let o=s.stringToNative(i);return[e,o]}let a=this.typeRegistry.resolveType(e);if(a!==e){let[o,c]=this.stringToNative(`${a}:${i}`);return[e,c]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${e}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(p.ArgParamsSeparator)){let[r,e]=t.split(p.ArgParamsSeparator);return[r,e]}return typeof t=="number"?[f.Uint32,t]:typeof t=="bigint"?[f.Uint64,t]:typeof t=="boolean"?[f.Bool,t]:[typeof t,t]}};var Ur=n=>new x().nativeToString(f.String,n),Hr=n=>new x().nativeToString(f.Uint8,n),Lr=n=>new x().nativeToString(f.Uint16,n),jr=n=>new x().nativeToString(f.Uint32,n),Dr=n=>new x().nativeToString(f.Uint64,n),kr=n=>new x().nativeToString(f.Biguint,n),qr=n=>new x().nativeToString(f.Bool,n),zr=n=>new x().nativeToString(f.Address,n),St=n=>new x().nativeToString(f.Asset,n),Mr=n=>new x().nativeToString(f.Hex,n),Gr=(n,t)=>{if(t===null)return f.Option+p.ArgParamsSeparator;let r=n(t),e=r.indexOf(p.ArgParamsSeparator),i=r.substring(0,e),s=r.substring(e+1);return f.Option+p.ArgParamsSeparator+i+p.ArgParamsSeparator+s},Jr=(...n)=>new x().nativeToString(f.Tuple,n),Qr=n=>new x().nativeToString(f.Struct,n),Kr=n=>new x().nativeToString(f.Vector,n);var Gt=rt(require("ajv"),1);var bt=class{constructor(t){this.pendingBrand={protocol:k("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.ensureValidSchema(e),e}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,r){if(!t)throw new Error(`Warp: ${r}`)}ensureWarpText(t,r){if(!t)throw new Error(`Warp: ${r}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${r}`)}async ensureValidSchema(t){let r=this.config.schema?.brand||B.LatestBrandSchemaUrl,i=await(await fetch(r)).json(),s=new Gt.default,a=s.compile(i);if(!a(t))throw new Error(`BrandBuilder: schema validation failed: ${s.errorsText(a.errors)}`)}};var Jt=rt(require("ajv"),1);var J=class{constructor(t){this.config=t;this.config=t}async validate(t){let r=[];return r.push(...this.validatePrimaryAction(t)),r.push(...this.validateMaxOneValuePosition(t)),r.push(...this.validateVariableNamesAndResultNamesUppercase(t)),r.push(...this.validateAbiIsSetIfApplicable(t)),r.push(...await this.validateSchema(t)),{valid:r.length===0,errors:r}}validatePrimaryAction(t){try{let{action:r}=E(t);return r?[]:["Primary action is required"]}catch(r){return[r instanceof Error?r.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(e=>e.inputs?e.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let r=[],e=(i,s)=>{i&&Object.keys(i).forEach(a=>{a!==a.toUpperCase()&&r.push(`${s} name '${a}' must be uppercase`)})};return e(t.vars,"Variable"),e(t.output,"Output"),r}validateAbiIsSetIfApplicable(t){let r=t.actions.some(a=>a.type==="contract"),e=t.actions.some(a=>a.type==="query");if(!r&&!e)return[];let i=t.actions.some(a=>a.abi),s=Object.values(t.output||{}).some(a=>a.startsWith("out.")||a.startsWith("event."));return t.output&&!i&&s?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let r=this.config.schema?.warp||B.LatestWarpSchemaUrl,i=await(await fetch(r)).json(),s=new Jt.default({strict:!1}),a=s.compile(i);return a(t)?[]:[`Schema validation failed: ${s.errorsText(a.errors)}`]}catch(r){return[`Schema validation failed: ${r instanceof Error?r.message:String(r)}`]}}};var Tt=class{constructor(t){this.config=t;this.pendingWarp={protocol:k("warp"),chain:"",name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.validate(e),e}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}async build(){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"),await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,r=100){return mt(t,r)}ensure(t,r){if(!t)throw new Error(r)}ensureWarpText(t,r){if(!t)throw new Error(r);if(typeof t=="object"&&!t.en)throw new Error(r)}async validate(t){let e=await new J(this.config).validate(t);if(!e.valid)throw new Error(e.errors.join(`
|
|
2
|
+
`))}};var Q=class{constructor(t="warp-cache"){this.prefix=t}getKey(t){return`${this.prefix}:${t}`}get(t){try{let r=localStorage.getItem(this.getKey(t));if(!r)return null;let e=JSON.parse(r,Xr);return Date.now()>e.expiresAt?(localStorage.removeItem(this.getKey(t)),null):e.value}catch{return null}}set(t,r,e){let i={value:r,expiresAt:Date.now()+e*1e3};localStorage.setItem(this.getKey(t),JSON.stringify(i,_r))}forget(t){localStorage.removeItem(this.getKey(t))}clear(){for(let t=0;t<localStorage.length;t++){let r=localStorage.key(t);r?.startsWith(this.prefix)&&localStorage.removeItem(r)}}},Qt=new x,_r=(n,t)=>typeof t=="bigint"?Qt.nativeToString("biguint",t):t,Xr=(n,t)=>typeof t=="string"&&t.startsWith(f.Biguint+":")?Qt.stringToNative(t)[1]:t;var V=class V{get(t){let r=V.cache.get(t);return r?Date.now()>r.expiresAt?(V.cache.delete(t),null):r.value:null}set(t,r,e){let i=Date.now()+e*1e3;V.cache.set(t,{value:r,expiresAt:i})}forget(t){V.cache.delete(t)}clear(){V.cache.clear()}};V.cache=new Map;var K=V;var Pt={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},lt={Warp:(n,t)=>`warp:${n}:${t}`,WarpAbi:(n,t)=>`warp-abi:${n}:${t}`,WarpExecutable:(n,t,r)=>`warp-exec:${n}:${t}:${r}`,RegistryInfo:(n,t)=>`registry-info:${n}:${t}`,Brand:(n,t)=>`brand:${n}:${t}`,Asset:(n,t,r)=>`asset:${n}:${t}:${r}`},_=class{constructor(t){this.strategy=this.selectStrategy(t)}selectStrategy(t){return t==="localStorage"?new Q:t==="memory"?new K:typeof window<"u"&&window.localStorage?new Q:new K}set(t,r,e){this.strategy.set(t,r,e)}get(t){return this.strategy.get(t)}forget(t){this.strategy.forget(t)}clear(){this.strategy.clear()}};var T=class{constructor(t,r,e){this.config=t;this.adapter=r;this.adapters=e}async apply(t,r={}){let e=this.applyVars(t,r);return await this.applyGlobals(e)}async applyGlobals(t){let r={...t};return r.actions=await Promise.all((r.actions||[]).map(async e=>await this.applyActionGlobals(e))),r=await this.applyRootGlobals(r),r}applyVars(t,r={}){if(!t?.vars)return t;let e=w(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),s=(a,o)=>{i=i.replace(new RegExp(`{{${a.toUpperCase()}}}`,"g"),o.toString())};return Object.entries(t.vars).forEach(([a,o])=>{if(typeof o!="string")s(a,o);else if(o.startsWith(p.Vars.Query+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Query.length+1),[l,u]=c.split(p.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(l):null,A=r.queries?.[l]||null||d;A&&s(a,A)}else if(o.startsWith(p.Vars.Env+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Env.length+1),[l,u]=c.split(p.ArgCompositeSeparator),h={...this.config.vars,...r.envs}?.[l];h&&s(a,h)}else o===p.Source.UserWallet&&e?s(a,e):s(a,o)}),JSON.parse(i)}async applyRootGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}async applyActionGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}applyInputs(t,r,e,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let s=this.applyGlobalsToText(t),a=this.buildInputBag(r,e,i);return $(s,a)}applyGlobalsToText(t){if(!Object.values(p.Globals).map(a=>a.Placeholder).some(a=>t.includes(`{{${a}}}`)||t.includes(`{{${a}:`)))return t;let i={config:this.config,adapter:this.adapter},s=t;return Object.values(p.Globals).forEach(a=>{let o=a.Accessor(i);o!=null&&(s=s.replace(new RegExp(`{{${a.Placeholder}}}`,"g"),o.toString())),s=this.replacePlaceholdersWithChain(s,a.Placeholder,i,a.Accessor)}),s}replacePlaceholdersWithChain(t,r,e,i){let s=new RegExp(`\\{\\{${r}:([^}]+)\\}\\}`,"g");return t.replace(s,(a,o)=>{let c=o.trim().toLowerCase();if(!this.adapters)return a;try{let l=m(c,this.adapters),u={config:this.config,adapter:l},d=i(u);return d!=null?d.toString():a}catch{return a}})}buildInputBag(t,r,e){let i={};return t.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);i[a]=String(o)}),e&&e.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);if(i[`primary.${a}`]=String(o),s.input.type==="asset"&&typeof s.input.position=="object"){let c=o;c&&typeof c=="object"&&"identifier"in c&&"amount"in c&&(i[`primary.${a}.token`]=String(c.identifier),i[`primary.${a}.amount`]=String(c.amount))}}),i}};var j=class{constructor(t,r){this.config=t;this.adapters=r;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new x,this.cache=new _(t.cache?.type)}getSerializer(){return this.serializer}getResolvedInputsFromCache(t,r,e){let i=this.cache.get(lt.WarpExecutable(t,r||"",e))||[];return H(i)}async createExecutable(t,r,e,i={}){let s=S(t,r);if(!s)throw new Error("WarpFactory: Action not found");let a=await this.getChainInfoForWarp(t,e),o=m(a.name,this.adapters),c=new T(this.config,o,this.adapters),l=await c.apply(t,i),u=S(l,r),{action:d,index:h}=E(l),A=this.getStringTypedInputs(d,e),W=await this.getResolvedInputs(a.name,d,A,c),g=await this.getModifiedInputs(W),y=[],v=[];h===r-1&&(y=W,v=g);let R=v.find(I=>I.input.position==="receiver"||I.input.position==="destination")?.value,O=this.getDestinationFromAction(u),P=R?this.serializer.stringToNative(R)[1]:O;if(P&&(P=c.applyInputs(P,v,this.serializer,g)),!P&&s.type!=="collect")throw new Error("WarpActionExecutor: Destination/Receiver not provided");let ut=this.getPreparedArgs(u,v);ut=ut.map(I=>c.applyInputs(I,v,this.serializer,g));let Kt=v.find(I=>I.input.position==="value")?.value||null,_t="value"in u?u.value:null,Xt=Kt?.split(p.ArgParamsSeparator)[1]||_t||"0",Zt=c.applyInputs(Xt,v,this.serializer,g),Yt=BigInt(Zt),tr=v.filter(I=>I.input.position==="transfer"&&I.value).map(I=>I.value),rr=[...("transfers"in u?u.transfers:[])||[],...tr||[]].map(I=>{let ar=c.applyInputs(I,v,this.serializer,g);return this.serializer.stringToNative(ar)[1]}),er=v.find(I=>I.input.position==="data")?.value,nr="data"in u?u.data||"":null,Bt=er||nr||null,ir=Bt?c.applyInputs(Bt,v,this.serializer,g):null,$t={warp:l,chain:a,action:r,destination:P,args:ut,value:Yt,transfers:rr,data:ir,resolvedInputs:v};return this.cache.set(lt.WarpExecutable(this.config.env,l.meta?.hash||"",r),$t.resolvedInputs,Pt.OneWeek),$t}async getChainInfoForWarp(t,r){if(t.chain)return m(t.chain,this.adapters).chainInfo;if(r){let i=await this.tryGetChainFromInputs(t,r);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,r){let e=t.inputs||[];return r.map((i,s)=>{let a=e[s];return!a||i.includes(p.ArgParamsSeparator)?i:this.serializer.nativeToString(a.type,i)})}async getResolvedInputs(t,r,e,i){let s=r.inputs||[],a=await Promise.all(e.map(c=>this.preprocessInput(t,c))),o=(c,l)=>{if(c.source==="query"){let u=this.url.searchParams.get(c.name);return u?this.serializer.nativeToString(c.type,u):null}else if(c.source===p.Source.UserWallet){let u=w(this.config,t);return u?this.serializer.nativeToString("address",u):null}else if(c.source==="hidden"){if(c.default===void 0)return null;let u=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,u)}else return a[l]||null};return s.map((c,l)=>{let u=o(c,l),d=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:u||(d!==void 0?this.serializer.nativeToString(c.type,d):null)}})}async getModifiedInputs(t){let r=[];for(let e=0;e<t.length;e++){let i=t[e];if(i.input.modifier?.startsWith("scale:")){let[,s]=i.input.modifier.split(":");if(isNaN(Number(s))){let a=Number(t.find(l=>l.input.name===s)?.value?.split(":")[1]);if(!a)throw new Error(`WarpActionExecutor: Exponent value not found for input ${s}`);let o=i.value?.split(":")[1];if(!o)throw new Error("WarpActionExecutor: Scalable value not found");let c=q(o,+a);r.push({...i,value:`${i.input.type}:${c}`})}else{let a=i.value?.split(":")[1];if(!a)throw new Error("WarpActionExecutor: Scalable value not found");let o=q(a,+s);r.push({...i,value:`${i.input.type}:${o}`})}}else if(i.input.modifier?.startsWith(p.Transform.Prefix)){let s=i.input.modifier.substring(p.Transform.Prefix.length),a=this.config.transform?.runner;if(!a||typeof a.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let o=this.buildInputContext(t,e,i),c=await a.run(s,o);if(c==null)r.push(i);else{let l=this.serializer.nativeToString(i.input.type,c);r.push({...i,value:l})}}else r.push(i)}return r}buildInputContext(t,r,e){let i={};for(let s=0;s<r;s++){let a=t[s];if(!a.value)continue;let o=a.input.as||a.input.name,[,c]=this.serializer.stringToNative(a.value);if(i[o]=c,a.input.type==="asset"&&typeof c=="object"&&c!==null){let l=c;"identifier"in l&&"amount"in l&&(i[`${o}.token`]=String(l.identifier),i[`${o}.amount`]=String(l.amount),i[`${o}.identifier`]=String(l.identifier))}}if(e&&e.value){let s=e.input.as||e.input.name,[,a]=this.serializer.stringToNative(e.value);if(i[s]=a,e.input.type==="asset"&&typeof a=="object"&&a!==null){let o=a;"identifier"in o&&"amount"in o&&(i[`${s}.token`]=String(o.identifier),i[`${s}.amount`]=String(o.amount),i[`${s}.identifier`]=String(o.identifier))}}return i}async preprocessInput(t,r){try{let[e,i]=st(r),s=m(t,this.adapters);if(e==="asset"){let[a,o,c]=i.split(p.ArgCompositeSeparator);if(c)return r;let l=await s.dataLoader.getAsset(a);if(!l)throw new Error(`WarpFactory: Asset not found for asset ${a}`);if(typeof l.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${a}`);let u=q(o,l.decimals);return St({...l,amount:u})}else return r}catch(e){throw C.warn("WarpFactory: Preprocess input failed",e),e}}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,r){let e="args"in t?t.args||[]:[],i=[];return r.forEach(({input:s,value:a})=>{if(!(!a||!s.position)){if(typeof s.position=="object"){if(s.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${s.name}" has type "${s.type}"`);if(!s.position.token?.startsWith("arg:")||!s.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${s.name}"`);let[o,c]=this.serializer.stringToNative(a),l=c;if(!l||typeof l!="object"||!("identifier"in l)||!("amount"in l))throw new Error(`WarpFactory: Invalid asset value for input "${s.name}"`);let u=Number(s.position.token.split(":")[1])-1,d=Number(s.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",l.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",l.amount)})}else if(s.position.startsWith("arg:")){let o=Number(s.position.split(":")[1])-1;i.push({index:o,value:a})}}}),i.forEach(({index:s,value:a})=>{for(;e.length<=s;)e.push(void 0);e[s]=a}),e.filter(s=>s!==void 0)}async tryGetChainFromInputs(t,r){let e=t.actions.find(c=>c.inputs?.some(l=>l.position==="chain"));if(!e)return null;let i=e.inputs?.findIndex(c=>c.position==="chain");if(i===-1||i===void 0)return null;let s=r[i];if(!s)throw new Error("Chain input not found");let a=this.serializer.stringToNative(s)[1];return m(a,this.adapters).chainInfo}};var X=class{constructor(t,r,e){this.config=t;this.adapters=r;this.handlers=e;this.handlers=e,this.factory=new j(t,r)}async execute(t,r,e={}){let i=[],s=null,a=[],o=[],{action:c,index:l}=E(t);for(let u=1;u<=t.actions.length;u++){let d=S(t,u);if(!it(d,t))continue;let{tx:h,chain:A,immediateExecution:W,executable:g}=await this.executeAction(t,u,r,e);h&&i.push(h),A&&(s=A),W&&a.push(W),g&&u===l+1&&g.resolvedInputs&&(o=H(g.resolvedInputs))}if(!s&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&a.length>0){let u=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(u))}return{txs:i,chain:s,immediateExecutions:a,resolvedInputs:o}}async executeAction(t,r,e,i={}){let s=S(t,r);if(s.type==="link")return s.when&&!await this.evaluateWhenCondition(t,s,e,i)?{tx:null,chain:null,immediateExecution:null,executable:null}:(await this.callHandler(async()=>{let l=s.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(l):dt.open(l,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null});let a=await this.factory.createExecutable(t,r,e,i);if(s.when&&!await this.evaluateWhenCondition(t,s,e,i,a.resolvedInputs,a.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(s.type==="collect"){let l=await this.executeCollect(a);return l.status==="success"?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):l.status==="unhandled"?(await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):(this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:null,immediateExecution:null,executable:a})}let o=m(a.chain.name,this.adapters);if(s.type==="query"){let l=await o.executor.executeQuery(a);return l.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:a.chain,execution:l,tx:null})):this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:a.chain,immediateExecution:l,executable:a}}return{tx:await o.executor.createTransaction(a),chain:a.chain,immediateExecution:null,executable:a}}async evaluateOutput(t,r){if(r.length===0||t.actions.length===0||!this.handlers)return;let e=await this.factory.getChainInfoForWarp(t),i=m(e.name,this.adapters),s=(await Promise.all(t.actions.map(async(a,o)=>{if(!it(a,t)||a.type!=="transfer"&&a.type!=="contract")return null;let c=r[o],l=o+1;if(!c){let d=this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,l),h={status:"error",warp:t,action:l,user:w(this.config,e.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:d};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${l} failed: Transaction not found`})),h}let u=await i.output.getActionExecution(t,l,c);return u.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:l,chain:e,execution:u,tx:c})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(u.values)})),u}))).filter(a=>a!==null);if(s.every(a=>a.status==="success")){let a=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(a))}else await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(s.map(a=>a.values))}`}))}async executeCollect(t,r){let e=w(this.config,t.chain.name),i=S(t.warp,t.action),s=this.factory.getSerializer(),a=G(t.resolvedInputs,s);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,e,a,r);let{values:o,output:c}=await ot(t.warp,a,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,e,"unhandled",o,c)}async doHttpRequest(t,r,e,i,s){let a=new T(this.config,m(t.chain.name,this.adapters),this.adapters),o=new Headers;if(o.set("Content-Type","application/json"),o.set("Accept","application/json"),this.handlers?.onSignRequest){if(!e)throw new Error(`No wallet configured for chain ${t.chain.name}`);let{message:d,nonce:h,expiresAt:A}=await pt(e,`${t.chain.name}-adapter`),W=await this.callHandler(()=>this.handlers?.onSignRequest?.({message:d,chain:t.chain}));if(W){let g=ct(e,W,h,A);Object.entries(g).forEach(([y,v])=>o.set(y,v))}}r.headers&&Object.entries(r.headers).forEach(([d,h])=>{let A=a.applyInputs(h,t.resolvedInputs,this.factory.getSerializer());o.set(d,A)});let c=r.method||"GET",l=c==="GET"?void 0:JSON.stringify({...i,...s}),u=a.applyInputs(r.url,t.resolvedInputs,this.factory.getSerializer());C.debug("WarpExecutor: Executing HTTP collect",{url:u,method:c,headers:o,body:l});try{let d=await fetch(u,{method:c,headers:o,body:l});C.debug("Collect response status",{status:d.status});let h=await d.json();C.debug("Collect response content",{content:h});let{values:A,output:W}=await ot(t.warp,h,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,w(this.config,t.chain.name),d.ok?"success":"error",A,W,h)}catch(d){C.error("WarpActionExecutor: Error executing collect",d);let h=H(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:e,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:d},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(e=>e.input.position==="receiver"||e.input.position==="destination")?.value||t.destination}buildCollectResult(t,r,e,i,s,a){let o=It(this.config,this.adapters,t.warp,t.action,s),c=H(t.resolvedInputs);return{status:e,warp:t.warp,action:t.action,user:r||w(this.config,t.chain.name),txHash:null,tx:null,next:o,values:i,output:a?{...s,_DATA:a}:s,messages:xt(t.warp,s,this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:c}}async callHandler(t){if(t)return await t()}async evaluateWhenCondition(t,r,e,i,s,a){if(!r.when)return!0;let o=a?{name:a}:await this.factory.getChainInfoForWarp(t,e),c=m(o.name,this.adapters),l=new T(this.config,c,this.adapters),{action:u}=E(t),d=this.factory.getStringTypedInputs(u,e),h=await this.factory.getResolvedInputs(o.name,u,d,l),A=await this.factory.getModifiedInputs(h),W;if(s)W=s;else{let v=await this.factory.getResolvedInputs(o.name,r,this.factory.getStringTypedInputs(r,e),l);W=await this.factory.getModifiedInputs(v)}let g=l.buildInputBag(W,this.factory.getSerializer(),A),y=Wt(r.when,g);return yt(y)}};var Z=class{constructor(t){this.config=t}async search(t,r,e){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}`,...e},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...r})});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 Y=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(l=>l[0]).filter(l=>this.isValid(l)).map(l=>this.detect(l)),a=(await Promise.all(i)).filter(l=>l.match),o=a.length>0,c=a.map(l=>({url:l.url,warp:l.warp}));return{match:o,output:c}}async detect(t,r){let e={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(p.HttpProtocolPrefix)?D(t):b(t);if(!i)return e;try{let{type:s,identifierBase:a}=i,o=null,c=null,l=null,u=m(i.chain,this.adapters),d=t.startsWith(p.HttpProtocolPrefix)?vt(t):At(i.identifier);if(s==="hash"){o=await u.builder().createFromTransactionHash(a,r);let g=await u.registry.getInfoByHash(a,r);c=g.registryInfo,l=g.brand}else if(s==="alias"){let g=await u.registry.getInfoByAlias(a,r);c=g.registryInfo,l=g.brand,g.registryInfo&&(o=await u.builder().createFromTransactionHash(g.registryInfo.hash,r))}if(o&&o.meta&&(Zr(o,u.chainInfo.name,c,i.identifier),o.meta.query=d),!o)return e;let h=o.chain||u.chainInfo.name,A=m(h,this.adapters),W=await new T(this.config,A,this.adapters).apply(o);return{match:!0,url:t,warp:W,chain:h,registryInfo:c,brand:l}}catch(s){return C.error("Error detecting warp link",s),e}}},Zr=(n,t,r,e)=>{n.meta&&(n.meta.identifier=r?.alias?at(t,"alias",r.alias):at(t,"hash",r?.hash??e))};var Et=class{constructor(t,r){this.config=t;this.adapters=r}getConfig(){return this.config}getAdapters(){return this.adapters}addAdapter(t){return this.adapters.push(t),this}createExecutor(t){return new X(this.config,this.adapters,t)}async detectWarp(t,r){return new Y(this.config,this.adapters).detect(t,r)}async executeWarp(t,r,e,i={}){let s=typeof t=="object",a=!s&&t.startsWith("http")&&t.endsWith(".json"),o=s?t:null;if(!o&&a){let W=await fetch(t);if(!W.ok)throw new Error("WarpClient: executeWarp - invalid url");o=await W.json()}if(o||(o=(await this.detectWarp(t,i.cache)).warp),!o)throw new Error("Warp not found");let c=this.createExecutor(e),{txs:l,chain:u,immediateExecutions:d,resolvedInputs:h}=await c.execute(o,r,{queries:i.queries});return{txs:l,chain:u,immediateExecutions:d,evaluateOutput:async W=>{await c.evaluateOutput(o,W)},resolvedInputs:h}}async createInscriptionTransaction(t,r){return await m(t,this.adapters).builder().createInscriptionTransaction(r)}async createFromTransaction(t,r,e=!1){return m(t,this.adapters).builder().createFromTransaction(r,e)}async createFromTransactionHash(t,r){let e=b(t);if(!e)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return m(e.chain,this.adapters).builder().createFromTransactionHash(t,r)}async signMessage(t,r){if(!w(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return m(t,this.adapters).wallet.signMessage(r)}async getActions(t,r,e=!1){let i=this.getDataLoader(t);return(await Promise.all(r.map(async a=>i.getAction(a,e)))).filter(a=>a!==null)}getExplorer(t){return m(t,this.adapters).explorer}getOutput(t){return m(t,this.adapters).output}async getRegistry(t){let r=m(t,this.adapters).registry;return await r.init(),r}getDataLoader(t){return m(t,this.adapters).dataLoader}getWallet(t){return m(t,this.adapters).wallet}get factory(){return new j(this.config,this.adapters)}get index(){return new Z(this.config)}get linkBuilder(){return new U(this.config,this.adapters)}createBuilder(t){return m(t,this.adapters).builder()}createAbiBuilder(t){return m(t,this.adapters).abiBuilder()}createBrandBuilder(t){return m(t,this.adapters).brandBuilder()}createSerializer(t){return m(t,this.adapters).serializer}resolveText(t){return z(t,this.config)}};var Rt=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,r){this.typeHandlers.set(t,r)}registerTypeAlias(t,r){this.typeAliases.set(t,r)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let r=this.typeAliases.get(t);return r?this.getHandler(r):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let r=this.typeAliases.get(t);return r?this.resolveType(r):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};0&&(module.exports={BrowserCryptoProvider,CacheTtl,NodeCryptoProvider,WARP_LANGUAGES,WarpBrandBuilder,WarpBuilder,WarpCache,WarpCacheKey,WarpChainName,WarpClient,WarpConfig,WarpConstants,WarpExecutor,WarpFactory,WarpIndex,WarpInputTypes,WarpInterpolator,WarpLinkBuilder,WarpLinkDetecter,WarpLogger,WarpProtocolVersions,WarpSerializer,WarpTypeRegistry,WarpValidator,address,applyOutputToMessages,asset,biguint,bool,buildMappedOutput,buildNestedPayload,bytesToBase64,bytesToHex,cleanWarpIdentifier,createAuthHeaders,createAuthMessage,createCryptoProvider,createHttpAuthHeaders,createSignableMessage,createWarpI18nText,createWarpIdentifier,evaluateOutputCommon,evaluateWhenCondition,extractCollectOutput,extractIdentifierInfoFromUrl,extractQueryStringFromIdentifier,extractQueryStringFromUrl,extractResolvedInputValues,extractWarpSecrets,findWarpAdapterForChain,getCryptoProvider,getEventNameFromWarp,getLatestProtocolIdentifier,getNextInfo,getProviderConfig,getRandomBytes,getRandomHex,getWarpActionByIndex,getWarpBrandLogoUrl,getWarpInfoFromIdentifier,getWarpPrimaryAction,getWarpWalletAddress,getWarpWalletAddressFromConfig,getWarpWalletMnemonic,getWarpWalletMnemonicFromConfig,getWarpWalletPrivateKey,getWarpWalletPrivateKeyFromConfig,hasInputPrefix,hex,isEqualWarpIdentifier,isWarpActionAutoExecute,isWarpI18nText,mergeNestedPayload,option,parseOutputOutIndex,parseSignedMessage,replacePlaceholders,replacePlaceholdersInWhenExpression,resolveWarpText,safeWindow,setCryptoProvider,shiftBigintBy,splitInput,string,struct,testCryptoAvailability,toInputPayloadValue,toPreviewText,tuple,uint16,uint32,uint64,uint8,validateSignedMessage,vector});
|
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
var kt=(c=>(c.Multiversx="multiversx",c.Vibechain="vibechain",c.Sui="sui",c.Ethereum="ethereum",c.Base="base",c.Arbitrum="arbitrum",c.Somnia="somnia",c.Fastset="fastset",c))(kt||{}),p={HttpProtocolPrefix:"http",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:n=>n.config.user?.wallets?.[n.adapter.chainInfo.name]},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:n=>{if(!n.adapter.wallet)return null;try{return n.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:n=>n.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:n=>n.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},f={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"},ft=typeof window<"u"?window:{open:()=>{}};var F={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},$={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/v${F.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/brand/v${F.Brand}.schema.json`,DefaultClientUrl:n=>n==="devnet"?"https://devnet.usewarp.to":n==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",p.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 mr=(n,t)=>{let r=n.alerts?.[t];if(!r)return null;let e=p.Alerts.TriggerEventPrefix+p.ArgParamsSeparator;if(!r.trigger.startsWith(e))return null;let i=r.trigger.replace(e,"");return i||null};var yr=(n,t)=>typeof n.logo=="string"?n.logo:n.logo[t?.scheme??"light"];var rt=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let r=new Uint8Array(t);return window.crypto.getRandomValues(r),r}},et=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let r=await import("crypto");return new Uint8Array(r.randomBytes(t))}catch(r){throw new Error(`Node.js crypto not available: ${r instanceof Error?r.message:"Unknown error"}`)}}},V=null;function gt(){if(V)return V;if(typeof window<"u"&&window.crypto)return V=new rt,V;if(typeof process<"u"&&process.versions?.node)return V=new et,V;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Ar(n){V=n}async function ht(n,t){if(n<=0||!Number.isInteger(n))throw new Error("Size must be a positive integer");return(t||gt()).getRandomBytes(n)}function qt(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(n.length*2);for(let r=0;r<n.length;r++){let e=n[r];t[r*2]=(e>>>4).toString(16),t[r*2+1]=(e&15).toString(16)}return t.join("")}function xr(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(n).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(n));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function mt(n,t){if(n<=0||n%2!==0)throw new Error("Length must be a positive even number");let r=await ht(n/2,t);return qt(r)}async function Cr(){let n={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?n.environment="browser":typeof process<"u"&&process.versions?.node&&(n.environment="nodejs"),await ht(16),n.randomBytes=!0}catch{}return n}function Ir(){return gt()}var br=n=>Object.values(n.vars||{}).filter(t=>t.startsWith(`${p.Vars.Env}:`)).map(t=>{let r=t.replace(`${p.Vars.Env}:`,"").trim(),[e,i]=r.split(p.ArgCompositeSeparator);return{key:e,description:i||null}});var m=(n,t)=>{let r=t.find(e=>e.chainInfo.name.toLowerCase()===n.toLowerCase());if(!r)throw new Error(`Adapter not found for chain: ${n}`);return r},z=n=>{if(n==="warp")return`warp:${F.Warp}`;if(n==="brand")return`brand:${F.Brand}`;if(n==="abi")return`abi:${F.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${n}`)},b=(n,t)=>n?.actions[t-1],N=n=>{if(n.actions.length===0)throw new Error(`Warp has no primary action: ${n.meta?.identifier}`);let t=n.actions.find(s=>s.primary===!0);if(t)return{action:t,index:n.actions.indexOf(t)};let r=["transfer","contract","query","collect"],e=n.actions.find(s=>r.includes(s.type));return e?{action:e,index:n.actions.indexOf(e)}:{action:n.actions[0],index:0}},nt=(n,t)=>{if(n.auto===!1)return!1;if(n.type==="link"){if(n.auto===!0)return!0;let{action:r}=N(t);return n===r}return!0},M=(n,t)=>{let r=n.toString(),[e,i=""]=r.split("."),s=Math.abs(t);if(t>0)return BigInt(e+i.padEnd(s,"0"));if(t<0){let a=e+i;if(s>=a.length)return 0n;let o=a.slice(0,-s)||"0";return BigInt(o)}else return r.includes(".")?BigInt(r.split(".")[0]):BigInt(r)},Wt=(n,t=100)=>{if(!n)return"";let r=n.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return r=r.startsWith("- ")?r.slice(2):r,r=r.length>t?r.substring(0,r.lastIndexOf(" ",t))+"...":r,r},O=(n,t)=>n.replace(/\{\{([^}]+)\}\}/g,(r,e)=>t[e]||"");var Rr={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"},G=(n,t)=>{let r=t?.preferences?.locale||"en";if(typeof n=="string")return n;if(typeof n=="object"&&n!==null){if(r in n)return n[r];if("en"in n)return n.en;let e=Object.keys(n);if(e.length>0)return n[e[0]]}return""},Br=n=>typeof n=="object"&&n!==null&&Object.keys(n).length>0,$r=n=>n;var J=n=>n.startsWith(p.IdentifierAliasMarker)?n.replace(p.IdentifierAliasMarker,""):n,Or=(n,t)=>!n||!t?!1:J(n)===J(t),it=(n,t,r)=>{let e=J(r);return t===p.IdentifierType.Alias?p.IdentifierAliasMarker+n+p.IdentifierParamSeparator+e:n+p.IdentifierParamSeparator+t+p.IdentifierParamSeparator+e},T=n=>{let t=decodeURIComponent(n).trim(),r=J(t),e=r.split("?")[0],i=yt(e);if(e.length===64&&/^[a-fA-F0-9]+$/.test(e))return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Hash,identifier:r,identifierBase:e};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[s,a,o]=i;if(a===p.IdentifierType.Alias||a===p.IdentifierType.Hash){let c=r.includes("?")?o+r.substring(r.indexOf("?")):o;return{chain:s,type:a,identifier:c,identifierBase:o}}}if(i.length===2){let[s,a]=i;if(s===p.IdentifierType.Alias||s===p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a;return{chain:p.IdentifierChainDefault,type:s,identifier:o,identifierBase:a}}}if(i.length===2){let[s,a]=i;if(s!==p.IdentifierType.Alias&&s!==p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a,c=zt(a,s)?p.IdentifierType.Hash:p.IdentifierType.Alias;return{chain:s,type:c,identifier:o,identifierBase:a}}}return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Alias,identifier:r,identifierBase:e}},D=n=>{let t=new URL(n),e=t.searchParams.get(p.IdentifierParamName);if(e||(e=t.pathname.split("/")[1]),!e)return null;let i=decodeURIComponent(e);return T(i)},zt=(n,t)=>/^[a-fA-F0-9]+$/.test(n)&&n.length>32,Mt=n=>{let t=p.IdentifierParamSeparator,r=n.indexOf(t);return r!==-1?{separator:t,index:r}:null},yt=n=>{let t=Mt(n);if(!t)return[n];let{separator:r,index:e}=t,i=n.substring(0,e),s=n.substring(e+r.length),a=yt(s);return[i,...a]},vt=n=>{try{let t=new URL(n),r=new URLSearchParams(t.search);return r.delete(p.IdentifierParamName),r.toString()||null}catch{return null}},At=n=>{let t=n.indexOf("?");if(t===-1||t===n.length-1)return null;let r=n.substring(t+1);return r.length>0?r:null};var at=n=>{let[t,...r]=n.split(/:(.*)/,2);return[t,r[0]||""]},Hr=n=>{let t=new Set(Object.values(f));if(!n.includes(p.ArgParamsSeparator))return!1;let r=at(n)[0];return t.has(r)};var xt=(n,t,r)=>{let e=Object.entries(n.messages||{}).map(([i,s])=>{let a=G(s,r);return[i,O(a,t)]});return Object.fromEntries(e)};import Gt from"qr-code-styling";var H=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}build(t,r,e){let i=this.config.clientUrl||$.DefaultClientUrl(this.config.env),s=m(t,this.adapters),a=r===p.IdentifierType.Alias?e:r+p.IdentifierParamSeparator+e,o=s.chainInfo.name+p.IdentifierParamSeparator+a,c=encodeURIComponent(o);return $.SuperClientUrls.includes(i)?`${i}/${c}`:`${i}?${p.IdentifierParamName}=${c}`}buildFromPrefixedIdentifier(t){let r=T(t);if(!r)return null;let e=m(r.chain,this.adapters);return e?this.build(e.chainInfo.name,r.type,r.identifierBase):null}generateQrCode(t,r,e,i=512,s="white",a="black",o="#23F7DD"){let c=m(t,this.adapters),l=this.build(c.chainInfo.name,r,e);return new Gt({type:"svg",width:i,height:i,data:String(l),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:s},dotsOptions:{type:"extra-rounded",color:a},cornersSquareOptions:{type:"extra-rounded",color:a},cornersDotOptions:{type:"square",color:a},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(o)}" 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 Jt="https://",Ct=(n,t,r,e,i)=>{let s=r.actions?.[e-1]?.next||r.next||null;if(!s)return null;if(s.startsWith(Jt))return[{identifier:null,url:s}];let[a,o]=s.split("?");if(!o){let g=O(a,{...r.vars,...i});return[{identifier:g,url:st(t,g,n)}]}let c=o.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(c.length===0){let g=O(o,{...r.vars,...i}),W=g?`${a}?${g}`:a;return[{identifier:W,url:st(t,W,n)}]}let l=c[0];if(!l)return[];let u=l.match(/{{([^[]+)\[\]/),d=u?u[1]:null;if(!d||i[d]===void 0)return[];let h=Array.isArray(i[d])?i[d]:[i[d]];if(h.length===0)return[];let v=c.filter(g=>g.includes(`{{${d}[]`)).map(g=>{let W=g.match(/\[\](\.[^}]+)?}}/),y=W&&W[1]||"";return{placeholder:g,field:y?y.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return h.map(g=>{let W=o;for(let{regex:P,field:B}of v){let S=B?Qt(g,B):g;if(S==null)return null;W=W.replace(P,S)}if(W.includes("{{")||W.includes("}}"))return null;let y=W?`${a}?${W}`:a;return{identifier:y,url:st(t,y,n)}}).filter(g=>g!==null)},st=(n,t,r)=>{let[e,i]=t.split("?"),s=T(e)||{chain:p.IdentifierChainDefault,type:"alias",identifier:e,identifierBase:e},a=m(s.chain,n);if(!a)throw new Error(`Adapter not found for chain ${s.chain}`);let o=new H(r,n).build(a.chainInfo.name,s.type,s.identifierBase);if(!i)return o;let c=new URL(o);return new URLSearchParams(i).forEach((l,u)=>c.searchParams.set(u,l)),c.toString().replace(/\/\?/,"?")},Qt=(n,t)=>t.split(".").reduce((r,e)=>r?.[e],n);function Kt(n,t,r){return n.startsWith(p.Position.Payload)?n.slice(p.Position.Payload.length).split(".").reduceRight((e,i,s,a)=>({[i]:s===a.length-1?{[t]:r}:e}),{}):{[t]:r}}function It(n,t){if(!n)return{...t};if(!t)return{...n};let r={...n};return Object.keys(t).forEach(e=>{r[e]&&typeof r[e]=="object"&&typeof t[e]=="object"?r[e]=It(r[e],t[e]):r[e]=t[e]}),r}function _t(n,t){if(!n.value)return null;let r=t.stringToNative(n.value)[1];if(n.input.type==="biguint")return r.toString();if(n.input.type==="asset"){let{identifier:e,amount:i}=r;return{identifier:e,amount:i.toString()}}else return r}function L(n){return n.map(t=>t.value).filter(t=>t!=null&&t!=="")}function Q(n,t){let r={};return n.forEach(e=>{let i=e.input.as||e.input.name,s=_t(e,t);if(e.input.position&&typeof e.input.position=="string"&&e.input.position.startsWith(p.Position.Payload)){let a=Kt(e.input.position,i,s);r=It(r,a)}else r[i]=s}),r}var ee=(n,t,r,e)=>{let i=n.preferences?.providers?.[t];return i?.[r]?typeof i[r]=="string"?{url:i[r]}:i[r]:{url:e}};var U=class U{static debug(...t){U.isTestEnv||console.debug(...t)}static info(...t){U.isTestEnv||console.info(...t)}static warn(...t){U.isTestEnv||console.warn(...t)}static error(...t){U.isTestEnv||console.error(...t)}};U.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var I=U;var ot=async(n,t,r,e,i,s)=>{let a=[],o=[],c={};for(let[u,d]of Object.entries(n.output||{})){if(d.startsWith(p.Transform.Prefix))continue;let h=tr(d);if(h!==null&&h!==r){c[u]=null;continue}let[v,...A]=d.split("."),g=(W,y)=>y.reduce((P,B)=>P&&P[B]!==void 0?P[B]:null,W);if(v==="out"||v.startsWith("out[")){let W=A.length===0?t?.data||t:g(t,A);a.push(String(W)),o.push(W),c[u]=W}else c[u]=d}let l=Q(e,i);return{values:{string:a,native:o,mapped:l},output:await Xt(n,c,r,e,i,s)}},Xt=async(n,t,r,e,i,s)=>{if(!n.output)return t;let a={...t};return a=Zt(a,n,r,e,i),a=await Yt(n,a,s.transform?.runner||null),a},Zt=(n,t,r,e,i)=>{let s={...n},a=b(t,r)?.inputs||[];for(let[o,c]of Object.entries(s))if(typeof c=="string"&&c.startsWith("in.")){let l=c.split(".")[1],u=a.findIndex(h=>h.as===l||h.name===l),d=u!==-1?e[u]?.value:null;s[o]=d?i.stringToNative(d)[1]:null}return s},Yt=async(n,t,r)=>{if(!n.output)return t;let e={...t},i=Object.entries(n.output).filter(([,s])=>s.startsWith(p.Transform.Prefix)).map(([s,a])=>({key:s,code:a.substring(p.Transform.Prefix.length)}));if(i.length>0&&(!r||typeof r.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");for(let{key:s,code:a}of i)try{e[s]=await r.run(a,e)}catch(o){I.error(`Transform error for output '${s}':`,o),e[s]=null}return e},tr=n=>{if(n==="out")return 1;let t=n.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(n.startsWith("out.")||n.startsWith("event."),null)};async function rr(n,t,r,e=5){let i=await mt(64,r),s=new Date(Date.now()+e*60*1e3).toISOString();return{message:JSON.stringify({wallet:n,nonce:i,expiresAt:s,purpose:t}),nonce:i,expiresAt:s}}async function pt(n,t,r,e){let i=e||`prove-wallet-ownership for app "${t}"`;return rr(n,i,r,5)}function ct(n,t,r,e){return{"X-Signer-Wallet":n,"X-Signer-Signature":t,"X-Signer-Nonce":r,"X-Signer-ExpiresAt":e}}async function de(n,t,r,e){let{message:i,nonce:s,expiresAt:a}=await pt(n,r,e),o=await t(i);return ct(n,o,s,a)}function fe(n){let t=new Date(n).getTime();return Date.now()<t}function ge(n){try{let t=JSON.parse(n);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 er=n=>n?typeof n=="string"?n:n.address:null,w=(n,t)=>er(n.user?.wallets?.[t]||null),nr=n=>n?typeof n=="string"?n:n.privateKey:null,ir=n=>n?typeof n=="string"?n:n.mnemonic:null,me=(n,t)=>nr(n.user?.wallets?.[t]||null)?.trim()||null,We=(n,t)=>ir(n.user?.wallets?.[t]||null)?.trim()||null;var x=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,r){if(t===f.Tuple&&Array.isArray(r)){if(r.length===0)return t+p.ArgParamsSeparator;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r.map(a=>this.getTypeAndValue(a)),i=e.map(([a])=>a),s=e.map(([,a])=>a);return`${t}(${i.join(p.ArgCompositeSeparator)})${p.ArgParamsSeparator}${s.join(p.ArgListSeparator)}`}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Struct&&typeof r=="object"&&r!==null&&!Array.isArray(r)){let e=r;if(!e._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=e._name,s=Object.keys(e).filter(o=>o!=="_name");if(s.length===0)return`${t}(${i})${p.ArgParamsSeparator}`;let a=s.map(o=>{let[c,l]=this.getTypeAndValue(e[o]);return`(${o}${p.ArgParamsSeparator}${c})${l}`});return`${t}(${i})${p.ArgParamsSeparator}${a.join(p.ArgListSeparator)}`}if(t===f.Vector&&Array.isArray(r)){if(r.length===0)return`${t}${p.ArgParamsSeparator}`;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r[0],i=e.indexOf(p.ArgParamsSeparator),s=e.substring(0,i),a=r.map(c=>{let l=c.indexOf(p.ArgParamsSeparator),u=c.substring(l+1);return s.startsWith(f.Tuple)?u.replace(p.ArgListSeparator,p.ArgCompositeSeparator):u}),o=s.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator;return t+p.ArgParamsSeparator+s+p.ArgParamsSeparator+a.join(o)}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Asset&&typeof r=="object"&&r&&"identifier"in r&&"amount"in r)return"decimals"in r?f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount)+p.ArgCompositeSeparator+String(r.decimals):f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount);if(this.typeRegistry){let e=this.typeRegistry.getHandler(t);if(e)return e.nativeToString(r);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,r)}return t+p.ArgParamsSeparator+(r?.toString()??"")}stringToNative(t){let r=t.split(p.ArgParamsSeparator),e=r[0],i=r.slice(1).join(p.ArgParamsSeparator);if(e==="null")return[e,null];if(e===f.Option){let[s,a]=i.split(p.ArgParamsSeparator);return[f.Option+p.ArgParamsSeparator+s,a||null]}if(e===f.Vector){let s=i.indexOf(p.ArgParamsSeparator),a=i.substring(0,s),o=i.substring(s+1),c=a.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator,u=(o?o.split(c):[]).map(d=>this.stringToNative(a+p.ArgParamsSeparator+d)[1]);return[f.Vector+p.ArgParamsSeparator+a,u]}else if(e.startsWith(f.Tuple)){let s=e.match(/\(([^)]+)\)/)?.[1]?.split(p.ArgCompositeSeparator),o=i.split(p.ArgCompositeSeparator).map((c,l)=>this.stringToNative(`${s[l]}${p.IdentifierParamSeparator}${c}`)[1]);return[e,o]}else if(e.startsWith(f.Struct)){let s=e.match(/\(([^)]+)\)/);if(!s)throw new Error("Struct type must include a name in the format struct(Name)");let o={_name:s[1]};return i&&i.split(p.ArgListSeparator).forEach(c=>{let l=c.match(new RegExp(`^\\(([^${p.ArgParamsSeparator}]+)${p.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(l){let[,u,d,h]=l;o[u]=this.stringToNative(`${d}${p.IdentifierParamSeparator}${h}`)[1]}}),[e,o]}else{if(e===f.String)return[e,i];if(e===f.Uint8||e===f.Uint16||e===f.Uint32)return[e,Number(i)];if(e===f.Uint64||e===f.Uint128||e===f.Uint256||e===f.Biguint)return[e,BigInt(i||0)];if(e===f.Bool)return[e,i==="true"];if(e===f.Address)return[e,i];if(e===f.Hex)return[e,i];if(e===f.Asset){let[s,a]=i.split(p.ArgCompositeSeparator),o={identifier:s,amount:BigInt(a)};return[e,o]}}if(this.typeRegistry){let s=this.typeRegistry.getHandler(e);if(s){let o=s.stringToNative(i);return[e,o]}let a=this.typeRegistry.resolveType(e);if(a!==e){let[o,c]=this.stringToNative(`${a}:${i}`);return[e,c]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${e}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(p.ArgParamsSeparator)){let[r,e]=t.split(p.ArgParamsSeparator);return[r,e]}return typeof t=="number"?[f.Uint32,t]:typeof t=="bigint"?[f.Uint64,t]:typeof t=="boolean"?[f.Bool,t]:[typeof t,t]}};var Ie=n=>new x().nativeToString(f.String,n),we=n=>new x().nativeToString(f.Uint8,n),Se=n=>new x().nativeToString(f.Uint16,n),be=n=>new x().nativeToString(f.Uint32,n),Te=n=>new x().nativeToString(f.Uint64,n),Pe=n=>new x().nativeToString(f.Biguint,n),Ee=n=>new x().nativeToString(f.Bool,n),Re=n=>new x().nativeToString(f.Address,n),wt=n=>new x().nativeToString(f.Asset,n),Be=n=>new x().nativeToString(f.Hex,n),$e=(n,t)=>{if(t===null)return f.Option+p.ArgParamsSeparator;let r=n(t),e=r.indexOf(p.ArgParamsSeparator),i=r.substring(0,e),s=r.substring(e+1);return f.Option+p.ArgParamsSeparator+i+p.ArgParamsSeparator+s},Ve=(...n)=>new x().nativeToString(f.Tuple,n),Ne=n=>new x().nativeToString(f.Struct,n),Oe=n=>new x().nativeToString(f.Vector,n);import ar from"ajv";var St=class{constructor(t){this.pendingBrand={protocol:z("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.ensureValidSchema(e),e}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,r){if(!t)throw new Error(`Warp: ${r}`)}ensureWarpText(t,r){if(!t)throw new Error(`Warp: ${r}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${r}`)}async ensureValidSchema(t){let r=this.config.schema?.brand||$.LatestBrandSchemaUrl,i=await(await fetch(r)).json(),s=new ar,a=s.compile(i);if(!a(t))throw new Error(`BrandBuilder: schema validation failed: ${s.errorsText(a.errors)}`)}};import sr from"ajv";var K=class{constructor(t){this.config=t;this.config=t}async validate(t){let r=[];return r.push(...this.validatePrimaryAction(t)),r.push(...this.validateMaxOneValuePosition(t)),r.push(...this.validateVariableNamesAndResultNamesUppercase(t)),r.push(...this.validateAbiIsSetIfApplicable(t)),r.push(...await this.validateSchema(t)),{valid:r.length===0,errors:r}}validatePrimaryAction(t){try{let{action:r}=N(t);return r?[]:["Primary action is required"]}catch(r){return[r instanceof Error?r.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(e=>e.inputs?e.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let r=[],e=(i,s)=>{i&&Object.keys(i).forEach(a=>{a!==a.toUpperCase()&&r.push(`${s} name '${a}' must be uppercase`)})};return e(t.vars,"Variable"),e(t.output,"Output"),r}validateAbiIsSetIfApplicable(t){let r=t.actions.some(a=>a.type==="contract"),e=t.actions.some(a=>a.type==="query");if(!r&&!e)return[];let i=t.actions.some(a=>a.abi),s=Object.values(t.output||{}).some(a=>a.startsWith("out.")||a.startsWith("event."));return t.output&&!i&&s?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let r=this.config.schema?.warp||$.LatestWarpSchemaUrl,i=await(await fetch(r)).json(),s=new sr({strict:!1}),a=s.compile(i);return a(t)?[]:[`Schema validation failed: ${s.errorsText(a.errors)}`]}catch(r){return[`Schema validation failed: ${r instanceof Error?r.message:String(r)}`]}}};var bt=class{constructor(t){this.config=t;this.pendingWarp={protocol:z("warp"),chain:"",name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.validate(e),e}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}async build(){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"),await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,r=100){return Wt(t,r)}ensure(t,r){if(!t)throw new Error(r)}ensureWarpText(t,r){if(!t)throw new Error(r);if(typeof t=="object"&&!t.en)throw new Error(r)}async validate(t){let e=await new K(this.config).validate(t);if(!e.valid)throw new Error(e.errors.join(`
|
|
2
|
-
`))}};var k=class{constructor(t="warp-cache"){this.prefix=t}getKey(t){return`${this.prefix}:${t}`}get(t){try{let r=localStorage.getItem(this.getKey(t));if(!r)return null;let e=JSON.parse(r,pr);return Date.now()>e.expiresAt?(localStorage.removeItem(this.getKey(t)),null):e.value}catch{return null}}set(t,r,e){let i={value:r,expiresAt:Date.now()+e*1e3};localStorage.setItem(this.getKey(t),JSON.stringify(i,or))}forget(t){localStorage.removeItem(this.getKey(t))}clear(){for(let t=0;t<localStorage.length;t++){let r=localStorage.key(t);r?.startsWith(this.prefix)&&localStorage.removeItem(r)}}},Tt=new x,or=(n,t)=>typeof t=="bigint"?Tt.nativeToString("biguint",t):t,pr=(n,t)=>typeof t=="string"&&t.startsWith(f.Biguint+":")?Tt.stringToNative(t)[1]:t;var E=class E{get(t){let r=E.cache.get(t);return r?Date.now()>r.expiresAt?(E.cache.delete(t),null):r.value:null}set(t,r,e){let i=Date.now()+e*1e3;E.cache.set(t,{value:r,expiresAt:i})}forget(t){E.cache.delete(t)}clear(){E.cache.clear()}};E.cache=new Map;var q=E;var Pt={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},lt={Warp:(n,t)=>`warp:${n}:${t}`,WarpAbi:(n,t)=>`warp-abi:${n}:${t}`,WarpExecutable:(n,t,r)=>`warp-exec:${n}:${t}:${r}`,RegistryInfo:(n,t)=>`registry-info:${n}:${t}`,Brand:(n,t)=>`brand:${n}:${t}`,Asset:(n,t,r)=>`asset:${n}:${t}:${r}`},_=class{constructor(t){this.strategy=this.selectStrategy(t)}selectStrategy(t){return t==="localStorage"?new k:t==="memory"?new q:typeof window<"u"&&window.localStorage?new k:new q}set(t,r,e){this.strategy.set(t,r,e)}get(t){return this.strategy.get(t)}forget(t){this.strategy.forget(t)}clear(){this.strategy.clear()}};var R=class{constructor(t,r,e){this.config=t;this.adapter=r;this.adapters=e}async apply(t,r={}){let e=this.applyVars(t,r);return await this.applyGlobals(e)}async applyGlobals(t){let r={...t};return r.actions=await Promise.all((r.actions||[]).map(async e=>await this.applyActionGlobals(e))),r=await this.applyRootGlobals(r),r}applyVars(t,r={}){if(!t?.vars)return t;let e=w(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),s=(a,o)=>{i=i.replace(new RegExp(`{{${a.toUpperCase()}}}`,"g"),o.toString())};return Object.entries(t.vars).forEach(([a,o])=>{if(typeof o!="string")s(a,o);else if(o.startsWith(p.Vars.Query+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Query.length+1),[l,u]=c.split(p.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(l):null,v=r.queries?.[l]||null||d;v&&s(a,v)}else if(o.startsWith(p.Vars.Env+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Env.length+1),[l,u]=c.split(p.ArgCompositeSeparator),h={...this.config.vars,...r.envs}?.[l];h&&s(a,h)}else o===p.Source.UserWallet&&e?s(a,e):s(a,o)}),JSON.parse(i)}async applyRootGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}async applyActionGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}applyInputs(t,r,e,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let s=this.applyGlobalsToText(t),a=this.buildInputBag(r,e,i);return O(s,a)}applyGlobalsToText(t){if(!Object.values(p.Globals).map(a=>a.Placeholder).some(a=>t.includes(`{{${a}}}`)||t.includes(`{{${a}:`)))return t;let i={config:this.config,adapter:this.adapter},s=t;return Object.values(p.Globals).forEach(a=>{let o=a.Accessor(i);o!=null&&(s=s.replace(new RegExp(`{{${a.Placeholder}}}`,"g"),o.toString())),s=this.replacePlaceholdersWithChain(s,a.Placeholder,i,a.Accessor)}),s}replacePlaceholdersWithChain(t,r,e,i){let s=new RegExp(`\\{\\{${r}:([^}]+)\\}\\}`,"g");return t.replace(s,(a,o)=>{let c=o.trim().toLowerCase();if(!this.adapters)return a;try{let l=m(c,this.adapters),u={config:this.config,adapter:l},d=i(u);return d!=null?d.toString():a}catch{return a}})}buildInputBag(t,r,e){let i={};return t.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);i[a]=String(o)}),e&&e.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);if(i[`primary.${a}`]=String(o),s.input.type==="asset"&&typeof s.input.position=="object"){let c=o;c&&typeof c=="object"&&"identifier"in c&&"amount"in c&&(i[`primary.${a}.token`]=String(c.identifier),i[`primary.${a}.amount`]=String(c.amount))}}),i}};var j=class{constructor(t,r){this.config=t;this.adapters=r;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new x,this.cache=new _(t.cache?.type)}getSerializer(){return this.serializer}getResolvedInputsFromCache(t,r,e){let i=this.cache.get(lt.WarpExecutable(t,r||"",e))||[];return L(i)}async createExecutable(t,r,e,i={}){let s=b(t,r);if(!s)throw new Error("WarpFactory: Action not found");let a=await this.getChainInfoForWarp(t,e),o=m(a.name,this.adapters),c=new R(this.config,o,this.adapters),l=await c.apply(t,i),u=b(l,r),{action:d,index:h}=N(l),v=this.getStringTypedInputs(d,e),A=await this.getResolvedInputs(a.name,d,v,c),g=await this.getModifiedInputs(A),W=[],y=[];h===r-1&&(W=A,y=g);let P=y.find(C=>C.input.position==="receiver"||C.input.position==="destination")?.value,B=this.getDestinationFromAction(u),S=P?this.serializer.stringToNative(P)[1]:B;if(S&&(S=c.applyInputs(S,y,this.serializer,g)),!S&&s.type!=="collect")throw new Error("WarpActionExecutor: Destination/Receiver not provided");let tt=this.getPreparedArgs(u,y);tt=tt.map(C=>c.applyInputs(C,y,this.serializer,g));let Bt=y.find(C=>C.input.position==="value")?.value||null,$t="value"in u?u.value:null,Vt=Bt?.split(p.ArgParamsSeparator)[1]||$t||"0",Nt=c.applyInputs(Vt,y,this.serializer,g),Ot=BigInt(Nt),Ut=y.filter(C=>C.input.position==="transfer"&&C.value).map(C=>C.value),Ft=[...("transfers"in u?u.transfers:[])||[],...Ut||[]].map(C=>{let Dt=c.applyInputs(C,y,this.serializer,g);return this.serializer.stringToNative(Dt)[1]}),Ht=y.find(C=>C.input.position==="data")?.value,Lt="data"in u?u.data||"":null,ut=Ht||Lt||null,jt=ut?c.applyInputs(ut,y,this.serializer,g):null,dt={warp:l,chain:a,action:r,destination:S,args:tt,value:Ot,transfers:Ft,data:jt,resolvedInputs:y};return this.cache.set(lt.WarpExecutable(this.config.env,l.meta?.hash||"",r),dt.resolvedInputs,Pt.OneWeek),dt}async getChainInfoForWarp(t,r){if(t.chain)return m(t.chain,this.adapters).chainInfo;if(r){let i=await this.tryGetChainFromInputs(t,r);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,r){let e=t.inputs||[];return r.map((i,s)=>{let a=e[s];return!a||i.includes(p.ArgParamsSeparator)?i:this.serializer.nativeToString(a.type,i)})}async getResolvedInputs(t,r,e,i){let s=r.inputs||[],a=await Promise.all(e.map(c=>this.preprocessInput(t,c))),o=(c,l)=>{if(c.source==="query"){let u=this.url.searchParams.get(c.name);return u?this.serializer.nativeToString(c.type,u):null}else if(c.source===p.Source.UserWallet){let u=w(this.config,t);return u?this.serializer.nativeToString("address",u):null}else if(c.source==="hidden"){if(c.default===void 0)return null;let u=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,u)}else return a[l]||null};return s.map((c,l)=>{let u=o(c,l),d=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:u||(d!==void 0?this.serializer.nativeToString(c.type,d):null)}})}async getModifiedInputs(t){let r=[];for(let e=0;e<t.length;e++){let i=t[e];if(i.input.modifier?.startsWith("scale:")){let[,s]=i.input.modifier.split(":");if(isNaN(Number(s))){let a=Number(t.find(l=>l.input.name===s)?.value?.split(":")[1]);if(!a)throw new Error(`WarpActionExecutor: Exponent value not found for input ${s}`);let o=i.value?.split(":")[1];if(!o)throw new Error("WarpActionExecutor: Scalable value not found");let c=M(o,+a);r.push({...i,value:`${i.input.type}:${c}`})}else{let a=i.value?.split(":")[1];if(!a)throw new Error("WarpActionExecutor: Scalable value not found");let o=M(a,+s);r.push({...i,value:`${i.input.type}:${o}`})}}else if(i.input.modifier?.startsWith(p.Transform.Prefix)){let s=i.input.modifier.substring(p.Transform.Prefix.length),a=this.config.transform?.runner;if(!a||typeof a.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let o=this.buildInputContext(t,e,i),c=await a.run(s,o);if(c==null)r.push(i);else{let l=this.serializer.nativeToString(i.input.type,c);r.push({...i,value:l})}}else r.push(i)}return r}buildInputContext(t,r,e){let i={};for(let s=0;s<r;s++){let a=t[s];if(!a.value)continue;let o=a.input.as||a.input.name,[,c]=this.serializer.stringToNative(a.value);if(i[o]=c,a.input.type==="asset"&&typeof c=="object"&&c!==null){let l=c;"identifier"in l&&"amount"in l&&(i[`${o}.token`]=String(l.identifier),i[`${o}.amount`]=String(l.amount),i[`${o}.identifier`]=String(l.identifier))}}if(e&&e.value){let s=e.input.as||e.input.name,[,a]=this.serializer.stringToNative(e.value);if(i[s]=a,e.input.type==="asset"&&typeof a=="object"&&a!==null){let o=a;"identifier"in o&&"amount"in o&&(i[`${s}.token`]=String(o.identifier),i[`${s}.amount`]=String(o.amount),i[`${s}.identifier`]=String(o.identifier))}}return i}async preprocessInput(t,r){try{let[e,i]=at(r),s=m(t,this.adapters);if(e==="asset"){let[a,o,c]=i.split(p.ArgCompositeSeparator);if(c)return r;let l=await s.dataLoader.getAsset(a);if(!l)throw new Error(`WarpFactory: Asset not found for asset ${a}`);if(typeof l.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${a}`);let u=M(o,l.decimals);return wt({...l,amount:u})}else return r}catch(e){throw I.warn("WarpFactory: Preprocess input failed",e),e}}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,r){let e="args"in t?t.args||[]:[],i=[];return r.forEach(({input:s,value:a})=>{if(!(!a||!s.position)){if(typeof s.position=="object"){if(s.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${s.name}" has type "${s.type}"`);if(!s.position.token?.startsWith("arg:")||!s.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${s.name}"`);let[o,c]=this.serializer.stringToNative(a),l=c;if(!l||typeof l!="object"||!("identifier"in l)||!("amount"in l))throw new Error(`WarpFactory: Invalid asset value for input "${s.name}"`);let u=Number(s.position.token.split(":")[1])-1,d=Number(s.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",l.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",l.amount)})}else if(s.position.startsWith("arg:")){let o=Number(s.position.split(":")[1])-1;i.push({index:o,value:a})}}}),i.forEach(({index:s,value:a})=>{for(;e.length<=s;)e.push(void 0);e[s]=a}),e.filter(s=>s!==void 0)}async tryGetChainFromInputs(t,r){let e=t.actions.find(c=>c.inputs?.some(l=>l.position==="chain"));if(!e)return null;let i=e.inputs?.findIndex(c=>c.position==="chain");if(i===-1||i===void 0)return null;let s=r[i];if(!s)throw new Error("Chain input not found");let a=this.serializer.stringToNative(s)[1];return m(a,this.adapters).chainInfo}};var X=class{constructor(t,r,e){this.config=t;this.adapters=r;this.handlers=e;this.handlers=e,this.factory=new j(t,r)}async execute(t,r,e={}){let i=[],s=null,a=[],o=[],{action:c,index:l}=N(t);for(let u=1;u<=t.actions.length;u++){let d=b(t,u);if(!nt(d,t))continue;let{tx:h,chain:v,immediateExecution:A,executable:g}=await this.executeAction(t,u,r,e);h&&i.push(h),v&&(s=v),A&&a.push(A),g&&u===l+1&&g.resolvedInputs&&(o=L(g.resolvedInputs))}if(!s&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&a.length>0){let u=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(u))}return{txs:i,chain:s,immediateExecutions:a,resolvedInputs:o}}async executeAction(t,r,e,i={}){let s=b(t,r);if(s.type==="link")return await this.callHandler(async()=>{let l=s.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(l):ft.open(l,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null};let a=await this.factory.createExecutable(t,r,e,i);if(s.type==="collect"){let l=await this.executeCollect(a);return l.status==="success"?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):l.status==="unhandled"?(await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):(this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:null,immediateExecution:null,executable:a})}let o=m(a.chain.name,this.adapters);if(s.type==="query"){let l=await o.executor.executeQuery(a);return l.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:a.chain,execution:l,tx:null})):this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:a.chain,immediateExecution:l,executable:a}}return{tx:await o.executor.createTransaction(a),chain:a.chain,immediateExecution:null,executable:a}}async evaluateOutput(t,r){if(r.length===0||t.actions.length===0||!this.handlers)return;let e=await this.factory.getChainInfoForWarp(t),i=m(e.name,this.adapters),s=(await Promise.all(t.actions.map(async(a,o)=>{if(!nt(a,t)||a.type!=="transfer"&&a.type!=="contract")return null;let c=r[o],l=o+1;if(!c){let d=this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,l),h={status:"error",warp:t,action:l,user:w(this.config,e.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:d};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${l} failed: Transaction not found`})),h}let u=await i.output.getActionExecution(t,l,c);return u.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:l,chain:e,execution:u,tx:c})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(u.values)})),u}))).filter(a=>a!==null);if(s.every(a=>a.status==="success")){let a=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(a))}else await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(s.map(a=>a.values))}`}))}async executeCollect(t,r){let e=w(this.config,t.chain.name),i=b(t.warp,t.action),s=this.factory.getSerializer(),a=Q(t.resolvedInputs,s);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,e,a,r);let{values:o,output:c}=await ot(t.warp,a,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,e,"unhandled",o,c)}async doHttpRequest(t,r,e,i,s){let a=new R(this.config,m(t.chain.name,this.adapters),this.adapters),o=new Headers;if(o.set("Content-Type","application/json"),o.set("Accept","application/json"),this.handlers?.onSignRequest){if(!e)throw new Error(`No wallet configured for chain ${t.chain.name}`);let{message:d,nonce:h,expiresAt:v}=await pt(e,`${t.chain.name}-adapter`),A=await this.callHandler(()=>this.handlers?.onSignRequest?.({message:d,chain:t.chain}));if(A){let g=ct(e,A,h,v);Object.entries(g).forEach(([W,y])=>o.set(W,y))}}r.headers&&Object.entries(r.headers).forEach(([d,h])=>{let v=a.applyInputs(h,t.resolvedInputs,this.factory.getSerializer());o.set(d,v)});let c=r.method||"GET",l=c==="GET"?void 0:JSON.stringify({...i,...s}),u=a.applyInputs(r.url,t.resolvedInputs,this.factory.getSerializer());I.debug("WarpExecutor: Executing HTTP collect",{url:u,method:c,headers:o,body:l});try{let d=await fetch(u,{method:c,headers:o,body:l});I.debug("Collect response status",{status:d.status});let h=await d.json();I.debug("Collect response content",{content:h});let{values:v,output:A}=await ot(t.warp,h,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,w(this.config,t.chain.name),d.ok?"success":"error",v,A,h)}catch(d){I.error("WarpActionExecutor: Error executing collect",d);let h=L(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:e,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:d},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(e=>e.input.position==="receiver"||e.input.position==="destination")?.value||t.destination}buildCollectResult(t,r,e,i,s,a){let o=Ct(this.config,this.adapters,t.warp,t.action,s),c=L(t.resolvedInputs);return{status:e,warp:t.warp,action:t.action,user:r||w(this.config,t.chain.name),txHash:null,tx:null,next:o,values:i,output:a?{...s,_DATA:a}:s,messages:xt(t.warp,s,this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:c}}async callHandler(t){if(t)return await t()}};var Z=class{constructor(t){this.config=t}async search(t,r,e){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}`,...e},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...r})});if(!i.ok)throw new Error(`WarpIndex: search failed with status ${i.status}: ${await i.text()}`);return(await i.json()).hits}catch(i){throw I.error("WarpIndex: Error searching for warps: ",i),i}}};var Y=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(l=>l[0]).filter(l=>this.isValid(l)).map(l=>this.detect(l)),a=(await Promise.all(i)).filter(l=>l.match),o=a.length>0,c=a.map(l=>({url:l.url,warp:l.warp}));return{match:o,output:c}}async detect(t,r){let e={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(p.HttpProtocolPrefix)?D(t):T(t);if(!i)return e;try{let{type:s,identifierBase:a}=i,o=null,c=null,l=null,u=m(i.chain,this.adapters),d=t.startsWith(p.HttpProtocolPrefix)?vt(t):At(i.identifier);if(s==="hash"){o=await u.builder().createFromTransactionHash(a,r);let g=await u.registry.getInfoByHash(a,r);c=g.registryInfo,l=g.brand}else if(s==="alias"){let g=await u.registry.getInfoByAlias(a,r);c=g.registryInfo,l=g.brand,g.registryInfo&&(o=await u.builder().createFromTransactionHash(g.registryInfo.hash,r))}if(o&&o.meta&&(cr(o,u.chainInfo.name,c,i.identifier),o.meta.query=d),!o)return e;let h=o.chain||u.chainInfo.name,v=m(h,this.adapters),A=await new R(this.config,v,this.adapters).apply(o);return{match:!0,url:t,warp:A,chain:h,registryInfo:c,brand:l}}catch(s){return I.error("Error detecting warp link",s),e}}},cr=(n,t,r,e)=>{n.meta&&(n.meta.identifier=r?.alias?it(t,"alias",r.alias):it(t,"hash",r?.hash??e))};var Et=class{constructor(t,r){this.config=t;this.adapters=r}getConfig(){return this.config}getAdapters(){return this.adapters}addAdapter(t){return this.adapters.push(t),this}createExecutor(t){return new X(this.config,this.adapters,t)}async detectWarp(t,r){return new Y(this.config,this.adapters).detect(t,r)}async executeWarp(t,r,e,i={}){let s=typeof t=="object",a=!s&&t.startsWith("http")&&t.endsWith(".json"),o=s?t:null;if(!o&&a){let A=await fetch(t);if(!A.ok)throw new Error("WarpClient: executeWarp - invalid url");o=await A.json()}if(o||(o=(await this.detectWarp(t,i.cache)).warp),!o)throw new Error("Warp not found");let c=this.createExecutor(e),{txs:l,chain:u,immediateExecutions:d,resolvedInputs:h}=await c.execute(o,r,{queries:i.queries});return{txs:l,chain:u,immediateExecutions:d,evaluateOutput:async A=>{await c.evaluateOutput(o,A)},resolvedInputs:h}}async createInscriptionTransaction(t,r){return await m(t,this.adapters).builder().createInscriptionTransaction(r)}async createFromTransaction(t,r,e=!1){return m(t,this.adapters).builder().createFromTransaction(r,e)}async createFromTransactionHash(t,r){let e=T(t);if(!e)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return m(e.chain,this.adapters).builder().createFromTransactionHash(t,r)}async signMessage(t,r){if(!w(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return m(t,this.adapters).wallet.signMessage(r)}async getActions(t,r,e=!1){let i=this.getDataLoader(t);return(await Promise.all(r.map(async a=>i.getAction(a,e)))).filter(a=>a!==null)}getExplorer(t){return m(t,this.adapters).explorer}getOutput(t){return m(t,this.adapters).output}async getRegistry(t){let r=m(t,this.adapters).registry;return await r.init(),r}getDataLoader(t){return m(t,this.adapters).dataLoader}getWallet(t){return m(t,this.adapters).wallet}get factory(){return new j(this.config,this.adapters)}get index(){return new Z(this.config)}get linkBuilder(){return new H(this.config,this.adapters)}createBuilder(t){return m(t,this.adapters).builder()}createAbiBuilder(t){return m(t,this.adapters).abiBuilder()}createBrandBuilder(t){return m(t,this.adapters).brandBuilder()}createSerializer(t){return m(t,this.adapters).serializer}resolveText(t){return G(t,this.config)}};var Rt=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,r){this.typeHandlers.set(t,r)}registerTypeAlias(t,r){this.typeAliases.set(t,r)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let r=this.typeAliases.get(t);return r?this.getHandler(r):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let r=this.typeAliases.get(t);return r?this.resolveType(r):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};export{rt as BrowserCryptoProvider,Pt as CacheTtl,et as NodeCryptoProvider,Rr as WARP_LANGUAGES,St as WarpBrandBuilder,bt as WarpBuilder,_ as WarpCache,lt as WarpCacheKey,kt as WarpChainName,Et as WarpClient,$ as WarpConfig,p as WarpConstants,X as WarpExecutor,j as WarpFactory,Z as WarpIndex,f as WarpInputTypes,R as WarpInterpolator,H as WarpLinkBuilder,Y as WarpLinkDetecter,I as WarpLogger,F as WarpProtocolVersions,x as WarpSerializer,Rt as WarpTypeRegistry,K as WarpValidator,Re as address,xt as applyOutputToMessages,wt as asset,Pe as biguint,Ee as bool,Q as buildMappedOutput,Kt as buildNestedPayload,xr as bytesToBase64,qt as bytesToHex,J as cleanWarpIdentifier,ct as createAuthHeaders,pt as createAuthMessage,Ir as createCryptoProvider,de as createHttpAuthHeaders,rr as createSignableMessage,$r as createWarpI18nText,it as createWarpIdentifier,Xt as evaluateOutputCommon,ot as extractCollectOutput,D as extractIdentifierInfoFromUrl,At as extractQueryStringFromIdentifier,vt as extractQueryStringFromUrl,L as extractResolvedInputValues,br as extractWarpSecrets,m as findWarpAdapterForChain,gt as getCryptoProvider,mr as getEventNameFromWarp,z as getLatestProtocolIdentifier,Ct as getNextInfo,ee as getProviderConfig,ht as getRandomBytes,mt as getRandomHex,b as getWarpActionByIndex,yr as getWarpBrandLogoUrl,T as getWarpInfoFromIdentifier,N as getWarpPrimaryAction,er as getWarpWalletAddress,w as getWarpWalletAddressFromConfig,ir as getWarpWalletMnemonic,We as getWarpWalletMnemonicFromConfig,nr as getWarpWalletPrivateKey,me as getWarpWalletPrivateKeyFromConfig,Hr as hasInputPrefix,Be as hex,Or as isEqualWarpIdentifier,nt as isWarpActionAutoExecute,Br as isWarpI18nText,It as mergeNestedPayload,$e as option,tr as parseOutputOutIndex,ge as parseSignedMessage,O as replacePlaceholders,G as resolveWarpText,ft as safeWindow,Ar as setCryptoProvider,M as shiftBigintBy,at as splitInput,Ie as string,Ne as struct,Cr as testCryptoAvailability,_t as toInputPayloadValue,Wt as toPreviewText,Ve as tuple,Se as uint16,be as uint32,Te as uint64,we as uint8,fe as validateSignedMessage,Oe as vector};
|
|
1
|
+
var zt=(l=>(l.Multiversx="multiversx",l.Vibechain="vibechain",l.Sui="sui",l.Ethereum="ethereum",l.Base="base",l.Arbitrum="arbitrum",l.Somnia="somnia",l.Fastset="fastset",l.Solana="solana",l))(zt||{}),p={HttpProtocolPrefix:"http",IdentifierParamName:"warp",IdentifierParamSeparator:":",IdentifierChainDefault:"multiversx",IdentifierType:{Alias:"alias",Hash:"hash"},IdentifierAliasMarker:"@",Globals:{UserWallet:{Placeholder:"USER_WALLET",Accessor:n=>n.config.user?.wallets?.[n.adapter.chainInfo.name]},UserWalletPublicKey:{Placeholder:"USER_WALLET_PUBLICKEY",Accessor:n=>{if(!n.adapter.wallet)return null;try{return n.adapter.wallet.getPublicKey()||null}catch{return null}}},ChainApiUrl:{Placeholder:"CHAIN_API",Accessor:n=>n.adapter.chainInfo.defaultApiUrl},ChainAddressHrp:{Placeholder:"CHAIN_ADDRESS_HRP",Accessor:n=>n.adapter.chainInfo.addressHrp}},Vars:{Query:"query",Env:"env"},ArgParamsSeparator:":",ArgCompositeSeparator:"|",ArgListSeparator:",",ArgStructSeparator:";",Transform:{Prefix:"transform:"},Source:{UserWallet:"user:wallet"},Position:{Payload:"payload:"},Alerts:{TriggerEventPrefix:"event"}},f={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"},ft=typeof window<"u"?window:{open:()=>{}};var U={Warp:"3.0.0",Brand:"0.2.0",Abi:"0.1.0"},V={LatestWarpSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/v${U.Warp}.schema.json`,LatestBrandSchemaUrl:`https://raw.githubusercontent.com/vLeapGroup/warps-specs/refs/heads/main/schemas/brand/v${U.Brand}.schema.json`,DefaultClientUrl:n=>n==="devnet"?"https://devnet.usewarp.to":n==="testnet"?"https://testnet.usewarp.to":"https://usewarp.to",SuperClientUrls:["https://usewarp.to","https://testnet.usewarp.to","https://devnet.usewarp.to"],AvailableActionInputSources:["field","query",p.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 yr=(n,t)=>{let r=n.alerts?.[t];if(!r)return null;let e=p.Alerts.TriggerEventPrefix+p.ArgParamsSeparator;if(!r.trigger.startsWith(e))return null;let i=r.trigger.replace(e,"");return i||null};var Ar=(n,t)=>typeof n.logo=="string"?n.logo:n.logo[t?.scheme??"light"];var rt=class{async getRandomBytes(t){if(typeof window>"u"||!window.crypto)throw new Error("Web Crypto API not available");let r=new Uint8Array(t);return window.crypto.getRandomValues(r),r}},et=class{async getRandomBytes(t){if(typeof process>"u"||!process.versions?.node)throw new Error("Node.js environment not detected");try{let r=await import("crypto");return new Uint8Array(r.randomBytes(t))}catch(r){throw new Error(`Node.js crypto not available: ${r instanceof Error?r.message:"Unknown error"}`)}}},O=null;function gt(){if(O)return O;if(typeof window<"u"&&window.crypto)return O=new rt,O;if(typeof process<"u"&&process.versions?.node)return O=new et,O;throw new Error("No compatible crypto provider found. Please provide a crypto provider using setCryptoProvider() or ensure Web Crypto API is available.")}function Cr(n){O=n}async function ht(n,t){if(n<=0||!Number.isInteger(n))throw new Error("Size must be a positive integer");return(t||gt()).getRandomBytes(n)}function Mt(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");let t=new Array(n.length*2);for(let r=0;r<n.length;r++){let e=n[r];t[r*2]=(e>>>4).toString(16),t[r*2+1]=(e&15).toString(16)}return t.join("")}function Ir(n){if(!(n instanceof Uint8Array))throw new Error("Input must be a Uint8Array");if(typeof Buffer<"u")return Buffer.from(n).toString("base64");if(typeof btoa<"u"){let t=String.fromCharCode.apply(null,Array.from(n));return btoa(t)}else throw new Error("Base64 encoding not available in this environment")}async function mt(n,t){if(n<=0||n%2!==0)throw new Error("Length must be a positive even number");let r=await ht(n/2,t);return Mt(r)}async function wr(){let n={randomBytes:!1,environment:"unknown"};try{typeof window<"u"&&window.crypto?n.environment="browser":typeof process<"u"&&process.versions?.node&&(n.environment="nodejs"),await ht(16),n.randomBytes=!0}catch{}return n}function Sr(){return gt()}var Pr=n=>Object.values(n.vars||{}).filter(t=>t.startsWith(`${p.Vars.Env}:`)).map(t=>{let r=t.replace(`${p.Vars.Env}:`,"").trim(),[e,i]=r.split(p.ArgCompositeSeparator);return{key:e,description:i||null}});var m=(n,t)=>{let r=t.find(e=>e.chainInfo.name.toLowerCase()===n.toLowerCase());if(!r)throw new Error(`Adapter not found for chain: ${n}`);return r},z=n=>{if(n==="warp")return`warp:${U.Warp}`;if(n==="brand")return`brand:${U.Brand}`;if(n==="abi")return`abi:${U.Abi}`;throw new Error(`getLatestProtocolIdentifier: Invalid protocol name: ${n}`)},b=(n,t)=>n?.actions[t-1],R=n=>{if(n.actions.length===0)throw new Error(`Warp has no primary action: ${n.meta?.identifier}`);let t=n.actions.find(s=>s.primary===!0);if(t)return{action:t,index:n.actions.indexOf(t)};let r=["transfer","contract","query","collect"],e=n.actions.find(s=>r.includes(s.type));return e?{action:e,index:n.actions.indexOf(e)}:{action:n.actions[0],index:0}},nt=(n,t)=>{if(n.auto===!1)return!1;if(n.type==="link"){if(n.auto===!0)return!0;let{action:r}=R(t);return n===r}return!0},M=(n,t)=>{let r=n.toString(),[e,i=""]=r.split("."),s=Math.abs(t);if(t>0)return BigInt(e+i.padEnd(s,"0"));if(t<0){let a=e+i;if(s>=a.length)return 0n;let o=a.slice(0,-s)||"0";return BigInt(o)}else return r.includes(".")?BigInt(r.split(".")[0]):BigInt(r)},Wt=(n,t=100)=>{if(!n)return"";let r=n.replace(/<\/?(h[1-6])[^>]*>/gi," - ").replace(/<\/?(p|div|ul|ol|li|br|hr)[^>]*>/gi," ").replace(/<[^>]+>/g,"").replace(/\s+/g," ").trim();return r=r.startsWith("- ")?r.slice(2):r,r=r.length>t?r.substring(0,r.lastIndexOf(" ",t))+"...":r,r},N=(n,t)=>n.replace(/\{\{([^}]+)\}\}/g,(r,e)=>t[e]||""),yt=(n,t)=>n.replace(/\{\{([^}]+)\}\}/g,(r,e)=>{let i=t[e];return i==null?"":typeof i=="string"?`'${i.replace(/'/g,"\\'")}'`:String(i)}),vt=n=>{if(!n||typeof n!="string")return!0;try{return!!new Function(`return ${n}`)()}catch(t){throw new Error(`Failed to evaluate 'when' condition: ${n}. Error: ${t}`)}};var $r={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"},G=(n,t)=>{let r=t?.preferences?.locale||"en";if(typeof n=="string")return n;if(typeof n=="object"&&n!==null){if(r in n)return n[r];if("en"in n)return n.en;let e=Object.keys(n);if(e.length>0)return n[e[0]]}return""},Vr=n=>typeof n=="object"&&n!==null&&Object.keys(n).length>0,Or=n=>n;var J=n=>n.startsWith(p.IdentifierAliasMarker)?n.replace(p.IdentifierAliasMarker,""):n,Ur=(n,t)=>!n||!t?!1:J(n)===J(t),it=(n,t,r)=>{let e=J(r);return t===p.IdentifierType.Alias?p.IdentifierAliasMarker+n+p.IdentifierParamSeparator+e:n+p.IdentifierParamSeparator+t+p.IdentifierParamSeparator+e},T=n=>{let t=decodeURIComponent(n).trim(),r=J(t),e=r.split("?")[0],i=At(e);if(e.length===64&&/^[a-fA-F0-9]+$/.test(e))return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Hash,identifier:r,identifierBase:e};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[s,a,o]=i;if(a===p.IdentifierType.Alias||a===p.IdentifierType.Hash){let c=r.includes("?")?o+r.substring(r.indexOf("?")):o;return{chain:s,type:a,identifier:c,identifierBase:o}}}if(i.length===2){let[s,a]=i;if(s===p.IdentifierType.Alias||s===p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a;return{chain:p.IdentifierChainDefault,type:s,identifier:o,identifierBase:a}}}if(i.length===2){let[s,a]=i;if(s!==p.IdentifierType.Alias&&s!==p.IdentifierType.Hash){let o=r.includes("?")?a+r.substring(r.indexOf("?")):a,c=Gt(a,s)?p.IdentifierType.Hash:p.IdentifierType.Alias;return{chain:s,type:c,identifier:o,identifierBase:a}}}return{chain:p.IdentifierChainDefault,type:p.IdentifierType.Alias,identifier:r,identifierBase:e}},D=n=>{let t=new URL(n),e=t.searchParams.get(p.IdentifierParamName);if(e||(e=t.pathname.split("/")[1]),!e)return null;let i=decodeURIComponent(e);return T(i)},Gt=(n,t)=>/^[a-fA-F0-9]+$/.test(n)&&n.length>32,Jt=n=>{let t=p.IdentifierParamSeparator,r=n.indexOf(t);return r!==-1?{separator:t,index:r}:null},At=n=>{let t=Jt(n);if(!t)return[n];let{separator:r,index:e}=t,i=n.substring(0,e),s=n.substring(e+r.length),a=At(s);return[i,...a]},xt=n=>{try{let t=new URL(n),r=new URLSearchParams(t.search);return r.delete(p.IdentifierParamName),r.toString()||null}catch{return null}},Ct=n=>{let t=n.indexOf("?");if(t===-1||t===n.length-1)return null;let r=n.substring(t+1);return r.length>0?r:null};var at=n=>{let[t,...r]=n.split(/:(.*)/,2);return[t,r[0]||""]},jr=n=>{let t=new Set(Object.values(f));if(!n.includes(p.ArgParamsSeparator))return!1;let r=at(n)[0];return t.has(r)};var It=(n,t,r)=>{let e=Object.entries(n.messages||{}).map(([i,s])=>{let a=G(s,r);return[i,N(a,t)]});return Object.fromEntries(e)};import Qt from"qr-code-styling";var H=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}build(t,r,e){let i=this.config.clientUrl||V.DefaultClientUrl(this.config.env),s=m(t,this.adapters),a=r===p.IdentifierType.Alias?e:r+p.IdentifierParamSeparator+e,o=s.chainInfo.name+p.IdentifierParamSeparator+a,c=encodeURIComponent(o);return V.SuperClientUrls.includes(i)?`${i}/${c}`:`${i}?${p.IdentifierParamName}=${c}`}buildFromPrefixedIdentifier(t){let r=T(t);if(!r)return null;let e=m(r.chain,this.adapters);return e?this.build(e.chainInfo.name,r.type,r.identifierBase):null}generateQrCode(t,r,e,i=512,s="white",a="black",o="#23F7DD"){let c=m(t,this.adapters),l=this.build(c.chainInfo.name,r,e);return new Qt({type:"svg",width:i,height:i,data:String(l),margin:16,qrOptions:{typeNumber:0,mode:"Byte",errorCorrectionLevel:"Q"},backgroundOptions:{color:s},dotsOptions:{type:"extra-rounded",color:a},cornersSquareOptions:{type:"extra-rounded",color:a},cornersDotOptions:{type:"square",color:a},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(o)}" 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 Kt="https://",wt=(n,t,r,e,i)=>{let s=r.actions?.[e-1]?.next||r.next||null;if(!s)return null;if(s.startsWith(Kt))return[{identifier:null,url:s}];let[a,o]=s.split("?");if(!o){let g=N(a,{...r.vars,...i});return[{identifier:g,url:st(t,g,n)}]}let c=o.match(/{{([^}]+)\[\](\.[^}]+)?}}/g)||[];if(c.length===0){let g=N(o,{...r.vars,...i}),y=g?`${a}?${g}`:a;return[{identifier:y,url:st(t,y,n)}]}let l=c[0];if(!l)return[];let u=l.match(/{{([^[]+)\[\]/),d=u?u[1]:null;if(!d||i[d]===void 0)return[];let h=Array.isArray(i[d])?i[d]:[i[d]];if(h.length===0)return[];let A=c.filter(g=>g.includes(`{{${d}[]`)).map(g=>{let y=g.match(/\[\](\.[^}]+)?}}/),v=y&&y[1]||"";return{placeholder:g,field:v?v.slice(1):"",regex:new RegExp(g.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"),"g")}});return h.map(g=>{let y=o;for(let{regex:E,field:$}of A){let S=$?_t(g,$):g;if(S==null)return null;y=y.replace(E,S)}if(y.includes("{{")||y.includes("}}"))return null;let v=y?`${a}?${y}`:a;return{identifier:v,url:st(t,v,n)}}).filter(g=>g!==null)},st=(n,t,r)=>{let[e,i]=t.split("?"),s=T(e)||{chain:p.IdentifierChainDefault,type:"alias",identifier:e,identifierBase:e},a=m(s.chain,n);if(!a)throw new Error(`Adapter not found for chain ${s.chain}`);let o=new H(r,n).build(a.chainInfo.name,s.type,s.identifierBase);if(!i)return o;let c=new URL(o);return new URLSearchParams(i).forEach((l,u)=>c.searchParams.set(u,l)),c.toString().replace(/\/\?/,"?")},_t=(n,t)=>t.split(".").reduce((r,e)=>r?.[e],n);function Xt(n,t,r){return n.startsWith(p.Position.Payload)?n.slice(p.Position.Payload.length).split(".").reduceRight((e,i,s,a)=>({[i]:s===a.length-1?{[t]:r}:e}),{}):{[t]:r}}function St(n,t){if(!n)return{...t};if(!t)return{...n};let r={...n};return Object.keys(t).forEach(e=>{r[e]&&typeof r[e]=="object"&&typeof t[e]=="object"?r[e]=St(r[e],t[e]):r[e]=t[e]}),r}function Zt(n,t){if(!n.value)return null;let r=t.stringToNative(n.value)[1];if(n.input.type==="biguint")return r.toString();if(n.input.type==="asset"){let{identifier:e,amount:i}=r;return{identifier:e,amount:i.toString()}}else return r}function L(n){return n.map(t=>t.value).filter(t=>t!=null&&t!=="")}function Q(n,t){let r={};return n.forEach(e=>{let i=e.input.as||e.input.name,s=Zt(e,t);if(e.input.position&&typeof e.input.position=="string"&&e.input.position.startsWith(p.Position.Payload)){let a=Xt(e.input.position,i,s);r=St(r,a)}else r[i]=s}),r}var ie=(n,t,r,e)=>{let i=n.preferences?.providers?.[t];return i?.[r]?typeof i[r]=="string"?{url:i[r]}:i[r]:{url:e}};var F=class F{static debug(...t){F.isTestEnv||console.debug(...t)}static info(...t){F.isTestEnv||console.info(...t)}static warn(...t){F.isTestEnv||console.warn(...t)}static error(...t){F.isTestEnv||console.error(...t)}};F.isTestEnv=typeof process<"u"&&process.env.JEST_WORKER_ID!==void 0;var I=F;var ot=async(n,t,r,e,i,s)=>{let a=[],o=[],c={};for(let[u,d]of Object.entries(n.output||{})){if(d.startsWith(p.Transform.Prefix))continue;let h=er(d);if(h!==null&&h!==r){c[u]=null;continue}let[A,...W]=d.split("."),g=(y,v)=>v.reduce((E,$)=>E&&E[$]!==void 0?E[$]:null,y);if(A==="out"||A.startsWith("out[")){let y=W.length===0?t?.data||t:g(t,W);a.push(String(y)),o.push(y),c[u]=y}else c[u]=d}let l=Q(e,i);return{values:{string:a,native:o,mapped:l},output:await Yt(n,c,r,e,i,s)}},Yt=async(n,t,r,e,i,s)=>{if(!n.output)return t;let a={...t};return a=tr(a,n,r,e,i),a=await rr(n,a,s.transform?.runner||null),a},tr=(n,t,r,e,i)=>{let s={...n},a=b(t,r)?.inputs||[];for(let[o,c]of Object.entries(s))if(typeof c=="string"&&c.startsWith("in.")){let l=c.split(".")[1],u=a.findIndex(h=>h.as===l||h.name===l),d=u!==-1?e[u]?.value:null;s[o]=d?i.stringToNative(d)[1]:null}return s},rr=async(n,t,r)=>{if(!n.output)return t;let e={...t},i=Object.entries(n.output).filter(([,s])=>s.startsWith(p.Transform.Prefix)).map(([s,a])=>({key:s,code:a.substring(p.Transform.Prefix.length)}));if(i.length>0&&(!r||typeof r.run!="function"))throw new Error("Transform output is defined but no transform runner is configured. Provide a runner via config.transform.runner.");for(let{key:s,code:a}of i)try{e[s]=await r.run(a,e)}catch(o){I.error(`Transform error for output '${s}':`,o),e[s]=null}return e},er=n=>{if(n==="out")return 1;let t=n.match(/^out\[(\d+)\]/);return t?parseInt(t[1],10):(n.startsWith("out.")||n.startsWith("event."),null)};async function nr(n,t,r,e=5){let i=await mt(64,r),s=new Date(Date.now()+e*60*1e3).toISOString();return{message:JSON.stringify({wallet:n,nonce:i,expiresAt:s,purpose:t}),nonce:i,expiresAt:s}}async function pt(n,t,r,e){let i=e||`prove-wallet-ownership for app "${t}"`;return nr(n,i,r,5)}function ct(n,t,r,e){return{"X-Signer-Wallet":n,"X-Signer-Signature":t,"X-Signer-Nonce":r,"X-Signer-ExpiresAt":e}}async function ge(n,t,r,e){let{message:i,nonce:s,expiresAt:a}=await pt(n,r,e),o=await t(i);return ct(n,o,s,a)}function he(n){let t=new Date(n).getTime();return Date.now()<t}function me(n){try{let t=JSON.parse(n);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 ir=n=>n?typeof n=="string"?n:n.address:null,w=(n,t)=>ir(n.user?.wallets?.[t]||null),ar=n=>n?typeof n=="string"?n:n.privateKey:null,sr=n=>n?typeof n=="string"?n:n.mnemonic:null,ye=(n,t)=>ar(n.user?.wallets?.[t]||null)?.trim()||null,ve=(n,t)=>sr(n.user?.wallets?.[t]||null)?.trim()||null;var x=class{constructor(t){this.typeRegistry=t?.typeRegistry}nativeToString(t,r){if(t===f.Tuple&&Array.isArray(r)){if(r.length===0)return t+p.ArgParamsSeparator;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r.map(a=>this.getTypeAndValue(a)),i=e.map(([a])=>a),s=e.map(([,a])=>a);return`${t}(${i.join(p.ArgCompositeSeparator)})${p.ArgParamsSeparator}${s.join(p.ArgListSeparator)}`}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Struct&&typeof r=="object"&&r!==null&&!Array.isArray(r)){let e=r;if(!e._name)throw new Error("Struct objects must have a _name property to specify the struct name");let i=e._name,s=Object.keys(e).filter(o=>o!=="_name");if(s.length===0)return`${t}(${i})${p.ArgParamsSeparator}`;let a=s.map(o=>{let[c,l]=this.getTypeAndValue(e[o]);return`(${o}${p.ArgParamsSeparator}${c})${l}`});return`${t}(${i})${p.ArgParamsSeparator}${a.join(p.ArgListSeparator)}`}if(t===f.Vector&&Array.isArray(r)){if(r.length===0)return`${t}${p.ArgParamsSeparator}`;if(r.every(e=>typeof e=="string"&&e.includes(p.ArgParamsSeparator))){let e=r[0],i=e.indexOf(p.ArgParamsSeparator),s=e.substring(0,i),a=r.map(c=>{let l=c.indexOf(p.ArgParamsSeparator),u=c.substring(l+1);return s.startsWith(f.Tuple)?u.replace(p.ArgListSeparator,p.ArgCompositeSeparator):u}),o=s.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator;return t+p.ArgParamsSeparator+s+p.ArgParamsSeparator+a.join(o)}return t+p.ArgParamsSeparator+r.join(p.ArgListSeparator)}if(t===f.Asset&&typeof r=="object"&&r&&"identifier"in r&&"amount"in r)return"decimals"in r?f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount)+p.ArgCompositeSeparator+String(r.decimals):f.Asset+p.ArgParamsSeparator+r.identifier+p.ArgCompositeSeparator+String(r.amount);if(this.typeRegistry){let e=this.typeRegistry.getHandler(t);if(e)return e.nativeToString(r);let i=this.typeRegistry.resolveType(t);if(i!==t)return this.nativeToString(i,r)}return t+p.ArgParamsSeparator+(r?.toString()??"")}stringToNative(t){let r=t.split(p.ArgParamsSeparator),e=r[0],i=r.slice(1).join(p.ArgParamsSeparator);if(e==="null")return[e,null];if(e===f.Option){let[s,a]=i.split(p.ArgParamsSeparator);return[f.Option+p.ArgParamsSeparator+s,a||null]}if(e===f.Vector){let s=i.indexOf(p.ArgParamsSeparator),a=i.substring(0,s),o=i.substring(s+1),c=a.startsWith(f.Struct)?p.ArgStructSeparator:p.ArgListSeparator,u=(o?o.split(c):[]).map(d=>this.stringToNative(a+p.ArgParamsSeparator+d)[1]);return[f.Vector+p.ArgParamsSeparator+a,u]}else if(e.startsWith(f.Tuple)){let s=e.match(/\(([^)]+)\)/)?.[1]?.split(p.ArgCompositeSeparator),o=i.split(p.ArgCompositeSeparator).map((c,l)=>this.stringToNative(`${s[l]}${p.IdentifierParamSeparator}${c}`)[1]);return[e,o]}else if(e.startsWith(f.Struct)){let s=e.match(/\(([^)]+)\)/);if(!s)throw new Error("Struct type must include a name in the format struct(Name)");let o={_name:s[1]};return i&&i.split(p.ArgListSeparator).forEach(c=>{let l=c.match(new RegExp(`^\\(([^${p.ArgParamsSeparator}]+)${p.ArgParamsSeparator}([^)]+)\\)(.+)$`));if(l){let[,u,d,h]=l;o[u]=this.stringToNative(`${d}${p.IdentifierParamSeparator}${h}`)[1]}}),[e,o]}else{if(e===f.String)return[e,i];if(e===f.Uint8||e===f.Uint16||e===f.Uint32)return[e,Number(i)];if(e===f.Uint64||e===f.Uint128||e===f.Uint256||e===f.Biguint)return[e,BigInt(i||0)];if(e===f.Bool)return[e,i==="true"];if(e===f.Address)return[e,i];if(e===f.Hex)return[e,i];if(e===f.Asset){let[s,a]=i.split(p.ArgCompositeSeparator),o={identifier:s,amount:BigInt(a)};return[e,o]}}if(this.typeRegistry){let s=this.typeRegistry.getHandler(e);if(s){let o=s.stringToNative(i);return[e,o]}let a=this.typeRegistry.resolveType(e);if(a!==e){let[o,c]=this.stringToNative(`${a}:${i}`);return[e,c]}}throw new Error(`WarpArgSerializer (stringToNative): Unsupported input type: ${e}`)}getTypeAndValue(t){if(typeof t=="string"&&t.includes(p.ArgParamsSeparator)){let[r,e]=t.split(p.ArgParamsSeparator);return[r,e]}return typeof t=="number"?[f.Uint32,t]:typeof t=="bigint"?[f.Uint64,t]:typeof t=="boolean"?[f.Bool,t]:[typeof t,t]}};var Se=n=>new x().nativeToString(f.String,n),be=n=>new x().nativeToString(f.Uint8,n),Te=n=>new x().nativeToString(f.Uint16,n),Pe=n=>new x().nativeToString(f.Uint32,n),Ee=n=>new x().nativeToString(f.Uint64,n),Re=n=>new x().nativeToString(f.Biguint,n),Be=n=>new x().nativeToString(f.Bool,n),$e=n=>new x().nativeToString(f.Address,n),bt=n=>new x().nativeToString(f.Asset,n),Ve=n=>new x().nativeToString(f.Hex,n),Oe=(n,t)=>{if(t===null)return f.Option+p.ArgParamsSeparator;let r=n(t),e=r.indexOf(p.ArgParamsSeparator),i=r.substring(0,e),s=r.substring(e+1);return f.Option+p.ArgParamsSeparator+i+p.ArgParamsSeparator+s},Ne=(...n)=>new x().nativeToString(f.Tuple,n),Fe=n=>new x().nativeToString(f.Struct,n),Ue=n=>new x().nativeToString(f.Vector,n);import or from"ajv";var Tt=class{constructor(t){this.pendingBrand={protocol:z("brand"),name:"",description:"",logo:""};this.config=t}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.ensureValidSchema(e),e}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,r){if(!t)throw new Error(`Warp: ${r}`)}ensureWarpText(t,r){if(!t)throw new Error(`Warp: ${r}`);if(typeof t=="object"&&Object.keys(t).length===0)throw new Error(`Warp: ${r}`)}async ensureValidSchema(t){let r=this.config.schema?.brand||V.LatestBrandSchemaUrl,i=await(await fetch(r)).json(),s=new or,a=s.compile(i);if(!a(t))throw new Error(`BrandBuilder: schema validation failed: ${s.errorsText(a.errors)}`)}};import pr from"ajv";var K=class{constructor(t){this.config=t;this.config=t}async validate(t){let r=[];return r.push(...this.validatePrimaryAction(t)),r.push(...this.validateMaxOneValuePosition(t)),r.push(...this.validateVariableNamesAndResultNamesUppercase(t)),r.push(...this.validateAbiIsSetIfApplicable(t)),r.push(...await this.validateSchema(t)),{valid:r.length===0,errors:r}}validatePrimaryAction(t){try{let{action:r}=R(t);return r?[]:["Primary action is required"]}catch(r){return[r instanceof Error?r.message:"Primary action is required"]}}validateMaxOneValuePosition(t){return t.actions.filter(e=>e.inputs?e.inputs.some(i=>i.position==="value"):!1).length>1?["Only one value position action is allowed"]:[]}validateVariableNamesAndResultNamesUppercase(t){let r=[],e=(i,s)=>{i&&Object.keys(i).forEach(a=>{a!==a.toUpperCase()&&r.push(`${s} name '${a}' must be uppercase`)})};return e(t.vars,"Variable"),e(t.output,"Output"),r}validateAbiIsSetIfApplicable(t){let r=t.actions.some(a=>a.type==="contract"),e=t.actions.some(a=>a.type==="query");if(!r&&!e)return[];let i=t.actions.some(a=>a.abi),s=Object.values(t.output||{}).some(a=>a.startsWith("out.")||a.startsWith("event."));return t.output&&!i&&s?["ABI is required when output is present for contract or query actions"]:[]}async validateSchema(t){try{let r=this.config.schema?.warp||V.LatestWarpSchemaUrl,i=await(await fetch(r)).json(),s=new pr({strict:!1}),a=s.compile(i);return a(t)?[]:[`Schema validation failed: ${s.errorsText(a.errors)}`]}catch(r){return[`Schema validation failed: ${r instanceof Error?r.message:String(r)}`]}}};var Pt=class{constructor(t){this.config=t;this.pendingWarp={protocol:z("warp"),chain:"",name:"",title:"",description:null,preview:"",actions:[]}}async createFromRaw(t,r=!0){let e=JSON.parse(t);return r&&await this.validate(e),e}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}async build(){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"),await this.validate(this.pendingWarp),this.pendingWarp}getDescriptionPreview(t,r=100){return Wt(t,r)}ensure(t,r){if(!t)throw new Error(r)}ensureWarpText(t,r){if(!t)throw new Error(r);if(typeof t=="object"&&!t.en)throw new Error(r)}async validate(t){let e=await new K(this.config).validate(t);if(!e.valid)throw new Error(e.errors.join(`
|
|
2
|
+
`))}};var k=class{constructor(t="warp-cache"){this.prefix=t}getKey(t){return`${this.prefix}:${t}`}get(t){try{let r=localStorage.getItem(this.getKey(t));if(!r)return null;let e=JSON.parse(r,lr);return Date.now()>e.expiresAt?(localStorage.removeItem(this.getKey(t)),null):e.value}catch{return null}}set(t,r,e){let i={value:r,expiresAt:Date.now()+e*1e3};localStorage.setItem(this.getKey(t),JSON.stringify(i,cr))}forget(t){localStorage.removeItem(this.getKey(t))}clear(){for(let t=0;t<localStorage.length;t++){let r=localStorage.key(t);r?.startsWith(this.prefix)&&localStorage.removeItem(r)}}},Et=new x,cr=(n,t)=>typeof t=="bigint"?Et.nativeToString("biguint",t):t,lr=(n,t)=>typeof t=="string"&&t.startsWith(f.Biguint+":")?Et.stringToNative(t)[1]:t;var B=class B{get(t){let r=B.cache.get(t);return r?Date.now()>r.expiresAt?(B.cache.delete(t),null):r.value:null}set(t,r,e){let i=Date.now()+e*1e3;B.cache.set(t,{value:r,expiresAt:i})}forget(t){B.cache.delete(t)}clear(){B.cache.clear()}};B.cache=new Map;var q=B;var Rt={OneMinute:60,OneHour:3600,OneDay:3600*24,OneWeek:3600*24*7,OneMonth:3600*24*30,OneYear:3600*24*365},lt={Warp:(n,t)=>`warp:${n}:${t}`,WarpAbi:(n,t)=>`warp-abi:${n}:${t}`,WarpExecutable:(n,t,r)=>`warp-exec:${n}:${t}:${r}`,RegistryInfo:(n,t)=>`registry-info:${n}:${t}`,Brand:(n,t)=>`brand:${n}:${t}`,Asset:(n,t,r)=>`asset:${n}:${t}:${r}`},_=class{constructor(t){this.strategy=this.selectStrategy(t)}selectStrategy(t){return t==="localStorage"?new k:t==="memory"?new q:typeof window<"u"&&window.localStorage?new k:new q}set(t,r,e){this.strategy.set(t,r,e)}get(t){return this.strategy.get(t)}forget(t){this.strategy.forget(t)}clear(){this.strategy.clear()}};var P=class{constructor(t,r,e){this.config=t;this.adapter=r;this.adapters=e}async apply(t,r={}){let e=this.applyVars(t,r);return await this.applyGlobals(e)}async applyGlobals(t){let r={...t};return r.actions=await Promise.all((r.actions||[]).map(async e=>await this.applyActionGlobals(e))),r=await this.applyRootGlobals(r),r}applyVars(t,r={}){if(!t?.vars)return t;let e=w(this.config,this.adapter.chainInfo.name),i=JSON.stringify(t),s=(a,o)=>{i=i.replace(new RegExp(`{{${a.toUpperCase()}}}`,"g"),o.toString())};return Object.entries(t.vars).forEach(([a,o])=>{if(typeof o!="string")s(a,o);else if(o.startsWith(p.Vars.Query+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Query.length+1),[l,u]=c.split(p.ArgCompositeSeparator),d=this.config.currentUrl?new URLSearchParams(this.config.currentUrl.split("?")[1]).get(l):null,A=r.queries?.[l]||null||d;A&&s(a,A)}else if(o.startsWith(p.Vars.Env+p.ArgParamsSeparator)){let c=o.slice(p.Vars.Env.length+1),[l,u]=c.split(p.ArgCompositeSeparator),h={...this.config.vars,...r.envs}?.[l];h&&s(a,h)}else o===p.Source.UserWallet&&e?s(a,e):s(a,o)}),JSON.parse(i)}async applyRootGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}async applyActionGlobals(t){let r=JSON.stringify(t),e={config:this.config,adapter:this.adapter};return Object.values(p.Globals).forEach(i=>{let s=i.Accessor(e);s!=null&&(r=r.replace(new RegExp(`{{${i.Placeholder}}}`,"g"),s.toString())),r=this.replacePlaceholdersWithChain(r,i.Placeholder,e,i.Accessor)}),JSON.parse(r)}applyInputs(t,r,e,i){if(!t||typeof t!="string"||!t.includes("{{"))return t;let s=this.applyGlobalsToText(t),a=this.buildInputBag(r,e,i);return N(s,a)}applyGlobalsToText(t){if(!Object.values(p.Globals).map(a=>a.Placeholder).some(a=>t.includes(`{{${a}}}`)||t.includes(`{{${a}:`)))return t;let i={config:this.config,adapter:this.adapter},s=t;return Object.values(p.Globals).forEach(a=>{let o=a.Accessor(i);o!=null&&(s=s.replace(new RegExp(`{{${a.Placeholder}}}`,"g"),o.toString())),s=this.replacePlaceholdersWithChain(s,a.Placeholder,i,a.Accessor)}),s}replacePlaceholdersWithChain(t,r,e,i){let s=new RegExp(`\\{\\{${r}:([^}]+)\\}\\}`,"g");return t.replace(s,(a,o)=>{let c=o.trim().toLowerCase();if(!this.adapters)return a;try{let l=m(c,this.adapters),u={config:this.config,adapter:l},d=i(u);return d!=null?d.toString():a}catch{return a}})}buildInputBag(t,r,e){let i={};return t.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);i[a]=String(o)}),e&&e.forEach(s=>{if(!s.value)return;let a=s.input.as||s.input.name,[,o]=r.stringToNative(s.value);if(i[`primary.${a}`]=String(o),s.input.type==="asset"&&typeof s.input.position=="object"){let c=o;c&&typeof c=="object"&&"identifier"in c&&"amount"in c&&(i[`primary.${a}.token`]=String(c.identifier),i[`primary.${a}.amount`]=String(c.amount))}}),i}};var j=class{constructor(t,r){this.config=t;this.adapters=r;if(!t.currentUrl)throw new Error("WarpFactory: currentUrl config not set");this.url=new URL(t.currentUrl),this.serializer=new x,this.cache=new _(t.cache?.type)}getSerializer(){return this.serializer}getResolvedInputsFromCache(t,r,e){let i=this.cache.get(lt.WarpExecutable(t,r||"",e))||[];return L(i)}async createExecutable(t,r,e,i={}){let s=b(t,r);if(!s)throw new Error("WarpFactory: Action not found");let a=await this.getChainInfoForWarp(t,e),o=m(a.name,this.adapters),c=new P(this.config,o,this.adapters),l=await c.apply(t,i),u=b(l,r),{action:d,index:h}=R(l),A=this.getStringTypedInputs(d,e),W=await this.getResolvedInputs(a.name,d,A,c),g=await this.getModifiedInputs(W),y=[],v=[];h===r-1&&(y=W,v=g);let E=v.find(C=>C.input.position==="receiver"||C.input.position==="destination")?.value,$=this.getDestinationFromAction(u),S=E?this.serializer.stringToNative(E)[1]:$;if(S&&(S=c.applyInputs(S,v,this.serializer,g)),!S&&s.type!=="collect")throw new Error("WarpActionExecutor: Destination/Receiver not provided");let tt=this.getPreparedArgs(u,v);tt=tt.map(C=>c.applyInputs(C,v,this.serializer,g));let Vt=v.find(C=>C.input.position==="value")?.value||null,Ot="value"in u?u.value:null,Nt=Vt?.split(p.ArgParamsSeparator)[1]||Ot||"0",Ft=c.applyInputs(Nt,v,this.serializer,g),Ut=BigInt(Ft),Ht=v.filter(C=>C.input.position==="transfer"&&C.value).map(C=>C.value),Lt=[...("transfers"in u?u.transfers:[])||[],...Ht||[]].map(C=>{let qt=c.applyInputs(C,v,this.serializer,g);return this.serializer.stringToNative(qt)[1]}),jt=v.find(C=>C.input.position==="data")?.value,Dt="data"in u?u.data||"":null,ut=jt||Dt||null,kt=ut?c.applyInputs(ut,v,this.serializer,g):null,dt={warp:l,chain:a,action:r,destination:S,args:tt,value:Ut,transfers:Lt,data:kt,resolvedInputs:v};return this.cache.set(lt.WarpExecutable(this.config.env,l.meta?.hash||"",r),dt.resolvedInputs,Rt.OneWeek),dt}async getChainInfoForWarp(t,r){if(t.chain)return m(t.chain,this.adapters).chainInfo;if(r){let i=await this.tryGetChainFromInputs(t,r);if(i)return i}return this.adapters[0].chainInfo}getStringTypedInputs(t,r){let e=t.inputs||[];return r.map((i,s)=>{let a=e[s];return!a||i.includes(p.ArgParamsSeparator)?i:this.serializer.nativeToString(a.type,i)})}async getResolvedInputs(t,r,e,i){let s=r.inputs||[],a=await Promise.all(e.map(c=>this.preprocessInput(t,c))),o=(c,l)=>{if(c.source==="query"){let u=this.url.searchParams.get(c.name);return u?this.serializer.nativeToString(c.type,u):null}else if(c.source===p.Source.UserWallet){let u=w(this.config,t);return u?this.serializer.nativeToString("address",u):null}else if(c.source==="hidden"){if(c.default===void 0)return null;let u=i?i.applyInputs(String(c.default),[],this.serializer):String(c.default);return this.serializer.nativeToString(c.type,u)}else return a[l]||null};return s.map((c,l)=>{let u=o(c,l),d=c.default!==void 0?i?i.applyInputs(String(c.default),[],this.serializer):String(c.default):void 0;return{input:c,value:u||(d!==void 0?this.serializer.nativeToString(c.type,d):null)}})}async getModifiedInputs(t){let r=[];for(let e=0;e<t.length;e++){let i=t[e];if(i.input.modifier?.startsWith("scale:")){let[,s]=i.input.modifier.split(":");if(isNaN(Number(s))){let a=Number(t.find(l=>l.input.name===s)?.value?.split(":")[1]);if(!a)throw new Error(`WarpActionExecutor: Exponent value not found for input ${s}`);let o=i.value?.split(":")[1];if(!o)throw new Error("WarpActionExecutor: Scalable value not found");let c=M(o,+a);r.push({...i,value:`${i.input.type}:${c}`})}else{let a=i.value?.split(":")[1];if(!a)throw new Error("WarpActionExecutor: Scalable value not found");let o=M(a,+s);r.push({...i,value:`${i.input.type}:${o}`})}}else if(i.input.modifier?.startsWith(p.Transform.Prefix)){let s=i.input.modifier.substring(p.Transform.Prefix.length),a=this.config.transform?.runner;if(!a||typeof a.run!="function")throw new Error("Transform modifier is defined but no transform runner is configured. Provide a runner via config.transform.runner.");let o=this.buildInputContext(t,e,i),c=await a.run(s,o);if(c==null)r.push(i);else{let l=this.serializer.nativeToString(i.input.type,c);r.push({...i,value:l})}}else r.push(i)}return r}buildInputContext(t,r,e){let i={};for(let s=0;s<r;s++){let a=t[s];if(!a.value)continue;let o=a.input.as||a.input.name,[,c]=this.serializer.stringToNative(a.value);if(i[o]=c,a.input.type==="asset"&&typeof c=="object"&&c!==null){let l=c;"identifier"in l&&"amount"in l&&(i[`${o}.token`]=String(l.identifier),i[`${o}.amount`]=String(l.amount),i[`${o}.identifier`]=String(l.identifier))}}if(e&&e.value){let s=e.input.as||e.input.name,[,a]=this.serializer.stringToNative(e.value);if(i[s]=a,e.input.type==="asset"&&typeof a=="object"&&a!==null){let o=a;"identifier"in o&&"amount"in o&&(i[`${s}.token`]=String(o.identifier),i[`${s}.amount`]=String(o.amount),i[`${s}.identifier`]=String(o.identifier))}}return i}async preprocessInput(t,r){try{let[e,i]=at(r),s=m(t,this.adapters);if(e==="asset"){let[a,o,c]=i.split(p.ArgCompositeSeparator);if(c)return r;let l=await s.dataLoader.getAsset(a);if(!l)throw new Error(`WarpFactory: Asset not found for asset ${a}`);if(typeof l.decimals!="number")throw new Error(`WarpFactory: Decimals not found for asset ${a}`);let u=M(o,l.decimals);return bt({...l,amount:u})}else return r}catch(e){throw I.warn("WarpFactory: Preprocess input failed",e),e}}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,r){let e="args"in t?t.args||[]:[],i=[];return r.forEach(({input:s,value:a})=>{if(!(!a||!s.position)){if(typeof s.position=="object"){if(s.type!=="asset")throw new Error(`WarpFactory: Object position is only supported for asset type. Input "${s.name}" has type "${s.type}"`);if(!s.position.token?.startsWith("arg:")||!s.position.amount?.startsWith("arg:"))throw new Error(`WarpFactory: Object position must have token and amount as arg:N. Input "${s.name}"`);let[o,c]=this.serializer.stringToNative(a),l=c;if(!l||typeof l!="object"||!("identifier"in l)||!("amount"in l))throw new Error(`WarpFactory: Invalid asset value for input "${s.name}"`);let u=Number(s.position.token.split(":")[1])-1,d=Number(s.position.amount.split(":")[1])-1;i.push({index:u,value:this.serializer.nativeToString("address",l.identifier)}),i.push({index:d,value:this.serializer.nativeToString("uint256",l.amount)})}else if(s.position.startsWith("arg:")){let o=Number(s.position.split(":")[1])-1;i.push({index:o,value:a})}}}),i.forEach(({index:s,value:a})=>{for(;e.length<=s;)e.push(void 0);e[s]=a}),e.filter(s=>s!==void 0)}async tryGetChainFromInputs(t,r){let e=t.actions.find(c=>c.inputs?.some(l=>l.position==="chain"));if(!e)return null;let i=e.inputs?.findIndex(c=>c.position==="chain");if(i===-1||i===void 0)return null;let s=r[i];if(!s)throw new Error("Chain input not found");let a=this.serializer.stringToNative(s)[1];return m(a,this.adapters).chainInfo}};var X=class{constructor(t,r,e){this.config=t;this.adapters=r;this.handlers=e;this.handlers=e,this.factory=new j(t,r)}async execute(t,r,e={}){let i=[],s=null,a=[],o=[],{action:c,index:l}=R(t);for(let u=1;u<=t.actions.length;u++){let d=b(t,u);if(!nt(d,t))continue;let{tx:h,chain:A,immediateExecution:W,executable:g}=await this.executeAction(t,u,r,e);h&&i.push(h),A&&(s=A),W&&a.push(W),g&&u===l+1&&g.resolvedInputs&&(o=L(g.resolvedInputs))}if(!s&&i.length>0)throw new Error(`WarpExecutor: Chain not found for ${i.length} transactions`);if(i.length===0&&a.length>0){let u=a[a.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(u))}return{txs:i,chain:s,immediateExecutions:a,resolvedInputs:o}}async executeAction(t,r,e,i={}){let s=b(t,r);if(s.type==="link")return s.when&&!await this.evaluateWhenCondition(t,s,e,i)?{tx:null,chain:null,immediateExecution:null,executable:null}:(await this.callHandler(async()=>{let l=s.url;this.config.interceptors?.openLink?await this.config.interceptors.openLink(l):ft.open(l,"_blank")}),{tx:null,chain:null,immediateExecution:null,executable:null});let a=await this.factory.createExecutable(t,r,e,i);if(s.when&&!await this.evaluateWhenCondition(t,s,e,i,a.resolvedInputs,a.chain.name))return{tx:null,chain:null,immediateExecution:null,executable:null};if(s.type==="collect"){let l=await this.executeCollect(a);return l.status==="success"?(await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):l.status==="unhandled"?(await this.callHandler(()=>this.handlers?.onActionUnhandled?.({action:r,chain:null,execution:l,tx:null})),{tx:null,chain:null,immediateExecution:l,executable:a}):(this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:null,immediateExecution:null,executable:a})}let o=m(a.chain.name,this.adapters);if(s.type==="query"){let l=await o.executor.executeQuery(a);return l.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:r,chain:a.chain,execution:l,tx:null})):this.handlers?.onError?.({message:JSON.stringify(l.values)}),{tx:null,chain:a.chain,immediateExecution:l,executable:a}}return{tx:await o.executor.createTransaction(a),chain:a.chain,immediateExecution:null,executable:a}}async evaluateOutput(t,r){if(r.length===0||t.actions.length===0||!this.handlers)return;let e=await this.factory.getChainInfoForWarp(t),i=m(e.name,this.adapters),s=(await Promise.all(t.actions.map(async(a,o)=>{if(!nt(a,t)||a.type!=="transfer"&&a.type!=="contract")return null;let c=r[o],l=o+1;if(!c){let d=this.factory.getResolvedInputsFromCache(this.config.env,t.meta?.hash,l),h={status:"error",warp:t,action:l,user:w(this.config,e.name),txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{},messages:{},destination:null,resolvedInputs:d};return await this.callHandler(()=>this.handlers?.onError?.({message:`Action ${l} failed: Transaction not found`})),h}let u=await i.output.getActionExecution(t,l,c);return u.status==="success"?await this.callHandler(()=>this.handlers?.onActionExecuted?.({action:l,chain:e,execution:u,tx:c})):await this.callHandler(()=>this.handlers?.onError?.({message:"Action failed: "+JSON.stringify(u.values)})),u}))).filter(a=>a!==null);if(s.every(a=>a.status==="success")){let a=s[s.length-1];await this.callHandler(()=>this.handlers?.onExecuted?.(a))}else await this.callHandler(()=>this.handlers?.onError?.({message:`Warp failed: ${JSON.stringify(s.map(a=>a.values))}`}))}async executeCollect(t,r){let e=w(this.config,t.chain.name),i=b(t.warp,t.action),s=this.factory.getSerializer(),a=Q(t.resolvedInputs,s);if(i.destination&&typeof i.destination=="object"&&"url"in i.destination)return await this.doHttpRequest(t,i.destination,e,a,r);let{values:o,output:c}=await ot(t.warp,a,t.action,t.resolvedInputs,s,this.config);return this.buildCollectResult(t,e,"unhandled",o,c)}async doHttpRequest(t,r,e,i,s){let a=new P(this.config,m(t.chain.name,this.adapters),this.adapters),o=new Headers;if(o.set("Content-Type","application/json"),o.set("Accept","application/json"),this.handlers?.onSignRequest){if(!e)throw new Error(`No wallet configured for chain ${t.chain.name}`);let{message:d,nonce:h,expiresAt:A}=await pt(e,`${t.chain.name}-adapter`),W=await this.callHandler(()=>this.handlers?.onSignRequest?.({message:d,chain:t.chain}));if(W){let g=ct(e,W,h,A);Object.entries(g).forEach(([y,v])=>o.set(y,v))}}r.headers&&Object.entries(r.headers).forEach(([d,h])=>{let A=a.applyInputs(h,t.resolvedInputs,this.factory.getSerializer());o.set(d,A)});let c=r.method||"GET",l=c==="GET"?void 0:JSON.stringify({...i,...s}),u=a.applyInputs(r.url,t.resolvedInputs,this.factory.getSerializer());I.debug("WarpExecutor: Executing HTTP collect",{url:u,method:c,headers:o,body:l});try{let d=await fetch(u,{method:c,headers:o,body:l});I.debug("Collect response status",{status:d.status});let h=await d.json();I.debug("Collect response content",{content:h});let{values:A,output:W}=await ot(t.warp,h,t.action,t.resolvedInputs,this.factory.getSerializer(),this.config);return this.buildCollectResult(t,w(this.config,t.chain.name),d.ok?"success":"error",A,W,h)}catch(d){I.error("WarpActionExecutor: Error executing collect",d);let h=L(t.resolvedInputs);return{status:"error",warp:t.warp,action:t.action,user:e,txHash:null,tx:null,next:null,values:{string:[],native:[],mapped:{}},output:{_DATA:d},messages:{},destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:h}}}getDestinationFromResolvedInputs(t){return t.resolvedInputs.find(e=>e.input.position==="receiver"||e.input.position==="destination")?.value||t.destination}buildCollectResult(t,r,e,i,s,a){let o=wt(this.config,this.adapters,t.warp,t.action,s),c=L(t.resolvedInputs);return{status:e,warp:t.warp,action:t.action,user:r||w(this.config,t.chain.name),txHash:null,tx:null,next:o,values:i,output:a?{...s,_DATA:a}:s,messages:It(t.warp,s,this.config),destination:this.getDestinationFromResolvedInputs(t),resolvedInputs:c}}async callHandler(t){if(t)return await t()}async evaluateWhenCondition(t,r,e,i,s,a){if(!r.when)return!0;let o=a?{name:a}:await this.factory.getChainInfoForWarp(t,e),c=m(o.name,this.adapters),l=new P(this.config,c,this.adapters),{action:u}=R(t),d=this.factory.getStringTypedInputs(u,e),h=await this.factory.getResolvedInputs(o.name,u,d,l),A=await this.factory.getModifiedInputs(h),W;if(s)W=s;else{let v=await this.factory.getResolvedInputs(o.name,r,this.factory.getStringTypedInputs(r,e),l);W=await this.factory.getModifiedInputs(v)}let g=l.buildInputBag(W,this.factory.getSerializer(),A),y=yt(r.when,g);return vt(y)}};var Z=class{constructor(t){this.config=t}async search(t,r,e){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}`,...e},body:JSON.stringify({[this.config.index?.searchParamName||"search"]:t,...r})});if(!i.ok)throw new Error(`WarpIndex: search failed with status ${i.status}: ${await i.text()}`);return(await i.json()).hits}catch(i){throw I.error("WarpIndex: Error searching for warps: ",i),i}}};var Y=class{constructor(t,r){this.config=t;this.adapters=r}isValid(t){return t.startsWith(p.HttpProtocolPrefix)?!!D(t):!1}async detectFromHtml(t){if(!t.length)return{match:!1,output:[]};let i=[...t.matchAll(/https?:\/\/[^\s"'<>]+/gi)].map(l=>l[0]).filter(l=>this.isValid(l)).map(l=>this.detect(l)),a=(await Promise.all(i)).filter(l=>l.match),o=a.length>0,c=a.map(l=>({url:l.url,warp:l.warp}));return{match:o,output:c}}async detect(t,r){let e={match:!1,url:t,warp:null,chain:null,registryInfo:null,brand:null},i=t.startsWith(p.HttpProtocolPrefix)?D(t):T(t);if(!i)return e;try{let{type:s,identifierBase:a}=i,o=null,c=null,l=null,u=m(i.chain,this.adapters),d=t.startsWith(p.HttpProtocolPrefix)?xt(t):Ct(i.identifier);if(s==="hash"){o=await u.builder().createFromTransactionHash(a,r);let g=await u.registry.getInfoByHash(a,r);c=g.registryInfo,l=g.brand}else if(s==="alias"){let g=await u.registry.getInfoByAlias(a,r);c=g.registryInfo,l=g.brand,g.registryInfo&&(o=await u.builder().createFromTransactionHash(g.registryInfo.hash,r))}if(o&&o.meta&&(ur(o,u.chainInfo.name,c,i.identifier),o.meta.query=d),!o)return e;let h=o.chain||u.chainInfo.name,A=m(h,this.adapters),W=await new P(this.config,A,this.adapters).apply(o);return{match:!0,url:t,warp:W,chain:h,registryInfo:c,brand:l}}catch(s){return I.error("Error detecting warp link",s),e}}},ur=(n,t,r,e)=>{n.meta&&(n.meta.identifier=r?.alias?it(t,"alias",r.alias):it(t,"hash",r?.hash??e))};var Bt=class{constructor(t,r){this.config=t;this.adapters=r}getConfig(){return this.config}getAdapters(){return this.adapters}addAdapter(t){return this.adapters.push(t),this}createExecutor(t){return new X(this.config,this.adapters,t)}async detectWarp(t,r){return new Y(this.config,this.adapters).detect(t,r)}async executeWarp(t,r,e,i={}){let s=typeof t=="object",a=!s&&t.startsWith("http")&&t.endsWith(".json"),o=s?t:null;if(!o&&a){let W=await fetch(t);if(!W.ok)throw new Error("WarpClient: executeWarp - invalid url");o=await W.json()}if(o||(o=(await this.detectWarp(t,i.cache)).warp),!o)throw new Error("Warp not found");let c=this.createExecutor(e),{txs:l,chain:u,immediateExecutions:d,resolvedInputs:h}=await c.execute(o,r,{queries:i.queries});return{txs:l,chain:u,immediateExecutions:d,evaluateOutput:async W=>{await c.evaluateOutput(o,W)},resolvedInputs:h}}async createInscriptionTransaction(t,r){return await m(t,this.adapters).builder().createInscriptionTransaction(r)}async createFromTransaction(t,r,e=!1){return m(t,this.adapters).builder().createFromTransaction(r,e)}async createFromTransactionHash(t,r){let e=T(t);if(!e)throw new Error("WarpClient: createFromTransactionHash - invalid hash");return m(e.chain,this.adapters).builder().createFromTransactionHash(t,r)}async signMessage(t,r){if(!w(this.config,t))throw new Error(`No wallet configured for chain ${t}`);return m(t,this.adapters).wallet.signMessage(r)}async getActions(t,r,e=!1){let i=this.getDataLoader(t);return(await Promise.all(r.map(async a=>i.getAction(a,e)))).filter(a=>a!==null)}getExplorer(t){return m(t,this.adapters).explorer}getOutput(t){return m(t,this.adapters).output}async getRegistry(t){let r=m(t,this.adapters).registry;return await r.init(),r}getDataLoader(t){return m(t,this.adapters).dataLoader}getWallet(t){return m(t,this.adapters).wallet}get factory(){return new j(this.config,this.adapters)}get index(){return new Z(this.config)}get linkBuilder(){return new H(this.config,this.adapters)}createBuilder(t){return m(t,this.adapters).builder()}createAbiBuilder(t){return m(t,this.adapters).abiBuilder()}createBrandBuilder(t){return m(t,this.adapters).brandBuilder()}createSerializer(t){return m(t,this.adapters).serializer}resolveText(t){return G(t,this.config)}};var $t=class{constructor(){this.typeHandlers=new Map;this.typeAliases=new Map}registerType(t,r){this.typeHandlers.set(t,r)}registerTypeAlias(t,r){this.typeAliases.set(t,r)}hasType(t){return this.typeHandlers.has(t)||this.typeAliases.has(t)}getHandler(t){let r=this.typeAliases.get(t);return r?this.getHandler(r):this.typeHandlers.get(t)}getAlias(t){return this.typeAliases.get(t)}resolveType(t){let r=this.typeAliases.get(t);return r?this.resolveType(r):t}getRegisteredTypes(){return Array.from(new Set([...this.typeHandlers.keys(),...this.typeAliases.keys()]))}};export{rt as BrowserCryptoProvider,Rt as CacheTtl,et as NodeCryptoProvider,$r as WARP_LANGUAGES,Tt as WarpBrandBuilder,Pt as WarpBuilder,_ as WarpCache,lt as WarpCacheKey,zt as WarpChainName,Bt as WarpClient,V as WarpConfig,p as WarpConstants,X as WarpExecutor,j as WarpFactory,Z as WarpIndex,f as WarpInputTypes,P as WarpInterpolator,H as WarpLinkBuilder,Y as WarpLinkDetecter,I as WarpLogger,U as WarpProtocolVersions,x as WarpSerializer,$t as WarpTypeRegistry,K as WarpValidator,$e as address,It as applyOutputToMessages,bt as asset,Re as biguint,Be as bool,Q as buildMappedOutput,Xt as buildNestedPayload,Ir as bytesToBase64,Mt as bytesToHex,J as cleanWarpIdentifier,ct as createAuthHeaders,pt as createAuthMessage,Sr as createCryptoProvider,ge as createHttpAuthHeaders,nr as createSignableMessage,Or as createWarpI18nText,it as createWarpIdentifier,Yt as evaluateOutputCommon,vt as evaluateWhenCondition,ot as extractCollectOutput,D as extractIdentifierInfoFromUrl,Ct as extractQueryStringFromIdentifier,xt as extractQueryStringFromUrl,L as extractResolvedInputValues,Pr as extractWarpSecrets,m as findWarpAdapterForChain,gt as getCryptoProvider,yr as getEventNameFromWarp,z as getLatestProtocolIdentifier,wt as getNextInfo,ie as getProviderConfig,ht as getRandomBytes,mt as getRandomHex,b as getWarpActionByIndex,Ar as getWarpBrandLogoUrl,T as getWarpInfoFromIdentifier,R as getWarpPrimaryAction,ir as getWarpWalletAddress,w as getWarpWalletAddressFromConfig,sr as getWarpWalletMnemonic,ve as getWarpWalletMnemonicFromConfig,ar as getWarpWalletPrivateKey,ye as getWarpWalletPrivateKeyFromConfig,jr as hasInputPrefix,Ve as hex,Ur as isEqualWarpIdentifier,nt as isWarpActionAutoExecute,Vr as isWarpI18nText,St as mergeNestedPayload,Oe as option,er as parseOutputOutIndex,me as parseSignedMessage,N as replacePlaceholders,yt as replacePlaceholdersInWhenExpression,G as resolveWarpText,ft as safeWindow,Cr as setCryptoProvider,M as shiftBigintBy,at as splitInput,Se as string,Fe as struct,wr as testCryptoAvailability,Zt as toInputPayloadValue,Wt as toPreviewText,Ne as tuple,Te as uint16,Pe as uint32,Ee as uint64,be as uint8,he as validateSignedMessage,Ue as vector};
|