Add utility tool to decode PSBT

This commit is contained in:
nicolas.dorier
2019-05-11 00:29:29 +09:00
parent 79d26b5d95
commit e853bddbc8
7 changed files with 80 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Models.WalletViewModels
{
public class WalletPSBTViewModel
{
public string Decoded { get; set; }
public string PSBT { get; set; }
}
}