Skip to content
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
10 changes: 5 additions & 5 deletions src/config/chainEndpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const providerEndpoints: ChainProvider[] = [
info: 'Smart contract platform for decentralized applications (dapps) on the Polkadot network',
endpoints: [
{ name: 'Astar', endpoint: 'wss://rpc.astar.network' },
{ name: 'Dwellir', endpoint: 'wss://astar-rpc.dwellir.com' },
{ name: 'Dwellir', endpoint: 'wss://astar-rpc.n.dwellir.com' },
{ name: 'Blast', endpoint: 'wss://astar.public.blastapi.io' },
{ name: 'OnFinality', endpoint: 'wss://astar.api.onfinality.io/public-ws' },
{ name: 'Light Client (experimental)', endpoint: 'light://substrate-connect/polkadot/astar' },
Expand Down Expand Up @@ -69,7 +69,7 @@ export const providerEndpoints: ChainProvider[] = [
info: 'Smart contract platform for decentralized applications (dapps) on the Kusama network',
endpoints: [
{ name: 'Shiden', endpoint: 'wss://rpc.shiden.astar.network' },
{ name: 'Dwellir', endpoint: 'wss://shiden-rpc.dwellir.com' },
{ name: 'Dwellir', endpoint: 'wss://shiden-rpc.n.dwellir.com' },
{ name: 'Blast', endpoint: 'wss://shiden.public.blastapi.io' },
{ name: 'OnFinality', endpoint: 'wss://shiden.api.onfinality.io/public-ws' },
{ name: 'Light Client (experimental)', endpoint: 'light://substrate-connect/kusama/shiden' },
Expand Down Expand Up @@ -97,7 +97,7 @@ export const providerEndpoints: ChainProvider[] = [
info: 'The test network of the layer 2 scaling blockchain',
endpoints: [
{ name: 'Shibuya', endpoint: 'wss://rpc.shibuya.astar.network' },
{ name: 'Dwellir', endpoint: 'wss://shibuya-rpc.dwellir.com' },
{ name: 'Dwellir', endpoint: 'wss://shibuya-rpc.n.dwellir.com' },
{ name: 'Blast', endpoint: 'wss://shibuya.public.blastapi.io/' },
{ name: 'Light Client (experimental)', endpoint: 'light://substrate-connect/tokyo/shibuya' },
],
Expand All @@ -120,7 +120,7 @@ export const providerEndpoints: ChainProvider[] = [
displayName: 'Astar zkEVM Network',
endpoints: [
{ name: 'Astar', endpoint: 'wss://rpc.astar.network' },
{ name: 'Dwellir', endpoint: 'wss://astar-rpc.dwellir.com' },
{ name: 'Dwellir', endpoint: 'wss://astar-rpc.n.dwellir.com' },
{ name: 'OnFinality', endpoint: 'wss://astar.api.onfinality.io/public-ws' },
],
isSupportContract: false,
Expand All @@ -140,7 +140,7 @@ export const providerEndpoints: ChainProvider[] = [
displayName: 'zKyoto Network',
endpoints: [
{ name: 'Shibuya', endpoint: 'wss://rpc.shibuya.astar.network' },
{ name: 'Dwellir', endpoint: 'wss://shibuya-rpc.dwellir.com' },
{ name: 'Dwellir', endpoint: 'wss://shibuya-rpc.n.dwellir.com' },
],
isSupportContract: false,
typeDef: typeDefs.plasmCollatorDefinitions,
Expand Down
11 changes: 4 additions & 7 deletions src/modules/xcm/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export let xcmChainObj: XcmChainObj = {
parachainId: parachainIds.ASTAR,
endpoints: [
'wss://rpc.astar.network',
'wss://astar-rpc.dwellir.com',
'wss://astar-rpc.n.dwellir.com',
'wss://astar.public.blastapi.io',
'wss://astar.api.onfinality.io/public-ws',
],
Expand All @@ -87,7 +87,7 @@ export let xcmChainObj: XcmChainObj = {
parachainId: parachainIds.ASTAR,
endpoints: [
'wss://rpc.astar.network',
'wss://astar-rpc.dwellir.com',
'wss://astar-rpc.n.dwellir.com',
'wss://astar.public.blastapi.io',
'wss://astar.api.onfinality.io/public-ws',
],
Expand All @@ -102,7 +102,6 @@ export let xcmChainObj: XcmChainObj = {
endpoints: [
'wss://kusama-rpc.polkadot.io',
'wss://kusama-rpc.dwellir.com',
'wss://kusama-rpc.dwellir.com',
'wss://kusama.api.onfinality.io/public-ws',
],
subscan: 'https://kusama.subscan.io',
Expand All @@ -115,8 +114,7 @@ export let xcmChainObj: XcmChainObj = {
parachainId: parachainIds.SHIDEN,
endpoints: [
'wss://rpc.shiden.astar.network',
'wss://shiden-rpc.dwellir.com',
'wss://shiden-rpc.dwellir.com',
'wss://shiden-rpc.n.dwellir.com',
'wss://shiden.public.blastapi.io',
'wss://shiden.api.onfinality.io/public-ws',
],
Expand All @@ -131,8 +129,7 @@ export let xcmChainObj: XcmChainObj = {
parachainId: parachainIds.SHIDEN,
endpoints: [
'wss://rpc.shiden.astar.network',
'wss://shiden-rpc.dwellir.com',
'wss://shiden-rpc.dwellir.com',
'wss://shiden-rpc.n.dwellir.com',
'wss://shiden.public.blastapi.io',
'wss://shiden.api.onfinality.io/public-ws',
],
Expand Down
Loading