rooooooooob
rooooooooob
Tool to verify .cddl specs to see if they conform to the plutus datum CBOR. Also runs cddl-codegen with appropriate settings and generates utility functionality for interoperability with CML's `PlutusData`/etc...
Repro code (on 0.9.4): ```rust let cddl = cddl::parser::cddl_from_str( r#"basic = (d: #6.23(uint), e: bytes) outer = [a: uint, b: basic, c: "some text"]"#, true )?; ``` Error: ``` error:...
e..g extern types, custom serialization, etc not done right now as it impacts both #228 and #234
* Check everywhere that could use a ref script (not sure if it's allowed in all these spots) * Duplicate size for different ref inputs with the same ref script...
Based on Aiken's Hello WOrld example. TODO: I couldn't get the redeem contract to be accepted by the network. We need to figure out why and update this example. Replaces...
All types are now: ``` to_js_value: any ``` instead of e.g. `TransactionBodyJSON` during the wasm build script process you get an error: ``` Error: Cannot find module 'json-schema-to-typescript' ``` despite...
Should we remove the tests (we don't really ever touch the chain-libs crates) or keep them as-is in this PR exposed by a feature flag? Due to rustwasm/wasm-bindgen#4304 I set...
The upcoming hardfork will switch to only the new map redeemer format. This PR makes that the new default within all the builders. Fixes #366