aiken-lang / aiken

A modern smart contract platform for Cardano
https://aiken-lang.org
Apache License 2.0
486 stars 98 forks source link

update uplc Data parsing #625

Closed rvcas closed 11 months ago

rvcas commented 1 year ago

plutus now has an official thing for this

https://github.com/input-output-hk/plutus/pull/5391

rvcas commented 1 year ago

cc @Quantumplation do you remember what's missing here that you didn't do?

Quantumplation commented 1 year ago

Integer parsing, cause it's a pain

rvcas commented 1 year ago

Right ok,thanks :)

nielstron commented 12 months ago

Most parsing seems fine, but the following programs have unintended output since they exceed the i64 boundaries

(program 1.0.0 (con data (I -18446744073709551618)))
(program 1.0.0 (con data (I 18446744073709551618)))

A fix is underway...