Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(platforms): updating Staking and Idena descriptions #2981

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
19 changes: 16 additions & 3 deletions platforms/src/GtcStaking/Providers-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,22 @@ export const ProviderConfig: PlatformGroupSpec[] = [
{
platformGroup: "Self GTC Staking",
providers: [
{ title: "5 GTC (Bronze)", name: "SelfStakingBronze" },
{ title: "20 GTC (Silver)", name: "SelfStakingSilver" },
{ title: "125 GTC (Gold)", name: "SelfStakingGold" },
{
title: "5 GTC (Bronze)",
name: "SelfStakingBronze",
description: "Beginner staking level showcasing initial commitment and engagement with the community.",
},
{
title: "20 GTC (Silver)",
name: "SelfStakingSilver",
description:
"Intermediate staking level demonstrating a stronger involvement and contribution to the Passport XYZ network.",
},
{
title: "125 GTC (Gold)",
name: "SelfStakingGold",
description: "Advanced staking level reflecting a substantial commitment and leadership within the community.",
},
],
},
{
Expand Down
4 changes: 3 additions & 1 deletion platforms/src/Idena/App-Bindings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@ export class IdenaPlatform extends Platform {
path = "idena";

banner = {
heading:
"Connect Idena to Passport XYZ for enhanced identity verification, confirming your human presence without sharing personal details. This guide simplifies the connection process.",
cta: {
label: "Learn more",
label: "Help Guide",
url: "https://support.passport.xyz/passport-knowledge-base/stamps/how-do-i-add-passport-stamps/idena-stamp",
},
};
Expand Down
21 changes: 17 additions & 4 deletions platforms/src/Idena/Providers-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const PlatformDetails: PlatformSpec = {
icon: "./assets/idenaStampIcon.svg",
platform: "Idena",
name: "Idena",
description: "Connect to Idena to verify your human identity.",
description: "Prove Your Unique Humanity with Idena",
connectMessage: "Verify Identity",
enablePlatformCardUpdate: true,
website: "https://idena.io/",
Expand All @@ -19,9 +19,22 @@ export const ProviderConfig: PlatformGroupSpec[] = [
{
platformGroup: "Identity State",
providers: [
{ title: "Newbie", name: "IdenaState#Newbie" },
{ title: "Verified", name: "IdenaState#Verified" },
{ title: "Human", name: "IdenaState#Human" },
{
title: "Newbie",
name: "IdenaState#Newbie",
description:
"Granted after passing the initial validation, indicating your verification initiation in the Idena system.",
},
{
title: "Verified",
name: "IdenaState#Verified",
description: "Achieved by successfully completing three consecutive validations with a Total score >= 75%.",
},
{
title: "Human",
name: "IdenaState#Human",
description: "Earned through four consecutive successful validations and maintaining a Total score >= 92%.",
},
],
},
];
Expand Down
Loading