Plutus core

Selection of Plutus Core engine.

Lucid has a built-in Plutus core engine, powered by Aiken. However, if you're using the Blockfrost provider, you have the option to use the Haskell Plutus core engine instead. To do so, simply set the nativeUplc parameter to false:

const tx = await lucid.newTx()
  .collectFrom([scriptUtxo], Data.void())
  .complete({ nativeUplc: false });