mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
WalletPSBTReady show the summary of the transaction, signing with the seed respect the keypath of the wallet settings
This commit is contained in:
@@ -8,6 +8,20 @@ namespace BTCPayServer.Models.WalletViewModels
|
||||
public class WalletPSBTReadyViewModel
|
||||
{
|
||||
public string PSBT { get; set; }
|
||||
public string SigningKey { get; set; }
|
||||
public string SigningKeyPath { get; set; }
|
||||
public List<string> Errors { get; set; }
|
||||
|
||||
public class DestinationViewModel
|
||||
{
|
||||
public bool Positive { get; set; }
|
||||
public string Destination { get; set; }
|
||||
public string Balance { get; set; }
|
||||
}
|
||||
|
||||
public string BalanceChange { get; set; }
|
||||
public bool Positive { get; set; }
|
||||
public List<DestinationViewModel> Destinations { get; set; } = new List<DestinationViewModel>();
|
||||
public string Fee { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user