sui_devInspectTransactionBlock
Runs the transaction in dev-inspect mode. Which allows for nearly any transaction (or Move call) with any arguments. Detailed results are provided, including both the transaction effects and any return values.
Parameters:
sender_address< SuiAddress > -
tx_bytes< Base64 > - BCS encoded TransactionKind(as opposed to TransactionData, which include gasBudget and gasPrice)
gas_price< BigInt_for_uint64 > - Gas is not charged, but gas usage is still calculated. Default to use reference gas price
epoch< BigInt_for_uint64 > - The epoch to perform the call. Will be set from the system state object if not provided
additional_args< DevInspectArgs > - Additional arguments including gas_budget, gas_objects, gas_sponsor and skip_checks.
Returns:
evInspectResults< DevInspectResults >
Example:
Last updated