Files
Claude ac191bae17 Fix seed initialization to use Spark SDK Seed.Mnemonic type
The previous implementation incorrectly converted the mnemonic to bytes:
- OLD: var seed = mnemonic.DeriveSeed(); ... seed.ToList()
- NEW: var seed = new Seed.Mnemonic(mnemonic: mnemonic.ToString(), passphrase: null);

This matches the official Spark SDK C# snippets pattern where ConnectRequest
expects a Seed discriminated union type, not a List<byte>.

Reference: https://github.com/breez/spark-sdk/tree/main/docs/breez-sdk/snippets/csharp
2025-11-14 15:55:50 +00:00
..
2025-06-30 08:31:45 +02:00