btcpayserver/BTCPayServer/Models/WalletViewModels/SigningContextModel.cs

25 lines
634 B
C#
Raw Normal View History

using NBitcoin;
namespace BTCPayServer.Models.WalletViewModels
{
public class SigningContextModel
{
public SigningContextModel()
{
}
public SigningContextModel(PSBT psbt)
{
PSBT = psbt.ToBase64();
}
public string PSBT { get; set; }
public string OriginalPSBT { get; set; }
2020-06-17 21:43:56 +09:00
public string PayJoinBIP21 { get; set; }
public bool? EnforceLowR { get; set; }
public string ChangeAddress { get; set; }
public string PendingTransactionId { get; set; }
public long BalanceChangeFromReplacement { get; set; }
}
}