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
12 changes: 12 additions & 0 deletions app/utils/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ import {
meter,
mode,
modeTestnet,
monad,
monadTestnet,
moonbaseAlpha,
neonDevnet,
neonMainnet,
Expand Down Expand Up @@ -150,6 +152,8 @@ const MANTLE = mantle.id;
const MANTLE_SEPOLIA = mantleSepoliaTestnet.id;
const MODE = mode.id;
const MODE_SEPOLIA = modeTestnet.id;
const MONAD = monad.id;
const MONAD_TESTNET = monadTestnet.id;
const BSC = bsc.id;
const BSC_TESTNET = bscTestnet.id;
const FANTOM = fantom.id;
Expand Down Expand Up @@ -262,6 +266,8 @@ type Chain =
| typeof MANTLE_SEPOLIA
| typeof MODE
| typeof MODE_SEPOLIA
| typeof MONAD
| typeof MONAD_TESTNET
| typeof BSC
| typeof BSC_TESTNET
| typeof FANTOM
Expand Down Expand Up @@ -374,6 +380,8 @@ const CHAINS: Chain[] = [
MANTLE_SEPOLIA,
MODE,
MODE_SEPOLIA,
MONAD,
MONAD_TESTNET,
BSC,
BSC_TESTNET,
FANTOM,
Expand Down Expand Up @@ -530,6 +538,10 @@ function getChainData(chain: Chain): ChainData {
return mode;
case MODE_SEPOLIA:
return modeTestnet;
case MONAD:
return monad;
case MONAD_TESTNET:
return monadTestnet;
case BSC:
return bsc;
case BSC_TESTNET:
Expand Down
8 changes: 4 additions & 4 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"ky": "^1.10.0",
"nuxt": "^4.1.1",
"react": "^19.1.1",
"viem": "^2.38.6",
"viem": "^2.40.0",
"vue": "^3.5.21",
"vue-router": "^4.5.1"
},
Expand Down