Skip to content

Commit cf28f70

Browse files
authored
Update kzg-wasm (#4169)
* Remove pnpm lock file * Update kzg-wasm to rc 3 * Rebuild lock file * Activate kzg-wasm tests * Activate Util browser kzg tests * Update to rc.4 (fixes browser problem) * Update to final release version * Rebuild package-lock.json * Minor * Small nightly fix along the road * Lint
1 parent 83d97a2 commit cf28f70

File tree

7 files changed

+10
-9513
lines changed

7 files changed

+10
-9513
lines changed

.github/workflows/other-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ jobs:
7373
- run: npm ci
7474
working-directory: ${{github.workspace}}
7575

76-
- run: npm run test
76+
- run: npm run test:node
7777
working-directory: ${{ github.workspace }}/packages/wallet

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/tx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"@paulmillr/trusted-setups": "^0.2.0",
7272
"@types/minimist": "^1.2.5",
7373
"@types/node-dir": "^0.0.37",
74-
"kzg-wasm": "1.0.0-rc.2",
74+
"kzg-wasm": "1.0.0",
7575
"micro-eth-signer": "^0.15.0",
7676
"minimist": "^1.2.8",
7777
"node-dir": "^0.1.17",

packages/tx/test/eip4844.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ beforeAll(async () => {
6060
}),
6161
}*/
6262
kzgs = [jsKzgSetup]
63-
}, 50000)
63+
}, 60000)
6464

6565
describe('EIP4844 addSignature tests', () => {
6666
it('addSignature() -> correctly adds correct signature values', () => {

packages/util/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
},
100100
"devDependencies": {
101101
"@paulmillr/trusted-setups": "^0.2.0",
102-
"kzg-wasm": "1.0.0-rc.2",
102+
"kzg-wasm": "1.0.0",
103103
"micro-eth-signer": "^0.15.0"
104104
},
105105
"engines": {

packages/util/vitest.config.browser.mts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,7 @@ export default mergeConfig(
55
baseConfig,
66
defineConfig({
77
test: {
8-
exclude: [
9-
...configDefaults.exclude,
10-
// KZG tests use Node.js specific dependencies that aren't compatible with browser environment
11-
'test/kzg.spec.ts',
12-
'test/bench/kzg.bench.ts',
13-
],
8+
exclude: [...configDefaults.exclude, 'test/bench/kzg.bench.ts'],
149
},
1510
}),
1611
)

0 commit comments

Comments
 (0)