@paraspell/assets 12.3.0 → 12.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +10 -7
- package/dist/index.mjs +18 -0
- package/package.json +4 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
<h1 align="center">@paraspell/assets</h1>
|
|
5
|
-
<h4 align="center"> Pallet queries for Polkadot and
|
|
5
|
+
<h4 align="center"> Pallet queries for Polkadot, Kusama, Paseo and Westend Parachains. </h4>
|
|
6
6
|
<p align="center">
|
|
7
7
|
<a href="https://npmjs.com/package/@paraspell/assets">
|
|
8
8
|
<img alt="version" src="https://img.shields.io/npm/v/@paraspell/assets?style=flat-square" />
|
|
@@ -186,7 +186,8 @@ getAssetLocation(TChain, { symbol: symbol } | { id: assetId })
|
|
|
186
186
|
|
|
187
187
|
- Update existential deposits in the map using script - `pnpm updateEds`
|
|
188
188
|
|
|
189
|
-
|
|
189
|
+
> [!NOTE]
|
|
190
|
+
> Asset queries can be tested in [XCM Playground](https://github.com/paraspell/xcm-tools/tree/main/apps/playground).
|
|
190
191
|
|
|
191
192
|
## Contribute to XCM Tools and earn rewards 💰
|
|
192
193
|
|
|
@@ -206,8 +207,10 @@ Published under [MIT License](https://github.com/paraspell/xcm-tools/blob/main/p
|
|
|
206
207
|
|
|
207
208
|
## Supported by
|
|
208
209
|
|
|
209
|
-
<
|
|
210
|
-
|
|
211
|
-
<
|
|
212
|
-
|
|
213
|
-
|
|
210
|
+
<p align="center">
|
|
211
|
+
<picture>
|
|
212
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/paraspell/presskit/blob/main/logos_supporters/polkadot_kusama_transparent.png">
|
|
213
|
+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/paraspell/presskit/blob/main/logos_supporters/polkadot_kusama_w3f_standard.png">
|
|
214
|
+
<img width="750" alt="Shows a black logo in light color mode and a white one in dark color mode." src="https://github.com/paraspell/presskit/blob/main/logos_supporters/polkadot_kusama_w3f_standard.png">
|
|
215
|
+
</picture>
|
|
216
|
+
</p>
|
package/dist/index.mjs
CHANGED
|
@@ -17782,6 +17782,24 @@ var AssetHubPaseo = {
|
|
|
17782
17782
|
existentialDeposit: "15000000000000",
|
|
17783
17783
|
isFeeAsset: true
|
|
17784
17784
|
},
|
|
17785
|
+
{
|
|
17786
|
+
symbol: "HOLLAR",
|
|
17787
|
+
decimals: 18,
|
|
17788
|
+
location: {
|
|
17789
|
+
parents: 1,
|
|
17790
|
+
interior: {
|
|
17791
|
+
X2: [
|
|
17792
|
+
{
|
|
17793
|
+
Parachain: 2034
|
|
17794
|
+
},
|
|
17795
|
+
{
|
|
17796
|
+
GeneralIndex: 222
|
|
17797
|
+
}
|
|
17798
|
+
]
|
|
17799
|
+
}
|
|
17800
|
+
},
|
|
17801
|
+
existentialDeposit: "20000000000000000"
|
|
17802
|
+
},
|
|
17785
17803
|
{
|
|
17786
17804
|
symbol: "MERC",
|
|
17787
17805
|
decimals: 18,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paraspell/assets",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.5.0",
|
|
4
4
|
"description": "Assets for ParaSpell XCM/XCMP tool for developers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dist"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@paraspell/sdk-common": "12.
|
|
26
|
+
"@paraspell/sdk-common": "12.5.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@babel/plugin-syntax-import-attributes": "^7.27.1",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"@rollup/plugin-babel": "^6.1.0",
|
|
35
35
|
"@rollup/plugin-json": "^6.1.0",
|
|
36
36
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
37
|
-
"@snowbridge/registry": "^0.2
|
|
37
|
+
"@snowbridge/registry": "^0.3.2",
|
|
38
38
|
"@vitest/coverage-v8": "^4.0.16",
|
|
39
39
|
"dotenv": "^17.2.3",
|
|
40
40
|
"rollup": "^4.54.0",
|
|
41
41
|
"rollup-plugin-dts": "^6.3.0",
|
|
42
42
|
"ts-node": "^10.9.2",
|
|
43
|
-
"viem": "2.
|
|
43
|
+
"viem": "2.45.0"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"compile": "tsc --noEmit",
|