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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
use std::convert::TryFrom;
use crate::Error;
use diem_client::BlockingClient;
use diem_types::{
account_address::AccountAddress, account_config, account_state::AccountState,
account_state_blob::AccountStateBlob, on_chain_config::config_address,
transaction::Transaction, validator_config::ValidatorConfig, validator_info::ValidatorInfo,
};
pub trait DiemInterface {
fn diem_timestamp(&self) -> Result<u64, Error>;
fn last_reconfiguration(&self) -> Result<u64, Error>;
fn retrieve_sequence_number(&self, account: AccountAddress) -> Result<u64, Error>;
fn submit_transaction(&self, transaction: Transaction) -> Result<(), Error>;
fn retrieve_validator_config(&self, account: AccountAddress) -> Result<ValidatorConfig, Error>;
fn retrieve_validator_info(&self, account: AccountAddress) -> Result<ValidatorInfo, Error>;
fn retrieve_account_state(&self, account: AccountAddress) -> Result<AccountState, Error>;
}
#[derive(Clone)]
pub struct JsonRpcDiemInterface {
client: BlockingClient,
}
impl JsonRpcDiemInterface {
pub fn new(json_rpc_endpoint: String) -> Self {
Self {
client: BlockingClient::new(json_rpc_endpoint),
}
}
}
impl DiemInterface for JsonRpcDiemInterface {
fn diem_timestamp(&self) -> Result<u64, Error> {
let account = account_config::diem_root_address();
let diem_timestamp_resource = self
.retrieve_account_state(account)?
.get_diem_timestamp_resource();
match diem_timestamp_resource {
Ok(timestamp_resource) => timestamp_resource
.map(|timestamp_resource| timestamp_resource.diem_timestamp.microseconds)
.ok_or_else(|| {
Error::DataDoesNotExist(format!(
"DiemTimestampResource not found for account: {:?}",
account
))
}),
e => Err(Error::UnknownError(format!("{:?}", e))),
}
}
fn last_reconfiguration(&self) -> Result<u64, Error> {
let account = config_address();
let configuration_resource = self
.retrieve_account_state(account)?
.get_configuration_resource();
match configuration_resource {
Ok(config_resource) => config_resource
.map(|config_resource| config_resource.last_reconfiguration_time())
.ok_or_else(|| {
Error::DataDoesNotExist(format!(
"ConfigurationResource not found for account: {:?}",
account
))
}),
e => Err(Error::UnknownError(format!("{:?}", e))),
}
}
fn retrieve_sequence_number(&self, account: AccountAddress) -> Result<u64, Error> {
let account_resource = self.retrieve_account_state(account)?.get_account_resource();
match account_resource {
Ok(account_resource) => account_resource
.map(|account_resource| account_resource.sequence_number())
.ok_or_else(|| {
Error::DataDoesNotExist(format!(
"AccountResource not found for account: {:?}",
account
))
}),
e => Err(Error::UnknownError(format!("{:?}", e))),
}
}
fn submit_transaction(&self, transaction: Transaction) -> Result<(), Error> {
if let Transaction::UserTransaction(signed_txn) = transaction {
self.client
.submit(&signed_txn)
.map(diem_client::Response::into_inner)
.map_err(|e| {
Error::UnknownError(format!(
"Failed to submit signed transaction. Error: {:?}",
e,
))
})
} else {
Err(Error::UnknownError(format!(
"Unable to submit a transaction type that is not a SignedTransaction: {:?}",
transaction
)))
}
}
fn retrieve_validator_config(&self, account: AccountAddress) -> Result<ValidatorConfig, Error> {
let validator_config_resource = self
.retrieve_account_state(account)?
.get_validator_config_resource();
match validator_config_resource {
Ok(config_resource) => config_resource
.and_then(|config_resource| config_resource.validator_config)
.ok_or_else(|| {
Error::DataDoesNotExist(format!(
"ValidatorConfigResource not found for account: {:?}",
account
))
}),
e => Err(Error::UnknownError(format!("{:?}", e))),
}
}
fn retrieve_validator_info(&self, account: AccountAddress) -> Result<ValidatorInfo, Error> {
let validator_set_account = account_config::validator_set_address();
let validator_set = self
.retrieve_account_state(validator_set_account)?
.get_validator_set();
match validator_set {
Ok(validator_set) => match validator_set {
Some(validator_set) => validator_set
.payload()
.iter()
.find(|validator_info| validator_info.account_address() == &account)
.cloned()
.ok_or(Error::ValidatorInfoNotFound(account)),
None => Err(Error::DataDoesNotExist(format!(
"ValidatorSet not found for account: {:?}",
account
))),
},
Err(e) => Err(Error::UnknownError(format!("{:?}", e))),
}
}
fn retrieve_account_state(&self, account: AccountAddress) -> Result<AccountState, Error> {
let account_state = self
.client
.get_account_state_with_proof(account, None, None)?
.into_inner();
let blob = account_state
.blob
.ok_or_else(|| Error::UnknownError("No validator set".to_string()))?;
let account_state_blob = AccountStateBlob::from(bcs::from_bytes::<Vec<u8>>(&blob)?);
let account_state = AccountState::try_from(&account_state_blob)?;
Ok(account_state)
}
}