@paraspell/pallets 13.2.2 → 13.3.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/README.md +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +1 -1
- package/package.json +4 -5
package/README.md
CHANGED
|
@@ -96,7 +96,7 @@ getOtherAssetsPallets(chain: TChain)
|
|
|
96
96
|
|
|
97
97
|
## Contribute to XCM Tools and earn rewards 💰
|
|
98
98
|
|
|
99
|
-
We run an open Bug Bounty Program that rewards contributors for reporting and fixing bugs in the project. More information on bug bounty can be found in the [official documentation](https://paraspell.github.io/docs/contribution.html).
|
|
99
|
+
We run an open Bug Bounty Program that rewards contributors for reporting and fixing bugs in the project. More information on bug bounty can be found in the [official documentation](https://paraspell.github.io/docs/contribution-guidelines.html).
|
|
100
100
|
|
|
101
101
|
## Get Support 🚑
|
|
102
102
|
|
package/dist/index.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { TSubstrateChain } from '@paraspell/sdk-common';
|
|
|
2
2
|
|
|
3
3
|
declare const CROSSCHAIN_PALLETS: readonly ["XTokens", "PolkadotXcm", "XcmPallet"];
|
|
4
4
|
declare const ASSETS_PALLETS: readonly ["Balances", "Tokens", "Currencies", "Assets", "ForeignAssets", "AssetManager", "System", "Fungibles", "OrmlTokens"];
|
|
5
|
-
declare const OTHER_PALLETS: readonly ["Utility"];
|
|
6
|
-
declare const PALLETS: readonly ["XTokens", "PolkadotXcm", "XcmPallet", "Balances", "Tokens", "Currencies", "Assets", "ForeignAssets", "AssetManager", "System", "Fungibles", "OrmlTokens", "Utility"];
|
|
5
|
+
declare const OTHER_PALLETS: readonly ["Utility", "AssetConversion"];
|
|
6
|
+
declare const PALLETS: readonly ["XTokens", "PolkadotXcm", "XcmPallet", "Balances", "Tokens", "Currencies", "Assets", "ForeignAssets", "AssetManager", "System", "Fungibles", "OrmlTokens", "Utility", "AssetConversion"];
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Used to inform user, that no XCM pallet was found on the specified chain.
|
package/dist/index.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
var CROSSCHAIN_PALLETS = ['XTokens', 'PolkadotXcm', 'XcmPallet'];
|
|
2
2
|
var ASSETS_PALLETS = ['Balances', 'Tokens', 'Currencies', 'Assets', 'ForeignAssets', 'AssetManager', 'System', 'Fungibles', 'OrmlTokens'];
|
|
3
|
-
var OTHER_PALLETS = ['Utility'];
|
|
3
|
+
var OTHER_PALLETS = ['Utility', 'AssetConversion'];
|
|
4
4
|
var PALLETS = [].concat(CROSSCHAIN_PALLETS, ASSETS_PALLETS, OTHER_PALLETS);
|
|
5
5
|
|
|
6
6
|
function _assertThisInitialized(e) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paraspell/pallets",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.3.0",
|
|
4
4
|
"description": "Pallets for ParaSpell XCM/XCMP tool for developers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,18 +12,17 @@
|
|
|
12
12
|
"exports": {
|
|
13
13
|
".": {
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
|
-
"import": "./dist/index.mjs"
|
|
16
|
-
"require": "./dist/index.cjs"
|
|
15
|
+
"import": "./dist/index.mjs"
|
|
17
16
|
}
|
|
18
17
|
},
|
|
19
|
-
"main": "dist/index.
|
|
18
|
+
"main": "dist/index.mjs",
|
|
20
19
|
"module": "dist/index.mjs",
|
|
21
20
|
"types": "dist/index.d.ts",
|
|
22
21
|
"files": [
|
|
23
22
|
"dist"
|
|
24
23
|
],
|
|
25
24
|
"dependencies": {
|
|
26
|
-
"@paraspell/sdk-common": "13.
|
|
25
|
+
"@paraspell/sdk-common": "13.3.0"
|
|
27
26
|
},
|
|
28
27
|
"devDependencies": {
|
|
29
28
|
"@babel/plugin-syntax-import-attributes": "^7.28.6",
|