Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@ashkuc/simple-xcm
Advanced tools
simple-xcm is a package designed for simplified usage of the Cross-Consensus Message Format (XCM), which is a messaging format and language used for communication between consensus systems.
Before installing simple-xcm
package to your project, you need to setup Yarn 2, due to requirements of the open-xcm-tools
packages.
First, set up a global Yarn, which will be used to create local instances:
npm install -g yarn
Then you need to locally change Yarn version for your project. In project folder:
yarn set version berry
After this actions you can use Yarn as usually (init project, add dependencies, etc.)
simple-xcm
installationyarn add @ashkuc/simple-xcm
The simple-xcm library offers a set of intuitive functions for transferring tokens between chains. The primary classes to use are:
Registry
, which is responsible for storing information about parachains, currency data.SimpleXcm
, which helps to compose the actual transfer extrinsic for a given chain.The "simple-xcm" library is built upon smaller, modular components that can be utilized independently, allowing for greater flexibility and customization in cross-chain token transfers. Here are brief descriptions of these modules:
xcm-types
module provides types for XCM entities of all XCM versions.xcm-util
module provides a comprehensive set of functions for sanitizing and validating various assets data structures in the context of cross-chain messaging (XCM).xcm-estimate
module provides general functionality for fee estimation.Registry
objectTo start using the Registry
, you need to add ecosystems of parachains.
const registry = new Registry()
.addEcosystemChains('Polkadot')
.addEcosystemChains('Kusama');
If you want to add an external parachain (not from a connected ecosystem), you can use the Registry.addChain
function, which takes a ChainInfo
object as a parameter.
Example of adding chain to Registry
instance:
registry.addChain(<ChainInfo>{
identity: {
name: 'AssetHub',
universalLocation: parachainUniversalLocation('polkadot', 1000n),
},
endpoints: [
'wss://asset-hub-polkadot-rpc.dwellir.com',
'wss://sys.ibp.network/asset-hub-polkadot',
// Add more endpoints as needed
],
});
The library allows you to add information about the native currency of a parachain that you wish to use, simply by specifying the (already registered) chain ID. For example:
await registry.addNativeCurrency('Unique Network');
await registry.addNativeCurrency('QUARTZ by UNIQUE');
You can also register non-native currencies:
registry.addCurrency(<CurrencyInfo>{
symbol: 'USDT',
decimals: 6,
universalLocation: universalLocation('polkadot', [
{parachain: 1000n},
{palletInstance: 50n},
{generalIndex: 1984n},
]),
});
You can add information about universal or relative locations to your Registry object. For example:
registry.addUniversalLocation(
'SomeChainLocation',
parachainUniversalLocation('polkadot', 2001n),
);
registry.addRelativeLocation(
'MyAccountLocation',
location(0n, [
{
accountId32: {
id: '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY',
},
},
]),
);
Note: In the field of interiors, you can use hex-string byte sequences. Specifically for the accountId32 field, you can represent it as either a hex string or an ASCII representation, which is interpreted as an SS58 address
Registry
FunctionalityThe Registry
class provides several functions to retrieve information about the stored data. For example:
registry.chainInfoById('Unique Network');
registry.chainInfoByLocation(parachainUniversalLocation('polkadot', 2037n)); // will return the same as above since it's the Unique's universal location
registry.currencyInfoBySymbol('DOT');
registry.currencyInfoByLocation(relaychainUniversalLocation('polkadot')); // will return the same as above
registry.universalLocation('SomeChainLocation');
registry.relativeLocation('MyAccountLocation');
After completing the setup, the library can interact with an XCM-capable parachain pallet (preferably pallet-xcm
if present or pallet-xtokens
as an experimental fallback). The library provides functionality to connect to a parachain using its in-registry name.
For example, using the chain's in-registry name:
const xcm: SimpleXcm = await registry.connectXcm('Unique Network');
SimpleXcm
FunctionalitySimpleXcm
is a class that provides functionality for transferring assets with automatic fee estimation.
The library provides different methods to create assets. For example:
const assets = [
asset(location(0n, 'here'), fungible(100n)),
asset('DOT', fungible(5n)),
xcm.adjustedFungible('DOT', '2.5'),
<AssetLookup>{
id: 'DOT',
fun: fungible(42n),
},
<Asset>{
id: {parents: 0n, interior: 'here'},
fun: {fungible: 88n},
},
asset('QTZ', fungible(77n)),
];
Notice we used strings where an asset ID or a location is expected. These strings represent the in-registry names of these assets/locations. The
composeTransfer
utilizes this fact and resolves the actual asset IDs and locations via theRegistry
.
Additionally, the simple-xcm
library automatically sorts and deduplicates assets, relieving users of the need to manage these tasks manually. This functionality is essential due to the peculiarities of XCM decoding. By handling sorting and deduplication automatically, the library ensures that users can focus on their core functionalities without being concerned about the complexities of XCM asset management.
You can retrieve the adjusted (converted a specified amount token into its equivalent while taking into account the decimal places) fungible amount by calling adjustedFungible
:
xcm.adjustedFungible('DOT', '22.23432');
To transfer assets between accounts cross-chain, you can use the composeTransfer
function. This function accepts assets and locations in the latest version of XCM format. The conversion to the version supported by the target chain will be handled automatically by simple-xcm.
await xcm.composeTransfer({
origin: 'Test Account', // Assume you registered 'Test Account' as a relative `accountId32` location in the registry
// List of assets to transfer
assets: [
asset(location(0n, 'here'), fungible(100n)),
asset('DOT', fungible(5n)),
],
feeAssetId: 'DOT', // What asset to use to cover the fees on *all* the hops
destination: 'Acala',
beneficiary: 'Test Account',
});
Note: In the
composeTransfer
method, all arguments representing locations and asset IDs can be passed as strings. In this case, the library will retrieve them from theRegistry
.
Don't forget to disconnect your XCM connection after completing all operations:
await xcm.disconnect();
You can easily enforce the XCM version used to interact with the parachain. By default, SimpleXcm
uses the maximum XCM version supported by the parachain.
registry.enforceXcmVersion(3);
Note: The XCM version cannot exceed the maximum XCM version supported by the chain!
@ashkuc/xcm-types
@ashkuc/xcm-estimate
@ashkuc/xcm-util
FAQs
Unknown package
The npm package @ashkuc/simple-xcm receives a total of 37 weekly downloads. As such, @ashkuc/simple-xcm popularity was classified as not popular.
We found that @ashkuc/simple-xcm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.