UNPKG

@silvana-one/prover

Version:
15 lines (14 loc) 367 B
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; }