@aztec/world-state 0.43.0 → 0.45.0

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.
@@ -1,4 +1,6 @@
1
1
  export * from './merkle_trees.js';
2
2
  export * from './merkle_tree_db.js';
3
3
  export * from './merkle_tree_operations.js';
4
+ export * from './merkle_tree_operations_facade.js';
5
+ export * from './merkle_tree_snapshot_operations_facade.js';
4
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/world-state-db/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/world-state-db/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,qBAAqB,CAAC;AACpC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,oCAAoC,CAAC;AACnD,cAAc,6CAA6C,CAAC"}
@@ -1,4 +1,6 @@
1
1
  export * from './merkle_trees.js';
2
2
  export * from './merkle_tree_db.js';
3
3
  export * from './merkle_tree_operations.js';
4
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd29ybGQtc3RhdGUtZGIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsNkJBQTZCLENBQUMifQ==
4
+ export * from './merkle_tree_operations_facade.js';
5
+ export * from './merkle_tree_snapshot_operations_facade.js';
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9zcmMvd29ybGQtc3RhdGUtZGIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLDZDQUE2QyxDQUFDIn0=
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/world-state",
3
- "version": "0.43.0",
3
+ "version": "0.45.0",
4
4
  "type": "module",
5
5
  "exports": "./dest/index.js",
6
6
  "typedocOptions": {
@@ -29,7 +29,15 @@
29
29
  "rootDir": "./src",
30
30
  "transform": {
31
31
  "^.+\\.tsx?$": [
32
- "@swc/jest"
32
+ "@swc/jest",
33
+ {
34
+ "jsc": {
35
+ "parser": {
36
+ "syntax": "typescript",
37
+ "decorators": true
38
+ }
39
+ }
40
+ }
33
41
  ]
34
42
  },
35
43
  "extensionsToTreatAsEsm": [
@@ -45,12 +53,12 @@
45
53
  ]
46
54
  },
47
55
  "dependencies": {
48
- "@aztec/circuit-types": "0.43.0",
49
- "@aztec/circuits.js": "0.43.0",
50
- "@aztec/foundation": "0.43.0",
51
- "@aztec/kv-store": "0.43.0",
52
- "@aztec/merkle-tree": "0.43.0",
53
- "@aztec/types": "0.43.0",
56
+ "@aztec/circuit-types": "0.45.0",
57
+ "@aztec/circuits.js": "0.45.0",
58
+ "@aztec/foundation": "0.45.0",
59
+ "@aztec/kv-store": "0.45.0",
60
+ "@aztec/merkle-tree": "0.45.0",
61
+ "@aztec/types": "0.45.0",
54
62
  "tslib": "^2.4.0"
55
63
  },
56
64
  "devDependencies": {
@@ -1,3 +1,5 @@
1
1
  export * from './merkle_trees.js';
2
2
  export * from './merkle_tree_db.js';
3
3
  export * from './merkle_tree_operations.js';
4
+ export * from './merkle_tree_operations_facade.js';
5
+ export * from './merkle_tree_snapshot_operations_facade.js';