diff options
author | Martin Holst Swende <martin@swende.se> | 2018-09-28 18:47:57 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 18:47:57 +0800 |
commit | dcaabfe7f6f38577c11a475b81ab9584ef61a4a5 (patch) | |
tree | 773d4ae6d97ca4badbb697cb286ff6ab6497cb9d /cmd/clef | |
parent | 2c110c81ee92290d3e5ce6134a065c8d2abfbb60 (diff) | |
download | dexon-dcaabfe7f6f38577c11a475b81ab9584ef61a4a5.tar.gz dexon-dcaabfe7f6f38577c11a475b81ab9584ef61a4a5.tar.zst dexon-dcaabfe7f6f38577c11a475b81ab9584ef61a4a5.zip |
Clef: USB hw wallet support (#17756)
* signer: implement USB interaction with hw wallets
* signer: fix failing testcases
Diffstat (limited to 'cmd/clef')
-rw-r--r-- | cmd/clef/intapi_changelog.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cmd/clef/intapi_changelog.md b/cmd/clef/intapi_changelog.md index 7d2a897ea..9e13f67d0 100644 --- a/cmd/clef/intapi_changelog.md +++ b/cmd/clef/intapi_changelog.md @@ -1,5 +1,21 @@ ### Changelog for internal API (ui-api) +### 2.1.0 + +* Add `OnInputRequired(info UserInputRequest)` to internal API. This method is used when Clef needs user input, e.g. passwords. + +The following structures are used: +```golang + UserInputRequest struct { + Prompt string `json:"prompt"` + Title string `json:"title"` + IsPassword bool `json:"isPassword"` + } + UserInputResponse struct { + Text string `json:"text"` + } +``` + ### 2.0.0 * Modify how `call_info` on a transaction is conveyed. New format: |