@nomicfoundation/edr 0.9.0 → 0.10.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/index.d.ts CHANGED
@@ -107,8 +107,10 @@ export const enum SpecId {
107
107
  Shanghai = 16,
108
108
  /** Cancun */
109
109
  Cancun = 17,
110
+ /** Prague */
111
+ Prague = 18,
110
112
  /** Latest */
111
- Latest = 18
113
+ Latest = 19
112
114
  }
113
115
  export interface DebugTraceResult {
114
116
  pass: boolean
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nomicfoundation/edr",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "devDependencies": {
5
5
  "@napi-rs/cli": "^2.18.4",
6
6
  "@types/chai": "^4.2.0",
@@ -52,13 +52,13 @@
52
52
  "repository": "NomicFoundation/edr.git",
53
53
  "types": "index.d.ts",
54
54
  "dependencies": {
55
- "@nomicfoundation/edr-darwin-arm64": "0.9.0",
56
- "@nomicfoundation/edr-darwin-x64": "0.9.0",
57
- "@nomicfoundation/edr-linux-arm64-gnu": "0.9.0",
58
- "@nomicfoundation/edr-linux-arm64-musl": "0.9.0",
59
- "@nomicfoundation/edr-linux-x64-gnu": "0.9.0",
60
- "@nomicfoundation/edr-linux-x64-musl": "0.9.0",
61
- "@nomicfoundation/edr-win32-x64-msvc": "0.9.0"
55
+ "@nomicfoundation/edr-darwin-arm64": "0.10.0",
56
+ "@nomicfoundation/edr-darwin-x64": "0.10.0",
57
+ "@nomicfoundation/edr-linux-arm64-gnu": "0.10.0",
58
+ "@nomicfoundation/edr-linux-arm64-musl": "0.10.0",
59
+ "@nomicfoundation/edr-linux-x64-gnu": "0.10.0",
60
+ "@nomicfoundation/edr-linux-x64-musl": "0.10.0",
61
+ "@nomicfoundation/edr-win32-x64-msvc": "0.10.0"
62
62
  },
63
63
  "scripts": {
64
64
  "artifacts": "napi artifacts",
package/src/config.rs CHANGED
@@ -39,8 +39,10 @@ pub enum SpecId {
39
39
  Shanghai = 16,
40
40
  /// Cancun
41
41
  Cancun = 17,
42
+ /// Prague
43
+ Prague = 18,
42
44
  /// Latest
43
- Latest = 18,
45
+ Latest = 19,
44
46
  }
45
47
 
46
48
  impl From<SpecId> for edr_evm::SpecId {
@@ -64,6 +66,7 @@ impl From<SpecId> for edr_evm::SpecId {
64
66
  SpecId::Merge => edr_evm::SpecId::MERGE,
65
67
  SpecId::Shanghai => edr_evm::SpecId::SHANGHAI,
66
68
  SpecId::Cancun => edr_evm::SpecId::CANCUN,
69
+ SpecId::Prague => edr_evm::SpecId::PRAGUE,
67
70
  SpecId::Latest => edr_evm::SpecId::LATEST,
68
71
  }
69
72
  }