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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
use crate::casper_types::bytesrepr::{Bytes, ToBytes};
use crate::prelude::*;
use crate::utils::extract_event_name;
use casper_event_standard::EventInstance;
/// Represents the result of a contract call. Includes external contracts calls.
///
/// The result contains the address of the called contract, the address of the caller, the amount of gas
/// used, the result of the call, and the events emitted by the contract.
#[derive(Debug, Clone)]
pub struct CallResult {
contract_address: Address,
caller: Address,
gas_used: u64,
result: OdraResult<Bytes>,
events: BTreeMap<Address, Vec<Bytes>>,
native_events: BTreeMap<Address, Vec<Bytes>>
}
impl CallResult {
/// Creates a new `CallResult` instance with the specified parameters.
pub fn new(
contract_address: Address,
caller: Address,
gas_used: u64,
result: OdraResult<Bytes>,
events: BTreeMap<Address, Vec<Bytes>>,
native_events: BTreeMap<Address, Vec<Bytes>>
) -> Self {
Self {
contract_address,
caller,
gas_used,
result,
events,
native_events
}
}
/// Returns the result of the contract call as a [Bytes] object.
///
/// # Panics
///
/// Panics if the result is an error.
pub fn bytes(&self) -> Bytes {
match &self.result {
Ok(result) => result.clone(),
Err(error) => {
panic!("Last call result is an error: {:?}", error);
}
}
}
/// Returns the result of the contract call as a [OdraResult] object.
pub fn result(&self) -> OdraResult<Bytes> {
self.result.clone()
}
/// Returns the error of the contract call as an `OdraError` object.
pub fn error(&self) -> OdraError {
match &self.result {
Ok(_) => {
panic!("Last call result is not an error");
}
Err(error) => error.clone()
}
}
/// Returns the address of the caller.
pub fn caller(&self) -> Address {
self.caller
}
/// Returns the amount of gas used in the contract call.
pub fn gas_used(&self) -> u64 {
self.gas_used
}
/// Returns the address of the contract.
pub fn contract_address(&self) -> Address {
self.contract_address
}
/// Returns the names of the events emitted in the call.
pub fn event_names(&self, contract_address: &Address) -> Vec<String> {
self.events
.get(contract_address)
.unwrap_or(&vec![])
.iter()
.map(|event_bytes| extract_event_name(event_bytes).unwrap())
.collect()
}
pub fn native_event_names(&self, contract_address: &Address) -> Vec<String> {
self.native_events
.get(contract_address)
.unwrap_or(&vec![])
.iter()
.map(|event_bytes| extract_event_name(event_bytes).unwrap())
.collect()
}
/// Returns the events emitted by the contract in this call.
pub fn contract_events(&self, contract_address: &Address) -> Vec<Bytes> {
self.events.get(contract_address).unwrap_or(&vec![]).clone()
}
/// Returns the native events emitted by the contract in this call.
pub fn contract_native_events(&self, contract_address: &Address) -> Vec<Bytes> {
self.events.get(contract_address).unwrap_or(&vec![]).clone()
}
/// Checks if the specified event has been emitted by the contract during the call.
pub fn emitted(&self, contract_address: &Address, event_name: &str) -> bool {
self.event_names(contract_address)
.contains(&event_name.to_string())
}
/// Checks if the specified native event has been emitted by the contract during the call.
pub fn emitted_native(&self, contract_address: &Address, event_name: &str) -> bool {
self.native_event_names(contract_address)
.contains(&event_name.to_string())
}
/// Checks if the specified event instance has been emitted by the contract during the call.
pub fn emitted_event<T: ToBytes + EventInstance>(
&self,
contract_address: &Address,
event: T
) -> bool {
self.contract_events(contract_address)
.contains(&Bytes::from(event.to_bytes().unwrap()))
}
/// Checks if the specified native event instance has been emitted by the contract during the call.
pub fn emitted_native_event<T: ToBytes + EventInstance>(
&self,
contract_address: &Address,
event: T
) -> bool {
self.contract_native_events(contract_address)
.contains(&Bytes::from(event.to_bytes().unwrap()))
}
/// Returns a wrapper [ContractCallResult] object containing the current `CallResult` and the given contract address.
pub fn contract_last_call(self, contract_address: Address) -> ContractCallResult {
ContractCallResult {
call_result: self,
contract_address
}
}
}
/// Represents the result of a contract call.
///
/// It may represent not the original call but the an external call.
/// However the result and gas used come from the original call.
#[derive(Debug, Clone)]
pub struct ContractCallResult {
call_result: CallResult,
contract_address: Address
}
impl ContractCallResult {
/// Returns the address of the contract.
///
/// # Returns
///
/// The address of the contract.
pub fn contract_address(&self) -> Address {
self.contract_address
}
/// Returns the address of the callee contract.
///
/// # Returns
///
/// The address of the callee contract.
pub fn callee_contract_address(&self) -> Address {
self.call_result.contract_address()
}
/// Returns the result of the original contract call as a [Bytes] object.
///
/// # Panics
///
/// Panics if the result is an error.
pub fn callee_contract_bytes(&self) -> Bytes {
self.call_result.bytes()
}
/// Returns the result of the original contract call as a [OdraResult] object.
pub fn callee_contract_result(&self) -> OdraResult<Bytes> {
self.call_result.result()
}
/// Returns the error of the original contract call as an `OdraError` object.
pub fn callee_contract_error(&self) -> OdraError {
self.call_result.error()
}
/// Returns the address of the original contract caller.
pub fn callee_contract_caller(&self) -> Address {
self.call_result.caller()
}
/// Returns the amount of gas used in the original contract call.
pub fn callee_contract_gas_used(&self) -> u64 {
self.call_result.gas_used()
}
/// Returns the names of the events emitted by the contract call.
///
/// # Returns
///
/// A vector containing the names of the events emitted by the contract call.
pub fn event_names(&self) -> Vec<String> {
self.call_result.event_names(&self.contract_address)
}
/// Returns the names of the native events emitted by the contract call.
///
/// # Returns
///
/// A vector containing the names of the events emitted by the contract call.
pub fn native_event_names(&self) -> Vec<String> {
self.call_result.native_event_names(&self.contract_address)
}
/// Returns the events emitted by the contract call.
///
/// # Returns
///
/// A vector containing the events emitted by the contract call.
pub fn events(&self) -> Vec<Bytes> {
self.call_result.contract_events(&self.contract_address)
}
/// Returns the native events emitted by the contract call.
///
/// # Returns
///
/// A vector containing the events emitted by the contract call.
pub fn native_events(&self) -> Vec<Bytes> {
self.call_result
.contract_native_events(&self.contract_address)
}
/// Checks if an event with the specified name was emitted by the contract call.
///
/// # Arguments
///
/// * `event_name` - The name of the event to check.
///
/// # Returns
///
/// `true` if the event was emitted, otherwise `false`.
pub fn emitted(&self, event_name: &str) -> bool {
self.call_result.emitted(&self.contract_address, event_name)
}
/// Checks if a native event with the specified name was emitted by the contract call.
///
/// # Arguments
///
/// * `event_name` - The name of the event to check.
///
/// # Returns
///
/// `true` if the event was emitted, otherwise `false`.
pub fn emitted_native(&self, event_name: &str) -> bool {
self.call_result
.emitted_native(&self.contract_address, event_name)
}
/// Checks if the specified event instance was emitted by the contract call.
///
/// # Arguments
///
/// * `event` - The event instance to check.
///
/// # Returns
///
/// `true` if the event was emitted, otherwise `false`.
pub fn emitted_event<T: ToBytes + EventInstance>(&self, event: T) -> bool {
self.call_result
.emitted_event(&self.contract_address, event)
}
/// Checks if the specified native event instance was emitted by the contract call.
///
/// # Arguments
///
/// * `event` - The event instance to check.
///
/// # Returns
///
/// `true` if the event was emitted, otherwise `false`.
pub fn emitted_native_event<T: ToBytes + EventInstance>(&self, event: T) -> bool {
self.call_result
.emitted_native_event(&self.contract_address, event)
}
/// Returns the raw call result. Includes data from sub-calls to external contracts.
pub fn raw_call_result(&self) -> CallResult {
self.call_result.clone()
}
}