mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-25 19:55:52 +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];
|
List<int> get possibleMnemonicLengths => [defaultSeedPhraseLength, 24];
|
||||||
|
|
||||||
@override
|
@override
|
||||||
AddressType get primaryAddressType => AddressType.p2wpkh;
|
AddressType get primaryAddressType => AddressType.p2tr;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
BigInt get satsPerCoin => BigInt.from(100000000);
|
BigInt get satsPerCoin => BigInt.from(100000000);
|
||||||
|
@ -297,7 +297,7 @@ class Bitcoin extends Bip39HDCurrency
|
||||||
int get targetBlockTimeSeconds => 600;
|
int get targetBlockTimeSeconds => 600;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
DerivePathType get primaryDerivePathType => DerivePathType.bip84;
|
DerivePathType get primaryDerivePathType => DerivePathType.bip86;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Uri defaultBlockExplorer(String txid) {
|
Uri defaultBlockExplorer(String txid) {
|
||||||
|
|
Loading…
Reference in a new issue