Vladimir Kalnitsky

Results 36 comments of Vladimir Kalnitsky

Same issue with nix, see https://github.com/shlevy/nix-adt/blob/dd04b5d08eed65ecd73aafde56a78078e09f1c74/source-example.nix#L94

We are going to switch to CSL for fee calculation. https://github.com/Plutonomicon/cardano-transaction-lib/pull/866

> and cannot be attached to a transaction Just to clarify: It can be attached (we use cardano-serialization-lib) but our Tx submission fails (we use Ogmios).

These errors are coming from Dhall interpreter.

Oops, [that's right](https://github.com/purescript/spago/blob/a0e1cfa033cf6a644c07939b62bba3a74b8e38ab/src/Spago/Dhall.hs#L191), @flip111. Thanks for correction.

spacchetti/starsuit#1 is a blocker. We might add multiple tags, which will change the URL pattern.

Because we don't have everything that is in the set locally.

> have spago install actually download all libraries in the set to the cache, and only copy to .spago the ones used in the project > unless people do spago...

It looks like spago calls `purs` with `-m` argument instead of `--main` [here](https://github.com/purescript/spago/blob/aa7c0de6d903262f69452663c09fad9c441af8d3/src/Spago/Purs.hs#L90). Using direct call to purs works for me. Reproduce: ``` ➜ purs bundle 'output/*/*.js' -m Main -o...