diff --git a/src/config/chains.json b/src/config/chains.json index 3fecfd8..3607a21 100644 --- a/src/config/chains.json +++ b/src/config/chains.json @@ -77,6 +77,19 @@ "curveRegistry": "" } }, + "11155111": { + "chainId": "11155111", + "explorer": "https://sepolia.etherscan.io/", + "label": "Sepolia", + "shortName": "ETH-Sepolia", + "code": "eth", + "rpc": "https://gateway.tenderly.co/public/sepolia", + "baseCurrencyName": "ETH", + "contracts": { + "WETH": "", + "curveRegistry": "" + } + }, "421613": { "chainId": "421613", "explorer": "https://goerli.arbiscan.io/", diff --git a/src/config/envs.json b/src/config/envs.json index 12e87f9..73f8b12 100644 --- a/src/config/envs.json +++ b/src/config/envs.json @@ -225,8 +225,8 @@ }, "liquidityMigratorAddress": "0x01b10dds12478C88A5E18e2707E729906bC25CfF6" }, - "5": { - "api": "https://testing.orion.xyz/eth-goerli", + "11155111": { + "api": "https://testing.orion.xyz/eth-sepolia", "services": { "aggregator": { "http": "/backend", diff --git a/src/constants/chains.ts b/src/constants/chains.ts index 1fb8ff3..df0bd2f 100644 --- a/src/constants/chains.ts +++ b/src/constants/chains.ts @@ -4,6 +4,7 @@ export const developmentChains = [ SupportedChainId.BSC_TESTNET, SupportedChainId.ROPSTEN, SupportedChainId.GOERLI, + SupportedChainId.SEPOLIA, SupportedChainId.ARBITRUM_GOERLI, SupportedChainId.FANTOM_TESTNET, SupportedChainId.POLYGON_TESTNET, diff --git a/src/types.ts b/src/types.ts index 6a3513a..461d318 100644 --- a/src/types.ts +++ b/src/types.ts @@ -81,8 +81,6 @@ export type Pair = { export enum SupportedChainId { MAINNET = '1', - ROPSTEN = '3', - GOERLI = '5', ARBITRUM = '42161', FANTOM_OPERA = '250', POLYGON = '137', @@ -93,6 +91,9 @@ export enum SupportedChainId { AVAX = '43114', BASE = '8453', + ROPSTEN = '3', + GOERLI = '5', + SEPOLIA = '11155111', POLYGON_TESTNET = '80001', FANTOM_TESTNET = '4002', BSC = '56',