In Progress

Usage Guide

Plutus Script Re-Executor

Plutus Re-executor Usage Guide

Installation

cabal install plutus-reexecutor

Basic Usage

Trace a specific transaction:

plutus-reexec trace --tx-id TX_HASH

Output Format

{
  "txId": "abc123...",
  "scripts": [
    {
      "hash": "def456...",
      "executionUnits": { "memory": 2500000, "steps": 1000000000 },
      "logs": ["Constr 1", "Integer 42"]
    }
  ]
}