-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
79ef3f7
commit 49cef65
Showing
4 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
ALCHEMY_API_KEY=ALCHEMY_API_KEY | ||
RPC_HOLESKY=RPC_HOLESKY | ||
RPC_MAINNET=RPC_MAINNET | ||
RPC_GNOSIS=RPC_GNOSIS | ||
RPC_SEPOLIA=RPC_SEPOLIA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -201,8 +201,8 @@ export const DEFAULT_RETROACTIVE_FUNDING_TOTAL_SPLIT = 0.1; | |
export const OBOL_SDK_EMAIL = '[email protected]'; | ||
|
||
export const PROVIDER_MAP: Record<number, string> = { | ||
1: `https://eth-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`, // Mainnet | ||
17000: `https://eth-holesky.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`, // Holesky | ||
11155111: `https://eth-sepolia.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`, // Sepolia | ||
100: `https://gnosis-mainnet.g.alchemy.com/v2/${process.env.ALCHEMY_API_KEY}`, // Gnosis | ||
1: `${process.env.RPC_MAINNET}`, // Mainnet | ||
17000: `${process.env.RPC_HOLESKY}`, // Holesky | ||
11155111: `${process.env.RPC_SEPOLIA}`, // Sepolia | ||
100: `${process.env.RPC_GNOSIS}`, // Gnosis | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Internal use only | ||
DEL_AUTH=DEL_AUTH | ||
PRIVATE_KEY=PRIVATE_KEY | ||
ALCHEMY_API_KEY=ALCHEMY_API_KEY | ||
RPC_HOLESKY=RPC_HOLESKY | ||
RPC_MAINNET=RPC_MAINNET | ||
RPC_GNOSIS=RPC_GNOSIS | ||
RPC_SEPOLIA=RPC_SEPOLIA |