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

update rpc endpoints #162

Merged
merged 1 commit into from
Jan 6, 2025
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 packages/networks/src/chains/assethub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ const getInitStorages = (config: typeof custom.assetHubPolkadot | typeof custom.

export const assetHubPolkadot = defineChain({
name: 'assetHubPolkadot',
endpoint: 'wss://rpc-asset-hub-polkadot.luckyfriday.io',
endpoint: 'wss://polkadot-asset-hub-rpc.polkadot.io',
paraId: 1000,
custom: custom.assetHubPolkadot,
initStorages: getInitStorages(custom.assetHubPolkadot),
})

export const assetHubKusama = defineChain({
name: 'assetHubKusama',
endpoint: 'wss://rpc-asset-hub-kusama.luckyfriday.io',
endpoint: 'wss://kusama-asset-hub-rpc.polkadot.io',
paraId: 1000,
custom: custom.assetHubKusama,
initStorages: getInitStorages(custom.assetHubKusama),
Expand Down
4 changes: 2 additions & 2 deletions packages/networks/src/chains/polkadot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ const getInitStorages = () => ({

export const polkadot = defineChain({
name: 'polkadot',
endpoint: 'wss://rpc-polkadot.luckyfriday.io',
endpoint: 'wss://polkadot-rpc.dwellir.com',
custom: custom.polkadot,
initStorages: getInitStorages(),
isRelayChain: true,
})

export const kusama = defineChain({
name: 'kusama',
endpoint: 'wss://rpc-kusama.luckyfriday.io',
endpoint: 'wss://kusama-rpc.dwellir.com',
custom: custom.kusama,
initStorages: getInitStorages(),
isRelayChain: true,
Expand Down
Loading