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.
26 lines
604 B
26 lines
604 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const redbellyTestnet = /*#__PURE__*/ defineChain({
|
|
id: 153,
|
|
name: 'Redbelly Network Testnet',
|
|
nativeCurrency: {
|
|
name: 'Redbelly Native Coin',
|
|
symbol: 'RBNT',
|
|
decimals: 18,
|
|
},
|
|
rpcUrls: {
|
|
default: {
|
|
http: ['https://governors.testnet.redbelly.network'],
|
|
},
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'Routescan',
|
|
url: 'https://redbelly.testnet.routescan.io',
|
|
apiUrl:
|
|
'https://api.routescan.io/v2/network/testnet/evm/153_2/etherscan/api',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|