Implement BTCPayServer vault derivation scheme import

This commit is contained in:
nicolas.dorier
2019-11-11 14:22:04 +09:00
parent 869ba745b2
commit 1a8d6e5c05
19 changed files with 1079 additions and 24 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.WalletViewModels
{
public class WalletSendVaultModel
{
public string WalletId { get; set; }
public string PSBT { get; set; }
public string WebsocketPath { get; set; }
}
}