Replace cosmos address with laconic address in UI

This commit is contained in:
Shreerang Kale 2024-08-11 11:26:39 +05:30
parent cedbcf2e5c
commit b663507b17
5 changed files with 14 additions and 9 deletions

View File

@ -16,7 +16,12 @@ const TermsAndConditionsDialog: React.FC<TermsDialogProps> = ({ open, onClose })
<TermsAndConditionsBox height='65vh' /> <TermsAndConditionsBox height='65vh' />
</DialogContent> </DialogContent>
<DialogActions> <DialogActions>
<Button onClick={onClose} color="primary"> <Button>
<a href="/TermsAndConditions.pdf" download style={{textDecoration: "none", color: "inherit"}}>
Download PDF
</a>
</Button>
<Button onClick={onClose}>
Close Close
</Button> </Button>
</DialogActions> </DialogActions>

View File

@ -38,14 +38,14 @@ const LandingPage = () => {
</Box> </Box>
<TermsAndConditionsBox height="43vh" onLoad={()=>{setIsDisabled(false);}} /> <TermsAndConditionsBox height="43vh" onLoad={()=>{setIsDisabled(false);}} />
<Box m={2} display="flex" justifyContent="center" gap={2}> <Box m={2} display="flex" justifyContent="center" gap={2}>
<Button variant="contained" color="primary" onClick={handleAccept} disabled={isDisabled}>
Accept
</Button>
<Button variant="outlined" color="primary" disabled={isDisabled}> <Button variant="outlined" color="primary" disabled={isDisabled}>
<a href="/TermsAndConditions.pdf" download style={{textDecoration: "none", color: "inherit"}}> <a href="/TermsAndConditions.pdf" download style={{textDecoration: "none", color: "inherit"}}>
Download PDF Download PDF
</a> </a>
</Button> </Button>
<Button variant="contained" color="primary" onClick={handleAccept} disabled={isDisabled}>
Accept
</Button>
</Box> </Box>
</> </>
); );

View File

@ -33,7 +33,7 @@ const OnboardingSuccess = () => {
const fetchParticipants = async () => { const fetchParticipants = async () => {
try { try {
if (!cosmosAddress) { if (!cosmosAddress) {
enqueueSnackbar("Cosmos address is not provided", { variant: "error" }); enqueueSnackbar("Laconic address is not provided", { variant: "error" });
return; return;
} }
const participant: Participant = await registry.getParticipantByAddress(cosmosAddress); const participant: Participant = await registry.getParticipantByAddress(cosmosAddress);
@ -93,7 +93,7 @@ const OnboardingSuccess = () => {
<pre style={{ whiteSpace: "pre-wrap", margin: 0 }}> <pre style={{ whiteSpace: "pre-wrap", margin: 0 }}>
{participant && ( {participant && (
<div> <div>
Cosmos Address: {participant.cosmosAddress} <br /> Laconic Address: {participant.cosmosAddress} <br />
Nitro Address: {participant.nitroAddress} <br /> Nitro Address: {participant.nitroAddress} <br />
Role: {participant.role} <br /> Role: {participant.role} <br />
KYC ID: {participant.kycId} <br /> KYC ID: {participant.kycId} <br />

View File

@ -157,7 +157,7 @@ const SignWithCosmos = () => {
<Typography variant="h5" display={`${isTncAccepted ? "none" : "block"}`}>Please accept terms and conditions to continue</Typography> <Typography variant="h5" display={`${isTncAccepted ? "none" : "block"}`}>Please accept terms and conditions to continue</Typography>
<SelectRoleCard handleAccept={() => setIsTncAccepted(true)} handleRoleChange={setRole}/> <SelectRoleCard handleAccept={() => setIsTncAccepted(true)} handleRoleChange={setRole}/>
<Typography variant="h5">Send transaction to chain</Typography> <Typography variant="h5">Send transaction to chain</Typography>
<Typography>Cosmos Account:</Typography> <Typography>Laconic Account:</Typography>
<Card className='mt-1 mb-1'> <Card className='mt-1 mb-1'>
<CardContent> <CardContent>
<Grid container spacing={2}> <Grid container spacing={2}>

View File

@ -177,7 +177,7 @@ const Validator = () => {
> >
{participant && ( {participant && (
<pre style={{ whiteSpace: "pre-wrap", margin: 0 }}> <pre style={{ whiteSpace: "pre-wrap", margin: 0 }}>
Cosmos Address: {participant.cosmosAddress} <br /> Laconic Address: {participant.cosmosAddress} <br />
Nitro Address: {participant.nitroAddress} <br /> Nitro Address: {participant.nitroAddress} <br />
Role: {participant.role} <br /> Role: {participant.role} <br />
KYC ID: {participant.kycId} <br /> KYC ID: {participant.kycId} <br />