@moonbeam-network/xcm-builder 0.0.1-dev.1 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +13 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,3 +1,14 @@
1
- ![Moonbeam](https://moonbeam.network/wp-content/uploads/2020/03/Moonbeam-Logo-Final-500px.png)
1
+ ![Moonbeam](https://docs.moonbeam.network/images/builders/interoperability/xcm/sdk/xcm-sdk-banner.png)
2
2
 
3
- # XCM-Builder
3
+ 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. With the SDK, you don't need to worry about determining the multilocation of the origin or destination assets or which extrinsics are used on which networks to send XCM transfers. To deposit or withdraw assets, you simply define the asset and origin chain you want to deposit from or withdraw back to, along with the sending account's signer, and the amount to send.
4
+
5
+ # Documentation
6
+
7
+ ## v1 (current)
8
+
9
+ - TODO: (coming soon)
10
+
11
+ ## v0 (previous)
12
+
13
+ - [usage](https://docs.moonbeam.network/builders/xcm/xcm-sdk/xcm-sdk/)
14
+ - [references](https://docs.moonbeam.network/builders/xcm/xcm-sdk/reference/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonbeam-network/xcm-builder",
3
- "version": "0.0.1-dev.1",
3
+ "version": "1.0.0",
4
4
  "description": "Moonbeam XCM builder",
5
5
  "scripts": {
6
6
  "build": "tsup",
@@ -55,10 +55,10 @@
55
55
  "type-fest": "^3.8.0"
56
56
  },
57
57
  "peerDependencies": {
58
- "@polkadot/api": "10.x",
59
- "@polkadot/api-augment": "10.x",
60
- "@polkadot/types": "10.x",
61
- "@polkadot/util": "12.x",
62
- "@polkadot/util-crypto": "12.x"
58
+ "@polkadot/api": "^10.8.1",
59
+ "@polkadot/api-augment": "^10.8.1",
60
+ "@polkadot/types": "^10.8.1",
61
+ "@polkadot/util": "^12.2.2",
62
+ "@polkadot/util-crypto": "^12.2.2"
63
63
  }
64
64
  }