mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 09:47:35 +00:00
591342ec6a
* hotfixes * copy over the rest of the fixes * use hardened derivation path everywhere * correct balance path for electrum * revert index nullability and correct balance path for all cases * only save wallet info if we changed it
113 lines
No EOL
3.3 KiB
Dart
113 lines
No EOL
3.3 KiB
Dart
import 'package:cw_core/wallet_info.dart';
|
|
|
|
Map<DerivationType, List<DerivationInfo>> electrum_derivations = {
|
|
DerivationType.electrum: [
|
|
DerivationInfo(
|
|
derivationType: DerivationType.electrum,
|
|
derivationPath: "m/0'",
|
|
description: "Electrum",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
],
|
|
DerivationType.bip39: [
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/44'/0'/0'",
|
|
description: "Standard BIP44",
|
|
scriptType: "p2pkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/49'/0'/0'",
|
|
description: "Standard BIP49 compatibility segwit",
|
|
scriptType: "p2wpkh-p2sh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/84'/0'/0'",
|
|
description: "Standard BIP84 native segwit",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/86'/0'/0'",
|
|
description: "Standard BIP86 Taproot",
|
|
scriptType: "p2tr",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/0'",
|
|
description: "Non-standard legacy",
|
|
scriptType: "p2pkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/0'",
|
|
description: "Non-standard compatibility segwit",
|
|
scriptType: "p2wpkh-p2sh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/0'",
|
|
description: "Non-standard native segwit",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/44'/0'/0'",
|
|
description: "Samourai Deposit",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/49'/0'/0'",
|
|
description: "Samourai Deposit",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/84'/0'/2147483644'",
|
|
description: "Samourai Bad Bank (toxic change)",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/84'/0'/2147483645'",
|
|
description: "Samourai Whirlpool Pre Mix",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/84'/0'/2147483646'",
|
|
description: "Samourai Whirlpool Post Mix",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/44'/0'/2147483647'",
|
|
description: "Samourai Ricochet legacy",
|
|
scriptType: "p2pkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/49'/0'/2147483647'",
|
|
description: "Samourai Ricochet compatibility segwit",
|
|
scriptType: "p2wpkh-p2sh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/84'/0'/2147483647'",
|
|
description: "Samourai Ricochet native segwit",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
DerivationInfo(
|
|
derivationType: DerivationType.bip39,
|
|
derivationPath: "m/84'/2'/0'",
|
|
description: "Default Litecoin",
|
|
scriptType: "p2wpkh",
|
|
),
|
|
],
|
|
};
|
|
|
|
|
|
String electrum_path = electrum_derivations[DerivationType.electrum]!.first.derivationPath!; |