@aztec/world-state 0.0.1-commit.9badcec54 → 0.0.1-commit.9d619b6c6

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.
@@ -125,7 +125,7 @@ export class NativeWorldStateService {
125
125
  blockNumber: blockNumber ?? BlockNumber.ZERO,
126
126
  canonical: true
127
127
  });
128
- return new MerkleTreesForkFacade(this.instance, this.initialHeader, new WorldStateRevision(/*forkId=*/ resp.forkId, /* blockNumber=*/ BlockNumber.ZERO, /* includeUncommitted=*/ true), opts);
128
+ return new MerkleTreesForkFacade(this.instance, this.initialHeader, new WorldStateRevision(/*forkId=*/ resp.forkId, /* blockNumber=*/ WorldStateRevision.LATEST, /* includeUncommitted=*/ true), opts);
129
129
  }
130
130
  getInitialHeader() {
131
131
  return this.initialHeader;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/world-state",
3
- "version": "0.0.1-commit.9badcec54",
3
+ "version": "0.0.1-commit.9d619b6c6",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -64,18 +64,18 @@
64
64
  ]
65
65
  },
66
66
  "dependencies": {
67
- "@aztec/constants": "0.0.1-commit.9badcec54",
68
- "@aztec/foundation": "0.0.1-commit.9badcec54",
69
- "@aztec/kv-store": "0.0.1-commit.9badcec54",
70
- "@aztec/native": "0.0.1-commit.9badcec54",
71
- "@aztec/protocol-contracts": "0.0.1-commit.9badcec54",
72
- "@aztec/stdlib": "0.0.1-commit.9badcec54",
73
- "@aztec/telemetry-client": "0.0.1-commit.9badcec54",
67
+ "@aztec/constants": "0.0.1-commit.9d619b6c6",
68
+ "@aztec/foundation": "0.0.1-commit.9d619b6c6",
69
+ "@aztec/kv-store": "0.0.1-commit.9d619b6c6",
70
+ "@aztec/native": "0.0.1-commit.9d619b6c6",
71
+ "@aztec/protocol-contracts": "0.0.1-commit.9d619b6c6",
72
+ "@aztec/stdlib": "0.0.1-commit.9d619b6c6",
73
+ "@aztec/telemetry-client": "0.0.1-commit.9d619b6c6",
74
74
  "tslib": "^2.4.0",
75
75
  "zod": "^3.23.8"
76
76
  },
77
77
  "devDependencies": {
78
- "@aztec/archiver": "0.0.1-commit.9badcec54",
78
+ "@aztec/archiver": "0.0.1-commit.9d619b6c6",
79
79
  "@jest/globals": "^30.0.0",
80
80
  "@types/jest": "^30.0.0",
81
81
  "@types/node": "^22.15.17",
@@ -176,7 +176,7 @@ export class NativeWorldStateService implements MerkleTreeDatabase {
176
176
  this.initialHeader!,
177
177
  new WorldStateRevision(
178
178
  /*forkId=*/ resp.forkId,
179
- /* blockNumber=*/ BlockNumber.ZERO,
179
+ /* blockNumber=*/ WorldStateRevision.LATEST,
180
180
  /* includeUncommitted=*/ true,
181
181
  ),
182
182
  opts,