mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
eb54a18fcd
* Allow signing a PSBT with an extkey/wif or mnemonic seed * reword things * small text
18 lines
491 B
C#
18 lines
491 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace BTCPayServer.Models.WalletViewModels
|
|
{
|
|
public class SignWithSeedViewModel
|
|
{
|
|
[Required]
|
|
public string PSBT { get; set; }
|
|
[Required][Display(Name = "Seed(12/24 word mnemonic seed) Or HD private key(xprv...)")]
|
|
public string SeedOrKey { get; set; }
|
|
|
|
[Display(Name = "Optional seed passphrase")]
|
|
public string Passphrase { get; set; }
|
|
|
|
public bool Send { get; set; }
|
|
}
|
|
}
|