-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #194 from lidofinance/develop
Develop to main
- Loading branch information
Showing
15 changed files
with
3,928 additions
and
1,073 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
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
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 |
---|---|---|
|
@@ -9,6 +9,6 @@ | |
}, | ||
"dependencies": { | ||
"@lidofinance/lido-ethereum-sdk": "workspace:*", | ||
"viem": "^2.21.9" | ||
"viem": "^2.22.11" | ||
} | ||
} |
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
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
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
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,14 +1,19 @@ | ||
/** @type Record<number,string> */ | ||
export const rpcProviderUrls = { | ||
1: process.env[`RPC_PROVIDER_URL_1`], | ||
5: process.env[`RPC_PROVIDER_URL_5`], | ||
17000: process.env[`RPC_PROVIDER_URL_17000`], | ||
11155111: process.env[`RPC_PROVIDER_URL_11155111`], | ||
// Optimism | ||
10: process.env[`RPC_PROVIDER_URL_10`], | ||
// OP sepolia | ||
11155420: process.env[`RPC_PROVIDER_URL_11155420`], | ||
// Soneium Minato | ||
1946: process.env[`RPC_PROVIDER_URL_1946`], | ||
}; | ||
/** @type number */ | ||
export const defaultChain = parseInt(process.env.DEFAULT_CHAIN, 10) || 17000; | ||
/** @type number[] */ | ||
export const supportedChains = process.env?.SUPPORTED_CHAINS?.split(',').map( | ||
(chainId) => parseInt(chainId, 10), | ||
) ?? [1, 5, 17000, 11155111]; | ||
) ?? [17000, 11155111]; | ||
export const walletconnectProjectId = process.env.WALLETCONNECT_PROJECT_ID; |
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
Oops, something went wrong.