@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 +1 -1
- package/index.js +2 -5
- package/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# typeberry 🫐
|
|
2
2
|
|
|
3
|
-
[](https://github.com/FluffyLabs/typeberry/actions/workflows/vectors-test-suites.yml) [](https://github.com/FluffyLabs/typeberry/actions/workflows/e2e-jam.yml) [](https://github.com/FluffyLabs/typeberry/actions/workflows/e2e-rpc.yml) [](https://github.com/FluffyLabs/typeberry/actions/workflows/prize-blockchain.yml) [](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
|
-
|
|
19806
|
-
|
|
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) { }
|