@obolnetwork/obol-sdk 2.4.2 → 2.4.3

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obolnetwork/obol-sdk",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "A package for creating Distributed Validators using the Obol API.",
5
5
  "bugs": {
6
6
  "url": "https://github.com/obolnetwork/obol-sdk/issues"
@@ -16,6 +16,8 @@ var FORK_MAPPING;
16
16
  FORK_MAPPING[FORK_MAPPING["0x01017000"] = 17000] = "0x01017000";
17
17
  /** Sepolia. */
18
18
  FORK_MAPPING[FORK_MAPPING["0x90000069"] = 11155111] = "0x90000069";
19
+ /** Hoodi Chain. */
20
+ FORK_MAPPING[FORK_MAPPING["0x10000910"] = 560048] = "0x10000910";
19
21
  })(FORK_MAPPING || (exports.FORK_MAPPING = FORK_MAPPING = {}));
20
22
  /**
21
23
  * Permitted Chain Names
@@ -31,4 +33,6 @@ exports.FORK_NAMES = {
31
33
  [FORK_MAPPING['0x01017000']]: 'holesky',
32
34
  /** Sepolia. */
33
35
  [FORK_MAPPING['0x90000069']]: 'sepolia',
36
+ /** Hoodi. */
37
+ [FORK_MAPPING['0x10000910']]: 'hoodi',
34
38
  };
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obolnetwork/obol-sdk",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "A package for creating Distributed Validators using the Obol API.",
5
5
  "bugs": {
6
6
  "url": "https://github.com/obolnetwork/obol-sdk/issues"
@@ -13,6 +13,8 @@ export var FORK_MAPPING;
13
13
  FORK_MAPPING[FORK_MAPPING["0x01017000"] = 17000] = "0x01017000";
14
14
  /** Sepolia. */
15
15
  FORK_MAPPING[FORK_MAPPING["0x90000069"] = 11155111] = "0x90000069";
16
+ /** Hoodi Chain. */
17
+ FORK_MAPPING[FORK_MAPPING["0x10000910"] = 560048] = "0x10000910";
16
18
  })(FORK_MAPPING || (FORK_MAPPING = {}));
17
19
  /**
18
20
  * Permitted Chain Names
@@ -28,4 +30,6 @@ export const FORK_NAMES = {
28
30
  [FORK_MAPPING['0x01017000']]: 'holesky',
29
31
  /** Sepolia. */
30
32
  [FORK_MAPPING['0x90000069']]: 'sepolia',
33
+ /** Hoodi. */
34
+ [FORK_MAPPING['0x10000910']]: 'hoodi',
31
35
  };
@@ -11,7 +11,9 @@ export declare enum FORK_MAPPING {
11
11
  /** Holesky. */
12
12
  '0x01017000' = 17000,
13
13
  /** Sepolia. */
14
- '0x90000069' = 11155111
14
+ '0x90000069' = 11155111,
15
+ /** Hoodi Chain. */
16
+ '0x10000910' = 560048
15
17
  }
16
18
  /**
17
19
  * Permitted Chain Names
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obolnetwork/obol-sdk",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "A package for creating Distributed Validators using the Obol API.",
5
5
  "bugs": {
6
6
  "url": "https://github.com/obolnetwork/obol-sdk/issues"
package/src/types.ts CHANGED
@@ -16,6 +16,9 @@ export enum FORK_MAPPING {
16
16
 
17
17
  /** Sepolia. */
18
18
  '0x90000069' = 11155111,
19
+
20
+ /** Hoodi Chain. */
21
+ '0x10000910' = 560048,
19
22
  }
20
23
 
21
24
  /**
@@ -36,6 +39,9 @@ export const FORK_NAMES: Record<number, string> = {
36
39
 
37
40
  /** Sepolia. */
38
41
  [FORK_MAPPING['0x90000069']]: 'sepolia',
42
+
43
+ /** Hoodi. */
44
+ [FORK_MAPPING['0x10000910']]: 'hoodi',
39
45
  };
40
46
 
41
47
  /**