Skip to content

Commit

Permalink
mrege with main
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaurello committed Jan 24, 2025
2 parents 55e3dfb + cc11e6d commit 3fdc31b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 85 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.10

### Patch Changes

- [#421](https://github.com/moonbeam-foundation/xcm-sdk/pull/421) [`01eceef`](https://github.com/moonbeam-foundation/xcm-sdk/commit/01eceefd107d25aa1a4c4c8de5d1eca1b143a3e9) Thanks [@mmaurello](https://github.com/mmaurello)! - Remove Tinkernet chain

## 2.7.9

### 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.9",
"version": "2.7.10",
"description": "All necessary configuration to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back",
"scripts": {
"build": "tsup",
Expand Down
21 changes: 0 additions & 21 deletions packages/config/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2176,26 +2176,6 @@ export const subsocial = new Parachain({
ws: ['wss://para.subsocial.network', 'wss://subsocial-rpc.dwellir.com'],
});

export const tinkernet = new Parachain({
assets: [
ChainAsset.fromAsset(tnkr, {
decimals: 12,
ids: {
id: 0,
},
}),
],
ecosystem: Ecosystem.Kusama,
genesisHash:
'0xd42e9606a995dfe433dc7955dc2a70f495f350f373daa200098ae84437816ad2',
key: 'tinkernet',
name: 'InvArch Tinkernet',
nativeAsset: tnkr,
parachainId: 2125,
ss58Format: 117,
ws: ['wss://tinkernet-rpc.dwellir.com'],
});

export const turing = new Parachain({
assets: [
ChainAsset.fromAsset(tur, {
Expand Down Expand Up @@ -2343,7 +2323,6 @@ export const chainsList: AnyChain[] = [
robonomics,
shiden,
subsocial,
tinkernet,
turing,
turingAlphanet,
uniqueAlpha,
Expand Down
2 changes: 0 additions & 2 deletions packages/config/src/xcm-configs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ import { polkadotAssetHubRoutes } from './polkadotAssetHub';
import { robonomicsRoutes } from './robonomics';
import { shidenRoutes } from './shiden';
import { subsocialRoutes } from './subsocial';
import { tinkernetRoutes } from './tinkernet';
import { turingRoutes } from './turing';
import { turingAlphanetRoutes } from './turingAlphanet';
import { zeitgeistRoutes } from './zeitgeist';
Expand Down Expand Up @@ -90,7 +89,6 @@ export const xcmRoutesList: ChainRoutes[] = [
kusamaAssetHubRoutes,
polkadotAssetHubRoutes,
subsocialRoutes,
tinkernetRoutes,
turingRoutes,
turingAlphanetRoutes,
zeitgeistRoutes,
Expand Down
25 changes: 0 additions & 25 deletions packages/config/src/xcm-configs/moonriver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import {
rmrk,
sdn,
teer,
tnkr,
tur,
usdt,
vbnc,
Expand All @@ -44,7 +43,6 @@ import {
picasso,
robonomics,
shiden,
tinkernet,
turing,
} from '../chains';
import { ChainRoutes } from '../types/ChainRoutes';
Expand Down Expand Up @@ -573,29 +571,6 @@ export const moonriverRoutes = new ChainRoutes({
},
contract: ContractBuilder().Xtokens().transfer(),
},
{
source: {
asset: tnkr,
balance: BalanceBuilder().substrate().assets().account(),
fee: {
asset: movr,
balance: BalanceBuilder().substrate().system().account(),
},
destinationFee: {
balance: BalanceBuilder().substrate().assets().account(),
},
},
destination: {
asset: tnkr,
chain: tinkernet,
balance: BalanceBuilder().substrate().system().account(),
fee: {
amount: 0.4,
asset: tnkr,
},
},
contract: ContractBuilder().Xtokens().transfer(),
},
{
source: {
asset: tur,
Expand Down
35 changes: 0 additions & 35 deletions packages/config/src/xcm-configs/tinkernet.ts

This file was deleted.

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.10

### Patch Changes

- Updated dependencies [[`01eceef`](https://github.com/moonbeam-foundation/xcm-sdk/commit/01eceefd107d25aa1a4c4c8de5d1eca1b143a3e9)]:
- @moonbeam-network/xcm-config@2.7.10

## 2.7.9

### 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.9",
"version": "2.7.10",
"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 3fdc31b

Please sign in to comment.