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
555 B
23 lines
555 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const bearNetworkChainTestnet = /*#__PURE__*/ defineChain({
|
|
id: 751230,
|
|
name: 'Bear Network Chain Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'tBRNKC',
|
|
symbol: 'tBRNKC',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://brnkc-test.bearnetwork.net'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'BrnkTestScan',
|
|
url: 'https://brnktest-scan.bearnetwork.net',
|
|
apiUrl: 'https://brnktest-scan.bearnetwork.net/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|