Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion scripts/chain-configs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export { default as OPTIMISM_SEPOLIA } from "./optimism-sepolia";
export { default as PLASMA } from "./plasma";
export { default as POLYGON } from "./polygon";
export { default as POLYGON_AMOY } from "./polygon-amoy";
export { default as REDSTONE } from "./redstone";
export { default as SCROLL } from "./scroll";
export { default as SEPOLIA } from "./sepolia";
export { default as SOLANA } from "./solana";
Expand Down
35 changes: 0 additions & 35 deletions scripts/chain-configs/redstone/assets/grayscale-logo.svg

This file was deleted.

35 changes: 0 additions & 35 deletions scripts/chain-configs/redstone/assets/logo.svg

This file was deleted.

24 changes: 0 additions & 24 deletions scripts/chain-configs/redstone/index.ts

This file was deleted.

3 changes: 0 additions & 3 deletions scripts/generate-routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ const enabledRoutes = {
CHAIN_IDs.MODE,
CHAIN_IDs.BLAST,
CHAIN_IDs.LISK,
CHAIN_IDs.REDSTONE,
CHAIN_IDs.SCROLL,
CHAIN_IDs.ZORA,
CHAIN_IDs.WORLD_CHAIN,
Expand Down Expand Up @@ -184,7 +183,6 @@ const enabledRoutes = {
[CHAIN_IDs.OPTIMISM]: "0x89415a82d909a7238d69094C3Dd1dCC1aCbDa85C",
[CHAIN_IDs.PLASMA]: "0xF1BF00D947267Da5cC63f8c8A60568c59FA31bCb",
[CHAIN_IDs.POLYGON]: "0x89415a82d909a7238d69094C3Dd1dCC1aCbDa85C",
[CHAIN_IDs.REDSTONE]: "0x89415a82d909a7238d69094C3Dd1dCC1aCbDa85C",
[CHAIN_IDs.SCROLL]: "0x89415a82d909a7238d69094C3Dd1dCC1aCbDa85C",
[CHAIN_IDs.SONEIUM]: "0x89415a82d909a7238d69094C3Dd1dCC1aCbDa85C",
[CHAIN_IDs.UNICHAIN]: "0x89415a82d909a7238d69094C3Dd1dCC1aCbDa85C",
Expand All @@ -208,7 +206,6 @@ const enabledRoutes = {
[CHAIN_IDs.OPTIMISM]: "0x4D6d2A149A46D9D8C4473FbaA269f3738247eB60",
[CHAIN_IDs.PLASMA]: "0xdC49fD0a3A7d44969E818452Af93C46d5C8099a4",
[CHAIN_IDs.POLYGON]: "0x4D6d2A149A46D9D8C4473FbaA269f3738247eB60",
[CHAIN_IDs.REDSTONE]: "0x4D6d2A149A46D9D8C4473FbaA269f3738247eB60",
[CHAIN_IDs.SCROLL]: "0x4D6d2A149A46D9D8C4473FbaA269f3738247eB60",
[CHAIN_IDs.SONEIUM]: "0x4D6d2A149A46D9D8C4473FbaA269f3738247eB60",
[CHAIN_IDs.UNICHAIN]: "0x4D6d2A149A46D9D8C4473FbaA269f3738247eB60",
Expand Down
1 change: 0 additions & 1 deletion scripts/utils/enabled-chain-configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const enabledMainnetChainConfigs = [
chainConfigs.BLAST,
chainConfigs.LISK,
chainConfigs.SCROLL,
chainConfigs.REDSTONE,
chainConfigs.ZORA,
chainConfigs.WORLD_CHAIN,
chainConfigs.INK,
Expand Down
48 changes: 0 additions & 48 deletions src/constants/chains/configs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,6 @@ import polygonAmoyGrayscaleLogo from "assets/chain-logos/polygon-amoy-grayscale.
import { ReactComponent as polygonAmoyLogoSvg } from "assets/chain-logos/polygon-amoy.svg";
import { ReactComponent as polygonAmoyGrayscaleLogoSvg } from "assets/chain-logos/polygon-amoy-grayscale.svg";

import redstoneLogo from "assets/chain-logos/redstone.svg";
import redstoneGrayscaleLogo from "assets/chain-logos/redstone-grayscale.svg";
import { ReactComponent as redstoneLogoSvg } from "assets/chain-logos/redstone.svg";
import { ReactComponent as redstoneGrayscaleLogoSvg } from "assets/chain-logos/redstone-grayscale.svg";

import scrollLogo from "assets/chain-logos/scroll.svg";
import scrollGrayscaleLogo from "assets/chain-logos/scroll-grayscale.svg";
import { ReactComponent as scrollLogoSvg } from "assets/chain-logos/scroll.svg";
Expand Down Expand Up @@ -1118,47 +1113,6 @@ export const polygonAmoy_viem = defineChain({
},
});

export const redstone = {
name: "Redstone",
fullName: "Redstone",
chainId: 690,
logoURI: redstoneLogo,
grayscaleLogoURI: redstoneGrayscaleLogo,
logoSvg: redstoneLogoSvg,
grayscaleLogoSvg: redstoneGrayscaleLogoSvg,
rpcUrl: "https://rpc.redstonechain.com",
explorerUrl: "https://explorer.redstone.xyz",
constructExplorerLink: (txHash: string) =>
`${redstone.explorerUrl}/tx/${txHash}`,
nativeCurrencySymbol: "ETH",
customRpcUrl: process.env.REACT_APP_CHAIN_690_CUSTOM_RPC_URL,
pollingInterval: 2000,
};

export const redstone_viem = defineChain({
id: redstone.chainId,
name: redstone.name,
nativeCurrency: {
name: redstone.nativeCurrencySymbol,
symbol: redstone.nativeCurrencySymbol,
decimals: 18,
},
rpcUrls: {
default: {
http: [
redstone.customRpcUrl ? redstone.customRpcUrl : [],
redstone.rpcUrl,
].flat(),
},
},
blockExplorers: {
default: {
name: redstone.name + " Explorer",
url: redstone.explorerUrl,
},
},
});

export const scroll = {
name: "Scroll",
fullName: "Scroll",
Expand Down Expand Up @@ -1596,7 +1550,6 @@ export const chainConfigs = [
plasma,
polygon,
polygonAmoy,
redstone,
scroll,
sepolia,
solana,
Expand Down Expand Up @@ -1640,7 +1593,6 @@ export const chains_viem = [
plasma_viem,
polygon_viem,
polygonAmoy_viem,
redstone_viem,
scroll_viem,
sepolia_viem,
soneium_viem,
Expand Down
1 change: 0 additions & 1 deletion src/constants/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const orderedEnabledChainIds = [
CHAIN_IDs.BLAST,
CHAIN_IDs.LENS,
CHAIN_IDs.LISK,
CHAIN_IDs.REDSTONE,
CHAIN_IDs.SCROLL,
CHAIN_IDs.ZORA,
CHAIN_IDs.WORLD_CHAIN,
Expand Down
41 changes: 0 additions & 41 deletions src/data/chains_1.json
Original file line number Diff line number Diff line change
Expand Up @@ -1409,47 +1409,6 @@
}
]
},
{
"chainId": 690,
"name": "Redstone",
"publicRpcUrl": "https://rpc.redstonechain.com",
"explorerUrl": "https://explorer.redstone.xyz",
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/scripts/chain-configs/redstone/assets/logo.svg",
"spokePool": "0x13fDac9F9b4777705db45291bbFF3c972c6d1d97",
"spokePoolBlock": 5512122,
"inputTokens": [
{
"address": "0x4200000000000000000000000000000000000006",
"symbol": "WETH",
"name": "Wrapped Ether",
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/weth.svg"
},
{
"address": "0x4200000000000000000000000000000000000006",
"symbol": "ETH",
"name": "Ether",
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/eth.svg"
}
],
"outputTokens": [
{
"address": "0x4200000000000000000000000000000000000006",
"symbol": "WETH",
"name": "Wrapped Ether",
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/weth.svg"
},
{
"address": "0x4200000000000000000000000000000000000006",
"symbol": "ETH",
"name": "Ether",
"decimals": 18,
"logoUrl": "https://raw.githubusercontent.com/across-protocol/frontend/master/src/assets/token-logos/eth.svg"
}
]
},
{
"chainId": 7777777,
"name": "Zora",
Expand Down
Loading
Loading