diff --git a/platforms/src/GtcStaking/Providers-config.ts b/platforms/src/GtcStaking/Providers-config.ts index f89f3e0a7b..b724fdeb82 100644 --- a/platforms/src/GtcStaking/Providers-config.ts +++ b/platforms/src/GtcStaking/Providers-config.ts @@ -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.", + }, ], }, { diff --git a/platforms/src/Idena/App-Bindings.ts b/platforms/src/Idena/App-Bindings.ts index 4fe6485ad7..d4e9bdc660 100644 --- a/platforms/src/Idena/App-Bindings.ts +++ b/platforms/src/Idena/App-Bindings.ts @@ -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", }, }; diff --git a/platforms/src/Idena/Providers-config.ts b/platforms/src/Idena/Providers-config.ts index 3ae89a623d..a7e088471a 100644 --- a/platforms/src/Idena/Providers-config.ts +++ b/platforms/src/Idena/Providers-config.ts @@ -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/", @@ -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%.", + }, ], }, ];