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.
28 lines
604 B
28 lines
604 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const cronosTestnet = /*#__PURE__*/ defineChain({
|
|
id: 338,
|
|
name: 'Cronos Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'CRO',
|
|
symbol: 'tCRO',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://evm-t3.cronos.org'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Cronos Explorer (Testnet)',
|
|
url: 'https://explorer.cronos.org/testnet',
|
|
},
|
|
},
|
|
contracts: {
|
|
multicall3: {
|
|
address: '0xcA11bde05977b3631167028862bE2a173976CA11',
|
|
blockCreated: 10191251,
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|