From 6bcf2bc2c6f625c47d9caa3893f04b22266cb61b Mon Sep 17 00:00:00 2001 From: IshaVenikar Date: Fri, 9 Aug 2024 10:42:21 +0530 Subject: [PATCH] Display next steps on success page --- src/pages/OnboardingSuccess.tsx | 103 ++++++++++++++++++++------------ 1 file changed, 64 insertions(+), 39 deletions(-) diff --git a/src/pages/OnboardingSuccess.tsx b/src/pages/OnboardingSuccess.tsx index 30ab8eb..c06bdb5 100644 --- a/src/pages/OnboardingSuccess.tsx +++ b/src/pages/OnboardingSuccess.tsx @@ -73,54 +73,79 @@ const OnboardingSuccess = () => { }, [cosmosAddress]); return ( - - Transaction Successful - - Participant onboarded:
-
+ <> -
-          {participant && (
-            
+ Transaction Successful + + Participant onboarded:
+
+ +
+            {participant && (
+              
Cosmos Address: {participant.cosmosAddress}
Nitro Address: {participant.nitroAddress}
Role: {participant.role}
KYC ID: {participant.kycId}
-
-
- )} -
-
- {ENABLE_KYC ? ( - - KYC Status - {!loading && token && cosmosAddress && ( - - )} +
+
+ )} +
- ) : '' - } -
+ {ENABLE_KYC ? ( + + KYC Status + {!loading && token && cosmosAddress && ( + + )} + + ) : '' + } + + Next Steps + + + For participants, await the start of the stage 1 chain, which will be announced in various social media channels. In the meantime, familiarize yourself with the{' '} + webapp publishing workflow{' '} + as this is the main task you will be participating in.
+
+ For validators, ensure your service provider is running and ready to deploy webapps. Await publication of the laconicd version, genesis file, and peers to the LORO testnet repo, then follow{' '} + these instructions{' '} + for joining stage 1 as a validator. +
+
+ ); };