Skip to main content

Transcript

@midnight-ntwrk/compact-runtime v0.14.0


@midnight-ntwrk/compact-runtime / Transcript

Type Alias: Transcript<R>

type Transcript<R> = {
effects: Effects;
gas: RunningCost;
program: Op<R>[];
};

A transcript of operations, to be recorded in a transaction

Type Parameters

R

R

Properties

effects

effects: Effects;

The effects of the transcript, which are checked before execution, and must match those constructed by program


gas

gas: RunningCost;

The execution budget for this transcript, which program must not exceed


program

program: Op<R>[];

The sequence of operations that this transcript captured