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

fix: rpc url #120

Merged
merged 2 commits into from
Dec 22, 2023
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
4 changes: 2 additions & 2 deletions components/network-button/network-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const NETWORK_PARAMS = {
symbol: 'BEAM',
decimals: 18,
},
rpcUrls: ['https://subnets.avax.network/beam/testnet/rpc'],
rpcUrls: ['https://build.onbeam.com/rpc/testnet'],
blockExplorerUrls: ['https://subnets-test.avax.network/beam'],
},
4337: {
Expand All @@ -20,7 +20,7 @@ const NETWORK_PARAMS = {
symbol: 'BEAM',
decimals: 18,
},
rpcUrls: ['https://subnets.avax.network/beam/mainnet/rpc'],
rpcUrls: ['https://build.onbeam.com/rpc'],
blockExplorerUrls: ['https://subnets.avax.network/beam'],
},
};
Expand Down
2 changes: 1 addition & 1 deletion pages/chain/get-started/rpc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Enter the Beam Mainnet settings as provided above.
| Beam Testnet | Settings |
| :----------------- | :---------------------------------------------- |
| Network name | `Beam Testnet` |
| RPC URL | `https://build.onbeam.com/testnet/rpc` |
| RPC URL | `https://build.onbeam.com/rpc/testnet` |
| Chain ID | `13337` |
| Currency symbol | `BEAM` |
| Block explorer URL | https://subnets-test.avax.network/beam |
Expand Down