Replace ethereumAddress with nitroAddress (#1)

This commit is contained in:
Isha Venikar 2024-07-15 17:15:24 +05:30 committed by GitHub
parent 0b6ec3bd98
commit 7438a27181
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View File

@ -6,8 +6,8 @@ import { Box, Typography } from "@mui/material";
import { Registry } from "@cerc-io/registry-sdk";
interface Participant {
cosmos_address: string;
ethereum_address: string;
cosmosAddress: string;
nitroAddress: string;
}
const registry = new Registry(
@ -24,7 +24,7 @@ const OnboardingSuccess = () => {
try {
const allParticipants: Participant[] = await registry.getParticipants();
const participant = allParticipants.find(
(participant) => participant.cosmos_address === cosmosAddress
(participant) => participant.cosmosAddress === cosmosAddress
);
if (!participant) {
@ -64,8 +64,8 @@ const OnboardingSuccess = () => {
<pre style={{ whiteSpace: "pre-wrap", margin: 0 }}>
{participant && (
<div>
Cosmos Address: {participant.cosmos_address} <br />
Ethereum Address: {participant.ethereum_address} <br />
Cosmos Address: {participant.cosmosAddress} <br />
Nitro Address: {participant.nitroAddress} <br />
<br />
</div>
)}

View File

@ -39,7 +39,7 @@ const SignWithCosmos = () => {
transactionMessage: MsgOnboardParticipantEncodeObject
) => {
if (!ethAddress) {
enqueueSnackbar("Set ethereum address");
enqueueSnackbar("Set nitro address");
return;
}