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.
22 lines
522 B
22 lines
522 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const etherlinkShadownetTestnet = /*#__PURE__*/ defineChain({
|
|
id: 127823,
|
|
name: 'Etherlink Shadownet Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'tez',
|
|
symbol: 'XTZ',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://node.shadownet.etherlink.com'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Etherlink Shadownet Testnet Explorer',
|
|
url: 'https://shadownet.explorer.etherlink.com',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|