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.
30 lines
678 B
30 lines
678 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const kavaTestnet = /*#__PURE__*/ defineChain({
|
|
id: 2221,
|
|
name: 'Kava EVM Testnet',
|
|
network: 'kava-testnet',
|
|
nativeCurrency: {
|
|
name: 'Kava',
|
|
symbol: 'KAVA',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://evm.testnet.kava.io'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Kava EVM Testnet Explorer',
|
|
url: 'https://testnet.kavascan.com/',
|
|
apiUrl: 'https://testnet.kavascan.com/api',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xDf1D724A7166261eEB015418fe8c7679BBEa7fd6',
|
|
blockCreated: 7242179,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|