@terrariumlabs/evm 0.3.0 → 0.4.0

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.
Files changed (3) hide show
  1. package/Cargo.toml +1 -1
  2. package/README.md +4 -0
  3. package/package.json +1 -1
package/Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "terrarium-evm"
3
- version = "0.3.0"
3
+ version = "0.4.0"
4
4
  edition = "2021"
5
5
  description = "revm compiled to WebAssembly as a Terrarium execution backend"
6
6
  license = "MIT"
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @terrariumlabs/evm
2
2
 
3
+ ```sh
4
+ npm install @terrariumlabs/evm # you rarely install it directly: @terrariumlabs/core depends on it
5
+ ```
6
+
3
7
  [revm](https://github.com/bluealloy/revm) 43 compiled to WebAssembly, as the execution engine of Terrarium. About 1.5 MB
4
8
  of wasm, no C dependencies (k256 for secp256k1, arkworks for bn254/bls12-381, pure-Rust KZG), built with wasm-bindgen
5
9
  `--target web`. `pkg/` is committed so JavaScript users need no Rust toolchain.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terrariumlabs/evm",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "revm compiled to WebAssembly: the fast execution backend for Terrarium",
5
5
  "type": "module",
6
6
  "license": "MIT",