sui_devInspectTransactionBlock

Runs a transaction in dev-inspect mode. This allows testing nearly any transaction with any arguments. Detailed results are provided, including execution effects and return values. Note: gas is not charged, but usage is calculated.

⚠ This endpoint is only available with Blast access.

Path parameters

apiKeystringRequired

Request

This endpoint expects an object.
sender_addressstringRequired
The address that initiates the dev inspect transaction.
tx_bytesstringRequired

Base64-encoded BCS transaction kind (excluding gas info).

gas_pricestringRequired

Simulated gas price to be used during dev inspect (gas is not deducted).

epochstringRequired
The epoch context in which to perform the inspection.

Response

Simulated transaction inspection result.
effectsobject or null
The simulated effects of the transaction.
eventslist of objects or null
Events that would be emitted if the transaction were run.
errorstring or null
Execution error message, if any.
resultslist of objects or null
Return values and execution results for Move calls.