Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaurello committed Dec 2, 2024
2 parents 8536459 + e8470fb commit d8fcaa4
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
6 changes: 6 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @moonbeam-network/xcm-config

## 2.7.7

### Patch Changes

- [#402](https://github.com/moonbeam-foundation/xcm-sdk/pull/402) [`7f88012`](https://github.com/moonbeam-foundation/xcm-sdk/commit/7f88012e6b052127d5d03881f9f3c14c63e46210) Thanks [@mmaurello](https://github.com/mmaurello)! - add alphanet relay ws endpoint and check sovereign account in Polkadot and Kusama

## 2.7.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonbeam-network/xcm-config",
"version": "2.7.6",
"version": "2.7.7",
"description": "All necessary configuration to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back",
"scripts": {
"build": "tsup",
Expand Down
7 changes: 6 additions & 1 deletion packages/config/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,10 @@ export const alphanetRelay = new Parachain({
nativeAsset: unit,
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 @@ -749,6 +752,7 @@ export const kintsugi = new Parachain({

export const kusama = new Parachain({
assets: [ChainAsset.fromAsset(ksm, { decimals: 12 })],
checkSovereignAccountBalances: true,
ecosystem: Ecosystem.Kusama,
genesisHash:
'0xb0a8d493285c2df73290dfb7e61f870f17b41801197a149ca93654499ea3dafe',
Expand Down Expand Up @@ -1964,6 +1968,7 @@ export const picassoAlphanet = new Parachain({

export const polkadot = new Parachain({
assets: [ChainAsset.fromAsset(dot, { decimals: 10 })],
checkSovereignAccountBalances: true,
ecosystem: Ecosystem.Polkadot,
genesisHash:
'0x91b171bb158e2d3848fa23a9f1c25182fb8e20313b2c1eb49219da7a70ce90c3',
Expand Down
7 changes: 7 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @moonbeam-network/xcm-sdk

## 2.7.7

### Patch Changes

- Updated dependencies [[`7f88012`](https://github.com/moonbeam-foundation/xcm-sdk/commit/7f88012e6b052127d5d03881f9f3c14c63e46210)]:
- @moonbeam-network/xcm-config@2.7.7

## 2.7.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonbeam-network/xcm-sdk",
"version": "2.7.6",
"version": "2.7.7",
"description": "The Moonbeam XCM SDK enables developers to easily deposit and withdraw assets to Moonbeam/Moonriver from the relay chain and other parachains in the Polkadot/Kusama ecosystem",
"scripts": {
"build": "tsup",
Expand Down

0 comments on commit d8fcaa4

Please sign in to comment.