Ledger.Net
Ledger.Net copied to clipboard
Cross Platform C# Library For Ledger Hardware Wallet
async Task DisplayAddress() { WindowsHidDeviceFactory.Register(new DebugLogger(), new DebugTracer()); var ledgerManagerBroker = new LedgerManagerBroker(3000, null, null, new LedgerManagerFactory()); var ledgerManager = (IAddressDeriver)await ledgerManagerBroker.WaitForFirstDeviceAsync(); var path = $"m/49'/0'/0'/0/0"; var addressPath = AddressPathBase.Parse(path);...
Is there any correct example how to compose valid transaction and sign in Ledger? It would be really awesome to have tests or examples for this.
The Ledger is odd because the device drops off the connection when it is not in the right state. This causes the Ledger manager broker to dispose the Ledger and...
Ledger has so many apps. Lets try to implement as many of the requests/responses as possible and build unit tests around those.
SignChunkedEthereumTransaction Unit Test Hangs
I believe this is because it is sending the wrong parameter for signing. It complains about an invalid parameter but no idea which one. This seems to have started to...