@lodestar/prover 1.39.0-dev.c630c55067 → 1.39.0-dev.e5f0c23f31

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +18 -15
package/README.md CHANGED
@@ -144,7 +144,7 @@ If your project is using some provider type which is not among above list, you h
144
144
  ## Prerequisites
145
145
 
146
146
  - [NodeJS](https://nodejs.org/) (LTS)
147
- - [Yarn](https://classic.yarnpkg.com/lang/en/)
147
+ - [pnpm](https://pnpm.io/)
148
148
 
149
149
  ## What you need
150
150
 
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "bugs": {
12
12
  "url": "https://github.com/ChainSafe/lodestar/issues"
13
13
  },
14
- "version": "1.39.0-dev.c630c55067",
14
+ "version": "1.39.0-dev.e5f0c23f31",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -37,20 +37,21 @@
37
37
  "scripts": {
38
38
  "clean": "rm -rf lib && rm -f *.tsbuildinfo",
39
39
  "build": "tsc -p tsconfig.build.json",
40
- "build:watch": "yarn run build --watch",
41
- "build:release": "yarn clean && yarn run build",
40
+ "build:watch": "pnpm run build --watch",
41
+ "build:release": "pnpm clean && pnpm run build",
42
42
  "check-build": "node -e \"(async function() { await import('./lib/index.js') })()\"",
43
43
  "check-types": "tsc",
44
44
  "lint": "biome check src/ test/",
45
- "lint:fix": "yarn run lint --write",
46
- "test": "yarn test:unit && yarn test:e2e",
45
+ "lint:fix": "pnpm run lint --write",
46
+ "test": "pnpm test:unit && pnpm test:e2e",
47
47
  "test:unit": "vitest run --project unit --project unit-minimal",
48
48
  "test:browsers": "vitest run --project browser",
49
49
  "test:e2e": "vitest run --project e2e --project e2e-mainnet",
50
- "check-readme": "typescript-docs-verifier",
50
+ "check-readme": "pnpm exec ts-node ../../scripts/check_readme.ts",
51
51
  "generate-fixtures": "node --loader ts-node/esm scripts/generate_fixtures.ts"
52
52
  },
53
53
  "dependencies": {
54
+ "@chainsafe/persistent-merkle-tree": "^1.2.1",
54
55
  "@ethereumjs/block": "^4.2.2",
55
56
  "@ethereumjs/blockchain": "^6.2.2",
56
57
  "@ethereumjs/common": "^3.1.2",
@@ -59,13 +60,13 @@
59
60
  "@ethereumjs/tx": "^4.1.2",
60
61
  "@ethereumjs/util": "^8.0.6",
61
62
  "@ethereumjs/vm": "^6.4.2",
62
- "@lodestar/api": "1.39.0-dev.c630c55067",
63
- "@lodestar/config": "1.39.0-dev.c630c55067",
64
- "@lodestar/light-client": "1.39.0-dev.c630c55067",
65
- "@lodestar/logger": "1.39.0-dev.c630c55067",
66
- "@lodestar/params": "1.39.0-dev.c630c55067",
67
- "@lodestar/types": "1.39.0-dev.c630c55067",
68
- "@lodestar/utils": "1.39.0-dev.c630c55067",
63
+ "@lodestar/api": "^1.39.0-dev.e5f0c23f31",
64
+ "@lodestar/config": "^1.39.0-dev.e5f0c23f31",
65
+ "@lodestar/light-client": "^1.39.0-dev.e5f0c23f31",
66
+ "@lodestar/logger": "^1.39.0-dev.e5f0c23f31",
67
+ "@lodestar/params": "^1.39.0-dev.e5f0c23f31",
68
+ "@lodestar/types": "^1.39.0-dev.e5f0c23f31",
69
+ "@lodestar/utils": "^1.39.0-dev.e5f0c23f31",
69
70
  "ethereum-cryptography": "^2.0.0",
70
71
  "find-up": "^6.3.0",
71
72
  "http-proxy": "^1.18.1",
@@ -74,10 +75,12 @@
74
75
  "yargs": "^17.7.1"
75
76
  },
76
77
  "devDependencies": {
77
- "@lodestar/test-utils": "1.39.0-dev.c630c55067",
78
+ "@lodestar/test-utils": "^1.39.0-dev.e5f0c23f31",
78
79
  "@types/http-proxy": "^1.17.10",
80
+ "@types/js-yaml": "^4.0.5",
79
81
  "@types/yargs": "^17.0.24",
80
82
  "axios": "^1.3.4",
83
+ "deepmerge": "^4.3.1",
81
84
  "ethers": "^6.7.0",
82
85
  "web3": "^4.0.3"
83
86
  },
@@ -89,5 +92,5 @@
89
92
  "blockchain",
90
93
  "prover"
91
94
  ],
92
- "gitHead": "ead055ee9d3179f198a25ba5c984e8509dea31d7"
95
+ "gitHead": "a0127db8478edcf0eccddd4cdb7b190f2f5370b4"
93
96
  }