diff --git a/apps/commune-validator/src/app/(expanded-pages)/tutorial/page.tsx b/apps/commune-validator/src/app/(expanded-pages)/tutorial/page.tsx index c988bb7..2cf0c42 100644 --- a/apps/commune-validator/src/app/(expanded-pages)/tutorial/page.tsx +++ b/apps/commune-validator/src/app/(expanded-pages)/tutorial/page.tsx @@ -27,7 +27,7 @@ export const tutorialData = { description: "Staking on the Community Validator", steps: [ "Navigate to the staking tab in your wallet", - "Add this validator address: 5DUWKpGBneBbna6PFHZk18Gp9wyvLUFPiWy5maAARjRjayPp (Community Validator official validator)", + "Add this validator address: 5Hgik8Kf7nq5VBtW41psbpXu1kinXpqRs4AHotPe6u1w6QX2 (Community Validator official validator)", "Stake your desired amount (this determines your allocation power for modules and subnets)", "Note: Your staked balance remains untouched; it only represents your voting power", ], diff --git a/apps/commune-validator/src/app/components/delegated-list.tsx b/apps/commune-validator/src/app/components/delegated-list.tsx index 47f907f..2996352 100644 --- a/apps/commune-validator/src/app/components/delegated-list.tsx +++ b/apps/commune-validator/src/app/components/delegated-list.tsx @@ -105,7 +105,7 @@ export function DelegatedList() { { enabled: !!selectedAccount?.address }, ); - const validatorAddress = "5DUWKpGBneBbna6PFHZk18Gp9wyvLUFPiWy5maAARjRjayPp"; + const validatorAddress = "5Hgik8Kf7nq5VBtW41psbpXu1kinXpqRs4AHotPe6u1w6QX2"; function userWeightPower( userStakes: { address: string; stake: string }[] | undefined, diff --git a/apps/commune-wallet/src/app/components/validators-list.tsx b/apps/commune-wallet/src/app/components/validators-list.tsx index 82a9b9e..8a0a982 100644 --- a/apps/commune-wallet/src/app/components/validators-list.tsx +++ b/apps/commune-wallet/src/app/components/validators-list.tsx @@ -29,6 +29,11 @@ export function ValidatorsList(props: ValidatorsListProps) { description: "Validator of Communex platform.", address: "5DUWKpGBneBbna6PFHZk18Gp9wyvLUFPiWy5maAARjRjayPp", }, + { + name: "Community Validator", + description: "Community Validator official validator.", + address: "5Hgik8Kf7nq5VBtW41psbpXu1kinXpqRs4AHotPe6u1w6QX2", + }, { name: "vali::comstats", description: "Validator of Comstats platform.", @@ -60,7 +65,6 @@ export function ValidatorsList(props: ValidatorsListProps) { const currentList = getValidatorsList(); - return (