You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
644 B
31 lines
644 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const monadTestnet = /*#__PURE__*/ defineChain({
|
|
id: 10_143,
|
|
name: 'Monad Testnet',
|
|
blockTime: 400,
|
|
nativeCurrency: {
|
|
name: 'Testnet MON Token',
|
|
symbol: 'MON',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://testnet-rpc.monad.xyz'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Monad Testnet explorer',
|
|
url: 'https://testnet.monadexplorer.com',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
|
blockCreated: 251449,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|