Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add xLabs public RPC #379

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions dashboard/src/contexts/NetworkContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ export const networkOptions: Network[] = [
logo: '',
type: 'guardian',
},
{
env: 'Mainnet',
endpoint: 'https://guardian.mainnet.xlabs.xyz',
name: 'xLabs',
logo: '',
type: 'guardian',
},
// not working as of 2023-11-07
// {
// env: 'Mainnet',
Expand Down
1 change: 1 addition & 0 deletions dashboard/src/utils/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export const WORMHOLE_RPC_HOSTS = [
'https://wormhole-v2-mainnet-api.mcf.rocks',
'https://wormhole-v2-mainnet-api.chainlayer.network',
'https://wormhole-v2-mainnet-api.staking.fund',
'https://guardian.mainnet.xlabs.xyz',
];

export const CHAIN_ICON_MAP: { [key: string]: string } = chainIds.reduce<{ [key: string]: string }>(
Expand Down
1 change: 1 addition & 0 deletions watcher/src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ export const GUARDIAN_RPC_HOSTS: { [key in Network]: string[] } = {
'https://wormhole-v2-mainnet-api.mcf.rocks',
'https://wormhole-v2-mainnet-api.chainlayer.network',
'https://wormhole-v2-mainnet-api.staking.fund',
'https://guardian.mainnet.xlabs.xyz',
],
['Testnet']: ['https://api.testnet.wormholescan.io'],
['Devnet']: [],
Expand Down
Loading