Add separate signing flow for PSBT

This commit is contained in:
Dennis Reimann
2021-07-26 23:28:34 +02:00
committed by Andrew Camilleri
parent d9a8443081
commit cd93a5ab6b
5 changed files with 172 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Http;
namespace BTCPayServer.Models.WalletViewModels
{
public class WalletPSBTExportViewModel : WalletPSBTReadyViewModel
{
public string CryptoCode { get; set; }
public string PSBTHex { get; set; }
public string PSBT { get; set; }
[Display(Name = "Upload PSBT from file")]
public IFormFile UploadedPSBTFile { get; set; }
}
}