tycho_simulation/evm/protocol/vm/
decoder.rs1use std::{
2 collections::{HashMap, HashSet},
3 str::FromStr,
4};
5
6use alloy::primitives::{Address, U256};
7use revm::state::Bytecode;
8use tycho_client::feed::{synchronizer::ComponentWithState, BlockHeader};
9use tycho_common::{models::token::Token, simulation::errors::SimulationError, Bytes};
10
11use super::{state::EVMPoolState, state_builder::EVMPoolStateBuilder};
12use crate::{
13 evm::{
14 engine_db::{tycho_db::PreCachedDB, SHARED_TYCHO_DB},
15 protocol::vm::{constants::get_adapter_file, utils::json_deserialize_address_list},
16 simulation::BlockEnvOverrides,
17 },
18 protocol::{
19 errors::InvalidSnapshotError,
20 models::{DecoderContext, TryFromWithBlock},
21 },
22};
23
24impl TryFromWithBlock<ComponentWithState, BlockHeader> for EVMPoolState<PreCachedDB> {
25 type Error = InvalidSnapshotError;
26
27 #[allow(deprecated)]
32 async fn try_from_with_header(
33 snapshot: ComponentWithState,
34 _block: BlockHeader,
35 account_balances: &HashMap<Bytes, HashMap<Bytes, Bytes>>,
36 all_tokens: &HashMap<Bytes, Token>,
37 decoder_context: &DecoderContext,
38 ) -> Result<Self, Self::Error> {
39 let id = snapshot.component.id.clone();
40 let tokens = snapshot.component.tokens.clone();
41
42 let mut stateless_contracts = HashMap::new();
44 let mut index = 0;
45
46 loop {
47 let address_key = format!("stateless_contract_addr_{index}");
48 if let Some(encoded_address_bytes) = snapshot
49 .state
50 .attributes
51 .get(&address_key)
52 {
53 let encoded_address = hex::encode(encoded_address_bytes);
54 let address_hex = encoded_address
56 .strip_prefix("0x")
57 .unwrap_or(&encoded_address);
58
59 let decoded = match hex::decode(address_hex) {
60 Ok(decoded_bytes) => match String::from_utf8(decoded_bytes) {
61 Ok(decoded_string) => decoded_string,
62 Err(_) => continue,
63 },
64 Err(_) => continue,
65 };
66
67 let code_key = format!("stateless_contract_code_{index}");
68 let code = snapshot
69 .state
70 .attributes
71 .get(&code_key)
72 .map(|value| value.to_vec());
73
74 stateless_contracts.insert(decoded, code);
75 index += 1;
76 } else {
77 break;
78 }
79 }
80 let involved_contracts = snapshot
81 .component
82 .contract_addresses
83 .iter()
84 .map(|bytes: &Bytes| Address::from_slice(bytes.as_ref()))
85 .collect::<HashSet<Address>>();
86
87 let potential_rebase_tokens: HashSet<Address> = if let Some(bytes) = snapshot
88 .component
89 .static_attributes
90 .get("rebase_tokens")
91 {
92 if let Ok(vecs) = json_deserialize_address_list(bytes) {
93 vecs.into_iter()
94 .map(|addr| Address::from_slice(&addr))
95 .collect()
96 } else {
97 HashSet::new()
98 }
99 } else {
100 HashSet::new()
101 };
102
103 let self_contained_tokens: HashSet<Address> = if let Some(bytes) = snapshot
108 .component
109 .static_attributes
110 .get("self_contained_tokens")
111 {
112 if let Ok(vecs) = json_deserialize_address_list(bytes) {
113 vecs.into_iter()
114 .map(|addr| Address::from_slice(&addr))
115 .collect()
116 } else {
117 HashSet::new()
118 }
119 } else {
120 HashSet::new()
121 };
122
123 let balance_owner = snapshot
125 .state
126 .attributes
127 .get("balance_owner")
128 .map(|owner| Address::from_slice(owner.as_ref()));
129 let component_balances = snapshot
130 .state
131 .balances
132 .iter()
133 .map(|(k, v)| (Address::from_slice(k), U256::from_be_slice(v)))
134 .collect::<HashMap<_, _>>();
135 let account_balances = account_balances
136 .iter()
137 .filter(|(k, _)| involved_contracts.contains(&Address::from_slice(k)))
138 .map(|(k, v)| {
139 let addr = Address::from_slice(k);
140 let balances = v
141 .iter()
142 .map(|(k, v)| (Address::from_slice(k), U256::from_be_slice(v)))
143 .collect();
144 (addr, balances)
145 })
146 .collect::<HashMap<_, _>>();
147
148 let manual_updates = snapshot
149 .component
150 .static_attributes
151 .contains_key("manual_updates");
152
153 let protocol_name = snapshot
154 .component
155 .protocol_system
156 .strip_prefix("vm:")
157 .unwrap_or({
158 snapshot
159 .component
160 .protocol_system
161 .as_str()
162 });
163 let adapter_bytecode;
164 if let Some(adapter_bytecode_path) = &decoder_context.adapter_path {
165 let bytecode_bytes = std::fs::read(adapter_bytecode_path).map_err(|e| {
166 SimulationError::FatalError(format!(
167 "Failed to read adapter bytecode from {adapter_bytecode_path}: {e}"
168 ))
169 })?;
170 adapter_bytecode = Bytecode::new_raw(bytecode_bytes.into());
171 } else {
172 adapter_bytecode = Bytecode::new_raw(get_adapter_file(protocol_name)?.into());
173 }
174 let adapter_contract_address = Address::from_str(&format!(
175 "{hex_protocol_name:0>40}",
176 hex_protocol_name = hex::encode(protocol_name)
177 ))
178 .map_err(|_| {
179 InvalidSnapshotError::ValueError(
180 "Error converting protocol name to address".to_string(),
181 )
182 })?;
183 let mut vm_traces = false;
184 if let Some(trace) = &decoder_context.vm_traces {
185 vm_traces = *trace;
186 }
187 let block_number = snapshot
191 .state
192 .attributes
193 .get("override_block_number")
194 .map(|block_number| {
195 <[u8; 8]>::try_from(block_number.as_ref())
196 .map(u64::from_be_bytes)
197 .map_err(|_| {
198 InvalidSnapshotError::ValueError(
199 "override_block_number attribute must be an 8-byte big-endian u64"
200 .to_string(),
201 )
202 })
203 })
204 .transpose()?;
205 let block_timestamp = snapshot
206 .state
207 .attributes
208 .get("override_block_timestamp")
209 .map(|block_timestamp| {
210 <[u8; 8]>::try_from(block_timestamp.as_ref())
211 .map(u64::from_be_bytes)
212 .map_err(|_| {
213 InvalidSnapshotError::ValueError(
214 "override_block_timestamp attribute must be an 8-byte big-endian u64"
215 .to_string(),
216 )
217 })
218 })
219 .transpose()?;
220 let block_overrides = if block_number.is_some() || block_timestamp.is_some() {
221 Some(BlockEnvOverrides { number: block_number, timestamp: block_timestamp })
222 } else {
223 None
224 };
225 let mut pool_state_builder =
226 EVMPoolStateBuilder::new(id.clone(), tokens.clone(), adapter_contract_address)
227 .balances(component_balances)
228 .disable_overwrite_tokens(potential_rebase_tokens)
229 .self_contained_tokens(self_contained_tokens)
230 .account_balances(account_balances)
231 .adapter_contract_bytecode(adapter_bytecode)
232 .involved_contracts(involved_contracts)
233 .stateless_contracts(stateless_contracts)
234 .manual_updates(manual_updates)
235 .trace(vm_traces)
236 .block_overrides(block_overrides);
237
238 if let Some(balance_owner) = balance_owner {
239 pool_state_builder = pool_state_builder.balance_owner(balance_owner)
240 };
241
242 let mut pool_state = pool_state_builder
243 .build(SHARED_TYCHO_DB.clone())
244 .await
245 .map_err(InvalidSnapshotError::VMError)?;
246
247 if let Some(receiver) = decoder_context.live_override.clone() {
248 pool_state.set_live_overrides(receiver);
249 }
250
251 pool_state.set_spot_prices(all_tokens)?;
252
253 Ok(pool_state)
254 }
255}
256
257#[cfg(test)]
258mod tests {
259 use std::{collections::HashSet, fs, path::Path};
260
261 use chrono::DateTime;
262 use revm::{primitives::KECCAK_EMPTY, state::AccountInfo};
263 use serde_json::Value;
264 use tycho_common::models::{
265 protocol::{ProtocolComponent, ProtocolComponentState},
266 Chain, ChangeType,
267 };
268
269 use super::*;
270 use crate::evm::{
271 engine_db::{create_engine, engine_db_interface::EngineDatabaseInterface},
272 protocol::vm::constants::{BALANCER_V2, CURVE},
273 tycho_models::AccountUpdate,
274 };
275
276 #[test]
277 fn test_to_adapter_file_name() {
278 assert_eq!(get_adapter_file("balancer_v2").unwrap(), BALANCER_V2);
279 assert_eq!(get_adapter_file("curve").unwrap(), CURVE);
280 }
281
282 fn vm_component() -> ProtocolComponent {
283 let creation_time = DateTime::from_timestamp(1622526000, 0)
284 .unwrap()
285 .naive_utc(); let mut static_attributes: HashMap<String, Bytes> = HashMap::new();
288 static_attributes.insert("manual_updates".to_string(), Bytes::from_str("0x01").unwrap());
289
290 let dai_addr = Bytes::from_str("0x6b175474e89094c44da98b954eedeac495271d0f").unwrap();
291 let bal_addr = Bytes::from_str("0xba100000625a3754423978a60c9317c58a424e3d").unwrap();
292 let tokens = vec![dai_addr, bal_addr];
293
294 ProtocolComponent {
295 id: "0x4626d81b3a1711beb79f4cecff2413886d461677000200000000000000000011".to_string(),
296 protocol_system: "vm:balancer_v2".to_string(),
297 protocol_type_name: "balancer_v2_pool".to_string(),
298 chain: Chain::Ethereum,
299 tokens,
300 contract_addresses: vec![
301 Bytes::from_str("0xBA12222222228d8Ba445958a75a0704d566BF2C8").unwrap()
302 ],
303 static_attributes,
304 change: ChangeType::Creation,
305 creation_tx: Bytes::from_str("0x0000").unwrap(),
306 created_at: creation_time,
307 }
308 }
309
310 fn load_balancer_account_data() -> Vec<AccountUpdate> {
311 let project_root = env!("CARGO_MANIFEST_DIR");
312 let asset_path =
313 Path::new(project_root).join("tests/assets/decoder/balancer_v2_snapshot.json");
314 let json_data = fs::read_to_string(asset_path).expect("Failed to read test asset");
315 let data: Value = serde_json::from_str(&json_data).expect("Failed to parse JSON");
316
317 let accounts: Vec<AccountUpdate> = serde_json::from_value(data["accounts"].clone())
318 .expect("Expected accounts to match AccountUpdate structure");
319 accounts
320 }
321
322 #[tokio::test]
323 async fn test_try_from_with_header() {
324 let attributes: HashMap<String, Bytes> = vec![
325 (
326 "balance_owner".to_string(),
327 Bytes::from_str("0xBA12222222228d8Ba445958a75a0704d566BF2C8").unwrap(),
328 ),
329 ("override_block_number".to_string(), Bytes::from(123_u64.to_be_bytes().to_vec())),
330 ("override_block_timestamp".to_string(), Bytes::from(456_u64.to_be_bytes().to_vec())),
331 ("reserve1".to_string(), Bytes::from(200_u64.to_le_bytes().to_vec())),
332 ]
333 .into_iter()
334 .collect();
335 let tokens = [
336 Token::new(
337 &Bytes::from_str("0x6b175474e89094c44da98b954eedeac495271d0f").unwrap(),
338 "DAI",
339 18,
340 0,
341 &[Some(10_000)],
342 tycho_common::models::Chain::Ethereum,
343 100,
344 ),
345 Token::new(
346 &Bytes::from_str("0xba100000625a3754423978a60c9317c58a424e3d").unwrap(),
347 "BAL",
348 18,
349 0,
350 &[Some(10_000)],
351 tycho_common::models::Chain::Ethereum,
352 100,
353 ),
354 ]
355 .into_iter()
356 .map(|t| (t.address.clone(), t))
357 .collect::<HashMap<_, _>>();
358 let snapshot = ComponentWithState {
359 state: ProtocolComponentState {
360 component_id: "0x4626d81b3a1711beb79f4cecff2413886d461677000200000000000000000011"
361 .to_owned(),
362 attributes,
363 balances: HashMap::new(),
364 },
365 component: vm_component(),
366 component_tvl: None,
367 entrypoints: Vec::new(),
368 };
369 let block = BlockHeader::default();
371 let accounts = load_balancer_account_data();
372 let db = SHARED_TYCHO_DB.clone();
373 let engine = create_engine(db.clone(), false).unwrap();
374 for account in accounts.clone() {
375 engine
376 .state
377 .init_account(
378 account.address,
379 AccountInfo {
380 balance: account.balance.unwrap_or_default(),
381 nonce: 0u64,
382 code_hash: KECCAK_EMPTY,
383 code: account
384 .code
385 .clone()
386 .map(|arg0: Vec<u8>| Bytecode::new_raw(arg0.into())),
387 },
388 None,
389 false,
390 )
391 .expect("Failed to init account");
392 }
393 db.update(accounts, Some(block.clone()))
394 .unwrap();
395 let account_balances = HashMap::from([(
396 Bytes::from("0xBA12222222228d8Ba445958a75a0704d566BF2C8"),
397 HashMap::from([
398 (
399 Bytes::from("0x6b175474e89094c44da98b954eedeac495271d0f"),
400 Bytes::from(100_u64.to_le_bytes().to_vec()),
401 ),
402 (
403 Bytes::from("0xba100000625a3754423978a60c9317c58a424e3d"),
404 Bytes::from(100_u64.to_le_bytes().to_vec()),
405 ),
406 ]),
407 )]);
408
409 let decoder_context = DecoderContext::new();
410 let res = EVMPoolState::try_from_with_header(
411 snapshot,
412 block,
413 &account_balances,
414 &tokens,
415 &decoder_context,
416 )
417 .await
418 .unwrap();
419
420 let res_pool = res;
421
422 assert_eq!(
423 res_pool.get_balance_owner(),
424 Some(Address::from_str("0xBA12222222228d8Ba445958a75a0704d566BF2C8").unwrap())
425 );
426 let mut exp_involved_contracts = HashSet::new();
427 exp_involved_contracts
428 .insert(Address::from_str("0xBA12222222228d8Ba445958a75a0704d566BF2C8").unwrap());
429 assert_eq!(res_pool.get_involved_contracts(), exp_involved_contracts);
430 assert!(res_pool.get_manual_updates());
431 assert_eq!(
432 res_pool.get_block_overrides(),
433 Some(BlockEnvOverrides { number: Some(123), timestamp: Some(456) })
434 );
435 }
436}