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
3 changes: 3 additions & 0 deletions packages/adapter-evm/src/networks/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
bscTestnet,
ethereumSepolia,
lineaSepolia,
monadTestnet,
optimismSepolia,
polygonAmoy,
polygonZkEvmCardona,
Expand Down Expand Up @@ -55,6 +56,7 @@ export const evmTestnetNetworks: TypedEvmNetworkConfig[] = [
lineaSepolia,
scrollSepolia,
zksyncSepoliaTestnet,
monadTestnet,
// Other testnet networks...
];

Expand Down Expand Up @@ -89,4 +91,5 @@ export {
lineaSepolia,
scrollSepolia,
zksyncSepoliaTestnet,
monadTestnet,
};
24 changes: 24 additions & 0 deletions packages/adapter-evm/src/networks/testnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
baseSepolia as viemBaseSepolia,
bscTestnet as viemBscTestnet,
lineaSepolia as viemLineaSepolia,
monadTestnet as viemMonadTestnet,
optimismSepolia as viemOptimismSepolia,
polygonAmoy as viemPolygonAmoy,
polygonZkEvmCardona as viemPolygonZkEvmCardona,
Expand Down Expand Up @@ -269,4 +270,27 @@ export const lineaSepolia: TypedEvmNetworkConfig = {
viemChain: viemLineaSepolia,
};

export const monadTestnet: TypedEvmNetworkConfig = {
id: 'monad-testnet',
exportConstName: 'monadTestnet',
name: 'Monad Testnet',
ecosystem: 'evm',
network: 'monad',
type: 'testnet',
isTestnet: true,
chainId: 10143,
rpcUrl: viemMonadTestnet.rpcUrls.default.http[0],
explorerUrl: 'https://testnet.monadexplorer.com',
apiUrl: 'https://api.etherscan.io/v2/api',
primaryExplorerApiIdentifier: 'mondad-explorer',
Copy link
Collaborator

@pasevin pasevin Aug 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey there is a typo here

supportsEtherscanV2: true,
icon: 'monad',
nativeCurrency: {
name: 'Monad',
symbol: 'MON',
decimals: 18,
},
viemChain: viemMonadTestnet,
};

// TODO: Add other EVM testnet networks as needed (e.g., Arbitrum Sepolia)
Loading