From 54fa62bc7fb02332bd828c444a2053ecc512cb97 Mon Sep 17 00:00:00 2001 From: Adw8 Date: Mon, 29 Jul 2024 10:49:03 +0530 Subject: [PATCH 1/2] Change message signed by nitro key --- src/pages/SignWithNitroKey.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/SignWithNitroKey.tsx b/src/pages/SignWithNitroKey.tsx index 8785a37..d754c6a 100644 --- a/src/pages/SignWithNitroKey.tsx +++ b/src/pages/SignWithNitroKey.tsx @@ -35,7 +35,7 @@ const SignWithNitroKey = () => { const message = useMemo(() => { return { - msg: "Register my account as a validator on the Laconic network", + msg: "Register my account as a participant on the Laconic network", address: ethAddress, }; }, [ethAddress]); -- 2.45.2 From 0eddd437290ffe0c3db0186bbb54d16fd9cfaf0b Mon Sep 17 00:00:00 2001 From: Shreerang Kale Date: Mon, 29 Jul 2024 14:52:34 +0530 Subject: [PATCH 2/2] Show KYC ID and role values after cosmos tx success --- src/pages/OnboardingSuccess.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pages/OnboardingSuccess.tsx b/src/pages/OnboardingSuccess.tsx index 3a1fcfc..ee9877b 100644 --- a/src/pages/OnboardingSuccess.tsx +++ b/src/pages/OnboardingSuccess.tsx @@ -8,6 +8,8 @@ import { Registry } from "@cerc-io/registry-sdk"; interface Participant { cosmosAddress: string; nitroAddress: string; + role: string; + kycId: string; } const registry = new Registry( @@ -69,6 +71,8 @@ const OnboardingSuccess = () => {
Cosmos Address: {participant.cosmosAddress}
Nitro Address: {participant.nitroAddress}
+ Role: {participant.role}
+ KYC ID: {participant.kycId}

)} -- 2.45.2