From dcaabfe7f6f38577c11a475b81ab9584ef61a4a5 Mon Sep 17 00:00:00 2001 From: Martin Holst Swende Date: Fri, 28 Sep 2018 12:47:57 +0200 Subject: Clef: USB hw wallet support (#17756) * signer: implement USB interaction with hw wallets * signer: fix failing testcases --- cmd/clef/intapi_changelog.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'cmd/clef/intapi_changelog.md') 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: -- cgit