This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 107
/
py_transaction_execution_info.rs
283 lines (256 loc) · 8.82 KB
/
py_transaction_execution_info.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
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
use std::collections::{HashMap, HashSet};
use std::ops::Add;
use blockifier::abi::constants;
use blockifier::execution::call_info::{CallInfo, OrderedEvent, OrderedL2ToL1Message};
use blockifier::execution::entry_point::CallType;
use blockifier::transaction::objects::{
ResourcesMapping, TransactionExecutionInfo, TransactionExecutionResult,
};
use cairo_vm::serde::deserialize_program::BuiltinName;
use cairo_vm::vm::runners::cairo_runner::ExecutionResources as VmExecutionResources;
use pyo3::prelude::*;
use starknet_api::deprecated_contract_class::EntryPointType;
use crate::py_utils::{to_py_vec, PyFelt};
#[pyclass]
#[derive(Clone)]
pub struct PyTransactionExecutionInfo {
#[pyo3(get)]
pub validate_call_info: Option<PyCallInfo>,
#[pyo3(get)]
pub execute_call_info: Option<PyCallInfo>,
#[pyo3(get)]
pub fee_transfer_call_info: Option<PyCallInfo>,
#[pyo3(get)]
pub actual_fee: u128,
#[pyo3(get)]
pub actual_resources: HashMap<String, usize>,
#[pyo3(get)]
pub revert_error: Option<String>,
}
impl From<TransactionExecutionInfo> for PyTransactionExecutionInfo {
// TODO(Gilad, 1/4/2023): Check that everything can't fail, recursively.
fn from(info: TransactionExecutionInfo) -> Self {
Self {
validate_call_info: info.validate_call_info.map(PyCallInfo::from),
execute_call_info: info.execute_call_info.map(PyCallInfo::from),
fee_transfer_call_info: info.fee_transfer_call_info.map(PyCallInfo::from),
actual_fee: info.actual_fee.0,
actual_resources: info.actual_resources.0,
revert_error: info.revert_error,
}
}
}
#[pyclass]
#[derive(Clone)]
pub struct PyCallInfo {
// Call params.
#[pyo3(get)]
pub caller_address: PyFelt,
#[pyo3(get)]
pub contract_address: PyFelt,
#[pyo3(get)]
pub class_hash: Option<PyFelt>,
#[pyo3(get)]
pub entry_point_selector: PyFelt,
#[pyo3(get)]
pub entry_point_type: PyEntryPointType,
#[pyo3(get)]
pub calldata: Vec<PyFelt>,
#[pyo3(get)]
pub call_type: PyCallType,
// Call results.
#[pyo3(get)]
pub gas_consumed: u64, // Currently not in use.
#[pyo3(get)]
pub failure_flag: bool, // Currently not in use.
#[pyo3(get)]
pub retdata: Vec<PyFelt>,
#[pyo3(get)]
pub execution_resources: PyVmExecutionResources,
#[pyo3(get)]
pub events: Vec<PyOrderedEvent>,
#[pyo3(get)]
pub l2_to_l1_messages: Vec<PyOrderedL2ToL1Message>,
// Internal calls invoked by this call.
#[pyo3(get)]
pub internal_calls: Vec<PyCallInfo>,
// Information kept for following flows (fee, OS).
#[pyo3(get)]
pub storage_read_values: Vec<PyFelt>,
#[pyo3(get)]
pub accessed_storage_keys: HashSet<PyFelt>,
// Deprecated fields; maintained for backward compatibility to Python.
#[pyo3(get)]
pub code_address: Option<PyFelt>,
}
#[pyclass]
#[derive(Clone)]
pub enum PyCallType {
Call = 0,
Delegate = 1,
}
impl From<CallType> for PyCallType {
fn from(call_type: CallType) -> Self {
match call_type {
CallType::Call => PyCallType::Call,
CallType::Delegate => PyCallType::Delegate,
}
}
}
#[pyclass]
#[derive(Clone)]
pub enum PyEntryPointType {
Constructor,
External,
L1Handler,
}
impl From<EntryPointType> for PyEntryPointType {
fn from(enrty_point_type: EntryPointType) -> Self {
match enrty_point_type {
EntryPointType::Constructor => PyEntryPointType::Constructor,
EntryPointType::External => PyEntryPointType::External,
EntryPointType::L1Handler => PyEntryPointType::L1Handler,
}
}
}
impl From<CallInfo> for PyCallInfo {
fn from(call_info: CallInfo) -> Self {
let call = call_info.call;
let execution = call_info.execution;
Self {
caller_address: PyFelt::from(call.caller_address),
contract_address: PyFelt::from(call.storage_address),
class_hash: call.class_hash.map(PyFelt::from),
entry_point_selector: PyFelt(call.entry_point_selector.0),
entry_point_type: PyEntryPointType::from(call.entry_point_type),
calldata: to_py_vec(call.calldata.0.to_vec(), PyFelt),
gas_consumed: execution.gas_consumed,
failure_flag: execution.failed,
retdata: to_py_vec(execution.retdata.0, PyFelt),
execution_resources: PyVmExecutionResources::from(call_info.vm_resources),
events: to_py_vec(execution.events, PyOrderedEvent::from),
l2_to_l1_messages: to_py_vec(execution.l2_to_l1_messages, PyOrderedL2ToL1Message::from),
internal_calls: to_py_vec(call_info.inner_calls, PyCallInfo::from),
storage_read_values: to_py_vec(call_info.storage_read_values, PyFelt),
accessed_storage_keys: call_info
.accessed_storage_keys
.into_iter()
.map(|storage_key| PyFelt(*storage_key.0.key()))
.collect(),
call_type: PyCallType::from(call.call_type),
code_address: call.code_address.map(PyFelt::from),
}
}
}
#[pyclass]
#[derive(Clone)]
pub struct PyOrderedEvent {
#[pyo3(get)]
pub order: usize,
#[pyo3(get)]
pub keys: Vec<PyFelt>,
#[pyo3(get)]
pub data: Vec<PyFelt>,
}
impl From<OrderedEvent> for PyOrderedEvent {
fn from(ordered_event: OrderedEvent) -> Self {
let keys = to_py_vec(ordered_event.event.keys, |x| PyFelt(x.0));
let data = to_py_vec(ordered_event.event.data.0, PyFelt);
Self { order: ordered_event.order, keys, data }
}
}
#[pyclass]
#[derive(Clone)]
pub struct PyOrderedL2ToL1Message {
#[pyo3(get)]
pub order: usize,
#[pyo3(get)]
pub to_address: PyFelt,
#[pyo3(get)]
pub payload: Vec<PyFelt>,
}
impl From<OrderedL2ToL1Message> for PyOrderedL2ToL1Message {
fn from(ordered_message: OrderedL2ToL1Message) -> Self {
let payload = to_py_vec(ordered_message.message.payload.0, PyFelt);
Self {
order: ordered_message.order,
to_address: PyFelt::from(ordered_message.message.to_address),
payload,
}
}
}
#[pyclass]
#[derive(Clone, Default)]
pub struct PyVmExecutionResources {
#[pyo3(get)]
pub n_steps: usize,
#[pyo3(get)]
pub builtin_instance_counter: HashMap<String, usize>,
#[pyo3(get)]
pub n_memory_holes: usize,
}
impl From<VmExecutionResources> for PyVmExecutionResources {
fn from(vm_resources: VmExecutionResources) -> Self {
Self {
n_steps: vm_resources.n_steps,
builtin_instance_counter: vm_resources.builtin_instance_counter,
n_memory_holes: vm_resources.n_memory_holes,
}
}
}
#[pyclass]
#[derive(Clone, Default)]
pub struct PyBouncerInfo {
#[pyo3(get)]
pub state_diff_size: usize, // The number of felts needed to store the state diff.
#[pyo3(get)]
pub l1_gas_amount: usize,
#[pyo3(get)]
pub message_segment_length: usize, // The number of felts needed to store L1<>L2 messages.
#[pyo3(get)]
pub execution_resources: PyVmExecutionResources,
}
impl PyBouncerInfo {
pub fn calculate(
additional_os_resources: VmExecutionResources,
actual_resources: &ResourcesMapping,
message_segment_length: usize,
state_diff_size: usize,
) -> TransactionExecutionResult<Self> {
let builtin_ordered_list = vec![
BuiltinName::output,
BuiltinName::pedersen,
BuiltinName::range_check,
BuiltinName::ecdsa,
BuiltinName::bitwise,
BuiltinName::ec_op,
BuiltinName::keccak,
BuiltinName::poseidon,
];
let builtin_instance_counter: HashMap<String, usize> = builtin_ordered_list
.iter()
.map(|name| {
(name.name().to_string(), *actual_resources.0.get(name.name()).unwrap_or(&0))
})
.collect();
let actual_resources_execution_resources = VmExecutionResources {
n_steps: *actual_resources.0.get(constants::N_STEPS_RESOURCE).unwrap_or(&0),
n_memory_holes: *actual_resources.0.get("n_memory_holes").unwrap_or(&0),
builtin_instance_counter,
};
let mut merged_resources =
additional_os_resources.add(&actual_resources_execution_resources);
merged_resources.n_steps += merged_resources.n_memory_holes;
merged_resources.n_memory_holes = 0;
let execution_resources = PyVmExecutionResources::from(merged_resources);
Ok(Self {
state_diff_size,
l1_gas_amount: *actual_resources
.0
.get("l1_gas_usage")
.expect("Invalid Transaction Execution Info. Field l1_gas_usage was not found."),
message_segment_length,
execution_resources,
})
}
}