-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: calculate commitments within the block (#251)
* fix: support txs without signature * feat: calculate commitments within the block
- Loading branch information
Showing
9 changed files
with
216 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
use std::collections::HashMap; | ||
|
||
use primitive_types::H160; | ||
|
||
use crate::core::{ContractAddress, EthAddress}; | ||
use crate::hash::StarkFelt; | ||
use crate::transaction::{ | ||
Builtin, ExecutionResources, Fee, InvokeTransactionOutput, L2ToL1Payload, MessageToL1, | ||
RevertedTransactionExecutionStatus, TransactionExecutionStatus, TransactionOutput, | ||
}; | ||
|
||
pub(crate) fn get_transaction_output() -> TransactionOutput { | ||
let execution_status = | ||
TransactionExecutionStatus::Reverted(RevertedTransactionExecutionStatus { | ||
revert_reason: "aborted".to_string(), | ||
}); | ||
let execution_resources = ExecutionResources { | ||
steps: 98, | ||
builtin_instance_counter: HashMap::from([(Builtin::Bitwise, 11), (Builtin::EcOp, 22)]), | ||
memory_holes: 76, | ||
da_l1_gas_consumed: 54, | ||
da_l1_data_gas_consumed: 32, | ||
}; | ||
TransactionOutput::Invoke(InvokeTransactionOutput { | ||
actual_fee: Fee(99804), | ||
messages_sent: vec![generate_message_to_l1(34), generate_message_to_l1(56)], | ||
events: vec![], | ||
execution_status, | ||
execution_resources, | ||
}) | ||
} | ||
|
||
pub(crate) fn generate_message_to_l1(seed: u64) -> MessageToL1 { | ||
MessageToL1 { | ||
from_address: ContractAddress::from(seed), | ||
to_address: EthAddress(H160::from_low_u64_be(seed + 1)), | ||
payload: L2ToL1Payload(vec![StarkFelt::from(seed + 2), StarkFelt::from(seed + 3)]), | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.