@obolnetwork/obol-sdk 2.10.1 → 2.10.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/README.md +1 -1
- package/dist/cjs/package.json +1 -1
- package/dist/cjs/src/constants.js +1 -0
- package/dist/esm/package.json +1 -1
- package/dist/esm/src/constants.js +1 -0
- package/package.json +1 -1
- package/src/constants.ts +1 -0
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ If you're integrating this SDK with a **backend** (e.g., in Node.js), and you st
|
|
|
19
19
|
|
|
20
20
|
## ⚡️ Integration with Safe Wallet
|
|
21
21
|
|
|
22
|
-
When integrating the Obol SDK with a **Safe Wallet**, you can either pass an RPC URL OR provide the `RPC_MAINNET` or `RPC_HOLESKY` or `RPC_GNOSIS` or `RPC_SEPOLIA` environment variable, pointing to the correct network's RPC URL. This is required to interact with Safe kit.
|
|
22
|
+
When integrating the Obol SDK with a **Safe Wallet**, you can either pass an RPC URL OR provide the `RPC_MAINNET` or `RPC_HOLESKY` or `RPC_GNOSIS` or `RPC_SEPOLIA` or `RPC_HOODI` environment variable, pointing to the correct network's RPC URL. This is required to interact with Safe kit.
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
## Contributing
|
package/dist/cjs/package.json
CHANGED
|
@@ -242,6 +242,7 @@ exports.PROVIDER_MAP = {
|
|
|
242
242
|
17000: `${process.env.RPC_HOLESKY}`, // Holesky
|
|
243
243
|
11155111: `${process.env.RPC_SEPOLIA}`, // Sepolia
|
|
244
244
|
100: `${process.env.RPC_GNOSIS}`, // Gnosis
|
|
245
|
+
560048: `${process.env.RPC_HOODI}`, // Hoodi
|
|
245
246
|
};
|
|
246
247
|
/**
|
|
247
248
|
* Maps base fork versions to their corresponding Capella fork versions.
|
package/dist/esm/package.json
CHANGED
|
@@ -208,6 +208,7 @@ export const PROVIDER_MAP = {
|
|
|
208
208
|
17000: `${process.env.RPC_HOLESKY}`, // Holesky
|
|
209
209
|
11155111: `${process.env.RPC_SEPOLIA}`, // Sepolia
|
|
210
210
|
100: `${process.env.RPC_GNOSIS}`, // Gnosis
|
|
211
|
+
560048: `${process.env.RPC_HOODI}`, // Hoodi
|
|
211
212
|
};
|
|
212
213
|
/**
|
|
213
214
|
* Maps base fork versions to their corresponding Capella fork versions.
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED
|
@@ -276,6 +276,7 @@ export const PROVIDER_MAP: Record<number, string> = {
|
|
|
276
276
|
17000: `${process.env.RPC_HOLESKY}`, // Holesky
|
|
277
277
|
11155111: `${process.env.RPC_SEPOLIA}`, // Sepolia
|
|
278
278
|
100: `${process.env.RPC_GNOSIS}`, // Gnosis
|
|
279
|
+
560048: `${process.env.RPC_HOODI}`, // Hoodi
|
|
279
280
|
};
|
|
280
281
|
|
|
281
282
|
/**
|