mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-11 05:04:35 +00:00
default to taproot for bitcoin
This commit is contained in:
parent
e9075741ee
commit
44c5f1551e
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue