mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-02-19 21:24:22 +01:00
25 lines
634 B
C#
25 lines
634 B
C#
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; }
|
|
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; }
|
|
}
|
|
}
|