viem 2.0.1 → 2.0.2

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # viem
2
2
 
3
+ ## 2.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`f7a56b31`](https://github.com/wevm/viem/commit/f7a56b3108511f40a435e3132229027c23f15169) Thanks [@jxom](https://github.com/jxom)! - Fixed proxy packages types.
8
+
3
9
  ## 2.0.1
4
10
 
5
11
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.version = void 0;
4
- exports.version = '2.0.1';
4
+ exports.version = '2.0.2';
5
5
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export const version = '2.0.1';
1
+ export const version = '2.0.2';
2
2
  //# sourceMappingURL=version.js.map
@@ -1,2 +1,2 @@
1
- export declare const version = "2.0.1";
1
+ export declare const version = "2.0.2";
2
2
  //# sourceMappingURL=version.d.ts.map
package/errors/version.ts CHANGED
@@ -1 +1 @@
1
- export const version = '2.0.1'
1
+ export const version = '2.0.2'
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "viem",
3
3
  "description": "TypeScript Interface for Ethereum",
4
- "version": "2.0.1",
4
+ "version": "2.0.2",
5
5
  "main": "./_cjs/index.js",
6
6
  "module": "./_esm/index.js",
7
7
  "types": "./_types/index.d.ts",
@@ -82,6 +82,9 @@
82
82
  "actions": [
83
83
  "./_types/actions/index.d.ts"
84
84
  ],
85
+ "celo": [
86
+ "./_types/chains/celo/index.d.ts"
87
+ ],
85
88
  "chains": [
86
89
  "./_types/chains/index.d.ts"
87
90
  ],
@@ -91,11 +94,17 @@
91
94
  "ens": [
92
95
  "./_types/ens/index.d.ts"
93
96
  ],
97
+ "op-stack": [
98
+ "./_types/chains/opStack/index.d.ts"
99
+ ],
94
100
  "utils": [
95
101
  "./_types/utils/index.d.ts"
96
102
  ],
97
103
  "window": [
98
104
  "./_types/window/index.d.ts"
105
+ ],
106
+ "zksync": [
107
+ "./_types/chains/zksync/index.d.ts"
99
108
  ]
100
109
  }
101
110
  },