@leather.io/models
Advanced tools
| > @leather.io/models@0.50.2 build /home/runner/work/mono/mono/packages/models | ||
| > @leather.io/models@0.51.0 build /home/runner/work/mono/mono/packages/models | ||
| > tsdown | ||
@@ -10,7 +10,7 @@ | ||
| [34mℹ[39m Build start | ||
| [34mℹ[39m [2mdist/[22m[1mindex.js[22m [2m22.61 kB[22m [2m│ gzip: 5.25 kB[22m | ||
| [34mℹ[39m [2mdist/[22mindex.js.map [2m49.85 kB[22m [2m│ gzip: 10.47 kB[22m | ||
| [34mℹ[39m [2mdist/[22mindex.d.ts.map [2m18.96 kB[22m [2m│ gzip: 7.30 kB[22m | ||
| [34mℹ[39m [2mdist/[22m[32m[1mindex.d.ts[22m[39m [2m49.25 kB[22m [2m│ gzip: 9.72 kB[22m | ||
| [34mℹ[39m 4 files, total: 140.67 kB | ||
| [32m✔[39m Build complete in [32m1966ms[39m | ||
| [34mℹ[39m [2mdist/[22m[1mindex.js[22m [2m22.88 kB[22m [2m│ gzip: 5.29 kB[22m | ||
| [34mℹ[39m [2mdist/[22mindex.js.map [2m50.72 kB[22m [2m│ gzip: 10.62 kB[22m | ||
| [34mℹ[39m [2mdist/[22mindex.d.ts.map [2m19.20 kB[22m [2m│ gzip: 7.38 kB[22m | ||
| [34mℹ[39m [2mdist/[22m[32m[1mindex.d.ts[22m[39m [2m50.16 kB[22m [2m│ gzip: 9.90 kB[22m | ||
| [34mℹ[39m 4 files, total: 142.95 kB | ||
| [32m✔[39m Build complete in [32m2197ms[39m |
+7
-0
@@ -39,2 +39,9 @@ # Changelog | ||
| ## [0.51.0](https://github.com/leather-io/mono/compare/@leather.io/models-v0.50.2...@leather.io/models-v0.51.0) (2025-12-09) | ||
| ### Features | ||
| * **services:** add swap quote execution constraints ([4b01f74](https://github.com/leather-io/mono/commit/4b01f7407c3bfcec660a31ed7de91e97aa252fc0)) | ||
| ## [0.50.2](https://github.com/leather-io/mono/compare/@leather.io/models-v0.50.1...@leather.io/models-v0.50.2) (2025-12-08) | ||
@@ -41,0 +48,0 @@ |
+50
-41
@@ -673,2 +673,5 @@ import { z } from "zod"; | ||
| declare const BNS_V2_API_BASE_URL = "https://api.bnsv2.com"; | ||
| declare const EMILY_API_BASE_URL_MAINNET = "https://sbtc-emily.com"; | ||
| declare const EMILY_API_BASE_URL_TESTNET = "https://beta.sbtc-emily.com"; | ||
| declare const EMILY_API_BASE_URL_DEVENV = "http://localhost:3031"; | ||
| declare enum ChainId { | ||
@@ -752,4 +755,4 @@ Testnet = 2147483648, | ||
| interface SwapAsset { | ||
| asset: SwappableFungibleCryptoAsset; | ||
| providerAssets: SwapProviderAsset[]; | ||
| readonly asset: SwappableFungibleCryptoAsset; | ||
| readonly providerAssets: SwapProviderAsset[]; | ||
| } | ||
@@ -759,25 +762,31 @@ declare const swapProviderIds: readonly ["bitflow-sdk", "sbtc-bridge", "alex-sdk", "velar-sdk"]; | ||
| interface SwapProvider { | ||
| id: SwapProviderId; | ||
| isAggregator: boolean; | ||
| readonly id: SwapProviderId; | ||
| readonly isAggregator: boolean; | ||
| } | ||
| interface SwapProviderAsset { | ||
| providerId: SwapProviderId; | ||
| providerAssetId: string; | ||
| assetId: CryptoAssetId; | ||
| readonly providerId: SwapProviderId; | ||
| readonly providerAssetId: string; | ||
| readonly assetId: CryptoAssetId; | ||
| } | ||
| type SwapQuote = AlexSdkSwapQuote | VelarSdkSwapQuote | BitflowSdkSwapQuote | SbtcBridgeSwapQuote; | ||
| interface BaseSwapQuote { | ||
| executionType: SwapExecutionType; | ||
| providerId: SwapProviderId; | ||
| baseAsset: SwappableFungibleCryptoAsset; | ||
| targetAsset: SwappableFungibleCryptoAsset; | ||
| baseAmount: Money; | ||
| targetAmount: Money; | ||
| dexPath: SwapDex[]; | ||
| assetPath: (NativeCryptoAsset | Sip10Asset)[]; | ||
| createdAt: Date; | ||
| readonly executionType: SwapExecutionType; | ||
| readonly providerId: SwapProviderId; | ||
| readonly baseAsset: SwappableFungibleCryptoAsset; | ||
| readonly targetAsset: SwappableFungibleCryptoAsset; | ||
| readonly baseAmount: Money; | ||
| readonly targetAmount: Money; | ||
| readonly dexPath: SwapDex[]; | ||
| readonly assetPath: (NativeCryptoAsset | Sip10Asset)[]; | ||
| readonly isExecutable: boolean; | ||
| readonly executionConstraints: ExecutionConstraint[]; | ||
| readonly createdAt: Date; | ||
| } | ||
| interface ExecutionConstraint { | ||
| readonly reason: 'minimum-threshold-not-met' | 'maximum-threshold-exceeded'; | ||
| readonly threshold: Money; | ||
| } | ||
| interface AlexSdkSwapQuote extends BaseSwapQuote { | ||
| providerId: 'alex-sdk'; | ||
| providerQuoteData: { | ||
| readonly providerId: 'alex-sdk'; | ||
| readonly providerQuoteData: { | ||
| baseProviderAssetId: string; | ||
@@ -789,11 +798,11 @@ targetProviderAssetId: string; | ||
| interface VelarSdkSwapQuote extends BaseSwapQuote { | ||
| providerId: 'velar-sdk'; | ||
| readonly providerId: 'velar-sdk'; | ||
| providerQuoteData: { | ||
| baseProviderAssetId: string; | ||
| targetProviderAssetId: string; | ||
| readonly baseProviderAssetId: string; | ||
| readonly targetProviderAssetId: string; | ||
| }; | ||
| } | ||
| interface BitflowSdkSwapQuote extends BaseSwapQuote { | ||
| providerId: 'bitflow-sdk'; | ||
| providerQuoteData: { | ||
| readonly providerId: 'bitflow-sdk'; | ||
| readonly providerQuoteData: { | ||
| bitflowSdkSelectedSwapRoute: unknown; | ||
@@ -803,9 +812,9 @@ }; | ||
| interface SbtcBridgeSwapQuote extends BaseSwapQuote { | ||
| providerId: 'sbtc-bridge'; | ||
| readonly providerId: 'sbtc-bridge'; | ||
| } | ||
| interface SwapDex { | ||
| name: string; | ||
| url: string; | ||
| logo: string; | ||
| description: string; | ||
| readonly name: string; | ||
| readonly url: string; | ||
| readonly logo: string; | ||
| readonly description: string; | ||
| } | ||
@@ -815,18 +824,18 @@ declare const swapExecutionTypes: readonly ["stacks-contract-call", "sbtc-bridge-transfer"]; | ||
| interface BaseSwapExecutionData { | ||
| executionType: SwapExecutionType; | ||
| providerId: SwapProviderId; | ||
| quote: SwapQuote; | ||
| readonly executionType: SwapExecutionType; | ||
| readonly providerId: SwapProviderId; | ||
| readonly quote: SwapQuote; | ||
| } | ||
| interface StacksContractCallSwapExecutionData extends BaseSwapExecutionData { | ||
| executionType: 'stacks-contract-call'; | ||
| quote: SwapQuote; | ||
| contractAddress: string; | ||
| contractName: string; | ||
| functionName: string; | ||
| functionArgs: unknown[]; | ||
| postConditions: unknown[]; | ||
| postConditionMode?: unknown; | ||
| readonly executionType: 'stacks-contract-call'; | ||
| readonly quote: SwapQuote; | ||
| readonly contractAddress: string; | ||
| readonly contractName: string; | ||
| readonly functionName: string; | ||
| readonly functionArgs: unknown[]; | ||
| readonly postConditions: unknown[]; | ||
| readonly postConditionMode?: unknown; | ||
| } | ||
| interface SbtcBridgeTransferSwapExecutionData extends BaseSwapExecutionData { | ||
| executionType: 'sbtc-bridge-transfer'; | ||
| readonly executionType: 'sbtc-bridge-transfer'; | ||
| } | ||
@@ -1282,3 +1291,3 @@ type SwapExecutionData = StacksContractCallSwapExecutionData | SbtcBridgeTransferSwapExecutionData; | ||
| //#endregion | ||
| export { AccountAddresses, AccountDisplayPreference, AccountDisplayPreferenceInfo, AccountId, AccountLevelActivity, Activity, ActivityLevel, ActivityLevels, ActivityType, AlexSdkSwapQuote, AllowAdditionalProperties, AnalyticsPreference, AppLevelActivity, AverageBitcoinFeeRates, BESTINSLOT_API_BASE_URL_MAINNET, BESTINSLOT_API_BASE_URL_TESTNET, BITCOIN_API_BASE_URL_MAINNET, BITCOIN_API_BASE_URL_SIGNET, BITCOIN_API_BASE_URL_TESTNET3, BITCOIN_API_BASE_URL_TESTNET4, BNS_V2_API_BASE_URL, BaseActivity, BaseCryptoAsset, BaseCryptoAssetBalance, BaseNonFungibleCryptoAsset, BaseOnChainActivity, BasePooledStackingPosition, BaseSwapExecutionData, BaseSwapQuote, BaseTransactionFeeQuote, BaseWalletActivity, BaseYieldPosition, BaseYieldProduct, BitcoinAddress, BitcoinAddressInfo, BitcoinChainConfig, BitcoinNetwork, BitcoinNetworkModes, BitcoinTransaction, BitcoinTransactionFeeQuote, BitcoinTransactionVectorInput, BitcoinTransactionVectorOutput, BitcoinTransactionVin, BitcoinTransactionVout, BitcoinTx, BitcoinUnit, BitcoinUnitInfo, BitcoinUnitSymbol, BitflowAmmLpPosition, BitflowAmmStakingPosition, BitflowSdkSwapQuote, Blockchain, BnsName, BnsProfile, BnsProfileData, BnsProfileDataAddresses, Brc20Asset, BtcAsset, BtcBalance, BtcFeeType, ChainId, ConnectAppActivity, CryptoAsset, CryptoAssetBalance, CryptoAssetCategories, CryptoAssetCategory, CryptoAssetChain, CryptoAssetChains, CryptoAssetId, CryptoAssetProtocol, CryptoAssetProtocols, CryptoCurrency, Currency, DefaultNetworkConfigurations, DeploySmartContractActivity, EmailAddress, Entries, EvmTransactionFeeQuote, ExecuteSmartContractActivity, FastPoolPooledStackingPosition, FeeCalculationTypes, FeeTypes, Fees, FlatTransactionFeeQuote, FtTransfer, FungibleAssetId, FungibleCryptoAsset, FungibleCryptoAssetProtocol, FungibleCryptoAssetProtocols, GeneralActivity, GeneralActivityType, GeneralActivityTypes, GraniteV1BorrowPosition, GraniteV1CollateralAsset, GraniteV1EarnPosition, HIRO_API_BASE_URL_MAINNET, HIRO_API_BASE_URL_MAINNET_EXTENDED, HIRO_API_BASE_URL_NAKAMOTO_TESTNET, HIRO_API_BASE_URL_TESTNET, HIRO_API_BASE_URL_TESTNET_EXTENDED, HermeticaStaking, HermeticaUsdhStakingPosition, HistoricalPeriod, InscriptionAsset, InscriptionMimeType, LisaLiStxPosition, LisaLiquidStakingPosition, LisaLstHolding, LiteralUnion, LockAssetActivity, MarketData, MarketPriceHistory, MarketPriceSnapshot, Money, NativeCryptoAsset, NetworkConfiguration, NetworkModes, NonFungibleCryptoAsset, NonFungibleCryptoAssetProtocol, NonFungibleCryptoAssetProtocols, NumType, OnChainActivity, OnChainActivityStatus, OnChainActivityStatuses, OnChainActivityType, OnChainActivityTypes, OwnedUtxo, PooledStackingYieldProduct, Prettify, QuoteCurrency, ReceiveAssetActivity, ReplaceTypes, RuneAsset, STX20_API_BASE_URL_MAINNET, SbtcBridgeSwapQuote, SbtcBridgeTransferSwapExecutionData, SendAssetActivity, SignMessageActivity, Sip10Asset, Sip9Asset, Sip9AssetContent, Sip9Attribute, Sip9Collection, Sip9ContentType, Src20Asset, StackingDaoLstHolding, StackingDaoLstWithdrawal, StackingDaoPooledStackingPosition, StackingDaoReward, StackingDaoStStxBtcPosition, StackingDaoStStxPosition, StacksAddressInfo, StacksChainConfig, StacksContractCallSwapExecutionData, StacksFeeEstimate, StacksTransactionFeeQuote, StacksTx, StacksTxStatus, StampAsset, Stx20Asset, StxAsset, StxBalance, StxTransfer, SupportedBlockchains, SwapAsset, SwapAssetsActivity, SwapDex, SwapExecutionData, SwapExecutionType, SwapProvider, SwapProviderAsset, SwapProviderId, SwapQuote, SwappableFungibleCryptoAsset, TransactionErrorKey, TransactionFeeQuote, TransactionFeeQuoteType, TransactionFeeTier, TransactionFees, Utxo, UtxoId, ValueOf, VelarAmmLpPosition, VelarFarmPosition, VelarSdkSwapQuote, WalletActivity, WalletActivityType, WalletActivityTypes, WalletDefaultNetworkConfigurationIds, WalletId, XversePooledStackingPosition, YieldPosition, YieldProduct, YieldProductCategories, YieldProductCategory, YieldProductKey, YieldProductKeys, YieldProductToProviderMap, YieldProvider, YieldProviderKey, YieldProviderKeys, ZestBorrowAsset, ZestBorrowMarketPosition, accountAddressesSchema, accountDisplayPreferenceSchema, accountIdSchema, analyticsPreferenceSchema, bitcoinAddressInfoSchema, bitcoinNetworkModesSchema, bitcoinNetworkSchema, bitcoinNetworkToNetworkMode, bitcoinNetworks, bitcoinUnitSchema, bnsContractAddress, bnsContractName, btcTxTimeMap, createMarketData, createMarketPair, defaultCurrentNetwork, defaultNetworkConfigurationsSchema, defaultNetworksKeyedById, emailAddressSchema, enrichPositionWithMetadata, enrichPositionWithProduct, enrichPositionWithProvider, filterPositionsByCategory, filterPositionsByProduct, filterPositionsByProvider, formatMarketPair, getCategoryDisplayName, getCategoryForProduct, getPositionsInCategories, getProductsForProvider, getProductsInCategory, getProviderForProduct, groupPositionsByCategory, groupPositionsByProvider, hasPositionsInCategory, hasPositionsInProvider, historicalPeriods, inscriptionMimeTypes, isBitflowAmmLpPosition, isBitflowAmmStakingPosition, isBrc20Asset, isBtcAsset, isFungibleAsset, isGraniteBorrowPosition, isGraniteEarnPosition, isInscriptionAsset, isNativeAsset, isNonFungibleAsset, isProductInProvider, isRuneAsset, isSip10Asset, isSip9Asset, isSrc20Asset, isStackingDaoPooledPosition, isStackingDaoStStxBtcPosition, isStackingDaoStStxPosition, isStampAsset, isStx20Asset, isStxAsset, isSwappableAsset, isZestPosition, networkConfigurationSchema, networkModes, sip9ContentTypes, sortPositionsByApy, sortPositionsByBalance, sortPositionsByUpdateTime, stacksAddressInfoSchema, supportedBlockchains, swapExecutionTypes, swapProviderIds, testnetModes, transactionFeeQuoteType, transactionFeeTiers, walletIdSchema }; | ||
| export { AccountAddresses, AccountDisplayPreference, AccountDisplayPreferenceInfo, AccountId, AccountLevelActivity, Activity, ActivityLevel, ActivityLevels, ActivityType, AlexSdkSwapQuote, AllowAdditionalProperties, AnalyticsPreference, AppLevelActivity, AverageBitcoinFeeRates, BESTINSLOT_API_BASE_URL_MAINNET, BESTINSLOT_API_BASE_URL_TESTNET, BITCOIN_API_BASE_URL_MAINNET, BITCOIN_API_BASE_URL_SIGNET, BITCOIN_API_BASE_URL_TESTNET3, BITCOIN_API_BASE_URL_TESTNET4, BNS_V2_API_BASE_URL, BaseActivity, BaseCryptoAsset, BaseCryptoAssetBalance, BaseNonFungibleCryptoAsset, BaseOnChainActivity, BasePooledStackingPosition, BaseSwapExecutionData, BaseSwapQuote, BaseTransactionFeeQuote, BaseWalletActivity, BaseYieldPosition, BaseYieldProduct, BitcoinAddress, BitcoinAddressInfo, BitcoinChainConfig, BitcoinNetwork, BitcoinNetworkModes, BitcoinTransaction, BitcoinTransactionFeeQuote, BitcoinTransactionVectorInput, BitcoinTransactionVectorOutput, BitcoinTransactionVin, BitcoinTransactionVout, BitcoinTx, BitcoinUnit, BitcoinUnitInfo, BitcoinUnitSymbol, BitflowAmmLpPosition, BitflowAmmStakingPosition, BitflowSdkSwapQuote, Blockchain, BnsName, BnsProfile, BnsProfileData, BnsProfileDataAddresses, Brc20Asset, BtcAsset, BtcBalance, BtcFeeType, ChainId, ConnectAppActivity, CryptoAsset, CryptoAssetBalance, CryptoAssetCategories, CryptoAssetCategory, CryptoAssetChain, CryptoAssetChains, CryptoAssetId, CryptoAssetProtocol, CryptoAssetProtocols, CryptoCurrency, Currency, DefaultNetworkConfigurations, DeploySmartContractActivity, EMILY_API_BASE_URL_DEVENV, EMILY_API_BASE_URL_MAINNET, EMILY_API_BASE_URL_TESTNET, EmailAddress, Entries, EvmTransactionFeeQuote, ExecuteSmartContractActivity, ExecutionConstraint, FastPoolPooledStackingPosition, FeeCalculationTypes, FeeTypes, Fees, FlatTransactionFeeQuote, FtTransfer, FungibleAssetId, FungibleCryptoAsset, FungibleCryptoAssetProtocol, FungibleCryptoAssetProtocols, GeneralActivity, GeneralActivityType, GeneralActivityTypes, GraniteV1BorrowPosition, GraniteV1CollateralAsset, GraniteV1EarnPosition, HIRO_API_BASE_URL_MAINNET, HIRO_API_BASE_URL_MAINNET_EXTENDED, HIRO_API_BASE_URL_NAKAMOTO_TESTNET, HIRO_API_BASE_URL_TESTNET, HIRO_API_BASE_URL_TESTNET_EXTENDED, HermeticaStaking, HermeticaUsdhStakingPosition, HistoricalPeriod, InscriptionAsset, InscriptionMimeType, LisaLiStxPosition, LisaLiquidStakingPosition, LisaLstHolding, LiteralUnion, LockAssetActivity, MarketData, MarketPriceHistory, MarketPriceSnapshot, Money, NativeCryptoAsset, NetworkConfiguration, NetworkModes, NonFungibleCryptoAsset, NonFungibleCryptoAssetProtocol, NonFungibleCryptoAssetProtocols, NumType, OnChainActivity, OnChainActivityStatus, OnChainActivityStatuses, OnChainActivityType, OnChainActivityTypes, OwnedUtxo, PooledStackingYieldProduct, Prettify, QuoteCurrency, ReceiveAssetActivity, ReplaceTypes, RuneAsset, STX20_API_BASE_URL_MAINNET, SbtcBridgeSwapQuote, SbtcBridgeTransferSwapExecutionData, SendAssetActivity, SignMessageActivity, Sip10Asset, Sip9Asset, Sip9AssetContent, Sip9Attribute, Sip9Collection, Sip9ContentType, Src20Asset, StackingDaoLstHolding, StackingDaoLstWithdrawal, StackingDaoPooledStackingPosition, StackingDaoReward, StackingDaoStStxBtcPosition, StackingDaoStStxPosition, StacksAddressInfo, StacksChainConfig, StacksContractCallSwapExecutionData, StacksFeeEstimate, StacksTransactionFeeQuote, StacksTx, StacksTxStatus, StampAsset, Stx20Asset, StxAsset, StxBalance, StxTransfer, SupportedBlockchains, SwapAsset, SwapAssetsActivity, SwapDex, SwapExecutionData, SwapExecutionType, SwapProvider, SwapProviderAsset, SwapProviderId, SwapQuote, SwappableFungibleCryptoAsset, TransactionErrorKey, TransactionFeeQuote, TransactionFeeQuoteType, TransactionFeeTier, TransactionFees, Utxo, UtxoId, ValueOf, VelarAmmLpPosition, VelarFarmPosition, VelarSdkSwapQuote, WalletActivity, WalletActivityType, WalletActivityTypes, WalletDefaultNetworkConfigurationIds, WalletId, XversePooledStackingPosition, YieldPosition, YieldProduct, YieldProductCategories, YieldProductCategory, YieldProductKey, YieldProductKeys, YieldProductToProviderMap, YieldProvider, YieldProviderKey, YieldProviderKeys, ZestBorrowAsset, ZestBorrowMarketPosition, accountAddressesSchema, accountDisplayPreferenceSchema, accountIdSchema, analyticsPreferenceSchema, bitcoinAddressInfoSchema, bitcoinNetworkModesSchema, bitcoinNetworkSchema, bitcoinNetworkToNetworkMode, bitcoinNetworks, bitcoinUnitSchema, bnsContractAddress, bnsContractName, btcTxTimeMap, createMarketData, createMarketPair, defaultCurrentNetwork, defaultNetworkConfigurationsSchema, defaultNetworksKeyedById, emailAddressSchema, enrichPositionWithMetadata, enrichPositionWithProduct, enrichPositionWithProvider, filterPositionsByCategory, filterPositionsByProduct, filterPositionsByProvider, formatMarketPair, getCategoryDisplayName, getCategoryForProduct, getPositionsInCategories, getProductsForProvider, getProductsInCategory, getProviderForProduct, groupPositionsByCategory, groupPositionsByProvider, hasPositionsInCategory, hasPositionsInProvider, historicalPeriods, inscriptionMimeTypes, isBitflowAmmLpPosition, isBitflowAmmStakingPosition, isBrc20Asset, isBtcAsset, isFungibleAsset, isGraniteBorrowPosition, isGraniteEarnPosition, isInscriptionAsset, isNativeAsset, isNonFungibleAsset, isProductInProvider, isRuneAsset, isSip10Asset, isSip9Asset, isSrc20Asset, isStackingDaoPooledPosition, isStackingDaoStStxBtcPosition, isStackingDaoStStxPosition, isStampAsset, isStx20Asset, isStxAsset, isSwappableAsset, isZestPosition, networkConfigurationSchema, networkModes, sip9ContentTypes, sortPositionsByApy, sortPositionsByBalance, sortPositionsByUpdateTime, stacksAddressInfoSchema, supportedBlockchains, swapExecutionTypes, swapProviderIds, testnetModes, transactionFeeQuoteType, transactionFeeTiers, walletIdSchema }; | ||
| //# sourceMappingURL=index.d.ts.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"index.d.ts","names":[],"sources":["../src/account.model.ts","../src/activity/activity-level.model.ts","../src/activity/activity-status.model.ts","../src/activity/activity-type.model.ts","../src/inscription-mime-type.model.ts","../src/types.utils.ts","../src/currencies.model.ts","../src/money.model.ts","../src/assets/sip9-asset.model.ts","../src/assets/asset.model.ts","../src/activity/activity.model.ts","../src/assets/asset-id.model.ts","../src/assets/asset-type-guards.ts","../src/balance.model.ts","../src/bitcoin.model.ts","../src/bns.model.ts","../src/fees/bitcoin-fees.model.ts","../src/types.ts","../src/fees/stacks-fees.model.ts","../src/fees/fees.model.ts","../src/fees/transaction-fees.model.ts","../src/market.model.ts","../src/network/network.schema.ts","../src/network/network.model.ts","../src/settings.model.ts","../src/swap/swap.model.ts","../src/transactions/bitcoin-transaction.model.ts","../src/transactions/stacks-transaction.model.ts","../src/transactions/transaction-error.model.ts","../src/utxo.model.ts","../src/yield/yield-provider.model.ts","../src/yield/yield-product.model.ts","../src/yield/yield-position.base.model.ts","../src/yield/providers/bitflow-position.model.ts","../src/yield/providers/granite-position.model.ts","../src/yield/providers/stacking-dao-position.model.ts","../src/yield/providers/zest-position.model.ts","../src/yield/providers/fast-pool-position.model.ts","../src/yield/providers/hermetica-position.model.ts","../src/yield/providers/lisa-position.model.ts","../src/yield/providers/velar-position.model.ts","../src/yield/providers/xverse-position.model.ts","../src/yield/yield-position.model.ts","../src/yield/helpers/yield.helpers.ts"],"sourcesContent":[],"mappings":"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BpCTmB;;WoCWjB;gBACK;;;;UChBC,8BAAA,SAAuC;;;;;;UCEvC,4BAAA,SAAqC;;EtCFzC,OAAA,EAAA,wBAEX;WsCGS;;AtCLgB,UsCQV,gBAAA,CtCRU;EAAA,KAAA,EsCSlB,mBtCTkB;EAId,OAAA,EsCMF,KtCNE;gBsCOG;;EtCPY,WAAA,CAAA,EsCSZ,mBtCTY;kBsCUV;uBACK;;;;UCbN,iBAAA,SAA0B;;EvCF9B,OAAA,EAAA,YAEX;WuCGS;;AvCLgB,UuCQV,yBAAA,SAAkC,iBvCRxB,CAAA;EAAA,QAAA,EAAA,MAAA;EAId,OAAA,EAAA,qBAA4E;WuCO9E;;AvCPiB,UuCUX,cAAA,CvCVW;SuCWnB;WACE;gBACK;EvCbY,GAAA,EAAA,MAAA;;;;UwCFX,kBAAA,SAA2B;;ExCF/B,OAAA,EAAA,cAEX;;;IAFyB,KAAA,EwCOhB,mBxCPgB;IAAA,OAAA,EwCQd,KxCRc;IAId,YAAA,EwCKK,KxCLuE;;;IAA7D,KAAA,EwCQjB,mBxCRiB;awCSf;kBACK;;ExCVU,MAAA,EAAA;IAAA,KAAA,EwCajB,mBxCbiB;IAEf,OAAA,EwCYA,KxCZA;kBwCaK;;;UAID,iBAAA,SAA0B;;;;IxCjBN,KAAA,EwCqB1B,mBxCrB0B;IAAA,OAAA,EwCsBxB,KxCtBwB;IAOxB,YAAA,EwCgBK,KxChBL;;;IAAuB,KAAA,EwCmBzB,mBxCnByB;IAAA,OAAA,EwCoBvB,KxCpBuB;IAIvB,YAAA,EwCiBK,KxCjBL;;;;;UyCjBI,4BAAA,SAAqC;;;;;;AzCA3B,K0CkBf,aAAA,GACR,oB1CnBuB,G0CoBvB,yB1CpBuB,G0CqBvB,wB1CrBuB,G0CsBvB,qB1CtBuB,G0CuBvB,uB1CvBuB,G0CwBvB,wB1CxBuB,G0CyBvB,2B1CzBuB,G0C0BvB,iC1C1BuB,G0C2BvB,kB1C3BuB,G0C4BvB,iB1C5BuB,G0C6BvB,iB1C7BuB,G0C8BvB,yB1C9BuB,G0C+BvB,4B1C/BuB,G0CgCvB,8B1ChCuB,G0CiCvB,4B1CjCuB;;;iB2CuBX,sBAAA,MAA4B,uBAAuB;A3CvBxC,iB2C2BX,2BAAA,C3C3BW,GAAA,E2C2BsB,a3C3BtB,CAAA,EAAA,GAAA,I2C2B6C,yB3C3B7C;AAAA,iB2C+BX,cAAA,C3C/BW,GAAA,E2C+BS,a3C/BT,CAAA,EAAA,GAAA,I2C+BgC,wB3C/BhC;AAId,iB2C+BG,qBAAA,C3C/ByE,GAAA,E2C+B9C,a3C/B8C,CAAA,EAAA,GAAA,I2C+BvB,qB3C/BuB;iB2CmCzE,uBAAA,MAA6B,uBAAuB;iBAIpD,0BAAA,MAAgC,uBAAuB;A3CvC3C,iB2C2CZ,6BAAA,C3C3CY,GAAA,E2C4CrB,a3C5CqB,CAAA,EAAA,GAAA,I2C6ClB,2B3C7CkB;iB2CiDZ,2BAAA,MACT,uBACG;iBAIM,yBAAA,YACH,2BACD,mBACT;iBAIa,wBAAA,YACH,0BACF,kBACR;A3CjEyB,iB2CqEZ,yBAAA,C3CrEY,SAAA,E2CsEf,a3CtEe,EAAA,EAAA,QAAA,E2CuEhB,Y3CvEgB,EAAA,EAAA,QAAA,E2CwEhB,oB3CxEgB,CAAA,E2CyEzB,a3CzEyB,EAAA;AAAA,iB2C8EZ,sBAAA,C3C9EY,SAAA,E2C+Ef,a3C/Ee,EAAA,EAAA,SAAA,CAAA,EAAA,OAAA,CAAA,E2CiFzB,a3CjFyB,EAAA;AAEf,iB2CsFG,kBAAA,C3CjFd,SAAA,E2CiF4C,a3CjF5C,EAAA,EAAA,SAAA,CAAA,EAAA,OAAA,CAAA,E2CiFiF,a3CjFjF,EAAA;iB2CyFc,yBAAA,YACH,uCAEV;iBAQa,qBAAA,UAA+B,kBAAkB;iBAIjD,qBAAA,UAA+B,eAAe;iBAI9C,mBAAA,UAA6B,2BAA2B;iBAIxD,sBAAA,WAAiC,mBAAmB;iBAMpD,qBAAA,WACJ,0BACA,uBACT;iBAIa,wBAAA,YACH,kBACV,OAAO,kBAAkB;A3CpIS,iB2CkJrB,wBAAA,C3ClJqB,SAAA,E2CmJxB,a3CnJwB,EAAA,EAAA,QAAA,E2CoJzB,Y3CpJyB,EAAA,CAAA,E2CqJlC,M3CrJkC,CAAA,MAAA,E2CqJnB,a3CrJmB,EAAA,CAAA;AAAA,iB2CuKrB,wBAAA,C3CvKqB,SAAA,E2CwKxB,a3CxKwB,EAAA,EAAA,QAAA,E2CyKzB,Y3CzKyB,EAAA,EAAA,UAAA,E2C0KvB,oB3C1KuB,EAAA,CAAA,E2C2KlC,a3C3KkC,EAAA;AAOxB,iB2C6KG,sBAAA,C3C3Kd,SAAA,E2C4KW,a3C5KX,EAAA,EAAA,QAAA,E2C6KU,gB3C7KV,CAAA,EAAA,OAAA;iB2CkLc,sBAAA,YACH,2BACD,0BACA;iBAMI,qCAAqC,yBACzC,aACA,gBACT;E3ChMiC,YAAA,E2CgMb,a3ChMa;CAAA;AAIvB,iB2CgMG,yB3C5Ld,CAAA,U2C4LkD,a3C5LlD,CAAA,CAAA,QAAA,E2C6LU,C3C7LV,EAAA,OAAA,E2C8LS,Y3C9LT,CAAA,E2C+LC,C3C/LD,GAAA;e2C+LoB;;iBAIN,qCAAqC,yBACzC,aACA,wBACD,eACR;gBAAoB;eAA4B;;iBAInC,sBAAA,WAAiC"} | ||
| {"version":3,"file":"index.d.ts","names":[],"sources":["../src/account.model.ts","../src/activity/activity-level.model.ts","../src/activity/activity-status.model.ts","../src/activity/activity-type.model.ts","../src/inscription-mime-type.model.ts","../src/types.utils.ts","../src/currencies.model.ts","../src/money.model.ts","../src/assets/sip9-asset.model.ts","../src/assets/asset.model.ts","../src/activity/activity.model.ts","../src/assets/asset-id.model.ts","../src/assets/asset-type-guards.ts","../src/balance.model.ts","../src/bitcoin.model.ts","../src/bns.model.ts","../src/fees/bitcoin-fees.model.ts","../src/types.ts","../src/fees/stacks-fees.model.ts","../src/fees/fees.model.ts","../src/fees/transaction-fees.model.ts","../src/market.model.ts","../src/network/network.schema.ts","../src/network/network.model.ts","../src/settings.model.ts","../src/swap/swap.model.ts","../src/transactions/bitcoin-transaction.model.ts","../src/transactions/stacks-transaction.model.ts","../src/transactions/transaction-error.model.ts","../src/utxo.model.ts","../src/yield/yield-provider.model.ts","../src/yield/yield-product.model.ts","../src/yield/yield-position.base.model.ts","../src/yield/providers/bitflow-position.model.ts","../src/yield/providers/granite-position.model.ts","../src/yield/providers/stacking-dao-position.model.ts","../src/yield/providers/zest-position.model.ts","../src/yield/providers/fast-pool-position.model.ts","../src/yield/providers/hermetica-position.model.ts","../src/yield/providers/lisa-position.model.ts","../src/yield/providers/velar-position.model.ts","../src/yield/providers/xverse-position.model.ts","../src/yield/yield-position.model.ts","../src/yield/helpers/yield.helpers.ts"],"sourcesContent":[],"mappings":"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"} |
+4
-1
@@ -290,2 +290,5 @@ import { z } from "zod"; | ||
| const BNS_V2_API_BASE_URL = "https://api.bnsv2.com"; | ||
| const EMILY_API_BASE_URL_MAINNET = "https://sbtc-emily.com"; | ||
| const EMILY_API_BASE_URL_TESTNET = "https://beta.sbtc-emily.com"; | ||
| const EMILY_API_BASE_URL_DEVENV = "http://localhost:3031"; | ||
| let ChainId = /* @__PURE__ */ function(ChainId$1) { | ||
@@ -712,3 +715,3 @@ ChainId$1[ChainId$1["Testnet"] = 2147483648] = "Testnet"; | ||
| //#endregion | ||
| export { ActivityLevels, BESTINSLOT_API_BASE_URL_MAINNET, BESTINSLOT_API_BASE_URL_TESTNET, BITCOIN_API_BASE_URL_MAINNET, BITCOIN_API_BASE_URL_SIGNET, BITCOIN_API_BASE_URL_TESTNET3, BITCOIN_API_BASE_URL_TESTNET4, BNS_V2_API_BASE_URL, BtcFeeType, ChainId, CryptoAssetCategories, CryptoAssetChains, CryptoAssetProtocols, FeeCalculationTypes, FeeTypes, FungibleCryptoAssetProtocols, GeneralActivityTypes, HIRO_API_BASE_URL_MAINNET, HIRO_API_BASE_URL_MAINNET_EXTENDED, HIRO_API_BASE_URL_NAKAMOTO_TESTNET, HIRO_API_BASE_URL_TESTNET, HIRO_API_BASE_URL_TESTNET_EXTENDED, NonFungibleCryptoAssetProtocols, OnChainActivityStatuses, OnChainActivityTypes, STX20_API_BASE_URL_MAINNET, WalletActivityTypes, WalletDefaultNetworkConfigurationIds, YieldProductCategories, YieldProductKeys, YieldProductToProviderMap, YieldProviderKeys, accountAddressesSchema, accountDisplayPreferenceSchema, accountIdSchema, analyticsPreferenceSchema, bitcoinAddressInfoSchema, bitcoinNetworkModesSchema, bitcoinNetworkSchema, bitcoinNetworkToNetworkMode, bitcoinNetworks, bitcoinUnitSchema, bnsContractAddress, bnsContractName, btcTxTimeMap, createMarketData, createMarketPair, defaultCurrentNetwork, defaultNetworkConfigurationsSchema, defaultNetworksKeyedById, emailAddressSchema, enrichPositionWithMetadata, enrichPositionWithProduct, enrichPositionWithProvider, filterPositionsByCategory, filterPositionsByProduct, filterPositionsByProvider, formatMarketPair, getCategoryDisplayName, getCategoryForProduct, getPositionsInCategories, getProductsForProvider, getProductsInCategory, getProviderForProduct, groupPositionsByCategory, groupPositionsByProvider, hasPositionsInCategory, hasPositionsInProvider, historicalPeriods, inscriptionMimeTypes, isBitflowAmmLpPosition, isBitflowAmmStakingPosition, isBrc20Asset, isBtcAsset, isFungibleAsset, isGraniteBorrowPosition, isGraniteEarnPosition, isInscriptionAsset, isNativeAsset, isNonFungibleAsset, isProductInProvider, isRuneAsset, isSip10Asset, isSip9Asset, isSrc20Asset, isStackingDaoPooledPosition, isStackingDaoStStxBtcPosition, isStackingDaoStStxPosition, isStampAsset, isStx20Asset, isStxAsset, isSwappableAsset, isZestPosition, networkConfigurationSchema, networkModes, sip9ContentTypes, sortPositionsByApy, sortPositionsByBalance, sortPositionsByUpdateTime, stacksAddressInfoSchema, supportedBlockchains, swapExecutionTypes, swapProviderIds, testnetModes, transactionFeeQuoteType, transactionFeeTiers, walletIdSchema }; | ||
| export { ActivityLevels, BESTINSLOT_API_BASE_URL_MAINNET, BESTINSLOT_API_BASE_URL_TESTNET, BITCOIN_API_BASE_URL_MAINNET, BITCOIN_API_BASE_URL_SIGNET, BITCOIN_API_BASE_URL_TESTNET3, BITCOIN_API_BASE_URL_TESTNET4, BNS_V2_API_BASE_URL, BtcFeeType, ChainId, CryptoAssetCategories, CryptoAssetChains, CryptoAssetProtocols, EMILY_API_BASE_URL_DEVENV, EMILY_API_BASE_URL_MAINNET, EMILY_API_BASE_URL_TESTNET, FeeCalculationTypes, FeeTypes, FungibleCryptoAssetProtocols, GeneralActivityTypes, HIRO_API_BASE_URL_MAINNET, HIRO_API_BASE_URL_MAINNET_EXTENDED, HIRO_API_BASE_URL_NAKAMOTO_TESTNET, HIRO_API_BASE_URL_TESTNET, HIRO_API_BASE_URL_TESTNET_EXTENDED, NonFungibleCryptoAssetProtocols, OnChainActivityStatuses, OnChainActivityTypes, STX20_API_BASE_URL_MAINNET, WalletActivityTypes, WalletDefaultNetworkConfigurationIds, YieldProductCategories, YieldProductKeys, YieldProductToProviderMap, YieldProviderKeys, accountAddressesSchema, accountDisplayPreferenceSchema, accountIdSchema, analyticsPreferenceSchema, bitcoinAddressInfoSchema, bitcoinNetworkModesSchema, bitcoinNetworkSchema, bitcoinNetworkToNetworkMode, bitcoinNetworks, bitcoinUnitSchema, bnsContractAddress, bnsContractName, btcTxTimeMap, createMarketData, createMarketPair, defaultCurrentNetwork, defaultNetworkConfigurationsSchema, defaultNetworksKeyedById, emailAddressSchema, enrichPositionWithMetadata, enrichPositionWithProduct, enrichPositionWithProvider, filterPositionsByCategory, filterPositionsByProduct, filterPositionsByProvider, formatMarketPair, getCategoryDisplayName, getCategoryForProduct, getPositionsInCategories, getProductsForProvider, getProductsInCategory, getProviderForProduct, groupPositionsByCategory, groupPositionsByProvider, hasPositionsInCategory, hasPositionsInProvider, historicalPeriods, inscriptionMimeTypes, isBitflowAmmLpPosition, isBitflowAmmStakingPosition, isBrc20Asset, isBtcAsset, isFungibleAsset, isGraniteBorrowPosition, isGraniteEarnPosition, isInscriptionAsset, isNativeAsset, isNonFungibleAsset, isProductInProvider, isRuneAsset, isSip10Asset, isSip9Asset, isSrc20Asset, isStackingDaoPooledPosition, isStackingDaoStStxBtcPosition, isStackingDaoStStxPosition, isStampAsset, isStx20Asset, isStxAsset, isSwappableAsset, isZestPosition, networkConfigurationSchema, networkModes, sip9ContentTypes, sortPositionsByApy, sortPositionsByBalance, sortPositionsByUpdateTime, stacksAddressInfoSchema, supportedBlockchains, swapExecutionTypes, swapProviderIds, testnetModes, transactionFeeQuoteType, transactionFeeTiers, walletIdSchema }; | ||
| //# sourceMappingURL=index.js.map |
@@ -1,1 +0,1 @@ | ||
| {"version":3,"file":"index.js","names":["btcTxTimeMap: Record<keyof AverageBitcoinFeeRates, string>","networkMainnet: NetworkConfiguration","networkTestnet: NetworkConfiguration","networkTestnet4: NetworkConfiguration","networkSignet: NetworkConfiguration","networkSbtcTestnet: NetworkConfiguration","networkSbtcDevenv: NetworkConfiguration","networkDevnet: NetworkConfiguration","defaultCurrentNetwork: NetworkConfiguration","defaultNetworksKeyedById: Record<\n WalletDefaultNetworkConfigurationIds,\n NetworkConfiguration\n>","grouped: Partial<Record<YieldProviderKey, YieldPosition[]>>","grouped: Record<string, YieldPosition[]>"],"sources":["../src/account.model.ts","../src/activity/activity-level.model.ts","../src/activity/activity-status.model.ts","../src/activity/activity-type.model.ts","../src/assets/asset-type-guards.ts","../src/assets/asset.model.ts","../src/assets/sip9-asset.model.ts","../src/bitcoin.model.ts","../src/bns.model.ts","../src/fees/bitcoin-fees.model.ts","../src/fees/fees.model.ts","../src/fees/transaction-fees.model.ts","../src/inscription-mime-type.model.ts","../src/market.model.ts","../src/network/network.model.ts","../src/network/network.schema.ts","../src/settings.model.ts","../src/swap/swap.model.ts","../src/yield/yield-provider.model.ts","../src/yield/yield-product.model.ts","../src/yield/helpers/yield.helpers.ts"],"sourcesContent":["import { z } from 'zod';\n\nexport const walletIdSchema = z.object({\n fingerprint: z.string(),\n});\n\nexport const accountIdSchema = walletIdSchema.and(z.object({ accountIndex: z.number() }));\n\nexport const bitcoinAddressInfoSchema = z.object({\n taprootDescriptor: z.string(),\n nativeSegwitDescriptor: z.string(),\n zeroIndexTaprootPayerAddress: z.string().optional(),\n zeroIndexNativeSegwitPayerAddress: z.string().optional(),\n});\n\nexport const stacksAddressInfoSchema = z.object({\n stxAddress: z.string(),\n});\n\nexport const accountAddressesSchema = z.object({\n id: accountIdSchema,\n bitcoin: bitcoinAddressInfoSchema.optional(),\n stacks: stacksAddressInfoSchema.optional(),\n});\n\nexport type WalletId = z.infer<typeof walletIdSchema>;\nexport type AccountId = z.infer<typeof accountIdSchema>;\nexport type BitcoinAddressInfo = z.infer<typeof bitcoinAddressInfoSchema>;\nexport type StacksAddressInfo = z.infer<typeof stacksAddressInfoSchema>;\nexport type AccountAddresses = z.infer<typeof accountAddressesSchema>;\n","export const ActivityLevels = {\n account: 'account',\n app: 'app',\n} as const;\nexport type ActivityLevel = keyof typeof ActivityLevels;\n","export const OnChainActivityStatuses = {\n pending: 'pending',\n success: 'success',\n failed: 'failed',\n} as const;\nexport type OnChainActivityStatus = keyof typeof OnChainActivityStatuses;\n","export const OnChainActivityTypes = {\n deploySmartContract: 'deploySmartContract',\n executeSmartContract: 'executeSmartContract',\n lockAsset: 'lockAsset',\n sendAsset: 'sendAsset',\n receiveAsset: 'receiveAsset',\n swapAssets: 'swapAssets',\n} as const;\nexport type OnChainActivityType = keyof typeof OnChainActivityTypes;\n\nexport const WalletActivityTypes = {\n connectApp: 'connectApp',\n signMessage: 'signMessage',\n} as const;\nexport type WalletActivityType = keyof typeof WalletActivityTypes;\n\nexport const GeneralActivityTypes = {\n walletAdded: 'walletAdded',\n receiveAnnouncement: 'receiveAnnouncement',\n featureWaitlistNotification: 'featureWaitlistNotification',\n} as const;\nexport type GeneralActivityType = keyof typeof GeneralActivityTypes;\n\nexport type ActivityType = OnChainActivityType | WalletActivityType | GeneralActivityType;\n","import {\n Brc20Asset,\n BtcAsset,\n CryptoAsset,\n FungibleCryptoAsset,\n InscriptionAsset,\n NativeCryptoAsset,\n NonFungibleCryptoAsset,\n RuneAsset,\n Sip10Asset,\n Src20Asset,\n StampAsset,\n Stx20Asset,\n StxAsset,\n} from './asset.model';\nimport { Sip9Asset } from './sip9-asset.model';\n\nexport function isFungibleAsset(asset: CryptoAsset): asset is FungibleCryptoAsset {\n return asset.category === 'fungible';\n}\n\nexport function isNonFungibleAsset(asset: CryptoAsset): asset is NonFungibleCryptoAsset {\n return asset.category === 'nft';\n}\n\nexport function isBtcAsset(asset: CryptoAsset): asset is BtcAsset {\n return asset.protocol === 'nativeBtc';\n}\n\nexport function isStxAsset(asset: CryptoAsset): asset is StxAsset {\n return asset.protocol === 'nativeStx';\n}\n\nexport function isNativeAsset(asset: CryptoAsset): asset is NativeCryptoAsset {\n return isBtcAsset(asset) || isStxAsset(asset);\n}\n\nexport function isSip10Asset(asset: CryptoAsset): asset is Sip10Asset {\n return asset.protocol === 'sip10';\n}\n\nexport function isSwappableAsset(asset: CryptoAsset): asset is NativeCryptoAsset | Sip10Asset {\n return isNativeAsset(asset) || isSip10Asset(asset);\n}\n\nexport function isBrc20Asset(asset: CryptoAsset): asset is Brc20Asset {\n return asset.protocol === 'brc20';\n}\n\nexport function isSrc20Asset(asset: CryptoAsset): asset is Src20Asset {\n return asset.protocol === 'src20';\n}\n\nexport function isStx20Asset(asset: CryptoAsset): asset is Stx20Asset {\n return asset.protocol === 'stx20';\n}\n\nexport function isRuneAsset(asset: CryptoAsset): asset is RuneAsset {\n return asset.protocol === 'rune';\n}\n\nexport function isInscriptionAsset(asset: CryptoAsset): asset is InscriptionAsset {\n return asset.protocol === 'inscription';\n}\n\nexport function isStampAsset(asset: CryptoAsset): asset is StampAsset {\n return asset.protocol === 'stamp';\n}\n\nexport function isSip9Asset(asset: CryptoAsset): asset is Sip9Asset {\n return asset.protocol === 'sip9';\n}\n","import { InscriptionMimeType } from '../inscription-mime-type.model';\nimport { Sip9Asset } from './sip9-asset.model';\n\nexport const CryptoAssetChains = {\n bitcoin: 'bitcoin',\n stacks: 'stacks',\n} as const;\nexport const CryptoAssetCategories = {\n fungible: 'fungible',\n nft: 'nft',\n} as const;\nexport const FungibleCryptoAssetProtocols = {\n nativeBtc: 'nativeBtc',\n nativeStx: 'nativeStx',\n sip10: 'sip10',\n brc20: 'brc20',\n src20: 'src20',\n stx20: 'stx20',\n rune: 'rune',\n} as const;\nexport const NonFungibleCryptoAssetProtocols = {\n stamp: 'stamp',\n sip9: 'sip9',\n inscription: 'inscription',\n} as const;\nexport const CryptoAssetProtocols = {\n ...FungibleCryptoAssetProtocols,\n ...NonFungibleCryptoAssetProtocols,\n} as const;\n\nexport type CryptoAssetChain = keyof typeof CryptoAssetChains;\nexport type CryptoAssetCategory = keyof typeof CryptoAssetCategories;\nexport type FungibleCryptoAssetProtocol = keyof typeof FungibleCryptoAssetProtocols;\nexport type NonFungibleCryptoAssetProtocol = keyof typeof NonFungibleCryptoAssetProtocols;\nexport type CryptoAssetProtocol = FungibleCryptoAssetProtocol | NonFungibleCryptoAssetProtocol;\n\nexport interface BaseCryptoAsset {\n readonly chain: CryptoAssetChain;\n readonly category: CryptoAssetCategory;\n readonly protocol: CryptoAssetProtocol;\n}\n\n// Fungible asset types\ninterface BaseFungibleCryptoAsset extends BaseCryptoAsset {\n readonly category: 'fungible';\n readonly protocol: FungibleCryptoAssetProtocol;\n readonly symbol: string;\n readonly decimals: number;\n readonly hasMemo: boolean;\n}\nexport interface BtcAsset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'nativeBtc';\n readonly name: 'Bitcoin';\n readonly symbol: 'BTC';\n}\nexport interface StxAsset extends BaseFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'nativeStx';\n readonly name: 'Stacks';\n readonly symbol: 'STX';\n}\nexport interface Brc20Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'brc20';\n readonly symbol: string;\n}\nexport interface Src20Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'src20';\n readonly id: string;\n readonly symbol: string;\n readonly deploy_tx: string;\n readonly deploy_img: string;\n}\nexport interface RuneAsset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'rune';\n readonly spacedRuneName: string;\n readonly runeName: string;\n readonly symbol: string;\n}\nexport interface Sip10Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'sip10';\n readonly name: string;\n readonly canTransfer: boolean;\n readonly assetId: string;\n readonly contractId: string;\n readonly imageCanonicalUri: string;\n readonly symbol: string;\n}\nexport interface Stx20Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'stx20';\n readonly symbol: string;\n}\nexport type NativeCryptoAsset = BtcAsset | StxAsset;\nexport type FungibleCryptoAsset =\n | NativeCryptoAsset\n | Sip10Asset\n | Brc20Asset\n | Src20Asset\n | Stx20Asset\n | RuneAsset;\n\n// NFT asset types\nexport interface BaseNonFungibleCryptoAsset extends BaseCryptoAsset {\n readonly category: 'nft';\n readonly protocol: NonFungibleCryptoAssetProtocol;\n}\nexport interface InscriptionAsset extends BaseNonFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'inscription';\n readonly id: string;\n readonly mimeType: InscriptionMimeType;\n readonly number: number;\n readonly address: string;\n readonly title: string;\n readonly txid: string;\n readonly output: string;\n readonly offset: string;\n readonly preview: string;\n readonly src: string;\n readonly thumbnailSrc?: string;\n readonly value: string;\n readonly genesisBlockHash: string;\n readonly genesisTimestamp: number;\n readonly genesisBlockHeight: number;\n}\nexport interface StampAsset extends BaseNonFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'stamp';\n readonly stamp: number;\n readonly stampUrl: string;\n readonly stampExplorerUrl: string;\n readonly blockHeight: number;\n}\n\nexport type NonFungibleCryptoAsset = InscriptionAsset | StampAsset | Sip9Asset;\n\nexport type CryptoAsset = FungibleCryptoAsset | NonFungibleCryptoAsset;\n\nexport interface FungibleAssetId {\n protocol: FungibleCryptoAssetProtocol;\n id: string;\n}\n","import { Money } from '../money.model';\nimport { BaseNonFungibleCryptoAsset } from './asset.model';\n\nexport const sip9ContentTypes = [\n 'image/jpeg',\n 'image/jpg',\n 'image/png',\n 'image/gif',\n 'image/webp',\n 'image/svg+xml',\n 'image/bmp',\n 'image/tiff',\n 'image/avif',\n 'video/mp4',\n 'video/webm',\n 'video/mov',\n 'video/quicktime',\n 'video/avi',\n 'video/x-msvideo',\n 'video/ogg',\n 'audio/mpeg',\n 'audio/mp3',\n 'audio/wav',\n 'audio/x-wav',\n 'audio/ogg',\n 'audio/aac',\n 'audio/flac',\n 'audio/webm',\n 'model/gltf+json',\n 'model/gltf-binary',\n 'application/octet-stream',\n 'text/plain',\n 'text/html',\n 'text/markdown',\n 'application/pdf',\n 'application/json',\n 'text/javascript',\n 'application/javascript',\n 'application/zip',\n 'unknown',\n '',\n] as const;\n\nexport type Sip9ContentType = (typeof sip9ContentTypes)[number];\n\nexport interface Sip9Collection {\n name: string;\n collectionExplorerUrl: string;\n totalItems?: number;\n floorPrice?: Money;\n latestSale?: Money;\n}\n\nexport interface Sip9AssetContent {\n contentUrl: string;\n contentType: Sip9ContentType;\n}\n\nexport interface Sip9Attribute {\n traitType: string;\n value: any;\n rarityPercent?: number;\n}\n\nexport interface Sip9Asset extends BaseNonFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'sip9';\n readonly assetId: string;\n readonly contractId: string;\n readonly tokenId: number;\n readonly name: string;\n readonly description: string;\n readonly content: Sip9AssetContent;\n readonly attributes?: Sip9Attribute[];\n readonly collection?: Sip9Collection;\n readonly creator?: string;\n readonly rarityRank?: number;\n}\n","import { z } from 'zod';\n\n// Branded type for Bitcoin addresses\nexport type BitcoinAddress = string & { readonly __brand: unique symbol };\n\nexport const bitcoinUnitSchema = z.enum(['bitcoin', 'satoshi']);\nexport type BitcoinUnit = z.infer<typeof bitcoinUnitSchema>;\n\nexport type BitcoinUnitSymbol = 'BTC' | 'sat';\n\nexport interface BitcoinUnitInfo {\n name: BitcoinUnit;\n symbol: BitcoinUnitSymbol;\n decimal: string;\n}\n","export const bnsContractAddress = {\n mainnet: 'SP2QEZ06AGJ3RKJPBV14SY1V5BBFNAW33D96YPGZF',\n testnet: 'ST2QEZ06AGJ3RKJPBV14SY1V5BBFNAW33D9SZJQ0M',\n};\n\nexport const bnsContractName = 'BNS-V2';\n\nexport interface BnsName {\n owner: string;\n name: string;\n namespace: string;\n fullName: string;\n renewalHeight: number;\n registeredAtBlockNumber: number;\n}\n\nexport interface BnsProfile {\n bnsName: BnsName;\n profileData: BnsProfileData;\n}\n\nexport interface BnsProfileData {\n name?: string;\n bio?: string;\n website?: string;\n pfpUrl?: string;\n location?: string;\n addresses?: BnsProfileDataAddresses;\n}\n\nexport interface BnsProfileDataAddresses {\n bitcoinPayment?: string;\n bitcoinOrdinal?: string;\n solana?: string;\n ethereum?: string;\n}\n","import type BigNumber from 'bignumber.js';\n\nexport interface AverageBitcoinFeeRates {\n fastestFee: BigNumber;\n halfHourFee: BigNumber;\n hourFee: BigNumber;\n}\n\nexport const btcTxTimeMap: Record<keyof AverageBitcoinFeeRates, string> = {\n fastestFee: '~10 – 20min',\n halfHourFee: '~30 min',\n hourFee: '~1 hour+',\n};\n\nexport enum BtcFeeType {\n High = 'High',\n Standard = 'Standard',\n Low = 'Low',\n}\n","import { Blockchain } from '../types';\nimport { StacksFeeEstimate } from './stacks-fees.model';\n\nexport enum FeeTypes {\n Low,\n Middle,\n High,\n Custom,\n Unknown,\n}\n\nexport enum FeeCalculationTypes {\n Api = 'api',\n Default = 'default',\n DefaultSimulated = 'default-simulated',\n FeesCapped = 'fees-capped',\n TokenTransferSpecific = 'token-transfer-specific',\n}\n\nexport interface Fees {\n blockchain: Blockchain;\n estimates: StacksFeeEstimate[];\n calculation: FeeCalculationTypes;\n}\n","import { Money } from '../money.model';\nimport { Blockchain } from '../types';\n\nexport const transactionFeeTiers = ['low', 'standard', 'high'] as const;\nexport type TransactionFeeTier = (typeof transactionFeeTiers)[number];\n\nexport interface TransactionFees {\n readonly chain: Blockchain;\n readonly options: Record<TransactionFeeTier, TransactionFeeQuote>;\n}\n\nexport const transactionFeeQuoteType = [\n 'flat',\n 'bitcoinFeeRate',\n 'stacksFeeRate',\n 'evm1559',\n] as const;\nexport type TransactionFeeQuoteType = (typeof transactionFeeQuoteType)[number];\n\nexport interface BaseTransactionFeeQuote {\n readonly type: TransactionFeeQuoteType;\n readonly value: Money;\n}\n\nexport interface FlatTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'flat';\n}\n\nexport interface BitcoinTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'bitcoinFeeRate';\n readonly rate: number;\n readonly rateUnit: 'sats/vB';\n readonly estimatedTxSize: number;\n readonly sizeUnit: 'vB';\n}\n\nexport interface StacksTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'stacksFeeRate';\n readonly rate: number;\n readonly rateUnit: 'µSTX/byte';\n readonly estimatedTxSize: number;\n readonly sizeUnit: 'byte';\n}\n\nexport interface EvmTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'evm1559';\n readonly baseFeePerGas: Money;\n readonly priorityFeePerGas: Money;\n readonly gasLimit: number;\n}\n\nexport type TransactionFeeQuote =\n | FlatTransactionFeeQuote\n | BitcoinTransactionFeeQuote\n | StacksTransactionFeeQuote\n | EvmTransactionFeeQuote;\n","/**\n * Inscriptions contain arbitrary data. When retrieving an inscription, it should be\n * classified into one of the types below, indicating that the app can handle it\n * appropriately and securely. Inscriptions of types not ready to be handled by the\n * app should be classified as \"other\".\n */\nexport const inscriptionMimeTypes = [\n 'audio',\n 'gltf',\n 'html',\n 'image',\n 'svg',\n 'text',\n 'video',\n 'other',\n] as const;\n\nexport type InscriptionMimeType = (typeof inscriptionMimeTypes)[number];\n","import type { Currency, QuoteCurrency } from './currencies.model';\nimport type { Money } from './money.model';\n\ninterface MarketPair {\n readonly base: Currency;\n readonly quote: QuoteCurrency;\n}\n\nexport function createMarketPair(base: Currency, quote: QuoteCurrency): MarketPair {\n return Object.freeze({ base, quote });\n}\n\nexport function formatMarketPair({ base, quote }: MarketPair) {\n return `${base}/${quote}`;\n}\n\nexport interface MarketData {\n readonly pair: MarketPair;\n readonly price: Money;\n}\n\nexport function createMarketData(pair: MarketPair, price: Money): MarketData {\n if (pair.quote !== price.symbol)\n throw new Error('Cannot create market data when price does not match quote');\n return Object.freeze({ pair, price });\n}\n\nexport const historicalPeriods = ['1d', '1w', '1m', '3m', '6m', '1y'] as const;\nexport type HistoricalPeriod = (typeof historicalPeriods)[number];\n\nexport interface MarketPriceSnapshot {\n price: Money;\n timestamp: number;\n}\n\nexport interface MarketPriceHistory {\n period: HistoricalPeriod;\n changePercentage: number;\n prices: MarketPriceSnapshot[];\n}\n","import { z } from 'zod';\n\nimport { Blockchain } from '../types';\nimport { networkConfigurationSchema } from './network.schema';\n\nexport const HIRO_API_BASE_URL_MAINNET = 'https://api.hiro.so';\nexport const HIRO_API_BASE_URL_TESTNET = 'https://api.testnet.hiro.so';\nexport const HIRO_API_BASE_URL_NAKAMOTO_TESTNET = 'https://api.nakamoto.testnet.hiro.so';\n\nexport const HIRO_API_BASE_URL_MAINNET_EXTENDED = 'https://api.hiro.so/extended/v1';\nexport const HIRO_API_BASE_URL_TESTNET_EXTENDED = 'https://api.testnet.hiro.so/extended';\n\nexport const BITCOIN_API_BASE_URL_MAINNET = 'https://leather.mempool.space/api';\nexport const BITCOIN_API_BASE_URL_TESTNET3 = 'https://leather.mempool.space/testnet/api';\nexport const BITCOIN_API_BASE_URL_TESTNET4 = 'https://leather.mempool.space/testnet4/api';\nexport const BITCOIN_API_BASE_URL_SIGNET = 'https://mempool.space/signet/api';\n\nexport const BESTINSLOT_API_BASE_URL_MAINNET = 'https://leatherapi.bestinslot.xyz/v3';\nexport const BESTINSLOT_API_BASE_URL_TESTNET = 'https://leatherapi_testnet.bestinslot.xyz/v3';\n\nexport const STX20_API_BASE_URL_MAINNET = 'https://api.stx20.com/api/v1';\n\nexport const BNS_V2_API_BASE_URL = 'https://api.bnsv2.com';\n\n// Copied from @stacks/transactions to avoid dependencies\nexport enum ChainId {\n Testnet = 2147483648,\n Mainnet = 1,\n}\n\nexport enum WalletDefaultNetworkConfigurationIds {\n mainnet = 'mainnet',\n testnet = 'testnet',\n testnet4 = 'testnet4',\n signet = 'signet',\n sbtcTestnet = 'sbtcTestnet',\n sbtcDevenv = 'sbtcDevenv',\n devnet = 'devnet',\n}\n\nexport const defaultNetworkConfigurationsSchema = z.enum([\n 'mainnet',\n 'testnet',\n 'testnet4',\n 'signet',\n 'sbtcTestnet',\n 'sbtcDevenv',\n 'devnet',\n]);\nexport type DefaultNetworkConfigurations = z.infer<typeof defaultNetworkConfigurationsSchema>;\n\nexport const supportedBlockchains = ['stacks', 'bitcoin'] as const;\n\nexport type SupportedBlockchains = (typeof supportedBlockchains)[number];\n\nexport const networkModes = ['mainnet', 'testnet'] as const;\nexport const testnetModes = ['testnet', 'regtest', 'signet'] as const;\n\nexport const bitcoinNetworks = ['mainnet', 'testnet3', 'testnet4', 'regtest', 'signet'] as const;\nexport type BitcoinNetwork = (typeof bitcoinNetworks)[number];\n\nexport type NetworkModes = (typeof networkModes)[number];\ntype BitcoinTestnetModes = (typeof testnetModes)[number];\n\nexport function bitcoinNetworkToNetworkMode(network: BitcoinNetwork): BitcoinNetworkModes {\n switch (network) {\n case 'mainnet':\n return 'mainnet';\n case 'testnet3':\n return 'testnet';\n case 'testnet4':\n return 'testnet';\n case 'regtest':\n return 'regtest';\n case 'signet':\n return 'signet';\n default:\n // TODO: Needs exhaustive check. Cannot import 'assertUnreachable' since 'utils' package depends on 'models'.\n // Ideally this function should live in utils, but it's currently widely used in the extension.\n throw new Error(`Unhandled case: ${network}`);\n }\n}\n\nexport type BitcoinNetworkModes = NetworkModes | BitcoinTestnetModes;\n\ninterface BaseChainConfig {\n blockchain: Blockchain;\n}\n\nexport interface BitcoinChainConfig extends BaseChainConfig {\n blockchain: 'bitcoin';\n bitcoinUrl: string;\n bitcoinNetwork: BitcoinNetwork;\n mode: BitcoinNetworkModes;\n}\n\nexport interface StacksChainConfig extends BaseChainConfig {\n blockchain: 'stacks';\n url: string;\n /** The chainId of the network (or parent network if this is a subnet) */\n chainId: ChainId;\n /** An additional chainId for subnets. Indicated a subnet if defined and is mainly used for signing. */\n subnetChainId?: ChainId;\n}\n\nexport type NetworkConfiguration = z.infer<typeof networkConfigurationSchema>;\n\nconst networkMainnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.mainnet,\n name: 'Mainnet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Mainnet,\n url: HIRO_API_BASE_URL_MAINNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'mainnet',\n mode: 'mainnet',\n bitcoinUrl: BITCOIN_API_BASE_URL_MAINNET,\n },\n },\n};\n\nconst networkTestnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.testnet,\n name: 'Testnet3',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'testnet3',\n mode: 'testnet',\n bitcoinUrl: BITCOIN_API_BASE_URL_TESTNET3,\n },\n },\n};\n\nconst networkTestnet4: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.testnet4,\n name: 'Testnet4',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'testnet4',\n mode: 'testnet',\n bitcoinUrl: BITCOIN_API_BASE_URL_TESTNET4,\n },\n },\n};\n\nconst networkSignet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.signet,\n name: 'Signet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'signet',\n mode: 'signet',\n bitcoinUrl: BITCOIN_API_BASE_URL_SIGNET,\n },\n },\n};\n\nconst networkSbtcTestnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.sbtcTestnet,\n name: 'sBTC Testnet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'regtest',\n mode: 'regtest',\n bitcoinUrl: 'https://beta.sbtc-mempool.tech/api/proxy',\n },\n },\n};\n\nconst networkSbtcDevenv: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.sbtcDevenv,\n name: 'sBTC Devenv',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: 'http://localhost:3999',\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'regtest',\n mode: 'regtest',\n bitcoinUrl: 'http://localhost:3000/api/proxy',\n },\n },\n};\n\nconst networkDevnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.devnet,\n name: 'Devnet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: 'http://localhost:3999',\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'regtest',\n mode: 'regtest',\n bitcoinUrl: 'http://localhost:18443',\n },\n },\n};\n\nexport const defaultCurrentNetwork: NetworkConfiguration = networkMainnet;\n\nexport const defaultNetworksKeyedById: Record<\n WalletDefaultNetworkConfigurationIds,\n NetworkConfiguration\n> = {\n [WalletDefaultNetworkConfigurationIds.mainnet]: networkMainnet,\n [WalletDefaultNetworkConfigurationIds.testnet4]: networkTestnet4,\n [WalletDefaultNetworkConfigurationIds.testnet]: networkTestnet,\n [WalletDefaultNetworkConfigurationIds.signet]: networkSignet,\n [WalletDefaultNetworkConfigurationIds.sbtcTestnet]: networkSbtcTestnet,\n [WalletDefaultNetworkConfigurationIds.sbtcDevenv]: networkSbtcDevenv,\n [WalletDefaultNetworkConfigurationIds.devnet]: networkDevnet,\n};\n","import { z } from 'zod';\n\nimport { bitcoinNetworks, networkModes, testnetModes } from './network.model';\n\nexport const bitcoinNetworkModesSchema = z.enum([...networkModes, ...testnetModes]);\n\nexport const bitcoinNetworkSchema = z.enum([...bitcoinNetworks]);\n\nexport const networkConfigurationSchema = z.object({\n name: z.string(),\n id: z.string(),\n chain: z.object({\n bitcoin: z.object({\n blockchain: z.literal('bitcoin'),\n bitcoinUrl: z.string(),\n bitcoinNetwork: bitcoinNetworkSchema,\n mode: bitcoinNetworkModesSchema,\n }),\n stacks: z.object({\n blockchain: z.literal('stacks'),\n url: z.string(),\n chainId: z.number(),\n subnetChainId: z.number().optional(),\n }),\n }),\n});\n","import { z } from 'zod';\n\nimport { Blockchain } from './types';\n\nexport const accountDisplayPreferenceSchema = z.enum(['native-segwit', 'taproot', 'bns', 'stacks']);\nexport type AccountDisplayPreference = z.infer<typeof accountDisplayPreferenceSchema>;\n\nexport interface AccountDisplayPreferenceInfo {\n type: AccountDisplayPreference;\n blockchain: Blockchain;\n name: string;\n}\n\nexport const analyticsPreferenceSchema = z.enum(['consent-given', 'rejects-tracking']);\nexport type AnalyticsPreference = z.infer<typeof analyticsPreferenceSchema>;\n\nexport const emailAddressSchema = z.email({ error: 'Invalid email address' });\nexport type EmailAddress = z.infer<typeof emailAddressSchema>;\n","import { CryptoAssetId } from '../assets/asset-id.model';\nimport { NativeCryptoAsset, Sip10Asset } from '../assets/asset.model';\nimport { Money } from '../money.model';\n\nexport type SwappableFungibleCryptoAsset = NativeCryptoAsset | Sip10Asset;\n\nexport interface SwapAsset {\n asset: SwappableFungibleCryptoAsset;\n providerAssets: SwapProviderAsset[];\n}\n\nexport const swapProviderIds = ['bitflow-sdk', 'sbtc-bridge', 'alex-sdk', 'velar-sdk'] as const;\nexport type SwapProviderId = (typeof swapProviderIds)[number];\n\nexport interface SwapProvider {\n id: SwapProviderId;\n isAggregator: boolean;\n}\n\nexport interface SwapProviderAsset {\n providerId: SwapProviderId;\n providerAssetId: string;\n assetId: CryptoAssetId;\n}\n\nexport type SwapQuote =\n | AlexSdkSwapQuote\n | VelarSdkSwapQuote\n | BitflowSdkSwapQuote\n | SbtcBridgeSwapQuote;\n\nexport interface BaseSwapQuote {\n executionType: SwapExecutionType;\n providerId: SwapProviderId;\n baseAsset: SwappableFungibleCryptoAsset;\n targetAsset: SwappableFungibleCryptoAsset;\n baseAmount: Money;\n targetAmount: Money;\n dexPath: SwapDex[];\n assetPath: (NativeCryptoAsset | Sip10Asset)[];\n createdAt: Date;\n}\n\nexport interface AlexSdkSwapQuote extends BaseSwapQuote {\n providerId: 'alex-sdk';\n providerQuoteData: {\n baseProviderAssetId: string;\n targetProviderAssetId: string;\n alexSdkAmmRoute: unknown;\n };\n}\n\nexport interface VelarSdkSwapQuote extends BaseSwapQuote {\n providerId: 'velar-sdk';\n providerQuoteData: {\n baseProviderAssetId: string;\n targetProviderAssetId: string;\n };\n}\n\nexport interface BitflowSdkSwapQuote extends BaseSwapQuote {\n providerId: 'bitflow-sdk';\n providerQuoteData: {\n bitflowSdkSelectedSwapRoute: unknown;\n };\n}\n\nexport interface SbtcBridgeSwapQuote extends BaseSwapQuote {\n providerId: 'sbtc-bridge';\n}\n\nexport interface SwapDex {\n name: string;\n url: string;\n logo: string;\n description: string;\n}\n\nexport const swapExecutionTypes = ['stacks-contract-call', 'sbtc-bridge-transfer'] as const;\nexport type SwapExecutionType = (typeof swapExecutionTypes)[number];\n\nexport interface BaseSwapExecutionData {\n executionType: SwapExecutionType;\n providerId: SwapProviderId;\n quote: SwapQuote;\n}\nexport interface StacksContractCallSwapExecutionData extends BaseSwapExecutionData {\n executionType: 'stacks-contract-call';\n quote: SwapQuote;\n contractAddress: string;\n contractName: string;\n functionName: string;\n functionArgs: unknown[];\n postConditions: unknown[];\n postConditionMode?: unknown;\n}\nexport interface SbtcBridgeTransferSwapExecutionData extends BaseSwapExecutionData {\n executionType: 'sbtc-bridge-transfer';\n}\nexport type SwapExecutionData =\n | StacksContractCallSwapExecutionData\n | SbtcBridgeTransferSwapExecutionData;\n","export const YieldProviderKeys = {\n bitflow: 'bitflow',\n zest: 'zest',\n granite: 'granite',\n stackingDao: 'stackingdao',\n lisa: 'lisa',\n hermetica: 'hermetica',\n fastPool: 'fast-pool',\n xverse: 'xverse',\n velar: 'velar',\n} as const;\nexport type YieldProviderKey = (typeof YieldProviderKeys)[keyof typeof YieldProviderKeys];\n\nexport interface YieldProvider {\n readonly key: YieldProviderKey;\n readonly name: string;\n readonly logo: string;\n readonly url: string;\n}\n","import { YieldProviderKey, YieldProviderKeys } from './yield-provider.model';\n\nexport const YieldProductKeys = {\n bitflowAmmLp: 'bitflow-amm-lp',\n bitflowAmmStaking: 'bitflow-amm-staking',\n zestBorrowMarket: 'zest-borrow-market',\n graniteV1Earn: 'granite-v1-earn',\n graniteV1Borrow: 'granite-v1-borrow',\n stackingDaoStstx: 'stackingdao-ststx',\n stackingDaoStstxbtc: 'stackingdao-ststxbtc',\n stackingDaoPooledStacking: 'stackingdao-pooled-stacking',\n lisaListx: 'lisa-listx',\n lisaLiquidStaking: 'lisa-liquid-staking',\n hermeticaUsdhStaking: 'hermetica-usdh-staking',\n velarAmmLp: 'velar-amm-lp',\n velarPerps: 'velar-perps',\n velarAmmLpFarming: 'velar-amm-lp-farming',\n fastPoolPooledStacking: 'fast-pool-pooled-stacking',\n xversePooledStacking: 'xverse-pooled-stacking',\n} as const;\nexport type YieldProductKey = (typeof YieldProductKeys)[keyof typeof YieldProductKeys];\n\nexport const YieldProductCategories = {\n AMM: 'amm',\n LENDING: 'lending',\n LIQUID_STACKING: 'liquid-stacking',\n POOLED_STACKING: 'pooled-stacking',\n STAKING: 'staking',\n PERPS: 'perps',\n} as const;\nexport type YieldProductCategory =\n (typeof YieldProductCategories)[keyof typeof YieldProductCategories];\n\nexport const YieldProductToProviderMap = {\n [YieldProductKeys.bitflowAmmLp]: YieldProviderKeys.bitflow,\n [YieldProductKeys.bitflowAmmStaking]: YieldProviderKeys.bitflow,\n [YieldProductKeys.zestBorrowMarket]: YieldProviderKeys.zest,\n [YieldProductKeys.graniteV1Earn]: YieldProviderKeys.granite,\n [YieldProductKeys.graniteV1Borrow]: YieldProviderKeys.granite,\n [YieldProductKeys.stackingDaoStstx]: YieldProviderKeys.stackingDao,\n [YieldProductKeys.stackingDaoStstxbtc]: YieldProviderKeys.stackingDao,\n [YieldProductKeys.stackingDaoPooledStacking]: YieldProviderKeys.stackingDao,\n [YieldProductKeys.lisaListx]: YieldProviderKeys.lisa,\n [YieldProductKeys.lisaLiquidStaking]: YieldProviderKeys.lisa,\n [YieldProductKeys.hermeticaUsdhStaking]: YieldProviderKeys.hermetica,\n [YieldProductKeys.velarAmmLp]: YieldProviderKeys.velar,\n [YieldProductKeys.velarPerps]: YieldProviderKeys.velar,\n [YieldProductKeys.velarAmmLpFarming]: YieldProviderKeys.velar,\n [YieldProductKeys.fastPoolPooledStacking]: YieldProviderKeys.fastPool,\n [YieldProductKeys.xversePooledStacking]: YieldProviderKeys.xverse,\n} as const;\n\nexport type YieldProduct = BaseYieldProduct | PooledStackingYieldProduct;\n\nexport interface BaseYieldProduct {\n readonly key: YieldProductKey;\n readonly provider: YieldProviderKey;\n readonly category: YieldProductCategory;\n readonly name: string;\n readonly url: string;\n}\n\n// normalizes pooled stacking product data\nexport interface PooledStackingYieldProduct extends BaseYieldProduct {\n readonly category: 'pooled-stacking';\n readonly stackerCount: number;\n}\n","import type {\n BitflowAmmLpPosition,\n BitflowAmmStakingPosition,\n} from '../providers/bitflow-position.model';\nimport type {\n GraniteV1BorrowPosition,\n GraniteV1EarnPosition,\n} from '../providers/granite-position.model';\nimport type {\n StackingDaoPooledStackingPosition,\n StackingDaoStStxBtcPosition,\n StackingDaoStStxPosition,\n} from '../providers/stacking-dao-position.model';\nimport type { ZestBorrowMarketPosition } from '../providers/zest-position.model';\nimport type { YieldPosition } from '../yield-position.model';\nimport {\n YieldProduct,\n YieldProductCategories,\n YieldProductCategory,\n YieldProductKey,\n YieldProductKeys,\n YieldProductToProviderMap,\n} from '../yield-product.model';\nimport { YieldProvider, YieldProviderKey } from '../yield-provider.model';\n\nexport function isBitflowAmmLpPosition(pos: YieldPosition): pos is BitflowAmmLpPosition {\n return pos.product === YieldProductKeys.bitflowAmmLp;\n}\n\nexport function isBitflowAmmStakingPosition(pos: YieldPosition): pos is BitflowAmmStakingPosition {\n return pos.product === YieldProductKeys.bitflowAmmStaking;\n}\n\nexport function isZestPosition(pos: YieldPosition): pos is ZestBorrowMarketPosition {\n return pos.product === YieldProductKeys.zestBorrowMarket;\n}\n\nexport function isGraniteEarnPosition(pos: YieldPosition): pos is GraniteV1EarnPosition {\n return pos.product === YieldProductKeys.graniteV1Earn;\n}\n\nexport function isGraniteBorrowPosition(pos: YieldPosition): pos is GraniteV1BorrowPosition {\n return pos.product === YieldProductKeys.graniteV1Borrow;\n}\n\nexport function isStackingDaoStStxPosition(pos: YieldPosition): pos is StackingDaoStStxPosition {\n return pos.product === YieldProductKeys.stackingDaoStstx;\n}\n\nexport function isStackingDaoStStxBtcPosition(\n pos: YieldPosition\n): pos is StackingDaoStStxBtcPosition {\n return pos.product === YieldProductKeys.stackingDaoStstxbtc;\n}\n\nexport function isStackingDaoPooledPosition(\n pos: YieldPosition\n): pos is StackingDaoPooledStackingPosition {\n return pos.product === YieldProductKeys.stackingDaoPooledStacking;\n}\n\nexport function filterPositionsByProvider(\n positions: YieldPosition[],\n provider: YieldProviderKey\n): YieldPosition[] {\n return positions.filter(p => p.provider === provider);\n}\n\nexport function filterPositionsByProduct(\n positions: YieldPosition[],\n product: YieldProductKey\n): YieldPosition[] {\n return positions.filter(p => p.product === product);\n}\n\nexport function filterPositionsByCategory(\n positions: YieldPosition[],\n products: YieldProduct[],\n category: YieldProductCategory\n): YieldPosition[] {\n const productMap = new Map(products.map(p => [p.key, p]));\n return positions.filter(pos => productMap.get(pos.product)?.category === category);\n}\n\nexport function sortPositionsByBalance(\n positions: YieldPosition[],\n ascending = false\n): YieldPosition[] {\n return [...positions].sort((a, b) => {\n const diff = a.totalBalance.amount.comparedTo(b.totalBalance.amount);\n return ascending ? diff : -diff;\n });\n}\n\nexport function sortPositionsByApy(positions: YieldPosition[], ascending = false): YieldPosition[] {\n return [...positions].sort((a, b) => {\n const apyA = a.apy;\n const apyB = b.apy;\n return ascending ? apyA - apyB : apyB - apyA;\n });\n}\n\nexport function sortPositionsByUpdateTime(\n positions: YieldPosition[],\n ascending = false\n): YieldPosition[] {\n return [...positions].sort((a, b) => {\n const timeA = 'updatedAt' in a && a.updatedAt instanceof Date ? a.updatedAt.getTime() : 0;\n const timeB = 'updatedAt' in b && b.updatedAt instanceof Date ? b.updatedAt.getTime() : 0;\n return ascending ? timeA - timeB : timeB - timeA;\n });\n}\n\nexport function getProviderForProduct(product: YieldProductKey): YieldProviderKey {\n return YieldProductToProviderMap[product];\n}\n\nexport function getCategoryForProduct(product: YieldProduct): YieldProductCategory {\n return product.category;\n}\n\nexport function isProductInProvider(product: YieldProductKey, provider: YieldProviderKey): boolean {\n return YieldProductToProviderMap[product] === provider;\n}\n\nexport function getProductsForProvider(provider: YieldProviderKey): YieldProductKey[] {\n return Object.entries(YieldProductToProviderMap)\n .filter(([_, p]) => p === provider)\n .map(([product]) => product as YieldProductKey);\n}\n\nexport function getProductsInCategory(\n products: YieldProduct[],\n category: YieldProductCategory\n): YieldProduct[] {\n return products.filter(p => p.category === category);\n}\n\nexport function groupPositionsByProvider(\n positions: YieldPosition[]\n): Record<YieldProviderKey, YieldPosition[]> {\n const grouped: Partial<Record<YieldProviderKey, YieldPosition[]>> = {};\n\n for (const position of positions) {\n const provider = position.provider;\n if (!grouped[provider]) {\n grouped[provider] = [];\n }\n grouped[provider].push(position);\n }\n\n return grouped as Record<YieldProviderKey, YieldPosition[]>;\n}\n\nexport function groupPositionsByCategory(\n positions: YieldPosition[],\n products: YieldProduct[]\n): Record<string, YieldPosition[]> {\n const grouped: Record<string, YieldPosition[]> = {};\n const productMap = new Map(products.map(p => [p.key, p]));\n\n for (const position of positions) {\n const product = productMap.get(position.product);\n if (!product) continue;\n\n const category = product.category;\n if (!grouped[category]) {\n grouped[category] = [];\n }\n grouped[category].push(position);\n }\n\n return grouped;\n}\n\nexport function getPositionsInCategories(\n positions: YieldPosition[],\n products: YieldProduct[],\n categories: YieldProductCategory[]\n): YieldPosition[] {\n const categorySet = new Set(categories);\n const productMap = new Map(products.map(p => [p.key, p]));\n return positions.filter(pos => {\n const product = productMap.get(pos.product);\n return product && categorySet.has(product.category);\n });\n}\n\nexport function hasPositionsInProvider(\n positions: YieldPosition[],\n provider: YieldProviderKey\n): boolean {\n return positions.some(p => p.provider === provider);\n}\n\nexport function hasPositionsInCategory(\n positions: YieldPosition[],\n products: YieldProduct[],\n category: YieldProductCategory\n): boolean {\n const productMap = new Map(products.map(p => [p.key, p]));\n return positions.some(pos => productMap.get(pos.product)?.category === category);\n}\n\nexport function enrichPositionWithProvider<T extends YieldPosition>(\n position: T,\n provider: YieldProvider\n): T & { providerData: YieldProvider } {\n return { ...position, providerData: provider };\n}\n\nexport function enrichPositionWithProduct<T extends YieldPosition>(\n position: T,\n product: YieldProduct\n): T & { productData: YieldProduct } {\n return { ...position, productData: product };\n}\n\nexport function enrichPositionWithMetadata<T extends YieldPosition>(\n position: T,\n provider: YieldProvider,\n product: YieldProduct\n): T & { providerData: YieldProvider; productData: YieldProduct } {\n return { ...position, providerData: provider, productData: product };\n}\n\nexport function getCategoryDisplayName(category: YieldProductCategory): string {\n const displayNames: Record<YieldProductCategory, string> = {\n [YieldProductCategories.AMM]: 'Liquidity Pools',\n [YieldProductCategories.LENDING]: 'Lending & Borrowing',\n [YieldProductCategories.LIQUID_STACKING]: 'Liquid Stacking',\n [YieldProductCategories.POOLED_STACKING]: 'Pooled Stacking',\n [YieldProductCategories.STAKING]: 'Staking',\n [YieldProductCategories.PERPS]: 'Perpetuals',\n };\n return displayNames[category] || category;\n}\n"],"mappings":"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"} | ||
| {"version":3,"file":"index.js","names":["btcTxTimeMap: Record<keyof AverageBitcoinFeeRates, string>","networkMainnet: NetworkConfiguration","networkTestnet: NetworkConfiguration","networkTestnet4: NetworkConfiguration","networkSignet: NetworkConfiguration","networkSbtcTestnet: NetworkConfiguration","networkSbtcDevenv: NetworkConfiguration","networkDevnet: NetworkConfiguration","defaultCurrentNetwork: NetworkConfiguration","defaultNetworksKeyedById: Record<\n WalletDefaultNetworkConfigurationIds,\n NetworkConfiguration\n>","grouped: Partial<Record<YieldProviderKey, YieldPosition[]>>","grouped: Record<string, YieldPosition[]>"],"sources":["../src/account.model.ts","../src/activity/activity-level.model.ts","../src/activity/activity-status.model.ts","../src/activity/activity-type.model.ts","../src/assets/asset-type-guards.ts","../src/assets/asset.model.ts","../src/assets/sip9-asset.model.ts","../src/bitcoin.model.ts","../src/bns.model.ts","../src/fees/bitcoin-fees.model.ts","../src/fees/fees.model.ts","../src/fees/transaction-fees.model.ts","../src/inscription-mime-type.model.ts","../src/market.model.ts","../src/network/network.model.ts","../src/network/network.schema.ts","../src/settings.model.ts","../src/swap/swap.model.ts","../src/yield/yield-provider.model.ts","../src/yield/yield-product.model.ts","../src/yield/helpers/yield.helpers.ts"],"sourcesContent":["import { z } from 'zod';\n\nexport const walletIdSchema = z.object({\n fingerprint: z.string(),\n});\n\nexport const accountIdSchema = walletIdSchema.and(z.object({ accountIndex: z.number() }));\n\nexport const bitcoinAddressInfoSchema = z.object({\n taprootDescriptor: z.string(),\n nativeSegwitDescriptor: z.string(),\n zeroIndexTaprootPayerAddress: z.string().optional(),\n zeroIndexNativeSegwitPayerAddress: z.string().optional(),\n});\n\nexport const stacksAddressInfoSchema = z.object({\n stxAddress: z.string(),\n});\n\nexport const accountAddressesSchema = z.object({\n id: accountIdSchema,\n bitcoin: bitcoinAddressInfoSchema.optional(),\n stacks: stacksAddressInfoSchema.optional(),\n});\n\nexport type WalletId = z.infer<typeof walletIdSchema>;\nexport type AccountId = z.infer<typeof accountIdSchema>;\nexport type BitcoinAddressInfo = z.infer<typeof bitcoinAddressInfoSchema>;\nexport type StacksAddressInfo = z.infer<typeof stacksAddressInfoSchema>;\nexport type AccountAddresses = z.infer<typeof accountAddressesSchema>;\n","export const ActivityLevels = {\n account: 'account',\n app: 'app',\n} as const;\nexport type ActivityLevel = keyof typeof ActivityLevels;\n","export const OnChainActivityStatuses = {\n pending: 'pending',\n success: 'success',\n failed: 'failed',\n} as const;\nexport type OnChainActivityStatus = keyof typeof OnChainActivityStatuses;\n","export const OnChainActivityTypes = {\n deploySmartContract: 'deploySmartContract',\n executeSmartContract: 'executeSmartContract',\n lockAsset: 'lockAsset',\n sendAsset: 'sendAsset',\n receiveAsset: 'receiveAsset',\n swapAssets: 'swapAssets',\n} as const;\nexport type OnChainActivityType = keyof typeof OnChainActivityTypes;\n\nexport const WalletActivityTypes = {\n connectApp: 'connectApp',\n signMessage: 'signMessage',\n} as const;\nexport type WalletActivityType = keyof typeof WalletActivityTypes;\n\nexport const GeneralActivityTypes = {\n walletAdded: 'walletAdded',\n receiveAnnouncement: 'receiveAnnouncement',\n featureWaitlistNotification: 'featureWaitlistNotification',\n} as const;\nexport type GeneralActivityType = keyof typeof GeneralActivityTypes;\n\nexport type ActivityType = OnChainActivityType | WalletActivityType | GeneralActivityType;\n","import {\n Brc20Asset,\n BtcAsset,\n CryptoAsset,\n FungibleCryptoAsset,\n InscriptionAsset,\n NativeCryptoAsset,\n NonFungibleCryptoAsset,\n RuneAsset,\n Sip10Asset,\n Src20Asset,\n StampAsset,\n Stx20Asset,\n StxAsset,\n} from './asset.model';\nimport { Sip9Asset } from './sip9-asset.model';\n\nexport function isFungibleAsset(asset: CryptoAsset): asset is FungibleCryptoAsset {\n return asset.category === 'fungible';\n}\n\nexport function isNonFungibleAsset(asset: CryptoAsset): asset is NonFungibleCryptoAsset {\n return asset.category === 'nft';\n}\n\nexport function isBtcAsset(asset: CryptoAsset): asset is BtcAsset {\n return asset.protocol === 'nativeBtc';\n}\n\nexport function isStxAsset(asset: CryptoAsset): asset is StxAsset {\n return asset.protocol === 'nativeStx';\n}\n\nexport function isNativeAsset(asset: CryptoAsset): asset is NativeCryptoAsset {\n return isBtcAsset(asset) || isStxAsset(asset);\n}\n\nexport function isSip10Asset(asset: CryptoAsset): asset is Sip10Asset {\n return asset.protocol === 'sip10';\n}\n\nexport function isSwappableAsset(asset: CryptoAsset): asset is NativeCryptoAsset | Sip10Asset {\n return isNativeAsset(asset) || isSip10Asset(asset);\n}\n\nexport function isBrc20Asset(asset: CryptoAsset): asset is Brc20Asset {\n return asset.protocol === 'brc20';\n}\n\nexport function isSrc20Asset(asset: CryptoAsset): asset is Src20Asset {\n return asset.protocol === 'src20';\n}\n\nexport function isStx20Asset(asset: CryptoAsset): asset is Stx20Asset {\n return asset.protocol === 'stx20';\n}\n\nexport function isRuneAsset(asset: CryptoAsset): asset is RuneAsset {\n return asset.protocol === 'rune';\n}\n\nexport function isInscriptionAsset(asset: CryptoAsset): asset is InscriptionAsset {\n return asset.protocol === 'inscription';\n}\n\nexport function isStampAsset(asset: CryptoAsset): asset is StampAsset {\n return asset.protocol === 'stamp';\n}\n\nexport function isSip9Asset(asset: CryptoAsset): asset is Sip9Asset {\n return asset.protocol === 'sip9';\n}\n","import { InscriptionMimeType } from '../inscription-mime-type.model';\nimport { Sip9Asset } from './sip9-asset.model';\n\nexport const CryptoAssetChains = {\n bitcoin: 'bitcoin',\n stacks: 'stacks',\n} as const;\nexport const CryptoAssetCategories = {\n fungible: 'fungible',\n nft: 'nft',\n} as const;\nexport const FungibleCryptoAssetProtocols = {\n nativeBtc: 'nativeBtc',\n nativeStx: 'nativeStx',\n sip10: 'sip10',\n brc20: 'brc20',\n src20: 'src20',\n stx20: 'stx20',\n rune: 'rune',\n} as const;\nexport const NonFungibleCryptoAssetProtocols = {\n stamp: 'stamp',\n sip9: 'sip9',\n inscription: 'inscription',\n} as const;\nexport const CryptoAssetProtocols = {\n ...FungibleCryptoAssetProtocols,\n ...NonFungibleCryptoAssetProtocols,\n} as const;\n\nexport type CryptoAssetChain = keyof typeof CryptoAssetChains;\nexport type CryptoAssetCategory = keyof typeof CryptoAssetCategories;\nexport type FungibleCryptoAssetProtocol = keyof typeof FungibleCryptoAssetProtocols;\nexport type NonFungibleCryptoAssetProtocol = keyof typeof NonFungibleCryptoAssetProtocols;\nexport type CryptoAssetProtocol = FungibleCryptoAssetProtocol | NonFungibleCryptoAssetProtocol;\n\nexport interface BaseCryptoAsset {\n readonly chain: CryptoAssetChain;\n readonly category: CryptoAssetCategory;\n readonly protocol: CryptoAssetProtocol;\n}\n\n// Fungible asset types\ninterface BaseFungibleCryptoAsset extends BaseCryptoAsset {\n readonly category: 'fungible';\n readonly protocol: FungibleCryptoAssetProtocol;\n readonly symbol: string;\n readonly decimals: number;\n readonly hasMemo: boolean;\n}\nexport interface BtcAsset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'nativeBtc';\n readonly name: 'Bitcoin';\n readonly symbol: 'BTC';\n}\nexport interface StxAsset extends BaseFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'nativeStx';\n readonly name: 'Stacks';\n readonly symbol: 'STX';\n}\nexport interface Brc20Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'brc20';\n readonly symbol: string;\n}\nexport interface Src20Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'src20';\n readonly id: string;\n readonly symbol: string;\n readonly deploy_tx: string;\n readonly deploy_img: string;\n}\nexport interface RuneAsset extends BaseFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'rune';\n readonly spacedRuneName: string;\n readonly runeName: string;\n readonly symbol: string;\n}\nexport interface Sip10Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'sip10';\n readonly name: string;\n readonly canTransfer: boolean;\n readonly assetId: string;\n readonly contractId: string;\n readonly imageCanonicalUri: string;\n readonly symbol: string;\n}\nexport interface Stx20Asset extends BaseFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'stx20';\n readonly symbol: string;\n}\nexport type NativeCryptoAsset = BtcAsset | StxAsset;\nexport type FungibleCryptoAsset =\n | NativeCryptoAsset\n | Sip10Asset\n | Brc20Asset\n | Src20Asset\n | Stx20Asset\n | RuneAsset;\n\n// NFT asset types\nexport interface BaseNonFungibleCryptoAsset extends BaseCryptoAsset {\n readonly category: 'nft';\n readonly protocol: NonFungibleCryptoAssetProtocol;\n}\nexport interface InscriptionAsset extends BaseNonFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'inscription';\n readonly id: string;\n readonly mimeType: InscriptionMimeType;\n readonly number: number;\n readonly address: string;\n readonly title: string;\n readonly txid: string;\n readonly output: string;\n readonly offset: string;\n readonly preview: string;\n readonly src: string;\n readonly thumbnailSrc?: string;\n readonly value: string;\n readonly genesisBlockHash: string;\n readonly genesisTimestamp: number;\n readonly genesisBlockHeight: number;\n}\nexport interface StampAsset extends BaseNonFungibleCryptoAsset {\n readonly chain: 'bitcoin';\n readonly protocol: 'stamp';\n readonly stamp: number;\n readonly stampUrl: string;\n readonly stampExplorerUrl: string;\n readonly blockHeight: number;\n}\n\nexport type NonFungibleCryptoAsset = InscriptionAsset | StampAsset | Sip9Asset;\n\nexport type CryptoAsset = FungibleCryptoAsset | NonFungibleCryptoAsset;\n\nexport interface FungibleAssetId {\n protocol: FungibleCryptoAssetProtocol;\n id: string;\n}\n","import { Money } from '../money.model';\nimport { BaseNonFungibleCryptoAsset } from './asset.model';\n\nexport const sip9ContentTypes = [\n 'image/jpeg',\n 'image/jpg',\n 'image/png',\n 'image/gif',\n 'image/webp',\n 'image/svg+xml',\n 'image/bmp',\n 'image/tiff',\n 'image/avif',\n 'video/mp4',\n 'video/webm',\n 'video/mov',\n 'video/quicktime',\n 'video/avi',\n 'video/x-msvideo',\n 'video/ogg',\n 'audio/mpeg',\n 'audio/mp3',\n 'audio/wav',\n 'audio/x-wav',\n 'audio/ogg',\n 'audio/aac',\n 'audio/flac',\n 'audio/webm',\n 'model/gltf+json',\n 'model/gltf-binary',\n 'application/octet-stream',\n 'text/plain',\n 'text/html',\n 'text/markdown',\n 'application/pdf',\n 'application/json',\n 'text/javascript',\n 'application/javascript',\n 'application/zip',\n 'unknown',\n '',\n] as const;\n\nexport type Sip9ContentType = (typeof sip9ContentTypes)[number];\n\nexport interface Sip9Collection {\n name: string;\n collectionExplorerUrl: string;\n totalItems?: number;\n floorPrice?: Money;\n latestSale?: Money;\n}\n\nexport interface Sip9AssetContent {\n contentUrl: string;\n contentType: Sip9ContentType;\n}\n\nexport interface Sip9Attribute {\n traitType: string;\n value: any;\n rarityPercent?: number;\n}\n\nexport interface Sip9Asset extends BaseNonFungibleCryptoAsset {\n readonly chain: 'stacks';\n readonly protocol: 'sip9';\n readonly assetId: string;\n readonly contractId: string;\n readonly tokenId: number;\n readonly name: string;\n readonly description: string;\n readonly content: Sip9AssetContent;\n readonly attributes?: Sip9Attribute[];\n readonly collection?: Sip9Collection;\n readonly creator?: string;\n readonly rarityRank?: number;\n}\n","import { z } from 'zod';\n\n// Branded type for Bitcoin addresses\nexport type BitcoinAddress = string & { readonly __brand: unique symbol };\n\nexport const bitcoinUnitSchema = z.enum(['bitcoin', 'satoshi']);\nexport type BitcoinUnit = z.infer<typeof bitcoinUnitSchema>;\n\nexport type BitcoinUnitSymbol = 'BTC' | 'sat';\n\nexport interface BitcoinUnitInfo {\n name: BitcoinUnit;\n symbol: BitcoinUnitSymbol;\n decimal: string;\n}\n","export const bnsContractAddress = {\n mainnet: 'SP2QEZ06AGJ3RKJPBV14SY1V5BBFNAW33D96YPGZF',\n testnet: 'ST2QEZ06AGJ3RKJPBV14SY1V5BBFNAW33D9SZJQ0M',\n};\n\nexport const bnsContractName = 'BNS-V2';\n\nexport interface BnsName {\n owner: string;\n name: string;\n namespace: string;\n fullName: string;\n renewalHeight: number;\n registeredAtBlockNumber: number;\n}\n\nexport interface BnsProfile {\n bnsName: BnsName;\n profileData: BnsProfileData;\n}\n\nexport interface BnsProfileData {\n name?: string;\n bio?: string;\n website?: string;\n pfpUrl?: string;\n location?: string;\n addresses?: BnsProfileDataAddresses;\n}\n\nexport interface BnsProfileDataAddresses {\n bitcoinPayment?: string;\n bitcoinOrdinal?: string;\n solana?: string;\n ethereum?: string;\n}\n","import type BigNumber from 'bignumber.js';\n\nexport interface AverageBitcoinFeeRates {\n fastestFee: BigNumber;\n halfHourFee: BigNumber;\n hourFee: BigNumber;\n}\n\nexport const btcTxTimeMap: Record<keyof AverageBitcoinFeeRates, string> = {\n fastestFee: '~10 – 20min',\n halfHourFee: '~30 min',\n hourFee: '~1 hour+',\n};\n\nexport enum BtcFeeType {\n High = 'High',\n Standard = 'Standard',\n Low = 'Low',\n}\n","import { Blockchain } from '../types';\nimport { StacksFeeEstimate } from './stacks-fees.model';\n\nexport enum FeeTypes {\n Low,\n Middle,\n High,\n Custom,\n Unknown,\n}\n\nexport enum FeeCalculationTypes {\n Api = 'api',\n Default = 'default',\n DefaultSimulated = 'default-simulated',\n FeesCapped = 'fees-capped',\n TokenTransferSpecific = 'token-transfer-specific',\n}\n\nexport interface Fees {\n blockchain: Blockchain;\n estimates: StacksFeeEstimate[];\n calculation: FeeCalculationTypes;\n}\n","import { Money } from '../money.model';\nimport { Blockchain } from '../types';\n\nexport const transactionFeeTiers = ['low', 'standard', 'high'] as const;\nexport type TransactionFeeTier = (typeof transactionFeeTiers)[number];\n\nexport interface TransactionFees {\n readonly chain: Blockchain;\n readonly options: Record<TransactionFeeTier, TransactionFeeQuote>;\n}\n\nexport const transactionFeeQuoteType = [\n 'flat',\n 'bitcoinFeeRate',\n 'stacksFeeRate',\n 'evm1559',\n] as const;\nexport type TransactionFeeQuoteType = (typeof transactionFeeQuoteType)[number];\n\nexport interface BaseTransactionFeeQuote {\n readonly type: TransactionFeeQuoteType;\n readonly value: Money;\n}\n\nexport interface FlatTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'flat';\n}\n\nexport interface BitcoinTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'bitcoinFeeRate';\n readonly rate: number;\n readonly rateUnit: 'sats/vB';\n readonly estimatedTxSize: number;\n readonly sizeUnit: 'vB';\n}\n\nexport interface StacksTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'stacksFeeRate';\n readonly rate: number;\n readonly rateUnit: 'µSTX/byte';\n readonly estimatedTxSize: number;\n readonly sizeUnit: 'byte';\n}\n\nexport interface EvmTransactionFeeQuote extends BaseTransactionFeeQuote {\n readonly type: 'evm1559';\n readonly baseFeePerGas: Money;\n readonly priorityFeePerGas: Money;\n readonly gasLimit: number;\n}\n\nexport type TransactionFeeQuote =\n | FlatTransactionFeeQuote\n | BitcoinTransactionFeeQuote\n | StacksTransactionFeeQuote\n | EvmTransactionFeeQuote;\n","/**\n * Inscriptions contain arbitrary data. When retrieving an inscription, it should be\n * classified into one of the types below, indicating that the app can handle it\n * appropriately and securely. Inscriptions of types not ready to be handled by the\n * app should be classified as \"other\".\n */\nexport const inscriptionMimeTypes = [\n 'audio',\n 'gltf',\n 'html',\n 'image',\n 'svg',\n 'text',\n 'video',\n 'other',\n] as const;\n\nexport type InscriptionMimeType = (typeof inscriptionMimeTypes)[number];\n","import type { Currency, QuoteCurrency } from './currencies.model';\nimport type { Money } from './money.model';\n\ninterface MarketPair {\n readonly base: Currency;\n readonly quote: QuoteCurrency;\n}\n\nexport function createMarketPair(base: Currency, quote: QuoteCurrency): MarketPair {\n return Object.freeze({ base, quote });\n}\n\nexport function formatMarketPair({ base, quote }: MarketPair) {\n return `${base}/${quote}`;\n}\n\nexport interface MarketData {\n readonly pair: MarketPair;\n readonly price: Money;\n}\n\nexport function createMarketData(pair: MarketPair, price: Money): MarketData {\n if (pair.quote !== price.symbol)\n throw new Error('Cannot create market data when price does not match quote');\n return Object.freeze({ pair, price });\n}\n\nexport const historicalPeriods = ['1d', '1w', '1m', '3m', '6m', '1y'] as const;\nexport type HistoricalPeriod = (typeof historicalPeriods)[number];\n\nexport interface MarketPriceSnapshot {\n price: Money;\n timestamp: number;\n}\n\nexport interface MarketPriceHistory {\n period: HistoricalPeriod;\n changePercentage: number;\n prices: MarketPriceSnapshot[];\n}\n","import { z } from 'zod';\n\nimport { Blockchain } from '../types';\nimport { networkConfigurationSchema } from './network.schema';\n\nexport const HIRO_API_BASE_URL_MAINNET = 'https://api.hiro.so';\nexport const HIRO_API_BASE_URL_TESTNET = 'https://api.testnet.hiro.so';\nexport const HIRO_API_BASE_URL_NAKAMOTO_TESTNET = 'https://api.nakamoto.testnet.hiro.so';\n\nexport const HIRO_API_BASE_URL_MAINNET_EXTENDED = 'https://api.hiro.so/extended/v1';\nexport const HIRO_API_BASE_URL_TESTNET_EXTENDED = 'https://api.testnet.hiro.so/extended';\n\nexport const BITCOIN_API_BASE_URL_MAINNET = 'https://leather.mempool.space/api';\nexport const BITCOIN_API_BASE_URL_TESTNET3 = 'https://leather.mempool.space/testnet/api';\nexport const BITCOIN_API_BASE_URL_TESTNET4 = 'https://leather.mempool.space/testnet4/api';\nexport const BITCOIN_API_BASE_URL_SIGNET = 'https://mempool.space/signet/api';\n\nexport const BESTINSLOT_API_BASE_URL_MAINNET = 'https://leatherapi.bestinslot.xyz/v3';\nexport const BESTINSLOT_API_BASE_URL_TESTNET = 'https://leatherapi_testnet.bestinslot.xyz/v3';\n\nexport const STX20_API_BASE_URL_MAINNET = 'https://api.stx20.com/api/v1';\n\nexport const BNS_V2_API_BASE_URL = 'https://api.bnsv2.com';\n\nexport const EMILY_API_BASE_URL_MAINNET = 'https://sbtc-emily.com';\nexport const EMILY_API_BASE_URL_TESTNET = 'https://beta.sbtc-emily.com';\nexport const EMILY_API_BASE_URL_DEVENV = 'http://localhost:3031';\n\n// Copied from @stacks/transactions to avoid dependencies\nexport enum ChainId {\n Testnet = 2147483648,\n Mainnet = 1,\n}\n\nexport enum WalletDefaultNetworkConfigurationIds {\n mainnet = 'mainnet',\n testnet = 'testnet',\n testnet4 = 'testnet4',\n signet = 'signet',\n sbtcTestnet = 'sbtcTestnet',\n sbtcDevenv = 'sbtcDevenv',\n devnet = 'devnet',\n}\n\nexport const defaultNetworkConfigurationsSchema = z.enum([\n 'mainnet',\n 'testnet',\n 'testnet4',\n 'signet',\n 'sbtcTestnet',\n 'sbtcDevenv',\n 'devnet',\n]);\nexport type DefaultNetworkConfigurations = z.infer<typeof defaultNetworkConfigurationsSchema>;\n\nexport const supportedBlockchains = ['stacks', 'bitcoin'] as const;\n\nexport type SupportedBlockchains = (typeof supportedBlockchains)[number];\n\nexport const networkModes = ['mainnet', 'testnet'] as const;\nexport const testnetModes = ['testnet', 'regtest', 'signet'] as const;\n\nexport const bitcoinNetworks = ['mainnet', 'testnet3', 'testnet4', 'regtest', 'signet'] as const;\nexport type BitcoinNetwork = (typeof bitcoinNetworks)[number];\n\nexport type NetworkModes = (typeof networkModes)[number];\ntype BitcoinTestnetModes = (typeof testnetModes)[number];\n\nexport function bitcoinNetworkToNetworkMode(network: BitcoinNetwork): BitcoinNetworkModes {\n switch (network) {\n case 'mainnet':\n return 'mainnet';\n case 'testnet3':\n return 'testnet';\n case 'testnet4':\n return 'testnet';\n case 'regtest':\n return 'regtest';\n case 'signet':\n return 'signet';\n default:\n // TODO: Needs exhaustive check. Cannot import 'assertUnreachable' since 'utils' package depends on 'models'.\n // Ideally this function should live in utils, but it's currently widely used in the extension.\n throw new Error(`Unhandled case: ${network}`);\n }\n}\n\nexport type BitcoinNetworkModes = NetworkModes | BitcoinTestnetModes;\n\ninterface BaseChainConfig {\n blockchain: Blockchain;\n}\n\nexport interface BitcoinChainConfig extends BaseChainConfig {\n blockchain: 'bitcoin';\n bitcoinUrl: string;\n bitcoinNetwork: BitcoinNetwork;\n mode: BitcoinNetworkModes;\n}\n\nexport interface StacksChainConfig extends BaseChainConfig {\n blockchain: 'stacks';\n url: string;\n /** The chainId of the network (or parent network if this is a subnet) */\n chainId: ChainId;\n /** An additional chainId for subnets. Indicated a subnet if defined and is mainly used for signing. */\n subnetChainId?: ChainId;\n}\n\nexport type NetworkConfiguration = z.infer<typeof networkConfigurationSchema>;\n\nconst networkMainnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.mainnet,\n name: 'Mainnet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Mainnet,\n url: HIRO_API_BASE_URL_MAINNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'mainnet',\n mode: 'mainnet',\n bitcoinUrl: BITCOIN_API_BASE_URL_MAINNET,\n },\n },\n};\n\nconst networkTestnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.testnet,\n name: 'Testnet3',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'testnet3',\n mode: 'testnet',\n bitcoinUrl: BITCOIN_API_BASE_URL_TESTNET3,\n },\n },\n};\n\nconst networkTestnet4: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.testnet4,\n name: 'Testnet4',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'testnet4',\n mode: 'testnet',\n bitcoinUrl: BITCOIN_API_BASE_URL_TESTNET4,\n },\n },\n};\n\nconst networkSignet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.signet,\n name: 'Signet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'signet',\n mode: 'signet',\n bitcoinUrl: BITCOIN_API_BASE_URL_SIGNET,\n },\n },\n};\n\nconst networkSbtcTestnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.sbtcTestnet,\n name: 'sBTC Testnet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: HIRO_API_BASE_URL_TESTNET,\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'regtest',\n mode: 'regtest',\n bitcoinUrl: 'https://beta.sbtc-mempool.tech/api/proxy',\n },\n },\n};\n\nconst networkSbtcDevenv: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.sbtcDevenv,\n name: 'sBTC Devenv',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: 'http://localhost:3999',\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'regtest',\n mode: 'regtest',\n bitcoinUrl: 'http://localhost:3000/api/proxy',\n },\n },\n};\n\nconst networkDevnet: NetworkConfiguration = {\n id: WalletDefaultNetworkConfigurationIds.devnet,\n name: 'Devnet',\n chain: {\n stacks: {\n blockchain: 'stacks',\n chainId: ChainId.Testnet,\n url: 'http://localhost:3999',\n },\n bitcoin: {\n blockchain: 'bitcoin',\n bitcoinNetwork: 'regtest',\n mode: 'regtest',\n bitcoinUrl: 'http://localhost:18443',\n },\n },\n};\n\nexport const defaultCurrentNetwork: NetworkConfiguration = networkMainnet;\n\nexport const defaultNetworksKeyedById: Record<\n WalletDefaultNetworkConfigurationIds,\n NetworkConfiguration\n> = {\n [WalletDefaultNetworkConfigurationIds.mainnet]: networkMainnet,\n [WalletDefaultNetworkConfigurationIds.testnet4]: networkTestnet4,\n [WalletDefaultNetworkConfigurationIds.testnet]: networkTestnet,\n [WalletDefaultNetworkConfigurationIds.signet]: networkSignet,\n [WalletDefaultNetworkConfigurationIds.sbtcTestnet]: networkSbtcTestnet,\n [WalletDefaultNetworkConfigurationIds.sbtcDevenv]: networkSbtcDevenv,\n [WalletDefaultNetworkConfigurationIds.devnet]: networkDevnet,\n};\n","import { z } from 'zod';\n\nimport { bitcoinNetworks, networkModes, testnetModes } from './network.model';\n\nexport const bitcoinNetworkModesSchema = z.enum([...networkModes, ...testnetModes]);\n\nexport const bitcoinNetworkSchema = z.enum([...bitcoinNetworks]);\n\nexport const networkConfigurationSchema = z.object({\n name: z.string(),\n id: z.string(),\n chain: z.object({\n bitcoin: z.object({\n blockchain: z.literal('bitcoin'),\n bitcoinUrl: z.string(),\n bitcoinNetwork: bitcoinNetworkSchema,\n mode: bitcoinNetworkModesSchema,\n }),\n stacks: z.object({\n blockchain: z.literal('stacks'),\n url: z.string(),\n chainId: z.number(),\n subnetChainId: z.number().optional(),\n }),\n }),\n});\n","import { z } from 'zod';\n\nimport { Blockchain } from './types';\n\nexport const accountDisplayPreferenceSchema = z.enum(['native-segwit', 'taproot', 'bns', 'stacks']);\nexport type AccountDisplayPreference = z.infer<typeof accountDisplayPreferenceSchema>;\n\nexport interface AccountDisplayPreferenceInfo {\n type: AccountDisplayPreference;\n blockchain: Blockchain;\n name: string;\n}\n\nexport const analyticsPreferenceSchema = z.enum(['consent-given', 'rejects-tracking']);\nexport type AnalyticsPreference = z.infer<typeof analyticsPreferenceSchema>;\n\nexport const emailAddressSchema = z.email({ error: 'Invalid email address' });\nexport type EmailAddress = z.infer<typeof emailAddressSchema>;\n","import { CryptoAssetId } from '../assets/asset-id.model';\nimport { NativeCryptoAsset, Sip10Asset } from '../assets/asset.model';\nimport { Money } from '../money.model';\n\nexport type SwappableFungibleCryptoAsset = NativeCryptoAsset | Sip10Asset;\n\nexport interface SwapAsset {\n readonly asset: SwappableFungibleCryptoAsset;\n readonly providerAssets: SwapProviderAsset[];\n}\n\nexport const swapProviderIds = ['bitflow-sdk', 'sbtc-bridge', 'alex-sdk', 'velar-sdk'] as const;\nexport type SwapProviderId = (typeof swapProviderIds)[number];\n\nexport interface SwapProvider {\n readonly id: SwapProviderId;\n readonly isAggregator: boolean;\n}\n\nexport interface SwapProviderAsset {\n readonly providerId: SwapProviderId;\n readonly providerAssetId: string;\n readonly assetId: CryptoAssetId;\n}\n\nexport type SwapQuote =\n | AlexSdkSwapQuote\n | VelarSdkSwapQuote\n | BitflowSdkSwapQuote\n | SbtcBridgeSwapQuote;\n\nexport interface BaseSwapQuote {\n readonly executionType: SwapExecutionType;\n readonly providerId: SwapProviderId;\n readonly baseAsset: SwappableFungibleCryptoAsset;\n readonly targetAsset: SwappableFungibleCryptoAsset;\n readonly baseAmount: Money;\n readonly targetAmount: Money;\n readonly dexPath: SwapDex[];\n readonly assetPath: (NativeCryptoAsset | Sip10Asset)[];\n readonly isExecutable: boolean;\n readonly executionConstraints: ExecutionConstraint[];\n readonly createdAt: Date;\n}\n\nexport interface ExecutionConstraint {\n readonly reason: 'minimum-threshold-not-met' | 'maximum-threshold-exceeded';\n readonly threshold: Money;\n}\n\nexport interface AlexSdkSwapQuote extends BaseSwapQuote {\n readonly providerId: 'alex-sdk';\n readonly providerQuoteData: {\n baseProviderAssetId: string;\n targetProviderAssetId: string;\n alexSdkAmmRoute: unknown;\n };\n}\n\nexport interface VelarSdkSwapQuote extends BaseSwapQuote {\n readonly providerId: 'velar-sdk';\n providerQuoteData: {\n readonly baseProviderAssetId: string;\n readonly targetProviderAssetId: string;\n };\n}\n\nexport interface BitflowSdkSwapQuote extends BaseSwapQuote {\n readonly providerId: 'bitflow-sdk';\n readonly providerQuoteData: {\n bitflowSdkSelectedSwapRoute: unknown;\n };\n}\n\nexport interface SbtcBridgeSwapQuote extends BaseSwapQuote {\n readonly providerId: 'sbtc-bridge';\n}\n\nexport interface SwapDex {\n readonly name: string;\n readonly url: string;\n readonly logo: string;\n readonly description: string;\n}\n\nexport const swapExecutionTypes = ['stacks-contract-call', 'sbtc-bridge-transfer'] as const;\nexport type SwapExecutionType = (typeof swapExecutionTypes)[number];\n\nexport interface BaseSwapExecutionData {\n readonly executionType: SwapExecutionType;\n readonly providerId: SwapProviderId;\n readonly quote: SwapQuote;\n}\nexport interface StacksContractCallSwapExecutionData extends BaseSwapExecutionData {\n readonly executionType: 'stacks-contract-call';\n readonly quote: SwapQuote;\n readonly contractAddress: string;\n readonly contractName: string;\n readonly functionName: string;\n readonly functionArgs: unknown[];\n readonly postConditions: unknown[];\n readonly postConditionMode?: unknown;\n}\nexport interface SbtcBridgeTransferSwapExecutionData extends BaseSwapExecutionData {\n readonly executionType: 'sbtc-bridge-transfer';\n}\nexport type SwapExecutionData =\n | StacksContractCallSwapExecutionData\n | SbtcBridgeTransferSwapExecutionData;\n","export const YieldProviderKeys = {\n bitflow: 'bitflow',\n zest: 'zest',\n granite: 'granite',\n stackingDao: 'stackingdao',\n lisa: 'lisa',\n hermetica: 'hermetica',\n fastPool: 'fast-pool',\n xverse: 'xverse',\n velar: 'velar',\n} as const;\nexport type YieldProviderKey = (typeof YieldProviderKeys)[keyof typeof YieldProviderKeys];\n\nexport interface YieldProvider {\n readonly key: YieldProviderKey;\n readonly name: string;\n readonly logo: string;\n readonly url: string;\n}\n","import { YieldProviderKey, YieldProviderKeys } from './yield-provider.model';\n\nexport const YieldProductKeys = {\n bitflowAmmLp: 'bitflow-amm-lp',\n bitflowAmmStaking: 'bitflow-amm-staking',\n zestBorrowMarket: 'zest-borrow-market',\n graniteV1Earn: 'granite-v1-earn',\n graniteV1Borrow: 'granite-v1-borrow',\n stackingDaoStstx: 'stackingdao-ststx',\n stackingDaoStstxbtc: 'stackingdao-ststxbtc',\n stackingDaoPooledStacking: 'stackingdao-pooled-stacking',\n lisaListx: 'lisa-listx',\n lisaLiquidStaking: 'lisa-liquid-staking',\n hermeticaUsdhStaking: 'hermetica-usdh-staking',\n velarAmmLp: 'velar-amm-lp',\n velarPerps: 'velar-perps',\n velarAmmLpFarming: 'velar-amm-lp-farming',\n fastPoolPooledStacking: 'fast-pool-pooled-stacking',\n xversePooledStacking: 'xverse-pooled-stacking',\n} as const;\nexport type YieldProductKey = (typeof YieldProductKeys)[keyof typeof YieldProductKeys];\n\nexport const YieldProductCategories = {\n AMM: 'amm',\n LENDING: 'lending',\n LIQUID_STACKING: 'liquid-stacking',\n POOLED_STACKING: 'pooled-stacking',\n STAKING: 'staking',\n PERPS: 'perps',\n} as const;\nexport type YieldProductCategory =\n (typeof YieldProductCategories)[keyof typeof YieldProductCategories];\n\nexport const YieldProductToProviderMap = {\n [YieldProductKeys.bitflowAmmLp]: YieldProviderKeys.bitflow,\n [YieldProductKeys.bitflowAmmStaking]: YieldProviderKeys.bitflow,\n [YieldProductKeys.zestBorrowMarket]: YieldProviderKeys.zest,\n [YieldProductKeys.graniteV1Earn]: YieldProviderKeys.granite,\n [YieldProductKeys.graniteV1Borrow]: YieldProviderKeys.granite,\n [YieldProductKeys.stackingDaoStstx]: YieldProviderKeys.stackingDao,\n [YieldProductKeys.stackingDaoStstxbtc]: YieldProviderKeys.stackingDao,\n [YieldProductKeys.stackingDaoPooledStacking]: YieldProviderKeys.stackingDao,\n [YieldProductKeys.lisaListx]: YieldProviderKeys.lisa,\n [YieldProductKeys.lisaLiquidStaking]: YieldProviderKeys.lisa,\n [YieldProductKeys.hermeticaUsdhStaking]: YieldProviderKeys.hermetica,\n [YieldProductKeys.velarAmmLp]: YieldProviderKeys.velar,\n [YieldProductKeys.velarPerps]: YieldProviderKeys.velar,\n [YieldProductKeys.velarAmmLpFarming]: YieldProviderKeys.velar,\n [YieldProductKeys.fastPoolPooledStacking]: YieldProviderKeys.fastPool,\n [YieldProductKeys.xversePooledStacking]: YieldProviderKeys.xverse,\n} as const;\n\nexport type YieldProduct = BaseYieldProduct | PooledStackingYieldProduct;\n\nexport interface BaseYieldProduct {\n readonly key: YieldProductKey;\n readonly provider: YieldProviderKey;\n readonly category: YieldProductCategory;\n readonly name: string;\n readonly url: string;\n}\n\n// normalizes pooled stacking product data\nexport interface PooledStackingYieldProduct extends BaseYieldProduct {\n readonly category: 'pooled-stacking';\n readonly stackerCount: number;\n}\n","import type {\n BitflowAmmLpPosition,\n BitflowAmmStakingPosition,\n} from '../providers/bitflow-position.model';\nimport type {\n GraniteV1BorrowPosition,\n GraniteV1EarnPosition,\n} from '../providers/granite-position.model';\nimport type {\n StackingDaoPooledStackingPosition,\n StackingDaoStStxBtcPosition,\n StackingDaoStStxPosition,\n} from '../providers/stacking-dao-position.model';\nimport type { ZestBorrowMarketPosition } from '../providers/zest-position.model';\nimport type { YieldPosition } from '../yield-position.model';\nimport {\n YieldProduct,\n YieldProductCategories,\n YieldProductCategory,\n YieldProductKey,\n YieldProductKeys,\n YieldProductToProviderMap,\n} from '../yield-product.model';\nimport { YieldProvider, YieldProviderKey } from '../yield-provider.model';\n\nexport function isBitflowAmmLpPosition(pos: YieldPosition): pos is BitflowAmmLpPosition {\n return pos.product === YieldProductKeys.bitflowAmmLp;\n}\n\nexport function isBitflowAmmStakingPosition(pos: YieldPosition): pos is BitflowAmmStakingPosition {\n return pos.product === YieldProductKeys.bitflowAmmStaking;\n}\n\nexport function isZestPosition(pos: YieldPosition): pos is ZestBorrowMarketPosition {\n return pos.product === YieldProductKeys.zestBorrowMarket;\n}\n\nexport function isGraniteEarnPosition(pos: YieldPosition): pos is GraniteV1EarnPosition {\n return pos.product === YieldProductKeys.graniteV1Earn;\n}\n\nexport function isGraniteBorrowPosition(pos: YieldPosition): pos is GraniteV1BorrowPosition {\n return pos.product === YieldProductKeys.graniteV1Borrow;\n}\n\nexport function isStackingDaoStStxPosition(pos: YieldPosition): pos is StackingDaoStStxPosition {\n return pos.product === YieldProductKeys.stackingDaoStstx;\n}\n\nexport function isStackingDaoStStxBtcPosition(\n pos: YieldPosition\n): pos is StackingDaoStStxBtcPosition {\n return pos.product === YieldProductKeys.stackingDaoStstxbtc;\n}\n\nexport function isStackingDaoPooledPosition(\n pos: YieldPosition\n): pos is StackingDaoPooledStackingPosition {\n return pos.product === YieldProductKeys.stackingDaoPooledStacking;\n}\n\nexport function filterPositionsByProvider(\n positions: YieldPosition[],\n provider: YieldProviderKey\n): YieldPosition[] {\n return positions.filter(p => p.provider === provider);\n}\n\nexport function filterPositionsByProduct(\n positions: YieldPosition[],\n product: YieldProductKey\n): YieldPosition[] {\n return positions.filter(p => p.product === product);\n}\n\nexport function filterPositionsByCategory(\n positions: YieldPosition[],\n products: YieldProduct[],\n category: YieldProductCategory\n): YieldPosition[] {\n const productMap = new Map(products.map(p => [p.key, p]));\n return positions.filter(pos => productMap.get(pos.product)?.category === category);\n}\n\nexport function sortPositionsByBalance(\n positions: YieldPosition[],\n ascending = false\n): YieldPosition[] {\n return [...positions].sort((a, b) => {\n const diff = a.totalBalance.amount.comparedTo(b.totalBalance.amount);\n return ascending ? diff : -diff;\n });\n}\n\nexport function sortPositionsByApy(positions: YieldPosition[], ascending = false): YieldPosition[] {\n return [...positions].sort((a, b) => {\n const apyA = a.apy;\n const apyB = b.apy;\n return ascending ? apyA - apyB : apyB - apyA;\n });\n}\n\nexport function sortPositionsByUpdateTime(\n positions: YieldPosition[],\n ascending = false\n): YieldPosition[] {\n return [...positions].sort((a, b) => {\n const timeA = 'updatedAt' in a && a.updatedAt instanceof Date ? a.updatedAt.getTime() : 0;\n const timeB = 'updatedAt' in b && b.updatedAt instanceof Date ? b.updatedAt.getTime() : 0;\n return ascending ? timeA - timeB : timeB - timeA;\n });\n}\n\nexport function getProviderForProduct(product: YieldProductKey): YieldProviderKey {\n return YieldProductToProviderMap[product];\n}\n\nexport function getCategoryForProduct(product: YieldProduct): YieldProductCategory {\n return product.category;\n}\n\nexport function isProductInProvider(product: YieldProductKey, provider: YieldProviderKey): boolean {\n return YieldProductToProviderMap[product] === provider;\n}\n\nexport function getProductsForProvider(provider: YieldProviderKey): YieldProductKey[] {\n return Object.entries(YieldProductToProviderMap)\n .filter(([_, p]) => p === provider)\n .map(([product]) => product as YieldProductKey);\n}\n\nexport function getProductsInCategory(\n products: YieldProduct[],\n category: YieldProductCategory\n): YieldProduct[] {\n return products.filter(p => p.category === category);\n}\n\nexport function groupPositionsByProvider(\n positions: YieldPosition[]\n): Record<YieldProviderKey, YieldPosition[]> {\n const grouped: Partial<Record<YieldProviderKey, YieldPosition[]>> = {};\n\n for (const position of positions) {\n const provider = position.provider;\n if (!grouped[provider]) {\n grouped[provider] = [];\n }\n grouped[provider].push(position);\n }\n\n return grouped as Record<YieldProviderKey, YieldPosition[]>;\n}\n\nexport function groupPositionsByCategory(\n positions: YieldPosition[],\n products: YieldProduct[]\n): Record<string, YieldPosition[]> {\n const grouped: Record<string, YieldPosition[]> = {};\n const productMap = new Map(products.map(p => [p.key, p]));\n\n for (const position of positions) {\n const product = productMap.get(position.product);\n if (!product) continue;\n\n const category = product.category;\n if (!grouped[category]) {\n grouped[category] = [];\n }\n grouped[category].push(position);\n }\n\n return grouped;\n}\n\nexport function getPositionsInCategories(\n positions: YieldPosition[],\n products: YieldProduct[],\n categories: YieldProductCategory[]\n): YieldPosition[] {\n const categorySet = new Set(categories);\n const productMap = new Map(products.map(p => [p.key, p]));\n return positions.filter(pos => {\n const product = productMap.get(pos.product);\n return product && categorySet.has(product.category);\n });\n}\n\nexport function hasPositionsInProvider(\n positions: YieldPosition[],\n provider: YieldProviderKey\n): boolean {\n return positions.some(p => p.provider === provider);\n}\n\nexport function hasPositionsInCategory(\n positions: YieldPosition[],\n products: YieldProduct[],\n category: YieldProductCategory\n): boolean {\n const productMap = new Map(products.map(p => [p.key, p]));\n return positions.some(pos => productMap.get(pos.product)?.category === category);\n}\n\nexport function enrichPositionWithProvider<T extends YieldPosition>(\n position: T,\n provider: YieldProvider\n): T & { providerData: YieldProvider } {\n return { ...position, providerData: provider };\n}\n\nexport function enrichPositionWithProduct<T extends YieldPosition>(\n position: T,\n product: YieldProduct\n): T & { productData: YieldProduct } {\n return { ...position, productData: product };\n}\n\nexport function enrichPositionWithMetadata<T extends YieldPosition>(\n position: T,\n provider: YieldProvider,\n product: YieldProduct\n): T & { providerData: YieldProvider; productData: YieldProduct } {\n return { ...position, providerData: provider, productData: product };\n}\n\nexport function getCategoryDisplayName(category: YieldProductCategory): string {\n const displayNames: Record<YieldProductCategory, string> = {\n [YieldProductCategories.AMM]: 'Liquidity Pools',\n [YieldProductCategories.LENDING]: 'Lending & Borrowing',\n [YieldProductCategories.LIQUID_STACKING]: 'Liquid Stacking',\n [YieldProductCategories.POOLED_STACKING]: 'Pooled Stacking',\n [YieldProductCategories.STAKING]: 'Staking',\n [YieldProductCategories.PERPS]: 'Perpetuals',\n };\n return displayNames[category] || category;\n}\n"],"mappings":";;;AAEA,MAAa,iBAAiB,EAAE,OAAO,EACrC,aAAa,EAAE,QAAQ,EACxB,CAAC;AAEF,MAAa,kBAAkB,eAAe,IAAI,EAAE,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,CAAC,CAAC;AAEzF,MAAa,2BAA2B,EAAE,OAAO;CAC/C,mBAAmB,EAAE,QAAQ;CAC7B,wBAAwB,EAAE,QAAQ;CAClC,8BAA8B,EAAE,QAAQ,CAAC,UAAU;CACnD,mCAAmC,EAAE,QAAQ,CAAC,UAAU;CACzD,CAAC;AAEF,MAAa,0BAA0B,EAAE,OAAO,EAC9C,YAAY,EAAE,QAAQ,EACvB,CAAC;AAEF,MAAa,yBAAyB,EAAE,OAAO;CAC7C,IAAI;CACJ,SAAS,yBAAyB,UAAU;CAC5C,QAAQ,wBAAwB,UAAU;CAC3C,CAAC;;;;ACvBF,MAAa,iBAAiB;CAC5B,SAAS;CACT,KAAK;CACN;;;;ACHD,MAAa,0BAA0B;CACrC,SAAS;CACT,SAAS;CACT,QAAQ;CACT;;;;ACJD,MAAa,uBAAuB;CAClC,qBAAqB;CACrB,sBAAsB;CACtB,WAAW;CACX,WAAW;CACX,cAAc;CACd,YAAY;CACb;AAGD,MAAa,sBAAsB;CACjC,YAAY;CACZ,aAAa;CACd;AAGD,MAAa,uBAAuB;CAClC,aAAa;CACb,qBAAqB;CACrB,6BAA6B;CAC9B;;;;ACHD,SAAgB,gBAAgB,OAAkD;AAChF,QAAO,MAAM,aAAa;;AAG5B,SAAgB,mBAAmB,OAAqD;AACtF,QAAO,MAAM,aAAa;;AAG5B,SAAgB,WAAW,OAAuC;AAChE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,WAAW,OAAuC;AAChE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,cAAc,OAAgD;AAC5E,QAAO,WAAW,MAAM,IAAI,WAAW,MAAM;;AAG/C,SAAgB,aAAa,OAAyC;AACpE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,iBAAiB,OAA6D;AAC5F,QAAO,cAAc,MAAM,IAAI,aAAa,MAAM;;AAGpD,SAAgB,aAAa,OAAyC;AACpE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,aAAa,OAAyC;AACpE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,aAAa,OAAyC;AACpE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,YAAY,OAAwC;AAClE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,mBAAmB,OAA+C;AAChF,QAAO,MAAM,aAAa;;AAG5B,SAAgB,aAAa,OAAyC;AACpE,QAAO,MAAM,aAAa;;AAG5B,SAAgB,YAAY,OAAwC;AAClE,QAAO,MAAM,aAAa;;;;;ACnE5B,MAAa,oBAAoB;CAC/B,SAAS;CACT,QAAQ;CACT;AACD,MAAa,wBAAwB;CACnC,UAAU;CACV,KAAK;CACN;AACD,MAAa,+BAA+B;CAC1C,WAAW;CACX,WAAW;CACX,OAAO;CACP,OAAO;CACP,OAAO;CACP,OAAO;CACP,MAAM;CACP;AACD,MAAa,kCAAkC;CAC7C,OAAO;CACP,MAAM;CACN,aAAa;CACd;AACD,MAAa,uBAAuB;CAClC,GAAG;CACH,GAAG;CACJ;;;;ACzBD,MAAa,mBAAmB;CAC9B;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD;;;;ACpCD,MAAa,oBAAoB,EAAE,KAAK,CAAC,WAAW,UAAU,CAAC;;;;ACL/D,MAAa,qBAAqB;CAChC,SAAS;CACT,SAAS;CACV;AAED,MAAa,kBAAkB;;;;ACG/B,MAAaA,eAA6D;CACxE,YAAY;CACZ,aAAa;CACb,SAAS;CACV;AAED,IAAY,oDAAL;AACL;AACA;AACA;;;;;;ACdF,IAAY,gDAAL;AACL;AACA;AACA;AACA;AACA;;;AAGF,IAAY,sEAAL;AACL;AACA;AACA;AACA;AACA;;;;;;ACbF,MAAa,sBAAsB;CAAC;CAAO;CAAY;CAAO;AAQ9D,MAAa,0BAA0B;CACrC;CACA;CACA;CACA;CACD;;;;;;;;;;ACVD,MAAa,uBAAuB;CAClC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACD;;;;ACPD,SAAgB,iBAAiB,MAAgB,OAAkC;AACjF,QAAO,OAAO,OAAO;EAAE;EAAM;EAAO,CAAC;;AAGvC,SAAgB,iBAAiB,EAAE,MAAM,SAAqB;AAC5D,QAAO,GAAG,KAAK,GAAG;;AAQpB,SAAgB,iBAAiB,MAAkB,OAA0B;AAC3E,KAAI,KAAK,UAAU,MAAM,OACvB,OAAM,IAAI,MAAM,4DAA4D;AAC9E,QAAO,OAAO,OAAO;EAAE;EAAM;EAAO,CAAC;;AAGvC,MAAa,oBAAoB;CAAC;CAAM;CAAM;CAAM;CAAM;CAAM;CAAK;;;;ACtBrE,MAAa,4BAA4B;AACzC,MAAa,4BAA4B;AACzC,MAAa,qCAAqC;AAElD,MAAa,qCAAqC;AAClD,MAAa,qCAAqC;AAElD,MAAa,+BAA+B;AAC5C,MAAa,gCAAgC;AAC7C,MAAa,gCAAgC;AAC7C,MAAa,8BAA8B;AAE3C,MAAa,kCAAkC;AAC/C,MAAa,kCAAkC;AAE/C,MAAa,6BAA6B;AAE1C,MAAa,sBAAsB;AAEnC,MAAa,6BAA6B;AAC1C,MAAa,6BAA6B;AAC1C,MAAa,4BAA4B;AAGzC,IAAY,8CAAL;AACL;AACA;;;AAGF,IAAY,wGAAL;AACL;AACA;AACA;AACA;AACA;AACA;AACA;;;AAGF,MAAa,qCAAqC,EAAE,KAAK;CACvD;CACA;CACA;CACA;CACA;CACA;CACA;CACD,CAAC;AAGF,MAAa,uBAAuB,CAAC,UAAU,UAAU;AAIzD,MAAa,eAAe,CAAC,WAAW,UAAU;AAClD,MAAa,eAAe;CAAC;CAAW;CAAW;CAAS;AAE5D,MAAa,kBAAkB;CAAC;CAAW;CAAY;CAAY;CAAW;CAAS;AAMvF,SAAgB,4BAA4B,SAA8C;AACxF,SAAQ,SAAR;EACE,KAAK,UACH,QAAO;EACT,KAAK,WACH,QAAO;EACT,KAAK,WACH,QAAO;EACT,KAAK,UACH,QAAO;EACT,KAAK,SACH,QAAO;EACT,QAGE,OAAM,IAAI,MAAM,mBAAmB,UAAU;;;AA4BnD,MAAMC,iBAAuC;CAC3C,IAAI,qCAAqC;CACzC,MAAM;CACN,OAAO;EACL,QAAQ;GACN,YAAY;GACZ,SAAS,QAAQ;GACjB,KAAK;GACN;EACD,SAAS;GACP,YAAY;GACZ,gBAAgB;GAChB,MAAM;GACN,YAAY;GACb;EACF;CACF;AAED,MAAMC,iBAAuC;CAC3C,IAAI,qCAAqC;CACzC,MAAM;CACN,OAAO;EACL,QAAQ;GACN,YAAY;GACZ,SAAS,QAAQ;GACjB,KAAK;GACN;EACD,SAAS;GACP,YAAY;GACZ,gBAAgB;GAChB,MAAM;GACN,YAAY;GACb;EACF;CACF;AAED,MAAMC,kBAAwC;CAC5C,IAAI,qCAAqC;CACzC,MAAM;CACN,OAAO;EACL,QAAQ;GACN,YAAY;GACZ,SAAS,QAAQ;GACjB,KAAK;GACN;EACD,SAAS;GACP,YAAY;GACZ,gBAAgB;GAChB,MAAM;GACN,YAAY;GACb;EACF;CACF;AAED,MAAMC,gBAAsC;CAC1C,IAAI,qCAAqC;CACzC,MAAM;CACN,OAAO;EACL,QAAQ;GACN,YAAY;GACZ,SAAS,QAAQ;GACjB,KAAK;GACN;EACD,SAAS;GACP,YAAY;GACZ,gBAAgB;GAChB,MAAM;GACN,YAAY;GACb;EACF;CACF;AAED,MAAMC,qBAA2C;CAC/C,IAAI,qCAAqC;CACzC,MAAM;CACN,OAAO;EACL,QAAQ;GACN,YAAY;GACZ,SAAS,QAAQ;GACjB,KAAK;GACN;EACD,SAAS;GACP,YAAY;GACZ,gBAAgB;GAChB,MAAM;GACN,YAAY;GACb;EACF;CACF;AAED,MAAMC,oBAA0C;CAC9C,IAAI,qCAAqC;CACzC,MAAM;CACN,OAAO;EACL,QAAQ;GACN,YAAY;GACZ,SAAS,QAAQ;GACjB,KAAK;GACN;EACD,SAAS;GACP,YAAY;GACZ,gBAAgB;GAChB,MAAM;GACN,YAAY;GACb;EACF;CACF;AAED,MAAMC,gBAAsC;CAC1C,IAAI,qCAAqC;CACzC,MAAM;CACN,OAAO;EACL,QAAQ;GACN,YAAY;GACZ,SAAS,QAAQ;GACjB,KAAK;GACN;EACD,SAAS;GACP,YAAY;GACZ,gBAAgB;GAChB,MAAM;GACN,YAAY;GACb;EACF;CACF;AAED,MAAaC,wBAA8C;AAE3D,MAAaC,2BAGT;EACD,qCAAqC,UAAU;EAC/C,qCAAqC,WAAW;EAChD,qCAAqC,UAAU;EAC/C,qCAAqC,SAAS;EAC9C,qCAAqC,cAAc;EACnD,qCAAqC,aAAa;EAClD,qCAAqC,SAAS;CAChD;;;;ACtPD,MAAa,4BAA4B,EAAE,KAAK,CAAC,GAAG,cAAc,GAAG,aAAa,CAAC;AAEnF,MAAa,uBAAuB,EAAE,KAAK,CAAC,GAAG,gBAAgB,CAAC;AAEhE,MAAa,6BAA6B,EAAE,OAAO;CACjD,MAAM,EAAE,QAAQ;CAChB,IAAI,EAAE,QAAQ;CACd,OAAO,EAAE,OAAO;EACd,SAAS,EAAE,OAAO;GAChB,YAAY,EAAE,QAAQ,UAAU;GAChC,YAAY,EAAE,QAAQ;GACtB,gBAAgB;GAChB,MAAM;GACP,CAAC;EACF,QAAQ,EAAE,OAAO;GACf,YAAY,EAAE,QAAQ,SAAS;GAC/B,KAAK,EAAE,QAAQ;GACf,SAAS,EAAE,QAAQ;GACnB,eAAe,EAAE,QAAQ,CAAC,UAAU;GACrC,CAAC;EACH,CAAC;CACH,CAAC;;;;ACrBF,MAAa,iCAAiC,EAAE,KAAK;CAAC;CAAiB;CAAW;CAAO;CAAS,CAAC;AASnG,MAAa,4BAA4B,EAAE,KAAK,CAAC,iBAAiB,mBAAmB,CAAC;AAGtF,MAAa,qBAAqB,EAAE,MAAM,EAAE,OAAO,yBAAyB,CAAC;;;;ACL7E,MAAa,kBAAkB;CAAC;CAAe;CAAe;CAAY;CAAY;AA0EtF,MAAa,qBAAqB,CAAC,wBAAwB,uBAAuB;;;;ACrFlF,MAAa,oBAAoB;CAC/B,SAAS;CACT,MAAM;CACN,SAAS;CACT,aAAa;CACb,MAAM;CACN,WAAW;CACX,UAAU;CACV,QAAQ;CACR,OAAO;CACR;;;;ACRD,MAAa,mBAAmB;CAC9B,cAAc;CACd,mBAAmB;CACnB,kBAAkB;CAClB,eAAe;CACf,iBAAiB;CACjB,kBAAkB;CAClB,qBAAqB;CACrB,2BAA2B;CAC3B,WAAW;CACX,mBAAmB;CACnB,sBAAsB;CACtB,YAAY;CACZ,YAAY;CACZ,mBAAmB;CACnB,wBAAwB;CACxB,sBAAsB;CACvB;AAGD,MAAa,yBAAyB;CACpC,KAAK;CACL,SAAS;CACT,iBAAiB;CACjB,iBAAiB;CACjB,SAAS;CACT,OAAO;CACR;AAID,MAAa,4BAA4B;EACtC,iBAAiB,eAAe,kBAAkB;EAClD,iBAAiB,oBAAoB,kBAAkB;EACvD,iBAAiB,mBAAmB,kBAAkB;EACtD,iBAAiB,gBAAgB,kBAAkB;EACnD,iBAAiB,kBAAkB,kBAAkB;EACrD,iBAAiB,mBAAmB,kBAAkB;EACtD,iBAAiB,sBAAsB,kBAAkB;EACzD,iBAAiB,4BAA4B,kBAAkB;EAC/D,iBAAiB,YAAY,kBAAkB;EAC/C,iBAAiB,oBAAoB,kBAAkB;EACvD,iBAAiB,uBAAuB,kBAAkB;EAC1D,iBAAiB,aAAa,kBAAkB;EAChD,iBAAiB,aAAa,kBAAkB;EAChD,iBAAiB,oBAAoB,kBAAkB;EACvD,iBAAiB,yBAAyB,kBAAkB;EAC5D,iBAAiB,uBAAuB,kBAAkB;CAC5D;;;;ACzBD,SAAgB,uBAAuB,KAAiD;AACtF,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,4BAA4B,KAAsD;AAChG,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,eAAe,KAAqD;AAClF,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,sBAAsB,KAAkD;AACtF,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,wBAAwB,KAAoD;AAC1F,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,2BAA2B,KAAqD;AAC9F,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,8BACd,KACoC;AACpC,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,4BACd,KAC0C;AAC1C,QAAO,IAAI,YAAY,iBAAiB;;AAG1C,SAAgB,0BACd,WACA,UACiB;AACjB,QAAO,UAAU,QAAO,MAAK,EAAE,aAAa,SAAS;;AAGvD,SAAgB,yBACd,WACA,SACiB;AACjB,QAAO,UAAU,QAAO,MAAK,EAAE,YAAY,QAAQ;;AAGrD,SAAgB,0BACd,WACA,UACA,UACiB;CACjB,MAAM,aAAa,IAAI,IAAI,SAAS,KAAI,MAAK,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;AACzD,QAAO,UAAU,QAAO,QAAO,WAAW,IAAI,IAAI,QAAQ,EAAE,aAAa,SAAS;;AAGpF,SAAgB,uBACd,WACA,YAAY,OACK;AACjB,QAAO,CAAC,GAAG,UAAU,CAAC,MAAM,GAAG,MAAM;EACnC,MAAM,OAAO,EAAE,aAAa,OAAO,WAAW,EAAE,aAAa,OAAO;AACpE,SAAO,YAAY,OAAO,CAAC;GAC3B;;AAGJ,SAAgB,mBAAmB,WAA4B,YAAY,OAAwB;AACjG,QAAO,CAAC,GAAG,UAAU,CAAC,MAAM,GAAG,MAAM;EACnC,MAAM,OAAO,EAAE;EACf,MAAM,OAAO,EAAE;AACf,SAAO,YAAY,OAAO,OAAO,OAAO;GACxC;;AAGJ,SAAgB,0BACd,WACA,YAAY,OACK;AACjB,QAAO,CAAC,GAAG,UAAU,CAAC,MAAM,GAAG,MAAM;EACnC,MAAM,QAAQ,eAAe,KAAK,EAAE,qBAAqB,OAAO,EAAE,UAAU,SAAS,GAAG;EACxF,MAAM,QAAQ,eAAe,KAAK,EAAE,qBAAqB,OAAO,EAAE,UAAU,SAAS,GAAG;AACxF,SAAO,YAAY,QAAQ,QAAQ,QAAQ;GAC3C;;AAGJ,SAAgB,sBAAsB,SAA4C;AAChF,QAAO,0BAA0B;;AAGnC,SAAgB,sBAAsB,SAA6C;AACjF,QAAO,QAAQ;;AAGjB,SAAgB,oBAAoB,SAA0B,UAAqC;AACjG,QAAO,0BAA0B,aAAa;;AAGhD,SAAgB,uBAAuB,UAA+C;AACpF,QAAO,OAAO,QAAQ,0BAA0B,CAC7C,QAAQ,CAAC,GAAG,OAAO,MAAM,SAAS,CAClC,KAAK,CAAC,aAAa,QAA2B;;AAGnD,SAAgB,sBACd,UACA,UACgB;AAChB,QAAO,SAAS,QAAO,MAAK,EAAE,aAAa,SAAS;;AAGtD,SAAgB,yBACd,WAC2C;CAC3C,MAAMC,UAA8D,EAAE;AAEtE,MAAK,MAAM,YAAY,WAAW;EAChC,MAAM,WAAW,SAAS;AAC1B,MAAI,CAAC,QAAQ,UACX,SAAQ,YAAY,EAAE;AAExB,UAAQ,UAAU,KAAK,SAAS;;AAGlC,QAAO;;AAGT,SAAgB,yBACd,WACA,UACiC;CACjC,MAAMC,UAA2C,EAAE;CACnD,MAAM,aAAa,IAAI,IAAI,SAAS,KAAI,MAAK,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;AAEzD,MAAK,MAAM,YAAY,WAAW;EAChC,MAAM,UAAU,WAAW,IAAI,SAAS,QAAQ;AAChD,MAAI,CAAC,QAAS;EAEd,MAAM,WAAW,QAAQ;AACzB,MAAI,CAAC,QAAQ,UACX,SAAQ,YAAY,EAAE;AAExB,UAAQ,UAAU,KAAK,SAAS;;AAGlC,QAAO;;AAGT,SAAgB,yBACd,WACA,UACA,YACiB;CACjB,MAAM,cAAc,IAAI,IAAI,WAAW;CACvC,MAAM,aAAa,IAAI,IAAI,SAAS,KAAI,MAAK,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;AACzD,QAAO,UAAU,QAAO,QAAO;EAC7B,MAAM,UAAU,WAAW,IAAI,IAAI,QAAQ;AAC3C,SAAO,WAAW,YAAY,IAAI,QAAQ,SAAS;GACnD;;AAGJ,SAAgB,uBACd,WACA,UACS;AACT,QAAO,UAAU,MAAK,MAAK,EAAE,aAAa,SAAS;;AAGrD,SAAgB,uBACd,WACA,UACA,UACS;CACT,MAAM,aAAa,IAAI,IAAI,SAAS,KAAI,MAAK,CAAC,EAAE,KAAK,EAAE,CAAC,CAAC;AACzD,QAAO,UAAU,MAAK,QAAO,WAAW,IAAI,IAAI,QAAQ,EAAE,aAAa,SAAS;;AAGlF,SAAgB,2BACd,UACA,UACqC;AACrC,QAAO;EAAE,GAAG;EAAU,cAAc;EAAU;;AAGhD,SAAgB,0BACd,UACA,SACmC;AACnC,QAAO;EAAE,GAAG;EAAU,aAAa;EAAS;;AAG9C,SAAgB,2BACd,UACA,UACA,SACgE;AAChE,QAAO;EAAE,GAAG;EAAU,cAAc;EAAU,aAAa;EAAS;;AAGtE,SAAgB,uBAAuB,UAAwC;AAS7E,QAR2D;GACxD,uBAAuB,MAAM;GAC7B,uBAAuB,UAAU;GACjC,uBAAuB,kBAAkB;GACzC,uBAAuB,kBAAkB;GACzC,uBAAuB,UAAU;GACjC,uBAAuB,QAAQ;EACjC,CACmB,aAAa"} |
+1
-1
@@ -5,3 +5,3 @@ { | ||
| "description": "Leather models and types", | ||
| "version": "0.50.2", | ||
| "version": "0.51.0", | ||
| "license": "MIT", | ||
@@ -8,0 +8,0 @@ "homepage": "https://github.com/leather-io/mono/tree/dev/packages/models", |
@@ -25,2 +25,6 @@ import { z } from 'zod'; | ||
| export const EMILY_API_BASE_URL_MAINNET = 'https://sbtc-emily.com'; | ||
| export const EMILY_API_BASE_URL_TESTNET = 'https://beta.sbtc-emily.com'; | ||
| export const EMILY_API_BASE_URL_DEVENV = 'http://localhost:3031'; | ||
| // Copied from @stacks/transactions to avoid dependencies | ||
@@ -27,0 +31,0 @@ export enum ChainId { |
+47
-40
@@ -8,4 +8,4 @@ import { CryptoAssetId } from '../assets/asset-id.model'; | ||
| export interface SwapAsset { | ||
| asset: SwappableFungibleCryptoAsset; | ||
| providerAssets: SwapProviderAsset[]; | ||
| readonly asset: SwappableFungibleCryptoAsset; | ||
| readonly providerAssets: SwapProviderAsset[]; | ||
| } | ||
@@ -17,10 +17,10 @@ | ||
| export interface SwapProvider { | ||
| id: SwapProviderId; | ||
| isAggregator: boolean; | ||
| readonly id: SwapProviderId; | ||
| readonly isAggregator: boolean; | ||
| } | ||
| export interface SwapProviderAsset { | ||
| providerId: SwapProviderId; | ||
| providerAssetId: string; | ||
| assetId: CryptoAssetId; | ||
| readonly providerId: SwapProviderId; | ||
| readonly providerAssetId: string; | ||
| readonly assetId: CryptoAssetId; | ||
| } | ||
@@ -35,16 +35,23 @@ | ||
| export interface BaseSwapQuote { | ||
| executionType: SwapExecutionType; | ||
| providerId: SwapProviderId; | ||
| baseAsset: SwappableFungibleCryptoAsset; | ||
| targetAsset: SwappableFungibleCryptoAsset; | ||
| baseAmount: Money; | ||
| targetAmount: Money; | ||
| dexPath: SwapDex[]; | ||
| assetPath: (NativeCryptoAsset | Sip10Asset)[]; | ||
| createdAt: Date; | ||
| readonly executionType: SwapExecutionType; | ||
| readonly providerId: SwapProviderId; | ||
| readonly baseAsset: SwappableFungibleCryptoAsset; | ||
| readonly targetAsset: SwappableFungibleCryptoAsset; | ||
| readonly baseAmount: Money; | ||
| readonly targetAmount: Money; | ||
| readonly dexPath: SwapDex[]; | ||
| readonly assetPath: (NativeCryptoAsset | Sip10Asset)[]; | ||
| readonly isExecutable: boolean; | ||
| readonly executionConstraints: ExecutionConstraint[]; | ||
| readonly createdAt: Date; | ||
| } | ||
| export interface ExecutionConstraint { | ||
| readonly reason: 'minimum-threshold-not-met' | 'maximum-threshold-exceeded'; | ||
| readonly threshold: Money; | ||
| } | ||
| export interface AlexSdkSwapQuote extends BaseSwapQuote { | ||
| providerId: 'alex-sdk'; | ||
| providerQuoteData: { | ||
| readonly providerId: 'alex-sdk'; | ||
| readonly providerQuoteData: { | ||
| baseProviderAssetId: string; | ||
@@ -57,6 +64,6 @@ targetProviderAssetId: string; | ||
| export interface VelarSdkSwapQuote extends BaseSwapQuote { | ||
| providerId: 'velar-sdk'; | ||
| readonly providerId: 'velar-sdk'; | ||
| providerQuoteData: { | ||
| baseProviderAssetId: string; | ||
| targetProviderAssetId: string; | ||
| readonly baseProviderAssetId: string; | ||
| readonly targetProviderAssetId: string; | ||
| }; | ||
@@ -66,4 +73,4 @@ } | ||
| export interface BitflowSdkSwapQuote extends BaseSwapQuote { | ||
| providerId: 'bitflow-sdk'; | ||
| providerQuoteData: { | ||
| readonly providerId: 'bitflow-sdk'; | ||
| readonly providerQuoteData: { | ||
| bitflowSdkSelectedSwapRoute: unknown; | ||
@@ -74,10 +81,10 @@ }; | ||
| export interface SbtcBridgeSwapQuote extends BaseSwapQuote { | ||
| providerId: 'sbtc-bridge'; | ||
| readonly providerId: 'sbtc-bridge'; | ||
| } | ||
| export interface SwapDex { | ||
| name: string; | ||
| url: string; | ||
| logo: string; | ||
| description: string; | ||
| readonly name: string; | ||
| readonly url: string; | ||
| readonly logo: string; | ||
| readonly description: string; | ||
| } | ||
@@ -89,18 +96,18 @@ | ||
| export interface BaseSwapExecutionData { | ||
| executionType: SwapExecutionType; | ||
| providerId: SwapProviderId; | ||
| quote: SwapQuote; | ||
| readonly executionType: SwapExecutionType; | ||
| readonly providerId: SwapProviderId; | ||
| readonly quote: SwapQuote; | ||
| } | ||
| export interface StacksContractCallSwapExecutionData extends BaseSwapExecutionData { | ||
| executionType: 'stacks-contract-call'; | ||
| quote: SwapQuote; | ||
| contractAddress: string; | ||
| contractName: string; | ||
| functionName: string; | ||
| functionArgs: unknown[]; | ||
| postConditions: unknown[]; | ||
| postConditionMode?: unknown; | ||
| readonly executionType: 'stacks-contract-call'; | ||
| readonly quote: SwapQuote; | ||
| readonly contractAddress: string; | ||
| readonly contractName: string; | ||
| readonly functionName: string; | ||
| readonly functionArgs: unknown[]; | ||
| readonly postConditions: unknown[]; | ||
| readonly postConditionMode?: unknown; | ||
| } | ||
| export interface SbtcBridgeTransferSwapExecutionData extends BaseSwapExecutionData { | ||
| executionType: 'sbtc-bridge-transfer'; | ||
| readonly executionType: 'sbtc-bridge-transfer'; | ||
| } | ||
@@ -107,0 +114,0 @@ export type SwapExecutionData = |
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
243553
1.41%3799
0.56%