Skip to main content
Module

x/lucid/mod.ts>C.TransactionOutputBuilder

Lucid is a library, which allows you to create Cardano transactions and off-chain code for your Plutus contracts in JavaScript, Deno and Node.js.
Very Popular
Latest
class C.TransactionOutputBuilder
import { C } from "https://deno.land/x/lucid@0.10.7/mod.ts";
const { TransactionOutputBuilder } = C;

We introduce a builder-pattern format for creating transaction outputs This is because:

  1. Some fields (i.e. data hash) are optional, and we can't easily expose Option<> in WASM
  2. Some fields like amounts have many ways it could be set (some depending on other field values being known)
  3. Easier to adapt as the output format gets more complicated in future Cardano releases