@ledgerhq/types-live
Version:
40 lines (39 loc) • 692 B
text/typescript
/**
* 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"
| "solanaBip44Change"
| "hederaBip44"
| "cardano"
| "nearbip44h"
| "vechain"
| "internet_computer"
| "stacks_wallet"
| "icon"
| "ton"
| "sui"
| "aptos"
| "minabip44"
| "canton";