lucid icon indicating copy to clipboard operation
lucid copied to clipboard

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.

Results 51 lucid issues
Sort by recently updated
recently updated
newest added

Hi! I'm creating a simple transaction to unlock some ada: ``` const redeemer = Data.to(100n); const tx = await lucid .newTx() .collectFrom([utxo], redeemer) .addSigner(await lucid.wallet.address()) .attachSpendingValidator(lucidValidator) .complete(); ``` And I'm...

Using lucid v0.10.7, I receive the following serialization error when I use `applyParamsToScript` with my script and parameter: ``` Uncaught Error: Could not serialize the data: TypeError: Cannot read properties...

It seemed that `blueprint.ts` is an implementation of [CIP-0057](https://developers.cardano.org/docs/governance/cardano-improvement-proposals/cip-0057/). But this module does not provide any exports. So the question: is it work in progress? or How to use it?

I've been thinking about coin selection recently. I looked at other coin selection algorithms and specificially [CIP-2](https://cips.cardano.org/cips/cip2/). None of these take multi assets into consideration and some other contraints like...

At JPG Store, we have been dealing with memory leaks in our code that uses either Lucid or the CML. After some research, we discovered that the CML does a...

- [x] simple extension for `tx_complete` type API to support `chain`ing of transactions - [x] added test case Example: One can chain any complete transaction by using the newly available...

I use Lucid with Nextjs 14 I have this context ``` 'use client'; import { createContext, ReactNode, Suspense, useContext, useEffect, useState, } from 'react'; import { Lucid } from 'lucid-cardano';...

hello there ! I hope some one can help me. I been using lucid in next js 12 without problems, but now my site migrated to next 13. I dont...

"lucid-cardano": "^0.10.7" node_modules/lucid-cardano/esm/src/core/libs/cardano_message_signing/cardano_message_signing_bg.wasm node_modules/lucid-cardano/esm/src/core/libs/cardano_multiplatform_lib/cardano_multiplatform_lib_bg.wasm You need to manually copy the above two files to the following folder , which can temporarily solve this problem, but you must copy it every...

I got this error. ``` Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in /home/my_project/node_modules/lucid-cardano/package.json ``` My project is based on typescript and tsconfig-path. Here is my tsconfig. ``` { "compilerOptions": {...