-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapi.rs
147 lines (147 loc) · 4.93 KB
/
api.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/// Action Wrapper
/// There is a `call_imkey_api` method in tcx which act as a endpoint like RPC. It accepts a `ImkeyAction` param which method field is
/// the real action and param field is the real param of that method.
/// When an error occurred, the `call_imkey_api` will return a `Response` which isSuccess field be false and error field is the reason
/// which cause the error.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ImkeyAction {
#[prost(string, tag = "1")]
pub method: std::string::String,
#[prost(message, optional, tag = "2")]
pub param: ::std::option::Option<::prost_types::Any>,
}
/// A common response when error occurred.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ErrorResponse {
#[prost(bool, tag = "1")]
pub is_success: bool,
#[prost(string, tag = "2")]
pub error: std::string::String,
}
///A commonresponse when successfully ended.
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct CommonResponse {
#[prost(string, tag = "1")]
pub result: std::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AddressParam {
#[prost(string, tag = "1")]
pub chain_type: std::string::String,
#[prost(string, tag = "2")]
pub path: std::string::String,
#[prost(string, tag = "3")]
pub network: std::string::String,
#[prost(string, tag = "4")]
pub seg_wit: std::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AddressResult {
#[prost(string, tag = "1")]
pub path: std::string::String,
#[prost(string, tag = "2")]
pub chain_type: std::string::String,
#[prost(string, tag = "3")]
pub address: std::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PubKeyParam {
#[prost(string, tag = "1")]
pub chain_type: std::string::String,
#[prost(string, tag = "2")]
pub path: std::string::String,
#[prost(string, tag = "3")]
pub network: std::string::String,
#[prost(string, tag = "4")]
pub is_seg_wit: std::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PubKeyResult {
#[prost(string, tag = "1")]
pub path: std::string::String,
#[prost(string, tag = "2")]
pub chain_type: std::string::String,
#[prost(string, tag = "3")]
pub pub_key: std::string::String,
#[prost(string, tag = "4")]
pub derived_mode: std::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ExternalAddress {
#[prost(string, tag = "1")]
pub address: std::string::String,
#[prost(string, tag = "2")]
pub derived_path: std::string::String,
#[prost(string, tag = "3")]
pub r#type: std::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BitcoinWallet {
#[prost(string, tag = "1")]
pub path: std::string::String,
#[prost(string, tag = "2")]
pub chain_type: std::string::String,
#[prost(string, tag = "3")]
pub address: std::string::String,
#[prost(string, tag = "4")]
pub enc_x_pub: std::string::String,
#[prost(message, optional, tag = "5")]
pub external_address: ::std::option::Option<ExternalAddress>,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct EosWallet {
#[prost(string, tag = "1")]
pub chain_type: std::string::String,
#[prost(string, tag = "2")]
pub address: std::string::String,
#[prost(message, repeated, tag = "3")]
pub public_keys: ::std::vec::Vec<eos_wallet::PubKeyInfo>,
}
pub mod eos_wallet {
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct PubKeyInfo {
#[prost(string, tag = "1")]
pub path: std::string::String,
#[prost(string, tag = "2")]
pub derived_mode: std::string::String,
#[prost(string, tag = "3")]
pub public_key: std::string::String,
}
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct ExternalAddressParam {
#[prost(string, tag = "1")]
pub path: std::string::String,
#[prost(string, tag = "2")]
pub chain_type: std::string::String,
#[prost(string, tag = "3")]
pub network: std::string::String,
#[prost(string, tag = "4")]
pub seg_wit: std::string::String,
#[prost(int32, tag = "5")]
pub external_idx: i32,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct InitImKeyCoreXParam {
#[prost(string, tag = "1")]
pub file_dir: std::string::String,
#[prost(string, tag = "2")]
pub xpub_common_key: std::string::String,
#[prost(string, tag = "3")]
pub xpub_common_iv: std::string::String,
#[prost(bool, tag = "4")]
pub is_debug: bool,
#[prost(string, tag = "5")]
pub system: std::string::String,
}
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct BtcForkWallet {
#[prost(string, tag = "1")]
pub path: std::string::String,
#[prost(string, tag = "2")]
pub chain_type: std::string::String,
#[prost(string, tag = "3")]
pub address: std::string::String,
#[prost(string, tag = "4")]
pub enc_x_pub: std::string::String,
}