Skip to content

Commit

Permalink
update Validators nav according to dev user journeys doc
Browse files Browse the repository at this point in the history
  • Loading branch information
ffe9f8 committed Jan 29, 2024
1 parent e4d1af4 commit 93a7811
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 15 deletions.
27 changes: 13 additions & 14 deletions src/layouts/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export const getNavigation = (section) => {
href: "/validator/setup/config",
},
{
title: "Create and backup accounts",
title: "Create and back up accounts",
href: "/validator/setup/backup",
},
{
Expand All @@ -233,12 +233,11 @@ export const getNavigation = (section) => {
href: "/validator/setup/register-broadcaster",
},
{ title: "Stake AXL tokens", href: "/validator/setup/stake-axl" },
{ title: "Health check", href: "/validator/setup/health-check" },
{ title: "Manual setup", href: "/validator/setup/manual" },
],
},
{
title: "Support External Chains",
title: "External Chain Support",
children: [
{ title: "Overview", href: "/validator/external-chains/overview" },
{ title: "Arbitrum", href: "/validator/external-chains/arbitrum" },
Expand Down Expand Up @@ -273,10 +272,10 @@ export const getNavigation = (section) => {
title: "Operations",
children: [
{
title: "Rotating mnemonics",
title: "Rotate tofnd mnemonics",
href: "/validator/operations/mnemonic-rotation",
},
{ title: "Monitoring", href: "/validator/operations/monitoring" },
{ title: "Monitor a validator or node", href: "/validator/operations/monitoring" },
],
},
{
Expand All @@ -291,13 +290,17 @@ export const getNavigation = (section) => {
href: "/validator/troubleshoot/missed-too-many-blocks",
},
{
title: "Unjail your validator",
title: "Unjail validator",
href: "/validator/troubleshoot/unjail",
},
{
title: "Leave the network",
href: "/validator/troubleshoot/leave",
},
],
},
{
title: "Validator status",
children: [
{ title: "Register external chains", href: "/validator/status/register-external-chains" },
{ title: "Check validator status", href: "/validator/status/health-check" },
{ title: "Leave the network", href: "/validator/status/leave" },
],
},
],
Expand Down Expand Up @@ -360,10 +363,6 @@ export const getNavigation = (section) => {
children: [
{ title: "Crosschain Message Flow", href: "/learn/network/flow" },
{ title: "axlUSDC", href: "/learn/axlusdc" },
{
title: "Registering external chains for validators",
href: "/learn/validators",
},
{ title: "Security Overview", href: "/learn/security" },
{ title: "Interchain Transaction Duration", href: "/learn/txduration" },
{ title: "EVM Contract Governance", href: "/learn/evm-governance" },
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 15 additions & 1 deletion vercel.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
{
"framework": null,
"redirects": [
{
"source": "/learn/validators",
"destination": "/validator/status/register-external-chains",
"permanent": true
},
{
"source": "/validator/setup/health-check",
"destination": "/validator/status/health-check",
"permanent": true
},
{
"source": "/validator/troubleshoot/leave",
"destination": "/validator/status/leave",
"permanent": true
},
{
"source": "/node",
"destination": "/node/config-node",
Expand Down Expand Up @@ -141,7 +156,6 @@
"destination": "/dev/send-tokens/overview",
"permanent": true
},

{
"source": "/dev/build/:path(.*)",
"destination": "/dev/general-message-passing/:path",
Expand Down

1 comment on commit 93a7811

@vercel
Copy link

@vercel vercel bot commented on 93a7811 Jan 29, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.