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.
23 lines
509 B
23 lines
509 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const auroraTestnet = /*#__PURE__*/ defineChain({
|
|
id: 1313161555,
|
|
name: 'Aurora Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Ether',
|
|
symbol: 'ETH',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://testnet.aurora.dev'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Aurorascan',
|
|
url: 'https://testnet.aurorascan.dev',
|
|
apiUrl: 'https://testnet.aurorascan.dev/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|