viem 2.0.0-rc.1 → 2.0.0-rc.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.
Files changed (33) hide show
  1. package/_cjs/errors/version.js +1 -1
  2. package/_esm/errors/version.js +1 -1
  3. package/_types/chains/celo/chainConfig.d.ts +65 -65
  4. package/_types/chains/celo/formatters.d.ts +65 -65
  5. package/_types/chains/definitions/base.d.ts +50 -50
  6. package/_types/chains/definitions/baseGoerli.d.ts +50 -50
  7. package/_types/chains/definitions/baseSepolia.d.ts +50 -50
  8. package/_types/chains/definitions/celo.d.ts +65 -65
  9. package/_types/chains/definitions/celoAlfajores.d.ts +65 -65
  10. package/_types/chains/definitions/celoCannoli.d.ts +65 -65
  11. package/_types/chains/definitions/optimism.d.ts +50 -50
  12. package/_types/chains/definitions/optimismGoerli.d.ts +50 -50
  13. package/_types/chains/definitions/optimismSepolia.d.ts +50 -50
  14. package/_types/chains/definitions/pgn.d.ts +50 -50
  15. package/_types/chains/definitions/pgnTestnet.d.ts +50 -50
  16. package/_types/chains/definitions/zkSync.d.ts +3 -3
  17. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +3 -3
  18. package/_types/chains/definitions/zkSyncTestnet.d.ts +3 -3
  19. package/_types/chains/definitions/zora.d.ts +50 -50
  20. package/_types/chains/definitions/zoraSepolia.d.ts +50 -50
  21. package/_types/chains/definitions/zoraTestnet.d.ts +50 -50
  22. package/_types/chains/index.d.ts +1 -1
  23. package/_types/chains/index.d.ts.map +1 -1
  24. package/_types/chains/opStack/chainConfig.d.ts +50 -50
  25. package/_types/chains/opStack/formatters.d.ts +50 -50
  26. package/_types/chains/zksync/chainConfig.d.ts +3 -3
  27. package/_types/chains/zksync/formatters.d.ts +3 -3
  28. package/_types/errors/version.d.ts +1 -1
  29. package/_types/utils/formatters/transaction.d.ts +1 -1
  30. package/_types/utils/formatters/transactionRequest.d.ts +1 -1
  31. package/chains/index.ts +8 -1
  32. package/errors/version.ts +1 -1
  33. package/package.json +34 -12
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "viem",
3
3
  "description": "TypeScript Interface for Ethereum",
4
- "version": "2.0.0-rc.1",
5
- "type": "module",
4
+ "version": "2.0.0-rc.2",
6
5
  "main": "./_cjs/index.js",
7
6
  "module": "./_esm/index.js",
8
7
  "types": "./_types/index.d.ts",
@@ -77,13 +76,27 @@
77
76
  },
78
77
  "typesVersions": {
79
78
  "*": {
80
- "accounts": ["./_types/accounts/index.d.ts"],
81
- "actions": ["./_types/actions/index.d.ts"],
82
- "chains": ["./_types/chains/index.d.ts"],
83
- "chains/utils": ["./_types/chains/utils.d.ts"],
84
- "ens": ["./_types/ens/index.d.ts"],
85
- "utils": ["./_types/utils/index.d.ts"],
86
- "window": ["./_types/window/index.d.ts"]
79
+ "accounts": [
80
+ "./_types/accounts/index.d.ts"
81
+ ],
82
+ "actions": [
83
+ "./_types/actions/index.d.ts"
84
+ ],
85
+ "chains": [
86
+ "./_types/chains/index.d.ts"
87
+ ],
88
+ "chains/utils": [
89
+ "./_types/chains/utils.d.ts"
90
+ ],
91
+ "ens": [
92
+ "./_types/ens/index.d.ts"
93
+ ],
94
+ "utils": [
95
+ "./_types/utils/index.d.ts"
96
+ ],
97
+ "window": [
98
+ "./_types/window/index.d.ts"
99
+ ]
87
100
  }
88
101
  },
89
102
  "peerDependencies": {
@@ -107,12 +120,21 @@
107
120
  "license": "MIT",
108
121
  "homepage": "https://viem.sh",
109
122
  "repository": "wevm/viem",
110
- "authors": ["awkweb.eth", "jxom.eth"],
123
+ "authors": [
124
+ "awkweb.eth",
125
+ "jxom.eth"
126
+ ],
111
127
  "funding": [
112
128
  {
113
129
  "type": "github",
114
130
  "url": "https://github.com/sponsors/wevm"
115
131
  }
116
132
  ],
117
- "keywords": ["eth", "ethereum", "dapps", "wallet", "web3"]
118
- }
133
+ "keywords": [
134
+ "eth",
135
+ "ethereum",
136
+ "dapps",
137
+ "wallet",
138
+ "web3"
139
+ ]
140
+ }