Skip to content
This repository was archived by the owner on Aug 21, 2024. It is now read-only.

Commit 83c52e5

Browse files
committed
Add a query version bit.
1 parent 726d32d commit 83c52e5

10 files changed

+247
-70
lines changed

crates/blockifier/src/transaction/account_transaction.rs

+100-31
Large diffs are not rendered by default.

crates/blockifier/src/transaction/account_transactions_test.rs

+16-12
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ fn create_test_init_data(
101101
);
102102

103103
let account_tx = AccountTransaction::DeployAccount(deploy_account_tx);
104-
account_tx.execute(&mut state, &block_context, true, true).unwrap();
104+
account_tx.execute(&mut state, &block_context, true, true, false).unwrap();
105105

106106
// Declare a contract.
107107
let contract_class = ContractClassV0::from_file(TEST_CONTRACT_CAIRO0_PATH).into();
@@ -116,7 +116,7 @@ fn create_test_init_data(
116116
)
117117
.unwrap(),
118118
);
119-
account_tx.execute(&mut state, &block_context, true, true).unwrap();
119+
account_tx.execute(&mut state, &block_context, true, true, false).unwrap();
120120

121121
// Deploy a contract using syscall deploy.
122122
let entry_point_selector = selector_from_name("deploy_contract");
@@ -171,7 +171,7 @@ fn test_fee_enforcement(
171171

172172
let account_tx = AccountTransaction::DeployAccount(deploy_account_tx);
173173
let enforce_fee = account_tx.enforce_fee();
174-
let result = account_tx.execute(&mut state, &block_context, true, true);
174+
let result = account_tx.execute(&mut state, &block_context, true, true, false);
175175
assert_eq!(result.is_err(), enforce_fee);
176176
}
177177
}
@@ -306,7 +306,8 @@ fn test_revert_invoke(
306306
);
307307

308308
let account_tx = AccountTransaction::DeployAccount(deploy_account_tx);
309-
let deploy_execution_info = account_tx.execute(&mut state, &block_context, true, true).unwrap();
309+
let deploy_execution_info =
310+
account_tx.execute(&mut state, &block_context, true, true, false).unwrap();
310311

311312
// Invoke a function from the newly deployed contract, that changes the state.
312313
let storage_key = stark_felt!(9_u8);
@@ -374,7 +375,7 @@ fn test_fail_deploy_account(block_context: BlockContext) {
374375
&mut NonceManager::default(),
375376
);
376377
let deploy_address = deploy_account_tx.get_address_of_deploy().unwrap();
377-
deploy_account_tx.execute(&mut state, &block_context, true, true).unwrap_err();
378+
deploy_account_tx.execute(&mut state, &block_context, true, true, false).unwrap_err();
378379

379380
// Assert nonce and balance are unchanged, and that no contract was deployed at the address.
380381
assert_eq!(state.get_nonce_at(deployed_account_address).unwrap(), Nonce(stark_felt!(0_u8)));
@@ -416,7 +417,7 @@ fn test_fail_declare(max_fee: Fee, #[from(create_test_init_data)] init_data: Tes
416417
);
417418

