Skip to content

Commit

Permalink
Alphanet Relay endpoint and Polakdot sovereign account balance checki…
Browse files Browse the repository at this point in the history
…ng (#402)

* add alphanet relay ws endpoint and check sovereign account in Polkadot and Kusama

* add changeset
  • Loading branch information
mmaurello authored Nov 29, 2024
1 parent 3fc89fe commit 7f88012
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/nasty-plants-carry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@moonbeam-network/xcm-config': patch
---

add alphanet relay ws endpoint and check sovereign account in Polkadot and Kusama
7 changes: 6 additions & 1 deletion packages/config/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,10 @@ export const alphanetRelay = new Parachain({
name: 'Alphanet Relay',
parachainId: 0,
ss58Format: 42,
ws: ['wss://fro-moon-rpc-1-moonbase-relay-rpc-1.moonbase.ol-infra.network'],
ws: [
'wss://relay.api.moonbase.moonbeam.network',
'wss://fro-moon-rpc-1-moonbase-relay-rpc-1.moonbase.ol-infra.network',
],
});

export const astar = new Parachain({
Expand Down Expand Up @@ -640,6 +643,7 @@ export const kintsugi = new Parachain({
});

export const kusama = new Parachain({
checkSovereignAccountBalances: true,
ecosystem: Ecosystem.Kusama,
genesisHash:
'0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe',
Expand Down Expand Up @@ -1677,6 +1681,7 @@ export const picassoAlphanet = new Parachain({
});

export const polkadot = new Parachain({
checkSovereignAccountBalances: true,
ecosystem: Ecosystem.Polkadot,
genesisHash:
'0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3',
Expand Down

0 comments on commit 7f88012

Please sign in to comment.