UNPKG

@provablehq/sdk

Version:

A Software Development Kit (SDK) for Zero-Knowledge Transactions

12 lines (11 loc) 383 B
import { DeploymentJSON } from "../deployment/deploymentJSON.js"; import { ExecutionJSON, FeeExecutionJSON } from "../execution/executionJSON.js"; import { OwnerJSON } from "../owner/ownerJSON.js"; export interface TransactionJSON { type: string; id: string; deployment?: DeploymentJSON; execution?: ExecutionJSON; fee: FeeExecutionJSON; owner?: OwnerJSON; }