@ledgerhq/types-live
Advanced tools
Comparing version 6.52.0-nightly.2 to 6.52.0
/** | ||
* DerivationMode is a string identifier of a specific derivation scheme in a list defined in live-common derivation.ts | ||
*/ | ||
export type DerivationMode = "" | "ethM" | "ethMM" | "etcM" | "aeternity" | "tezbox" | "tezosbip44h" | "galleonL" | "tezboxL" | "taproot" | "native_segwit" | "segwit" | "segwit_unsplit" | "sep5" | "unsplit" | "polkadotbip44" | "glifLegacy" | "glif" | "filecoinBIP44" | "casper_wallet" | "solanaMain" | "solanaSub" | "hederaBip44" | "cardano" | "nearbip44h" | "vechain" | "internet_computer" | "stacks_wallet" | "icon" | "ton"; | ||
export type DerivationMode = "" | "ethM" | "ethMM" | "bch_on_bitcoin_segwit" | "legacy_on_bch" | "etcM" | "aeternity" | "tezbox" | "tezosbip44h" | "galleonL" | "tezboxL" | "taproot" | "native_segwit" | "segwit" | "segwit_on_legacy" | "legacy_on_segwit" | "legacy_on_native_segwit" | "segwit_unsplit" | "sep5" | "unsplit" | "polkadotbip44" | "glifLegacy" | "glif" | "filecoinBIP44" | "casper_wallet" | "solanaMain" | "solanaSub" | "hederaBip44" | "cardano" | "nearbip44h" | "vechain" | "internet_computer" | "stacks_wallet" | "icon" | "ton"; | ||
//# sourceMappingURL=derivation.d.ts.map |
@@ -134,3 +134,2 @@ import { ABTestingVariants } from "./ABTesting"; | ||
receiveStakingFlowConfigDesktop: Feature_ReceiveStakingFlowConfigDesktop; | ||
ethStakingModalWithFilters: DefaultFeature; | ||
ethStakingProviders: Feature_EthStakingProviders; | ||
@@ -183,3 +182,2 @@ storyly: Feature_Storyly; | ||
spamFilteringTx: Feature_SpamFilteringTx; | ||
llmMemoTag: Feature_MemoTag; | ||
}; | ||
@@ -191,31 +189,13 @@ /** | ||
/** | ||
* EthStakingProvider category type. | ||
*/ | ||
export type EthStakingProviderCategory = "liquid" | "pooling" | "protocol" | "restaking"; | ||
/** | ||
* EthStakingProvider rewards strategy. | ||
*/ | ||
export type EthStakingProviderRewardsStrategy = "basic" | "auto-compounded" | "daily" | "eigenlayer_points" | "validator"; | ||
/** | ||
* EthStakingProvider. | ||
*/ | ||
export interface EthStakingProvider { | ||
id: string; | ||
category: EthStakingProviderCategory; | ||
disabled?: boolean; | ||
icon?: string; | ||
liveAppId: string; | ||
/** Requires Liquid Staking Token */ | ||
lst?: boolean; | ||
min?: number; | ||
name: string; | ||
queryParams?: Record<string, string>; | ||
rewardsStrategy: EthStakingProviderRewardsStrategy; | ||
supportLink?: string; | ||
} | ||
/** | ||
* Features types. | ||
*/ | ||
export type Feature_EthStakingProviders = Feature<{ | ||
listProvider: EthStakingProvider[]; | ||
listProvider: { | ||
id: string; | ||
name: string; | ||
liveAppId: string; | ||
supportLink?: string; | ||
icon?: string; | ||
queryParams?: Record<string, string>; | ||
}[]; | ||
}>; | ||
@@ -496,3 +476,2 @@ export type Feature_TransactionsAlerts = Feature<{ | ||
export type Feature_SpamFilteringTx = DefaultFeature; | ||
export type Feature_MemoTag = DefaultFeature; | ||
/** | ||
@@ -499,0 +478,0 @@ * Utils types. |
/** | ||
* DerivationMode is a string identifier of a specific derivation scheme in a list defined in live-common derivation.ts | ||
*/ | ||
export type DerivationMode = "" | "ethM" | "ethMM" | "etcM" | "aeternity" | "tezbox" | "tezosbip44h" | "galleonL" | "tezboxL" | "taproot" | "native_segwit" | "segwit" | "segwit_unsplit" | "sep5" | "unsplit" | "polkadotbip44" | "glifLegacy" | "glif" | "filecoinBIP44" | "casper_wallet" | "solanaMain" | "solanaSub" | "hederaBip44" | "cardano" | "nearbip44h" | "vechain" | "internet_computer" | "stacks_wallet" | "icon" | "ton"; | ||
export type DerivationMode = "" | "ethM" | "ethMM" | "bch_on_bitcoin_segwit" | "legacy_on_bch" | "etcM" | "aeternity" | "tezbox" | "tezosbip44h" | "galleonL" | "tezboxL" | "taproot" | "native_segwit" | "segwit" | "segwit_on_legacy" | "legacy_on_segwit" | "legacy_on_native_segwit" | "segwit_unsplit" | "sep5" | "unsplit" | "polkadotbip44" | "glifLegacy" | "glif" | "filecoinBIP44" | "casper_wallet" | "solanaMain" | "solanaSub" | "hederaBip44" | "cardano" | "nearbip44h" | "vechain" | "internet_computer" | "stacks_wallet" | "icon" | "ton"; | ||
//# sourceMappingURL=derivation.d.ts.map |
@@ -134,3 +134,2 @@ import { ABTestingVariants } from "./ABTesting"; | ||
receiveStakingFlowConfigDesktop: Feature_ReceiveStakingFlowConfigDesktop; | ||
ethStakingModalWithFilters: DefaultFeature; | ||
ethStakingProviders: Feature_EthStakingProviders; | ||
@@ -183,3 +182,2 @@ storyly: Feature_Storyly; | ||
spamFilteringTx: Feature_SpamFilteringTx; | ||
llmMemoTag: Feature_MemoTag; | ||
}; | ||
@@ -191,31 +189,13 @@ /** | ||
/** | ||
* EthStakingProvider category type. | ||
*/ | ||
export type EthStakingProviderCategory = "liquid" | "pooling" | "protocol" | "restaking"; | ||
/** | ||
* EthStakingProvider rewards strategy. | ||
*/ | ||
export type EthStakingProviderRewardsStrategy = "basic" | "auto-compounded" | "daily" | "eigenlayer_points" | "validator"; | ||
/** | ||
* EthStakingProvider. | ||
*/ | ||
export interface EthStakingProvider { | ||
id: string; | ||
category: EthStakingProviderCategory; | ||
disabled?: boolean; | ||
icon?: string; | ||
liveAppId: string; | ||
/** Requires Liquid Staking Token */ | ||
lst?: boolean; | ||
min?: number; | ||
name: string; | ||
queryParams?: Record<string, string>; | ||
rewardsStrategy: EthStakingProviderRewardsStrategy; | ||
supportLink?: string; | ||
} | ||
/** | ||
* Features types. | ||
*/ | ||
export type Feature_EthStakingProviders = Feature<{ | ||
listProvider: EthStakingProvider[]; | ||
listProvider: { | ||
id: string; | ||
name: string; | ||
liveAppId: string; | ||
supportLink?: string; | ||
icon?: string; | ||
queryParams?: Record<string, string>; | ||
}[]; | ||
}>; | ||
@@ -496,3 +476,2 @@ export type Feature_TransactionsAlerts = Feature<{ | ||
export type Feature_SpamFilteringTx = DefaultFeature; | ||
export type Feature_MemoTag = DefaultFeature; | ||
/** | ||
@@ -499,0 +478,0 @@ * Utils types. |
{ | ||
"name": "@ledgerhq/types-live", | ||
"version": "6.52.0-nightly.2", | ||
"version": "6.52.0", | ||
"description": "Ledger Live main types.", | ||
@@ -36,3 +36,3 @@ "keywords": [ | ||
"ts-node": "^10.4.0", | ||
"@ledgerhq/types-cryptoassets": "^7.16.0-nightly.0", | ||
"@ledgerhq/types-cryptoassets": "^7.16.0", | ||
"@ledgerhq/types-devices": "^6.25.3" | ||
@@ -39,0 +39,0 @@ }, |
@@ -8,2 +8,4 @@ /** | ||
| "ethMM" | ||
| "bch_on_bitcoin_segwit" | ||
| "legacy_on_bch" | ||
| "etcM" | ||
@@ -18,2 +20,5 @@ | "aeternity" | ||
| "segwit" | ||
| "segwit_on_legacy" | ||
| "legacy_on_segwit" | ||
| "legacy_on_native_segwit" | ||
| "segwit_unsplit" | ||
@@ -20,0 +25,0 @@ | "sep5" |
@@ -147,3 +147,2 @@ import { ABTestingVariants } from "./ABTesting"; | ||
receiveStakingFlowConfigDesktop: Feature_ReceiveStakingFlowConfigDesktop; | ||
ethStakingModalWithFilters: DefaultFeature; | ||
ethStakingProviders: Feature_EthStakingProviders; | ||
@@ -196,3 +195,2 @@ storyly: Feature_Storyly; | ||
spamFilteringTx: Feature_SpamFilteringTx; | ||
llmMemoTag: Feature_MemoTag; | ||
}; | ||
@@ -206,39 +204,13 @@ | ||
/** | ||
* EthStakingProvider category type. | ||
*/ | ||
export type EthStakingProviderCategory = "liquid" | "pooling" | "protocol" | "restaking"; | ||
/** | ||
* EthStakingProvider rewards strategy. | ||
*/ | ||
export type EthStakingProviderRewardsStrategy = | ||
| "basic" | ||
| "auto-compounded" | ||
| "daily" | ||
| "eigenlayer_points" | ||
| "validator"; | ||
/** | ||
* EthStakingProvider. | ||
*/ | ||
export interface EthStakingProvider { | ||
id: string; | ||
category: EthStakingProviderCategory; | ||
disabled?: boolean; | ||
icon?: string; | ||
liveAppId: string; | ||
/** Requires Liquid Staking Token */ | ||
lst?: boolean; | ||
min?: number; | ||
name: string; | ||
queryParams?: Record<string, string>; | ||
rewardsStrategy: EthStakingProviderRewardsStrategy; | ||
supportLink?: string; | ||
} | ||
/** | ||
* Features types. | ||
*/ | ||
export type Feature_EthStakingProviders = Feature<{ | ||
listProvider: EthStakingProvider[]; | ||
listProvider: { | ||
id: string; | ||
name: string; | ||
liveAppId: string; | ||
supportLink?: string; | ||
icon?: string; | ||
queryParams?: Record<string, string>; | ||
}[]; | ||
}>; | ||
@@ -549,3 +521,2 @@ | ||
export type Feature_SpamFilteringTx = DefaultFeature; | ||
export type Feature_MemoTag = DefaultFeature; | ||
@@ -552,0 +523,0 @@ /** |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
377060
6124