@typeberry/convert 0.5.1-1dda9d6 → 0.5.1-31343a9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # typeberry 🫐
2
2
 
3
- [![JAM Conformance 0.7.1](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-jam-conformance-071.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-jam-conformance-071.yml) [![W3F davxy 0.7.1](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-w3f-davxy-071.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-w3f-davxy-071.yml) [![W3F vectors](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-w3f.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-w3f.yml) [![Publish commits](https://github.com/FluffyLabs/typeberry/actions/workflows/prize-blockchain.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/prize-blockchain.yml) [![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)
3
+ [![Vectors - test suites](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-test-suites.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-test-suites.yml) [![E2E - @typeberry/jam](https://github.com/FluffyLabs/typeberry/actions/workflows/e2e-jam.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/e2e-jam.yml) [![QA - @typeberry/rpc](https://github.com/FluffyLabs/typeberry/actions/workflows/e2e-rpc.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/e2e-rpc.yml) [![Publish commits](https://github.com/FluffyLabs/typeberry/actions/workflows/prize-blockchain.yml/badge.svg?branch=main)](https://github.com/FluffyLabs/typeberry/actions/workflows/prize-blockchain.yml) [![License: MPL 2.0](https://img.shields.io/badge/License-MPL%202.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)
4
4
 
5
5
  Typeberry is a TypeScript implementation of [JAM protocol](https://graypaper.com/) by Fluffy Labs.
6
6
 
package/index.js CHANGED
@@ -19802,11 +19802,8 @@ class interpreter_Interpreter {
19802
19802
  this.memory.reset();
19803
19803
  }
19804
19804
  }
19805
- printProgram() {
19806
- const p = assemblify(this.code, this.mask);
19807
- // biome-ignore lint/suspicious/noConsole: We do want to print that.
19808
- console.table(p);
19809
- return p;
19805
+ dumpProgram() {
19806
+ return assemblify(this.code, this.mask);
19810
19807
  }
19811
19808
  runProgram() {
19812
19809
  while (this.nextStep() === Status.OK) { }