Skip to content

Commit 0b868c4

Browse files
committed
Fix nits
1 parent 9c40fa2 commit 0b868c4

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

src/components/SnapshotService/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ const snapshotCards = [
2525
const downloadCards = [
2626
{
2727
title: 'Calibnet',
28-
link: 'https://forest.chainsafe.io/calibnet/snapshot-latest'
28+
link: 'https://forest-archive.chainsafe.dev/latest/calibnet/'
2929
},
3030
{
3131
title: 'Mainnet',
32-
link: 'https://forest.chainsafe.io/mainnet/snapshot-latest'
32+
link: 'https://forest-archive.chainsafe.dev/latest/mainnet/'
3333
},
3434
]
3535

src/sections/BetaTesters/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export default function BetaTesters() {
3939

4040

4141
const splitSentence = splitText(`Join our beta program to help make Forest the best it can be. Let us know how we can support your needs.`)
42+
4243
return (
4344
<div ref={ref} className="relative w-full md:min-h-[70vh]" id="beta-program">
4445
<div className="relative flex flex-col justify-center py-14 lg:pt-32 px-8">

src/sections/RunningNode/index.tsx

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,21 @@ export default function RunningNode() {
3535
Running a Node
3636
</h2>
3737
<div className='grid lg:grid-cols-2 gap-y-2 py-4 gap-x-1 '>
38-
{processes.map((card, index) => (
39-
<div key={index} className='transition-all py-8 flex flex-col justify-start' >
40-
{card.comp}
38+
<div className='transition-all py-8 flex flex-col justify-start' >
39+
<CalibnetProcessNoSSR />
4140
<div className='px-2'>
42-
<h3 className='mt-1 md:mt-3 text-gray-300 text-xl leading-7 max-w-[80%]'>{card.desc}</h3>
43-
{card.calibnetCommand ? (<h3 className='mt-1 md:mt-3 text-xl leading-6 text-brand-400 font-mono max-w-[80%]'><span className="text-lg font-sans text-gray-300">On calibnet: </span> {card.calibnetCommand}</h3>) : ''}
44-
<h3 className='mt-1 md:mt-1 text-brand-400 text-xl leading-6 font-mono max-w-[80%]'><span className="text-lg font-sans text-gray-300">On mainnet: </span> {card.mainnetCommand}</h3>
41+
<h3 className='mt-1 md:mt-3 text-gray-300 text-xl leading-7 max-w-[80%]'>Start the forest node. It will automatically connect to the bootstrap peers and start synchronizing the chain. If it is the first time starting the node, it will download the latest state snapshot</h3>
42+
<h3 className='mt-1 md:mt-3 text-xl leading-6 text-brand-400 font-mono max-w-[80%]'><span className="text-lg font-sans text-gray-300">On calibnet: </span> forest --chain calibnet</h3>
43+
<h3 className='mt-1 md:mt-1 text-brand-400 text-xl leading-6 font-mono max-w-[80%]'><span className="text-lg font-sans text-gray-300">On mainnet: </span> forest</h3>
44+
</div>
45+
</div>
46+
<div className='transition-all py-8 flex flex-col justify-start' >
47+
<SyncStatusNoSSR />
48+
<div className='px-2'>
49+
<h3 className='mt-1 md:mt-3 text-gray-300 text-xl leading-7 max-w-[80%]'>In another shell, invoke commands on the running node using forest-cli, i.e., to check the synchronization status:</h3>
50+
<h3 className='mt-1 md:mt-3 text-xl leading-6 text-brand-400 font-mono max-w-[80%]'><span className="text-lg font-sans text-gray-300">On calibnet and mainnet: </span> forest-cli sync status</h3>
4551
</div>
4652
</div>
47-
))}
4853
</div>
4954
</div>
5055
</div>

0 commit comments

Comments
 (0)