Skip to content

Commit

Permalink
chore: refactor invoke as wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
ArniStarkware committed Aug 14, 2024
1 parent bdc47af commit 747086b
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 9 deletions.
22 changes: 14 additions & 8 deletions crates/blockifier/src/transaction/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,8 +425,7 @@ impl TransactionInfoCreator for DeployAccountTransaction {

#[derive(Debug, Clone)]
pub struct InvokeTransaction {
pub tx: starknet_api::transaction::InvokeTransaction,
pub tx_hash: TransactionHash,
pub tx: starknet_api::executable_transaction::InvokeTransaction,
// Indicates the presence of the only_query bit in the version.
pub only_query: bool,
}
Expand All @@ -436,26 +435,33 @@ impl InvokeTransaction {
invoke_tx: starknet_api::transaction::InvokeTransaction,
tx_hash: TransactionHash,
) -> Self {
Self { tx: invoke_tx, tx_hash, only_query: false }
Self {
tx: starknet_api::executable_transaction::InvokeTransaction { tx: invoke_tx, tx_hash },
only_query: false,
}
}

pub fn new_for_query(
invoke_tx: starknet_api::transaction::InvokeTransaction,
tx_hash: TransactionHash,
) -> Self {
Self { tx: invoke_tx, tx_hash, only_query: true }
Self {
tx: starknet_api::executable_transaction::InvokeTransaction { tx: invoke_tx, tx_hash },
only_query: true,
}
}

implement_inner_tx_getter_calls!(
(calldata, Calldata),
(nonce, Nonce),
(signature, TransactionSignature),
(sender_address, ContractAddress),
(tx_hash, TransactionHash),
(version, TransactionVersion)
);

pub fn tx_hash(&self) -> TransactionHash {
self.tx_hash
pub fn tx(&self) -> &starknet_api::transaction::InvokeTransaction {
self.tx.tx()
}
}

Expand All @@ -467,7 +473,7 @@ impl<S: State> Executable<S> for InvokeTransaction {
context: &mut EntryPointExecutionContext,
remaining_gas: &mut u64,
) -> TransactionExecutionResult<Option<CallInfo>> {
let entry_point_selector = match &self.tx {
let entry_point_selector = match &self.tx.tx {
starknet_api::transaction::InvokeTransaction::V0(tx) => tx.entry_point_selector,
starknet_api::transaction::InvokeTransaction::V1(_)
| starknet_api::transaction::InvokeTransaction::V3(_) => {
Expand Down Expand Up @@ -513,7 +519,7 @@ impl TransactionInfoCreator for InvokeTransaction {
only_query: self.only_query,
};

match &self.tx {
match &self.tx() {
starknet_api::transaction::InvokeTransaction::V0(tx) => {
TransactionInfo::Deprecated(DeprecatedTransactionInfo {
common_fields,
Expand Down
2 changes: 1 addition & 1 deletion crates/gateway/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ pub fn get_sender_address(tx: &AccountTransaction) -> ContractAddress {
_ => panic!("Unsupported transaction version"),
},
AccountTransaction::DeployAccount(tx) => tx.contract_address(),
AccountTransaction::Invoke(tx) => match &tx.tx {
AccountTransaction::Invoke(tx) => match &tx.tx() {
InvokeTransaction::V3(tx) => tx.sender_address,
_ => panic!("Unsupported transaction version"),
},
Expand Down
15 changes: 15 additions & 0 deletions crates/starknet_api/src/executable_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,3 +112,18 @@ pub struct InvokeTransaction {
pub tx: crate::transaction::InvokeTransaction,
pub tx_hash: TransactionHash,
}

impl InvokeTransaction {
implement_inner_tx_getter_calls!(
(calldata, Calldata),
(nonce, Nonce),
(signature, TransactionSignature),
(sender_address, ContractAddress),
(version, TransactionVersion)
);
implement_getter_calls!((tx_hash, TransactionHash));

pub fn tx(&self) -> &crate::transaction::InvokeTransaction {
&self.tx
}
}

0 comments on commit 747086b

Please sign in to comment.