@nomicfoundation/edr 0.4.0-alpha.3 → 0.4.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.
- package/README.md +1 -2
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# EDR - Ethereum Development Runtime
|
|
2
2
|
|
|
3
|
-
**EDR**, or **Ethereum Development Runtime** in full, is a library for creating developer tooling on top of the Ethereum Virtual Machine (EVM), such as an EVM debugger or state inspector.
|
|
4
|
-
EDR provides a performant API, written in Rust, with bindings for the Node API (TypeScript).
|
|
3
|
+
**EDR**, or **Ethereum Development Runtime** in full, is a library for creating developer tooling on top of the Ethereum Virtual Machine (EVM), such as an EVM debugger or state inspector. EDR provides a performant API, written in Rust, with bindings for the Node API (TypeScript).
|
|
5
4
|
|
|
6
5
|
At the moment, EDR is only meant to be consumed from [Hardhat](https://hardhat.org/), but we plan to have a stable API that can be used from any other tooling. If you are interested in this, please reach out.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomicfoundation/edr",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -17,11 +17,15 @@
|
|
|
17
17
|
"napi": {
|
|
18
18
|
"name": "edr",
|
|
19
19
|
"triples": {
|
|
20
|
+
"defaults": false,
|
|
20
21
|
"additional": [
|
|
21
22
|
"aarch64-apple-darwin",
|
|
23
|
+
"x86_64-apple-darwin",
|
|
22
24
|
"aarch64-unknown-linux-gnu",
|
|
23
25
|
"aarch64-unknown-linux-musl",
|
|
24
|
-
"x86_64-unknown-linux-
|
|
26
|
+
"x86_64-unknown-linux-gnu",
|
|
27
|
+
"x86_64-unknown-linux-musl",
|
|
28
|
+
"x86_64-pc-windows-msvc"
|
|
25
29
|
]
|
|
26
30
|
}
|
|
27
31
|
},
|
|
@@ -42,13 +46,13 @@
|
|
|
42
46
|
"node": ">= 18"
|
|
43
47
|
},
|
|
44
48
|
"dependencies": {
|
|
45
|
-
"@nomicfoundation/edr-
|
|
46
|
-
"@nomicfoundation/edr-darwin-x64": "0.4.0
|
|
47
|
-
"@nomicfoundation/edr-linux-
|
|
48
|
-
"@nomicfoundation/edr-
|
|
49
|
-
"@nomicfoundation/edr-linux-
|
|
50
|
-
"@nomicfoundation/edr-linux-
|
|
51
|
-
"@nomicfoundation/edr-
|
|
49
|
+
"@nomicfoundation/edr-darwin-arm64": "0.4.0",
|
|
50
|
+
"@nomicfoundation/edr-darwin-x64": "0.4.0",
|
|
51
|
+
"@nomicfoundation/edr-linux-arm64-gnu": "0.4.0",
|
|
52
|
+
"@nomicfoundation/edr-linux-arm64-musl": "0.4.0",
|
|
53
|
+
"@nomicfoundation/edr-linux-x64-gnu": "0.4.0",
|
|
54
|
+
"@nomicfoundation/edr-linux-x64-musl": "0.4.0",
|
|
55
|
+
"@nomicfoundation/edr-win32-x64-msvc": "0.4.0"
|
|
52
56
|
},
|
|
53
57
|
"scripts": {
|
|
54
58
|
"artifacts": "napi artifacts",
|