diff --git a/src/components/WorkflowPage/WorkflowProgressBar.tsx b/src/components/WorkflowPage/WorkflowProgressBar.tsx index 03b89510..a2e2c1e9 100644 --- a/src/components/WorkflowPage/WorkflowProgressBar.tsx +++ b/src/components/WorkflowPage/WorkflowProgressBar.tsx @@ -53,7 +53,7 @@ export const WorkflowProgressBar = ({ workflow }: Props): JSX.Element => { }, { step: WorkflowStep.SELECT_CLIENT, - text: formatMessage({ defaultMessage: 'Choose client' }), + text: formatMessage({ defaultMessage: 'Client setup' }), }, { step: WorkflowStep.GENERATE_KEY_PAIRS, diff --git a/src/intl/compiled/en.json b/src/intl/compiled/en.json index ab8889dc..46a9f301 100644 --- a/src/intl/compiled/en.json +++ b/src/intl/compiled/en.json @@ -2446,7 +2446,7 @@ "G8tAKU": [ { "type": 0, - "value": "Choose client" + "value": "Client setup" } ], "GBXzeJ": [ diff --git a/src/intl/en.json b/src/intl/en.json index 0d1371a2..0e3ea10c 100644 --- a/src/intl/en.json +++ b/src/intl/en.json @@ -918,7 +918,7 @@ "message": "Download master branch source code" }, "G8tAKU": { - "message": "Choose client" + "message": "Client setup" }, "GBXzeJ": { "message": "Arguably the most impactful factor on rewards earned for validating transactions is the total amount of stake in the network. In other words, the total amount of validators. Depending on this figure the max annual return rate for a validator can be anywhere between 2 and 20%." diff --git a/src/pages/Clients/Execution/Stereum.tsx b/src/pages/Clients/Execution/Stereum.tsx index 6c4afca6..eb5c2d61 100644 --- a/src/pages/Clients/Execution/Stereum.tsx +++ b/src/pages/Clients/Execution/Stereum.tsx @@ -39,10 +39,13 @@ const ImageContainer = styled.div` export const StereumDetails = () => ( <> - + - + + + +
@@ -82,7 +85,7 @@ export const StereumDetails = () => ( - + Stereum_Step_2 @@ -118,7 +121,7 @@ export const StereumDetails = () => ( - + Stereum_Step_6 diff --git a/src/pages/GenerateKeys/index.tsx b/src/pages/GenerateKeys/index.tsx index cb977532..773193e6 100644 --- a/src/pages/GenerateKeys/index.tsx +++ b/src/pages/GenerateKeys/index.tsx @@ -137,6 +137,14 @@ const _GenerateKeysPage = ({ + + + + + + @@ -220,11 +228,12 @@ const _GenerateKeysPage = ({ - - - +

+ Progress to the next page to upload your deposit_data-xxxxxxxxxx.json to make the deposits for your validator keys. Please note that once the deposits are made, your validator may take up to 24 hours to become active. +

+

+ You will need the MetaMask (https://metamask.io/) extension installed with a wallet that contains the correct STRAX balance before you can progress to make deposits for your validator(s). +

diff --git a/src/pages/SelectClient/index.tsx b/src/pages/SelectClient/index.tsx index 4f90767a..dc9eacb9 100644 --- a/src/pages/SelectClient/index.tsx +++ b/src/pages/SelectClient/index.tsx @@ -143,7 +143,28 @@ const _SelectClientPage = ({ ); return ( - + <> + + + + + +
    +
  • Client Setup - Software is required to run a Stratis Validator, to simplify this management, Stratis has introduced the Stratis Launcher. The Stratis Launcher configures your remote Linux-based host and prepares it for operating as a Stratis Validator.
  • +
  • Generate Keys - To run a Stratis Validator, you must create “Validator Keys”. The key generation process is simplified by using the Wagyu Keygen tool.
  • +
  • Validator Deposit - Once you have configured your client and generated your keys, you need to make a deposit of 20,000 STRAX for each validator. These deposits can be done safely and securely through the Stratis Launchpad.
  • +
+ + + +
+ + {title} + @@ -187,6 +208,7 @@ const _SelectClientPage = ({ currentClient={selectedClient} />
+ ); };