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.
20 lines
473 B
20 lines
473 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const elastosTestnet = /*#__PURE__*/ defineChain({
|
|
id: 21,
|
|
name: 'Elastos Smart Chain Testnet',
|
|
nativeCurrency: { name: 'tELA', symbol: 'tELA', decimals: 18 },
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://api-testnet.elastos.io/eth'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Elastos Explorer',
|
|
url: 'https://esc-testnet.elastos.io',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|