Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Corelib
pub fn get_tx_info() -> Box
use starknet::get_tx_info; let tx_info = get_tx_info().unbox(); let account_contract_address = tx_info.account_contract_address; let chain_id = tx_info.chain_id; let nonce = tx_info.nonce; let max_fee = tx_info.max_fee; let tx_hash = tx_info.transaction_hash; let signature = tx_info.signature; let version = tx_info.version;
Was this page helpful?