Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
@moonbeam-network/xcm-sdk
Advanced tools
Easy way to transfer assets from Moonbeam, Moonriver, Moonbase to other parachains and back
npm i @moonbeam-network/xcm-config @moonbeam-network/xcm-sdk
import { init } from '@moonbeam-network/xcm-sdk';
const { moonbeam } = init();
// Optionally you can provide signers or do it on get()
const { moonbeam } = init({
ethersSigner,
polkadotSigner,
});
const moonbeamAddress = '0xeF46c7649270C912704fB09B75097f6E32208b85';
const substrateAddress = '5DG5Fn3ww3KPza1RLoap6QJNzQfEvRebxypDGp35YuMX5y2K';
// moonbeam.symbols is a list of asset symbols that you can deposit/withdraw
// chains is a list of chains from which you can deposit asset
const { chains, from } = moonbeam.deposit(moonbeam.symbols[0]);
const { min, send } = await from(chains[0]).get(
moonbeamAddress,
substrateAddress,
// if you haven't provided on init
{ polkadotSigner },
);
await send(min, (event) => console.log(event));
const { chains, to } = moonbeam.withdraw(moonbeam.symbols[0]);
const { min, send } = await to(chains[0]).get(
substrateAddress,
// if you haven't provided on init
{ ethersSigner },
);
await send(min, (event) => console.log(event));
const unsubscribe = await moonbeam.subscribeToAssetsBalanceInfo(
moonbeamAddress,
(balances) => {
balances.forEach(({ asset, balance, origin }) => {
// xcDOT: 0.073742 (Polkadot DOT)
// ...
console.log(
`${balance.symbol}: ${toDecimal(balance.balance, balance.decimals)} (${
origin.name
} ${asset.originSymbol})`,
);
});
},
);
unsubscribe();
git clone git@github.com:PureStake/xcm-sdk.git
cd packages/sdk/examples/simple/
npm i
// edit index.ts by adding your accounts
npm start
FAQs
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
The npm package @moonbeam-network/xcm-sdk receives a total of 281 weekly downloads. As such, @moonbeam-network/xcm-sdk popularity was classified as not popular.
We found that @moonbeam-network/xcm-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.