23 lines
272 B
C#
23 lines
272 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BTCPayServer.Hwi
|
|
{
|
|
public enum HwiCommands
|
|
{
|
|
Enumerate,
|
|
SignTx,
|
|
GetXpub,
|
|
SignMessage,
|
|
GetKeypool,
|
|
DisplayAddress,
|
|
Setup,
|
|
Wipe,
|
|
Restore,
|
|
Backup,
|
|
PromptPin,
|
|
SendPin
|
|
}
|
|
}
|