Skip to content

Commit 0cf90d6

Browse files
paulbalajiclaude
andcommitted
feat: restrict warp route whitelist to Celestia routes
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 61791b5 commit 0cf90d6

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

src/consts/warpRouteWhitelist.ts

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
// Warp Route IDs use format `SYMBOL/chainname1-chainname2...` where chains are ordered alphabetically
33
// If left null, all warp routes in the configured registry will be included
44
// If set to a list (including an empty list), only the specified routes will be included
5-
export const warpRouteWhitelist: Array<string> | null = null;
6-
// Example:
7-
// [
8-
// // 'ETH/ethereum-viction'
9-
// ];
5+
export const warpRouteWhitelist: Array<string> | null = [
6+
'SOL/celestia-solanamainnet',
7+
'SOL/celestia-eden',
8+
'ETH/celestia-ethereum',
9+
'ETH/celestia-eden',
10+
'WBTC/celestia-ethereum',
11+
'WBTC/celestia-eden',
12+
];

0 commit comments

Comments
 (0)