418419
// Fail execution, assert nonce and balance are unchanged.
419-
declare_account_tx.execute(&mut state, &block_context, true, true).unwrap_err();
420+
declare_account_tx.execute(&mut state, &block_context, true, true, false).unwrap_err();
420421
assert_eq!(state.get_nonce_at(account_address).unwrap(), next_nonce);
421422
assert_eq!(
422423
state.get_fee_token_balance(&block_context, &account_address).unwrap(),
@@ -670,6 +671,7 @@ fn test_max_fee_to_max_steps_conversion(
670671
stark_felt!(1_u8), // Calldata length.
671672
stark_felt!(25_u8) // Calldata: arg.
672673
];
674+
let simulate = false;
673675

674676
// First invocation of `with_arg` gets the exact pre-calculated actual fee as max_fee.
675677
let account_tx1 = account_invoke_tx(
@@ -680,10 +682,11 @@ fn test_max_fee_to_max_steps_conversion(
680682
);
681683
let execution_context1 = EntryPointExecutionContext::new_invoke(
682684
&block_context,
683-
&account_tx1.get_account_transaction_context(),
685+
&account_tx1.get_account_transaction_context(simulate),
684686
);
685687
let max_steps_limit1 = execution_context1.vm_run_resources.get_n_steps();
686-
let tx_execution_info1 = account_tx1.execute(&mut state, &block_context, true, true).unwrap();
688+
let tx_execution_info1 =
689+
account_tx1.execute(&mut state, &block_context, true, true, simulate).unwrap();
687690
let n_steps1 = tx_execution_info1.actual_resources.0.get("n_steps").unwrap();
688691

689692
// Second invocation of `with_arg` gets twice the pre-calculated actual fee as max_fee.
@@ -695,10 +698,11 @@ fn test_max_fee_to_max_steps_conversion(
695698
);
696699
let execution_context2 = EntryPointExecutionContext::new_invoke(
697700
&block_context,
698-
&account_tx2.get_account_transaction_context(),
701+
&account_tx2.get_account_transaction_context(simulate),
699702
);
700703
let max_steps_limit2 = execution_context2.vm_run_resources.get_n_steps();
701-
let tx_execution_info2 = account_tx2.execute(&mut state, &block_context, true, true).unwrap();
704+
let tx_execution_info2 =
705+
account_tx2.execute(&mut state, &block_context, true, true, simulate).unwrap();
702706
let n_steps2 = tx_execution_info2.actual_resources.0.get("n_steps").unwrap();
703707

704708
// Test that steps limit doubles as max_fee doubles, but actual consumed steps and fee remains.
@@ -799,7 +803,7 @@ fn write_and_transfer(
799803
*block_context.fee_token_address.0.key()
800804
];
801805
let account_tx = account_invoke_tx(execute_calldata, account_address, nonce_manager, max_fee);
802-
account_tx.execute(state, block_context, true, true).unwrap()
806+
account_tx.execute(state, block_context, true, true, false).unwrap()
803807
}
804808

805809
/// Tests that when a transaction drains an account's balance before fee transfer, the execution is
@@ -845,7 +849,7 @@ fn test_revert_on_overdraft(
845849
let approve_tx: AccountTransaction =
846850
account_invoke_tx(approve_calldata, account_address, &mut nonce_manager, max_fee);
847851
let approval_execution_info =
848-
approve_tx.execute(&mut state, &block_context, true, true).unwrap();
852+
approve_tx.execute(&mut state, &block_context, true, true, false).unwrap();
849853
assert!(!approval_execution_info.is_reverted());
850854

851855
// Transfer a valid amount of funds to compute the cost of a successful

crates/blockifier/src/transaction/constants.rs

+4
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,7 @@ pub const FELT_TRUE: u64 = 1;
1212

1313
// Expected return value of a `validate` entry point: `VALID`.
1414
pub const VALIDATE_RETDATA: &str = "0x56414c4944";
15+
16+
// TODO(Noa, 14/11/2023): Replace SIMULATE_VERSION_BASE_BIT with a lazy calculation.
17+
// pub static SIMULATE_VERSION_BASE: Lazy<BigUint> = ...
18+
pub const SIMULATE_VERSION_BASE_BIT: u32 = 128;

crates/blockifier/src/transaction/objects.rs

+8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
use std::collections::{HashMap, HashSet};
22

33
use itertools::concat;
4+
use num_bigint::BigUint;
45
use starknet_api::core::{ClassHash, ContractAddress, Nonce};
56
use starknet_api::hash::StarkFelt;
67
use starknet_api::stark_felt;
78
use starknet_api::transaction::{Fee, TransactionHash, TransactionSignature, TransactionVersion};
89

10+
use super::transaction_utils::biguint_to_felt;
911
use crate::execution::entry_point::CallInfo;
12+
use crate::transaction::constants::SIMULATE_VERSION_BASE_BIT;
1013
use crate::transaction::errors::TransactionExecutionError;
1114

1215
pub type TransactionExecutionResult<T> = Result<T, TransactionExecutionError>;
@@ -25,6 +28,11 @@ pub struct AccountTransactionContext {
2528
impl AccountTransactionContext {
2629
pub fn is_v0(&self) -> bool {
2730
self.version == TransactionVersion(stark_felt!(0_u8))
31+
|| self.version
32+
== TransactionVersion(
33+
biguint_to_felt(BigUint::from(2_u8).pow(SIMULATE_VERSION_BASE_BIT))
34+
.expect("`SIMULATE_VERSION_BASE should` be a valid TransactionVersion"),
35+
)
2836
}
2937
}
3038

crates/blockifier/src/transaction/test_utils.rs

+1
Original file line numberDiff line numberDiff line change
@@ -196,5 +196,6 @@ pub fn run_invoke_tx(
196196
block_context,
197197
true,
198198
true,
199+
false,
199200
)
200201
}

crates/blockifier/src/transaction/transaction_execution.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ impl<S: StateReader> ExecutableTransaction<S> for L1HandlerTransaction {
6969
block_context: &BlockContext,
7070
_charge_fee: bool,
7171
_validate: bool,
72+
_simulate: bool,
7273
) -> TransactionExecutionResult<TransactionExecutionInfo> {
7374
let tx = &self.tx;
7475
let tx_context = AccountTransactionContext {
@@ -124,13 +125,14 @@ impl<S: StateReader> ExecutableTransaction<S> for Transaction {
124125
block_context: &BlockContext,
125126
charge_fee: bool,
126127
validate: bool,
128+
simulate: bool,
127129
) -> TransactionExecutionResult<TransactionExecutionInfo> {
128130
match self {
129131
Self::AccountTransaction(account_tx) => {
130-
account_tx.execute_raw(state, block_context, charge_fee, validate)
132+
account_tx.execute_raw(state, block_context, charge_fee, validate, simulate)
131133
}
132134
Self::L1HandlerTransaction(tx) => {
133-
tx.execute_raw(state, block_context, charge_fee, validate)
135+
tx.execute_raw(state, block_context, charge_fee, validate, simulate)
134136
}
135137
}
136138
}

crates/blockifier/src/transaction/transaction_utils.rs

+13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
use std::collections::HashMap;
22

33
use cairo_vm::vm::runners::builtin_runner::SEGMENT_ARENA_BUILTIN_NAME;
4+
use num_bigint::BigUint;
5+
use starknet_api::hash::StarkFelt;
46

57
use crate::abi::constants;
68
use crate::execution::entry_point::{CallInfo, ExecutionResources};
@@ -62,3 +64,14 @@ pub fn calculate_tx_resources(
6264
pub fn update_remaining_gas(remaining_gas: &mut u64, call_info: &CallInfo) {
6365
*remaining_gas -= call_info.execution.gas_consumed;
6466
}
67+
68+
// TODO: Convert to a `TryFrom` cast and put in starknet-api (In StarkFelt).
69+
pub fn biguint_to_felt(biguint: BigUint) -> TransactionExecutionResult<StarkFelt> {
70+
let biguint_hex = format!("{biguint:#x}");
71+
Ok(StarkFelt::try_from(&*biguint_hex)?)
72+
}
73+
74+
// TODO: Convert to a `Into` cast and put in starknet-api (In StarkFelt).
75+
pub fn felt_to_biguint(felt: StarkFelt) -> BigUint {
76+
BigUint::from_bytes_be(felt.bytes())
77+
}

crates/blockifier/src/transaction/transactions.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,17 @@ pub trait ExecutableTransaction<S: StateReader>: Sized {
3333
block_context: &BlockContext,
3434
charge_fee: bool,
3535
validate: bool,
36+
simulate: bool,
3637
) -> TransactionExecutionResult<TransactionExecutionInfo> {
3738
log::debug!("Executing Transaction...");
3839
let mut transactional_state = CachedState::create_transactional(state);
39-
let execution_result =
40-
self.execute_raw(&mut transactional_state, block_context, charge_fee, validate);
40+
let execution_result = self.execute_raw(
41+
&mut transactional_state,
42+
block_context,
43+
charge_fee,
44+
validate,
45+
simulate,
46+
);
4147

4248
match execution_result {
4349
Ok(value) => {
@@ -61,6 +67,7 @@ pub trait ExecutableTransaction<S: StateReader>: Sized {
6167
block_context: &BlockContext,
6268
charge_fee: bool,
6369
validate: bool,
70+
simulate: bool,
6471
) -> TransactionExecutionResult<TransactionExecutionInfo>;
6572
}
6673

0 commit comments

Comments
 (0)