@txfence/evm 0.1.0 → 0.1.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 +16 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @txfence/evm
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix package descriptions — remove markdown, plain text only
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @txfence/core@0.1.2
|
|
10
|
+
|
|
11
|
+
## 0.1.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- fix missing license field (MIT)
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @txfence/core@0.1.1
|
|
18
|
+
|
|
3
19
|
## 0.1.0
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@txfence/evm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"description": "EVM chain adapter for txfence. Simulation via eth_call and Tenderly, fork simulation, MEV-protected broadcast, signing for Ethereum, Arbitrum, Optimism, and Base.",
|
|
4
6
|
"type": "module",
|
|
5
7
|
"main": "./dist/index.js",
|
|
6
8
|
"types": "./dist/index.d.ts",
|
|
@@ -17,7 +19,7 @@
|
|
|
17
19
|
],
|
|
18
20
|
"dependencies": {
|
|
19
21
|
"viem": "^2.48.8",
|
|
20
|
-
"@txfence/core": "0.1.
|
|
22
|
+
"@txfence/core": "0.1.2"
|
|
21
23
|
},
|
|
22
24
|
"devDependencies": {
|
|
23
25
|
"@types/node": "^20.0.0",
|