Skip to main content
Module

x/lucid/mod.ts>OutputData

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
Go to Latest
type alias OutputData
Re-export
import { type OutputData } from "https://deno.land/x/lucid@0.7.7/mod.ts";

asHash will add the datum hash to the output and the datum to the witness set. inline will add the datum to the output. scriptRef will add any script to the output. You can only specify asHash or inline, not both at the same time.

definition: { asHash?: Datum; inline?: Datum; scriptRef?: Script; }