Skip to content

Commit 6dedaab

Browse files
committed
Fixes
1 parent abd8ed9 commit 6dedaab

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

launcher/src/components/UI/staking-page/components/list/rows/KeyRow.vue

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ import { computed } from 'vue';
7373
<div class="h-full col-start-17 col-span-full bg-[#151618] rounded-full grid grid-cols-6 items-center" @mousedown.prevent>
7474
<div
7575
class="col-start-1 col-span-1 w-full h-full rounded-md justify-self-center flex justify-center items-center"
76-
@mouseenter="footerStore.cursorLocation = `Beaconcha.in`"
76+
@mouseenter="footerStore.cursorLocation = `Beacon explorer`"
7777
@mouseleave="footerStore.cursorLocation = ''"
7878
>
7979
<img
@@ -303,10 +303,8 @@ const displayText = computed(() => {
303303
//Methods
304304
const navToBeaconcha = (network) => {
305305
const urls = {
306-
gnosis: "https://gnosischa.in/",
307-
sepolia: "https://sepolia.beaconcha.in/",
308-
mainnet: "https://beaconcha.in/",
309-
holesky: "https://holesky.beaconcha.in/",
306+
mainnet: "https://beacon.stratisevm.com/",
307+
auroria: "https://auroria.beacon.stratisevm.com/",
310308
};
311309
312310
const url = urls[network] + "validator/" + props.item.key;

launcher/src/composables/multiSetups.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export const useMultiSetups = () => {
6464
};
6565
}),
6666

67-
isActive: false,
67+
isActive: setupStore.editSetups.find(({ setupId }) => setupId === config.configId)?.isActive || false,
6868
}));
6969

7070
return setups;

launcher/src/composables/validators.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export async function useListKeys(forceRefresh) {
2020
//refresh validaotr list
2121
let result = await ControlService.listValidators(client.config.serviceID);
2222

23-
if (!client.service.includes("Web3Signer")) {
23+
if (!client.service.includes("Web3Signer") && client.yaml?.includes('external-signer')) {
2424
let resultRemote = await ControlService.listRemoteKeys(client.config.serviceID);
2525
let remoteKeys = resultRemote.data
2626
? resultRemote.data.map((e) => {

0 commit comments

Comments
 (0)