Transcript
For the complete documentation index, see llms.txt
@midnight/ledger / 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;
실행 전에 검증되는 트랜스크립트의 효과이며, must match those constructed by program
gas
gas: RunningCost;
The execution budget for this transcript, which program must not exceed
program
program: Op<R>[];
이 트랜스크립트가 캡처한 연산 시퀀스입니다.