Skip to content

Commit 2129e13

Browse files
committed
chore: Update viem to PeerDAS fork
Updates viem to @spalladino/viem@2.38.2-eip7594.0 See https://github.com/wevm/viem/pull/4022/files
1 parent 6a7115b commit 2129e13

30 files changed

Lines changed: 72 additions & 67 deletions

File tree

yarn-project/archiver/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"lodash.omit": "^4.5.0",
8383
"tsc-watch": "^6.0.0",
8484
"tslib": "^2.5.0",
85-
"viem": "2.38.2"
85+
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
8686
},
8787
"devDependencies": {
8888
"@jest/globals": "^30.0.0",

yarn-project/aztec-faucet/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
"koa": "^2.16.1",
7171
"koa-bodyparser": "^4.4.1",
7272
"koa-router": "^13.1.1",
73-
"viem": "2.38.2",
73+
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0",
7474
"zod": "^3.23.8"
7575
},
7676
"devDependencies": {

yarn-project/aztec-node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"koa": "^2.16.1",
9393
"koa-router": "^13.1.1",
9494
"tslib": "^2.4.0",
95-
"viem": "2.38.2"
95+
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
9696
},
9797
"devDependencies": {
9898
"@jest/globals": "^30.0.0",

yarn-project/aztec.js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"@aztec/stdlib": "workspace:^",
9090
"axios": "^1.12.0",
9191
"tslib": "^2.4.0",
92-
"viem": "2.38.2",
92+
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0",
9393
"zod": "^3.23.8"
9494
},
9595
"devDependencies": {

yarn-project/aztec/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"commander": "^12.1.0",
6666
"koa": "^2.16.1",
6767
"koa-router": "^13.1.1",
68-
"viem": "2.38.2"
68+
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
6969
},
7070
"files": [
7171
"dest",

yarn-project/bb-prover/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"jest-mock-extended": "^4.0.0",
9999
"ts-node": "^10.9.1",
100100
"typescript": "^5.3.3",
101-
"viem": "2.38.2"
101+
"viem": "npm:@spalladino/viem@2.38.2-eip7594.0"
102102
},
103103
"files": [
104104
"dest",

yarn-project/blob-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"dependencies": {
3030
"@aztec/constants": "workspace:^",
3131
"@aztec/foundation": "workspace:^",
32-
"c-kzg": "4.0.0-alpha.1",
32+
"c-kzg": "4.1.0",
3333
"tslib": "^2.4.0"
3434
},
3535
"devDependencies": {

yarn-project/blob-lib/src/blob.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const {
2121
} = cKzg;
2222

2323
try {
24-
loadTrustedSetup();
24+
loadTrustedSetup(8);
2525
} catch (error: any) {
2626
if (error.message.includes('trusted setup is already loaded')) {
2727
// NB: The c-kzg lib has no way of checking whether the setup is loaded or not,

yarn-project/blob-lib/src/blob.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@ export class Blob {
279279
return {
280280
blobToKzgCommitment: cKzg.blobToKzgCommitment,
281281
computeBlobKzgProof: cKzg.computeBlobKzgProof,
282+
computeCellsAndKzgProofs: cKzg.computeCellsAndKzgProofs,
282283
};
283284
}
284285

yarn-project/blob-lib/src/blob_batching.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const trustedSetup = JSON.parse(
1919
const { FIELD_ELEMENTS_PER_BLOB, computeKzgProof, loadTrustedSetup, verifyKzgProof } = cKzg;
2020

2121
try {
22-
loadTrustedSetup();
22+
loadTrustedSetup(8);
2323
} catch (error: any) {
2424
if (error.message.includes('trusted setup is already loaded')) {
2525
// NB: The c-kzg lib has no way of checking whether the setup is loaded or not,

0 commit comments

Comments
 (0)