Ledger wallet support

This commit is contained in:
nicolas.dorier
2018-02-13 03:27:36 +09:00
parent 6d6b9e2ba6
commit cd0a650df4
21 changed files with 828 additions and 122 deletions

View File

@@ -53,7 +53,8 @@ namespace BTCPayServer.Models.StoreViewModels
public SelectList CryptoCurrencies { get; set; }
public SelectList DerivationSchemeFormats { get; set; }
public string ServerUrl { get; set; }
public void SetCryptoCurrencies(ExplorerClientProvider explorerProvider, string selectedScheme)
{
var choices = explorerProvider.GetAll().Select(o => new Format() { Name = o.Item1.CryptoCode, Value = o.Item1.CryptoCode }).ToArray();