Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/bright-rings-dream.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@lit-protocol/constants': major
---

Remove deprecated campNetwork config from EVM network constants, update RPC and blockexplorer URLs for campTestnet, and add campMainnet network config.
36 changes: 18 additions & 18 deletions packages/constants/src/lib/constants/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ export const LIT_CHAINS_KEYS = [
'waevEclipseDevnet',
'verifyTestnet',
'fuse',
'campNetwork',
'vanar',
'lisk',
'chilizMainnet',
Expand All @@ -111,6 +110,7 @@ export const LIT_CHAINS_KEYS = [
'bitTorrentTestnet',
'storyOdyssey',
'campTestnet',
'campMainnet',
'hushedNorthstar',
'amoy',
'matchain',
Expand Down Expand Up @@ -739,19 +739,6 @@ export const LIT_CHAINS: LITChain<LitEVMChainKeys, LITEVMChain> = {
type: null,
vmType: VMTYPE.EVM,
},
campNetwork: {
contractAddress: null,
chainId: 325000,
name: 'Camp Network',
symbol: 'ETH',
decimals: 18,
rpcUrls: ['https://rpc.camp-network-testnet.gelato.digital'],
blockExplorerUrls: [
'https://explorer.camp-network-testnet.gelato.digital/',
],
type: null,
vmType: VMTYPE.EVM,
},
vanar: {
contractAddress: null,
chainId: 78600,
Expand Down Expand Up @@ -946,12 +933,25 @@ export const LIT_CHAINS: LITChain<LitEVMChainKeys, LITEVMChain> = {
},
campTestnet: {
contractAddress: null,
chainId: 325000,
chainId: 123420001114,
name: 'Camp Testnet',
symbol: 'ETH',
symbol: 'CAMP',
decimals: 18,
rpcUrls: ['https://rpc.basecamp.t.raas.gelato.cloud'],
blockExplorerUrls: ['https://basecamp.cloud.blockscout.com/'],
type: null,
vmType: VMTYPE.EVM,
},
campMainnet: {
contractAddress: null,
chainId: 484,
name: 'Camp Mainnet',
symbol: 'CAMP',
decimals: 18,
rpcUrls: ['https://rpc.camp-network-testnet.gelato.digital'],
blockExplorerUrls: ['https://camp-network-testnet.blockscout.com'],
rpcUrls: ['https://rpc.camp.raas.gelato.cloud'],
blockExplorerUrls: [
'https://camp.cloud.blockscout.com/',
],
type: null,
vmType: VMTYPE.EVM,
},
Expand Down
Loading