Vladimir Kalnitsky
Vladimir Kalnitsky
Currently, we are printing the results reversed, so that the most relevant ones appear last. That makes sense, because that way there's no need to scroll. However, using `$PAGER` when...
As for now we output raw markdown, but this should be changed. We need to wrap one of Node markdown renderers into a PS interface. Candidates are: https://github.com/trabus/markdown-it-terminal https://github.com/mikaelbr/marked-terminal The...
This issue is to track changes in the PureScript compiler that affect `docs.json` format and may break things for us. 1. https://github.com/purescript/purescript/pull/3715
One way to resolve issues similar to #392, #382 and #335 once and for all is to give up on the ability to upload packages directly and just reuse package-sets...
I see lots of these errors every time I do `M-x psci`. However, `pulp psci` from the project root works just fine. I've managed to solve this problem by customizing...
This is a compatibility table between JSON representation layouts in CSL and [the cardano json-schema CIP](https://github.com/cardano-foundation/CIPs/pull/766/). (CIP-0116). ---- ### Why is this here? The goal is to eventually synchronize CSL's...
The value is moved and freed. Repro: ``` const csl = await import ('@emurgo/cardano-serialization-lib-nodejs'); let body = csl.TransactionBody.new( csl.TransactionInputs.new(), csl.TransactionOutputs.new(), csl.BigNum.from_str('1') ); let interval = csl.BigNum.one(); body.set_validity_start_interval_bignum(interval); let witnessSet =...