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
482 B
22 lines
482 B
import { defineChain } from '../../utils/chain/defineChain.js'
|
|
|
|
export const basecampTestnet = /*#__PURE__*/ defineChain({
|
|
id: 123420001114,
|
|
name: 'Basecamp Testnet',
|
|
nativeCurrency: {
|
|
decimals: 18,
|
|
name: 'Camp',
|
|
symbol: 'CAMP',
|
|
},
|
|
rpcUrls: {
|
|
default: { http: ['https://rpc.basecamp.t.raas.gelato.cloud'] },
|
|
},
|
|
blockExplorers: {
|
|
default: {
|
|
name: 'basecamp',
|
|
url: 'https://basecamp.cloud.blockscout.com',
|
|
},
|
|
},
|
|
testnet: true,
|
|
})
|