@moonbeam-network/xcm-sdk 2.0.3 → 2.0.4
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 +10 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -108,3 +108,13 @@ cp .env.example .env
|
|
|
108
108
|
|
|
109
109
|
npm run test:acc
|
|
110
110
|
```
|
|
111
|
+
|
|
112
|
+
# Release
|
|
113
|
+
|
|
114
|
+
To create a dev version go to GitHub actions and run `publish dev versions` workflow.
|
|
115
|
+
|
|
116
|
+
To create a release version run:
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
npm run changeset
|
|
120
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moonbeam-network/xcm-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.4",
|
|
4
4
|
"description": "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",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsup",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
"types": "./build/index.d.ts",
|
|
52
52
|
"main": "./build/index.cjs",
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@moonbeam-network/xcm-builder": "2.0.
|
|
55
|
-
"@moonbeam-network/xcm-config": "2.0.
|
|
56
|
-
"@moonbeam-network/xcm-types": "2.0.
|
|
57
|
-
"@moonbeam-network/xcm-utils": "2.0.
|
|
54
|
+
"@moonbeam-network/xcm-builder": "2.0.1",
|
|
55
|
+
"@moonbeam-network/xcm-config": "2.0.4",
|
|
56
|
+
"@moonbeam-network/xcm-types": "2.0.1",
|
|
57
|
+
"@moonbeam-network/xcm-utils": "2.0.1",
|
|
58
58
|
"big.js": "^6.2.1"
|
|
59
59
|
},
|
|
60
60
|
"peerDependencies": {
|