Skip to content

Commit

Permalink
Add quick link to stats when mining on OCEAN (#200)
Browse files Browse the repository at this point in the history
Lgtm
  • Loading branch information
wizkid057 authored Jun 5, 2024
1 parent 38fb4ae commit f2fda4e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,9 @@ export class HomeComponent {
if (info.stratumURL.includes('public-pool.io')) {
const address = info.stratumUser.split('.')[0]
return `https://web.public-pool.io/#/app/${address}`;
} else if (info.stratumURL.includes('ocean.xyz')) {
const address = info.stratumUser.split('.')[0]
return `https://ocean.xyz/stats/${address}`;
} else {
return undefined;
}
Expand Down

0 comments on commit f2fda4e

Please sign in to comment.