Skip to content

Commit

Permalink
Merge pull request #660 from telosnetwork/646-walletstaking-link-for-…
Browse files Browse the repository at this point in the history
…testnet-links-to-mainnet-wallet

#646 | walletstaking link for testnet links to mainnet wallet
  • Loading branch information
pmjanus authored Apr 9, 2024
2 parents f2d7189 + e2bee85 commit 0edf70a
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/components/header/AppHeaderLinks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,14 @@ const teloscanSwaggerUrl = IS_MAINNET
? 'https://api.teloscan.io/v1/docs'
: 'https://api.testnet.teloscan.io/v1/docs';
const telosWalletUrl = IS_MAINNET
? 'https://wallet.telos.net/'
: 'https://wallet-dev.telos.net/';
const telosBridgeUrl = IS_MAINNET
? 'https://bridge.telos.net/bridge'
: 'https://telos-bridge-testnet.netlify.app/bridge';
const developersSubmenuItems = [
{
url: teloscanSwaggerUrl,
Expand All @@ -48,13 +56,13 @@ const developersSubmenuItems = [
];
const telos_walletMenuItem = {
url: 'https://wallet.telos.net/',
url: telosWalletUrl,
label: `${$t('components.header.telos_wallet')}/Staking`,
};
const telos_bridgeMenuItem = {
url: 'https://bridge.telos.net/bridge',
url: telosBridgeUrl,
label: $t('components.header.telos_bridge'),
};
Expand Down

0 comments on commit 0edf70a

Please sign in to comment.