mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-30 00:47:48 +00:00
105 lines
3.1 KiB
Dart
105 lines
3.1 KiB
Dart
|
import 'package:cw_core/wallet_info.dart';
|
||
|
|
||
|
Map<DerivationType, List<DerivationInfo>> electrum_derivations = {
|
||
|
DerivationType.electrum: [
|
||
|
DerivationInfo(
|
||
|
derivationType: DerivationType.electrum,
|
||
|
derivationPath: "m/0'/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/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",
|
||
|
),
|
||
|
],
|
||
|
};
|