Skip to content

Commit

Permalink
Merge pull request #441 from skalenetwork/update-validators-page-name
Browse files Browse the repository at this point in the history
Update Validator management page name
  • Loading branch information
dmytrotkk authored Dec 18, 2024
2 parents d96492b + cbd7f92 commit 36cd761
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 6 deletions.
44 changes: 41 additions & 3 deletions config/mainnet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
name: 'Rocket Pool ETH',
iconUrl: 'https://assets.coingecko.com/coins/images/20764/standard/reth.png',
symbol: 'rETH'
},
skivvy: {
name: 'Skivvy',
symbol: 'SKIVVY',
decimals: '8',
iconUrl: 'https://s2.coinmarketcap.com/static/img/coins/64x64/3441.png'
}
},
connections: {
Expand Down Expand Up @@ -298,7 +304,16 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
chains: {
'elated-tan-skat': {}
}
}
},
skivvy: {
address: '0x246908BfF0b1ba6ECaDCF57fb94F6AE2FcD43a77',
chains: {
'elated-tan-skat': {},
'honorable-steel-rasalhague': {
hub: 'elated-tan-skat'
}
}
},
}
},
'elated-tan-skat': {
Expand Down Expand Up @@ -522,7 +537,18 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
clone: true
}
}
}
},
skivvy: {
address: '0xE0a320b0d525BA7a97afcE932F78789Db23c0e4a',
chains: {
mainnet: {
clone: true
},
'honorable-steel-rasalhague': {
wrapper: '0xD6b78761557E50BC94B7a99d75Fa6C9c29ab77e1'
}
}
},
}
},
'honorable-steel-rasalhague': {
Expand Down Expand Up @@ -617,7 +643,19 @@ export const METAPORT_CONFIG: interfaces.MetaportConfig = {
hub: 'elated-tan-skat'
}
}
}
},
skivvy: {
address: '0x0d3FaC688AD94f01B237BFD795C61eDE6Ac9542E',
chains: {
'elated-tan-skat': {
clone: true
},
mainnet: {
clone: true,
hub: 'elated-tan-skat'
}
}
},
}
},
'green-giddy-denebola': {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Validator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default function Validator(props: {
<Container maxWidth="md">
<div className={cls(cmn.flex, cmn.flexcv)}>
<div className={cmn.flexg}>
<h2 className={cls(cmn.nom)}>Manage Validator</h2>
<h2 className={cls(cmn.nom)}>Validator Operations</h2>
<p className={cls(cmn.nom, cmn.p, cmn.p3, cmn.pSec)}>{META_TAGS.validator.description}</p>
</div>
<SkPageInfoIcon meta_tag={META_TAGS.validator} />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/Validators.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default function ValidatorsPage(props: {
startIcon={<ManageAccountsRoundedIcon />}
endIcon={<DelegationsNotification validatorDelegations={props.validatorDelegations} />}
>
Manage Validator
Validator Operations
</Button>
</Link>
<SkPageInfoIcon meta_tag={META_TAGS.validators} />
Expand All @@ -75,7 +75,7 @@ export default function ValidatorsPage(props: {
mpc={props.mpc}
validators={props.validators}
validatorId={0}
setValidatorId={(): void => {}}
setValidatorId={(): void => { }}
delegationType={types.staking.DelegationType.REGULAR}
size="lg"
/>
Expand Down

0 comments on commit 36cd761

Please sign in to comment.