ishi
ishi
This (keygen) is actually the main point where `libstackmate` needs to be audited because the rest is outsourced to `bdk`. It will soon support `tor` as well, then that will...
@mocodesmo we need help in designing this!
Few notes: Removed tabs to separate Direct and Group chat. Let it all be in a single page, like Signal for example. Made Chat the first page and discover members...
Current script wallets like Muun and Hexa wallet, use a separate encryption key that the users are expected to write down alongside their seed. This creates a UI hurdle and...
@mocodesmo We will need your help with this since its our first time adding a feature to this repo.
Before we start this we have to note: 1. This is only for script wallets. In our case inheritance. 2. Script wallet creation flow needs updates first. It must accept...
`model/wallet.dart` main class can use String descriptor, instead of holding 3 different InternalWallet class as extra variables. The descriptor will have information about the keys and whether it is watcher(pub-only)...
So in cubit/new_wallet instead of : ``` var newWallet = Wallet( label: state.walletLabel, walletType: 'SINGLE ACCOUNT', mainWallet: InternalWallet( xPub: wallet.xpub, fingerPrint: wallet.fingerPrint, path: wallet.hardenedPath, descriptor: com.descriptor.split('#')[0], ), exportWallet: InternalWallet( xPub:...
and I think we should always show/accept the public key as the full extended public key [fingerprint/path]xpub, rather than separating them. Makes the UX more simple. Only copy/paste 1 thing,...
and if a user is making a watch-only wallet, if they even paste the entire descriptor we should recognise it and recover the wallet based on that. blue wallet has...