bitbox-api 0.12.0

A library to interact with BitBox hardware wallets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: Apache-2.0

syntax = "proto3";
package shiftcrypto.bitbox02;

message RebootRequest {
  enum Purpose {
    UPGRADE = 0;
    SETTINGS = 1;
  }
  Purpose purpose = 1;
}