ishi

Results 200 comments of ishi

``` @freezed class ExtendedKey with _$ExtendedKey { @HiveType(typeId: 2, adapterName: 'ExtendedKeyClassAdaper') const factory ExtendedKey({ @HiveField(0) required String xKey, @HiveField(1) required String fingerPrint, @HiveField(2) required String path, @HiveField(3) required String id,...

Under `Info` we will now show the full extended pub key for single sig wallets and for script wallets, we will show the public descriptor and allow you to encrypt...

We can add other info for scripts like a policy breakdown. The policy parts and the satisfaction threshold.

And inheritance only has a flow for recovering as the primary signer. we need to include a flow for secondary signer. Also we should have a page before we start...

``` enum RecoveryData{ extendedKey('[fingerprint/path]xkey'), timeLock('21000000'), hashLock('9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08'); const RecoveryData(this.value); final String value; } ``` Edit: Updated `Wallet`.`recoveryData` to be a `List`.

Latest: ``` import 'package:freezed_annotation/freezed_annotation.dart'; import 'package:hive/hive.dart'; import 'package:sats/model/transaction.dart'; part 'wallet.g.dart'; part 'wallet.freezed.dart'; const satsInBTC = 100000000; @freezed class Wallet with _$Wallet { @HiveType(typeId: 1, adapterName: 'WalletClassAdaper') const factory Wallet({ @HiveField(0)...

Another addition to backup is encrypted single sig seed with passphrase, exported to SD Card ONLY!

If wallet has unconfirmed balance and user attempts send, it breaks on buildPSBT stage before Fees and does not properly show the error.

Not exactly completed. Send now just goes back to either home or wallet, depending on where the flow started.

Also add a ICON to show Tx is complete.