Alexander Nemish
Alexander Nemish
- [x] Don't generate block for single statement ``` scala val a = 1 match { case 1 => 1 } ``` should not generated block like this: ``` javascript...
### Summary memoryUsage of empty ByteString is 1 instead of 0, contrary to what a comment and code say here: https://github.com/IntersectMBO/plutus/blob/c3e919785c23e06acc39ca90010dbf8718d8d950/plutus-core/plutus-core/src/PlutusCore/Evaluation/Machine/ExMemoryUsage.hs#L206 The code there is SOOOO unbearably complex that it's...
BIP-340 Schnorr message can be of arbitrary length, but you enforce message to be 32 bytes which is wrong: [BIP-340 Spec](https://github.com/bitcoin/bips/blob/master/bip-0340.mediawiki#messages-of-arbitrary-size) > The signature scheme specified in this BIP accepts...
I pretty print my Doc using `.style(Style.XTerm.Fg.colorCode(..)` to show it in a terminal. Now I want to render it to a file without styles. How to property do that? I...
Could you please upgrate multiset on stackage for GHC 8.4.* LTS and Nightly? Thank you!
Add `Select` constructor to `SIR`. ```obj.field``` should compile to ```Select(Var("obj"), "field")``` or something like that.
Modify Scalus compiler plugin to extract type information and put it into generated `SIR`. It's going to be System Fw types. Something like this: ```scala 3 enum Type: case TyCon(...)...