@dashevo/wasm-dpp 1.5.1 → 1.6.0-dev.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dashevo/wasm-dpp",
3
- "version": "1.5.1",
3
+ "version": "1.6.0-dev.2",
4
4
  "description": "The JavaScript implementation of the Dash Platform Protocol",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -44,7 +44,7 @@
44
44
  "@babel/core": "^7.23.3",
45
45
  "@babel/preset-env": "^7.23.3",
46
46
  "@dashevo/dashcore-lib": "~0.22.0",
47
- "@dashevo/dpns-contract": "1.5.1",
47
+ "@dashevo/dpns-contract": "1.6.0-dev.2",
48
48
  "@types/bs58": "^4.0.1",
49
49
  "@types/node": "^14.6.0",
50
50
  "@yarnpkg/pnpify": "^4.0.0-rc.42",
@@ -28,8 +28,8 @@ fi
28
28
  # - packages/wasm-dpp/Cargo.toml
29
29
  # - Dockerfile
30
30
  if ! [[ -x "$(command -v wasm-bindgen)" ]]; then
31
- echo "Wasm-bindgen CLI ${WASM_BINDGEN_VERSION} is not installed. Installing"
32
- cargo install --config net.git-fetch-with-cli=true --profile "${CARGO_BUILD_PROFILE}" -f "wasm-bindgen-cli@0.2.86"
31
+ echo "Wasm-bindgen CLI ${WASM_BINDGEN_VERSION} is not installed."
32
+ exit 1
33
33
  fi
34
34
 
35
35
  # On a mac, bundled clang won't work - you need to install LLVM manually through brew,
package/src/lib.rs CHANGED
@@ -19,6 +19,7 @@ mod identifier;
19
19
  mod identity;
20
20
  mod metadata;
21
21
  // mod state_repository;
22
+ /// State transitions
22
23
  pub mod state_transition;
23
24
  // mod version;
24
25