File tree Expand file tree Collapse file tree 8 files changed +27
-33
lines changed Expand file tree Collapse file tree 8 files changed +27
-33
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const ConnectExtensionButton = (): JSX.Element => {
13
13
< >
14
14
{ extensionAttachStatus === "attached" && ! isExtensionConnected && (
15
15
< ActionButton backgroundColor = "yellow" size = "sm" onClick = { connect } >
16
- Connect Extension
16
+ Connect Keychain
17
17
</ ActionButton >
18
18
) }
19
19
{ extensionAttachStatus === "detached" && (
@@ -24,7 +24,7 @@ export const ConnectExtensionButton = (): JSX.Element => {
24
24
backgroundColor = "yellow"
25
25
size = "sm"
26
26
>
27
- Download Extension
27
+ Download Keychain
28
28
</ ActionButton >
29
29
) }
30
30
</ >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export const Intro = (): JSX.Element => {
13
13
"uppercase text-center font-medium text-yellow leading-10 text-4xl"
14
14
) }
15
15
>
16
- Your Gateway to Shielded Multichain
16
+ Your Gateway to the Shielded Multichain
17
17
</ h2 >
18
18
</ div >
19
19
< div className = "flex gap-4 w-full" >
@@ -25,7 +25,7 @@ export const Intro = (): JSX.Element => {
25
25
size = "sm"
26
26
outlineColor = "yellow"
27
27
>
28
- Help
28
+ Community Help
29
29
</ ActionButton >
30
30
</ div >
31
31
</ div >
Original file line number Diff line number Diff line change 1
1
import { SidebarMenuItem } from "App/Common/SidebarMenuItem" ;
2
2
import GovernanceRoutes from "App/Governance/routes" ;
3
3
import { MASPIcon } from "App/Icons/MASPIcon" ;
4
- import { SwapIcon } from "App/Icons/SwapIcon" ;
5
4
import { AiFillHome } from "react-icons/ai" ;
6
5
import { BsDiscord , BsTwitterX } from "react-icons/bs" ;
7
6
import { FaVoteYea } from "react-icons/fa" ;
@@ -36,7 +35,7 @@ export const Navigation = (): JSX.Element => {
36
35
< li >
37
36
< SidebarMenuItem >
38
37
< IoSwapHorizontal />
39
- Transfer
38
+ IBC Transfer
40
39
</ SidebarMenuItem >
41
40
</ li >
42
41
< li >
@@ -47,14 +46,6 @@ export const Navigation = (): JSX.Element => {
47
46
MASP
48
47
</ SidebarMenuItem >
49
48
</ li >
50
- < li >
51
- < SidebarMenuItem >
52
- < i className = "w-4" >
53
- < SwapIcon />
54
- </ i >
55
- Swap
56
- </ SidebarMenuItem >
57
- </ li >
58
49
</ ul >
59
50
< footer className = "flex flex-col gap-10" >
60
51
< ul className = "flex flex-col gap-1 text-neutral-300 text-sm" >
@@ -65,7 +56,7 @@ export const Navigation = (): JSX.Element => {
65
56
target = "_blank"
66
57
rel = "noreferrer"
67
58
>
68
- Help
59
+ Community Help
69
60
</ a >
70
61
</ li >
71
62
</ ul >
Original file line number Diff line number Diff line change 1
1
import { ActionButton , Input , Stack } from "@namada/components" ;
2
+ import { chainParametersAtom } from "atoms/chain" ;
2
3
import {
3
4
indexerUrlAtom ,
4
5
rpcUrlAtom ,
5
6
updateIndexerUrlAtom ,
6
7
updateRpcUrlAtom ,
7
8
} from "atoms/settings" ;
8
- import { useAtom } from "jotai" ;
9
+ import { useAtom , useAtomValue } from "jotai" ;
9
10
import { useState } from "react" ;
10
11
import { useLocation } from "react-router-dom" ;
11
12
@@ -16,6 +17,7 @@ export const Advanced = (): JSX.Element => {
16
17
const [ rpcMutation ] = useAtom ( updateRpcUrlAtom ) ;
17
18
const [ currentIndexer ] = useAtom ( indexerUrlAtom ) ;
18
19
const [ indexerMutation ] = useAtom ( updateIndexerUrlAtom ) ;
20
+ const { data : chainParameters } = useAtomValue ( chainParametersAtom ) ;
19
21
20
22
const [ rpc , setRpc ] = useState ( currentRpc ) ;
21
23
const [ indexer , setIndexer ] = useState ( currentIndexer ) ;
@@ -69,6 +71,14 @@ export const Advanced = (): JSX.Element => {
69
71
} }
70
72
required
71
73
/>
74
+ < Input
75
+ type = "text"
76
+ variant = "ReadOnlyCopy"
77
+ value = { chainParameters ?. chainId }
78
+ label = "Chain ID (provided by the Indexer)"
79
+ disabled = { true }
80
+ className = "[&_input]:border-neutral-800"
81
+ />
72
82
</ Stack >
73
83
< ActionButton
74
84
className = "shrink-0"
Original file line number Diff line number Diff line change 1
- import { chainParametersAtom } from "atoms/chain/atoms" ;
2
- import { useAtomValue } from "jotai" ;
3
1
import { version } from "../../../package.json" ;
4
2
import { SettingsPanelMenuItem } from "./SettingsPanelMenuItem" ;
5
3
import SettingsRoutes from "./routes" ;
6
4
7
5
export const SettingsMain = ( ) : JSX . Element => {
8
- const { data : chainParameters } = useAtomValue ( chainParametersAtom ) ;
9
-
10
6
return (
11
7
< div className = "flex flex-1 justify-between flex-col" >
12
8
< ul className = "flex flex-col gap-2" >
@@ -20,8 +16,7 @@ export const SettingsMain = (): JSX.Element => {
20
16
/>
21
17
</ ul >
22
18
< div className = "text-xs" >
23
- < div > Version: { version } </ div >
24
- < div > Chain ID: { chainParameters ?. chainId } </ div >
19
+ < div > Namadillo Version: { version } </ div >
25
20
</ div >
26
21
</ div >
27
22
) ;
Original file line number Diff line number Diff line change @@ -51,25 +51,22 @@ const MainnetRoadmap = (): JSX.Element => {
51
51
) }
52
52
{ renderPhase (
53
53
"2" ,
54
- < >
55
- Proof of Stake Rewards
56
- < br />
57
- PGF Inflation
58
- </ > ,
54
+ < > Staking Rewards</ > ,
59
55
claimRewardsEnabled ? "opacity-100" : "opacity-25" ,
60
56
claimRewardsEnabled
61
57
) }
58
+ { renderPhase ( "2" , < > </ > , "opacity-25" ) }
62
59
{ renderPhase (
63
60
"3" ,
64
61
< >
65
- MASP Enabled
66
- < br />
67
62
IBC Transfers
63
+ < br />
64
+ MASP Enabled
68
65
</ > ,
69
66
"opacity-25"
70
67
) }
71
- { renderPhase ( "4" , "Shielded Rewards" , "opacity-25" ) }
72
- { renderPhase ( "5" , "NAM Transfers" , "opacity-25" ) }
68
+ { renderPhase ( "4" , "Shielding Rewards" , "opacity-25" ) }
69
+ { renderPhase ( "5" , "NAM Transfers enabled " , "opacity-25" ) }
73
70
</ ul >
74
71
< ActionButton
75
72
className = "max-w-40 mt-6"
Original file line number Diff line number Diff line change @@ -18,8 +18,9 @@ export const ValidatorDiversification = (): JSX.Element => {
18
18
outlineColor = "cyan"
19
19
textHoverColor = "black"
20
20
backgroundHoverColor = "cyan"
21
- href = "https://namada.net"
21
+ href = "https://namada.net/blog/namada-cubic-proof-of-stake "
22
22
target = "_blank"
23
+ rel = "nofollow noreferrer"
23
24
size = "xs"
24
25
>
25
26
Learn about CPoS
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export const YourStakingDistribution = ({
70
70
animate = { { opacity : 1 } }
71
71
exit = { { opacity : 0 } }
72
72
>
73
- Your Staking Distribution
73
+ Your Stake Distribution
74
74
</ motion . span >
75
75
) }
76
76
{ displayedValidator && (
You can’t perform that action at this time.
0 commit comments