default to taproot for bitcoin

This commit is contained in:
julian 2024-06-19 14:40:40 -06:00
parent e9075741ee
commit 44c5f1551e

View file

@ -288,7 +288,7 @@ class Bitcoin extends Bip39HDCurrency
List<int> get possibleMnemonicLengths => [defaultSeedPhraseLength, 24];
@override
AddressType get primaryAddressType => AddressType.p2wpkh;
AddressType get primaryAddressType => AddressType.p2tr;
@override
BigInt get satsPerCoin => BigInt.from(100000000);
@ -297,7 +297,7 @@ class Bitcoin extends Bip39HDCurrency
int get targetBlockTimeSeconds => 600;
@override
DerivePathType get primaryDerivePathType => DerivePathType.bip84;
DerivePathType get primaryDerivePathType => DerivePathType.bip86;
@override
Uri defaultBlockExplorer(String txid) {