Skip to content

Commit

Permalink
update rpc endpoints (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc authored Jan 6, 2025
1 parent 7d7e36b commit 97d74b4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
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

0 comments on commit 97d74b4

Please sign in to comment.