edict_replay
Re-execute WebAssembly modules with recorded replay tokens to reproduce runtime behavior deterministically. Replays non-deterministic host responses for debugging and verification against known execution traces.
Instructions
Re-execute a WASM module using a previously recorded replay token for deterministic reproduction of runtime behavior. All non-deterministic host responses (random values, timestamps, HTTP responses, file IO) are replayed from the token instead of calling real host functions. Use this to reproduce exact failures or verify fixes against known execution traces.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| wasmBase64 | Yes | The base64 encoded WebAssembly module to execute | |
| replayToken | Yes | Replay token from a previous edict_run call with record: true | |
| limits | No | Optional execution limits |