@silvana-one/prover
Version:
Silvana Prover
15 lines (14 loc) • 367 B
TypeScript
import { JobMetadata } from "./metadata.js";
/**
* Human-readable transaction metadata
* jobMetadata: the job metadata
* events: the events
* actions: the actions
* custom: the custom metadata defined by the developer
*/
export interface TransactionMetadata {
jobMetadata?: JobMetadata;
events?: object[];
actions?: object[];
custom?: object;
}