Type alias TransactionGenerationError<ProgramState>

TransactionGenerationError<ProgramState>: {
    completions: BytecodeGenerationCompletionInput[];
    errors: BytecodeGenerationErrorUnlocking<ProgramState>[];
    stage: "inputs";
    success: false;
} | {
    completions: BytecodeGenerationCompletionOutput[];
    errors: BytecodeGenerationErrorLocking<ProgramState>[];
    stage: "outputs";
    success: false;
}

Type Parameters

  • ProgramState

Type declaration

Type declaration

Generated using TypeDoc