Skip to content

Commit

Permalink
Fix neuroweb ws endpoint and reduce USDT fees in Polkadot Asset Hub (#…
Browse files Browse the repository at this point in the history
…281)

* change neuroweb ws endpoint and reduce USDT fees in Polkadot Asset Hub

* add changeset
  • Loading branch information
mmaurello authored Jun 21, 2024
1 parent ff69436 commit b33b190
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/green-students-cover.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@moonbeam-network/xcm-config': patch
---

Change Neuroweb ws endpoint and reduce USDT fees
2 changes: 1 addition & 1 deletion packages/config/src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1263,7 +1263,7 @@ export const neuroweb = new Parachain({
name: 'NeuroWeb',
parachainId: 2043,
ss58Format: 101,
ws: 'wss://origintrail-rpc.dwellir.com',
ws: 'wss://neuroweb-rpc.dwellir.com',
});

export const originTrailAlphanet = new Parachain({
Expand Down
6 changes: 3 additions & 3 deletions packages/config/src/configs/moonbeam.ts
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ export const moonbeamConfig = new ChainConfig({
contract: ContractBuilder().Xtokens().transfer(),
destination: polkadotAssetHub,
destinationFee: {
amount: 0.7,
amount: 0.2,
asset: usdt,
balance: BalanceBuilder().substrate().assets().account(),
},
Expand All @@ -480,7 +480,7 @@ export const moonbeamConfig = new ChainConfig({
contract: ContractBuilder().Xtokens().transfer(),
destination: polkadotAssetHub,
destinationFee: {
amount: 0.7,
amount: 0.2,
asset: usdc,
balance: BalanceBuilder().substrate().assets().account(),
},
Expand All @@ -495,7 +495,7 @@ export const moonbeamConfig = new ChainConfig({
contract: ContractBuilder().Xtokens().transferMultiCurrencies(),
destination: polkadotAssetHub,
destinationFee: {
amount: 0.7,
amount: 0.2,
asset: usdt,
balance: BalanceBuilder().substrate().assets().account(),
},
Expand Down

0 comments on commit b33b190

Please sign in to comment.