Integrate sumsub KYC with terms & conditions #6

Merged
nabarun merged 5 commits from deep-stack/testnet-onboarding-app:kyc-integration into main 2024-07-30 08:22:10 +00:00
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 8242eb05cc - Show all commits

View File

@ -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 = () => {
<div>
Cosmos Address: {participant.cosmosAddress} <br />
Nitro Address: {participant.nitroAddress} <br />
Role: {participant.role} <br />
KYC ID: {participant.kycId} <br />
<br />
</div>
)}

View File

@ -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]);