@moonbeam-network/xcm-builder 4.4.4 → 4.4.6

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 +34 -8
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,20 +1,46 @@
1
- The Builder package contains the builders for the queries, extrinsics, functions, and contract calls used in the Moonbeam XCM SDK and MRL SDK.
1
+ # @moonbeam-network/xcm-builder
2
2
 
3
- # Documentation for the Moonbeam XCM SDK
3
+ Builders for low-level transaction components used in the Moonbeam XCM SDK and MRL SDK.
4
4
 
5
- ## v3 (current)
5
+ ## Package Information
6
6
 
7
- ### Usage
7
+ **NPM Package:** [https://www.npmjs.com/package/@moonbeam-network/xcm-builder](https://www.npmjs.com/package/@moonbeam-network/xcm-builder)
8
+
9
+ **Package Level:** Level 3
10
+ **Depends on:** `@moonbeam-network/xcm-utils`, `@moonbeam-network/xcm-types`
11
+
12
+ ## Features
13
+
14
+ This package provides builders for:
15
+
16
+ - **Extrinsics** - Construction of blockchain transactions
17
+ - **Contract calls** - Smart contract interaction helpers
18
+ - **Balance retrieval** - Query account balances
19
+ - **Fee calculation** - Estimate transaction costs
20
+ - **Other low-level transaction helpers** - Various utilities for transaction construction
21
+
22
+ ## Documentation
23
+
24
+ ### v4 (current)
25
+
26
+ #### Usage
8
27
 
9
28
  - [XCM SDK](https://moonbeam-foundation.github.io/xcm-sdk/latest/example-usage/xcm)
10
29
  - [MRL SDK](https://moonbeam-foundation.github.io/xcm-sdk/latest/example-usage/mrl)
11
30
 
12
- ### References
31
+ #### References
13
32
 
14
33
  - [XCM SDK](https://moonbeam-foundation.github.io/xcm-sdk/latest/reference/xcm)
15
34
  - [MRL SDK](https://moonbeam-foundation.github.io/xcm-sdk/latest/reference/mrl)
16
35
 
17
- ## v2 (previous)
36
+ ### v3 (previous)
37
+
38
+ #### Usage
39
+
40
+ - [XCM SDK](https://moonbeam-foundation.github.io/xcm-sdk/v3/example-usage/xcm)
41
+ - [MRL SDK](https://moonbeam-foundation.github.io/xcm-sdk/v3/example-usage/mrl)
42
+
43
+ #### References
18
44
 
19
- - [usage](https://moonbeam-foundation.github.io/xcm-sdk/v2/example-usage)
20
- - [references](https://moonbeam-foundation.github.io/xcm-sdk/v2/reference/interfaces)
45
+ - [XCM SDK](https://moonbeam-foundation.github.io/xcm-sdk/v3/reference/xcm)
46
+ - [MRL SDK](https://moonbeam-foundation.github.io/xcm-sdk/v3/reference/mrl)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moonbeam-network/xcm-builder",
3
- "version": "4.4.4",
3
+ "version": "4.4.6",
4
4
  "description": "Moonbeam XCM builder",
5
5
  "repository": {
6
6
  "directory": "packages/builder",
@@ -33,7 +33,7 @@
33
33
  "main": "./build/index.mjs",
34
34
  "dependencies": {
35
35
  "big.js": "^7.0.1",
36
- "@moonbeam-network/xcm-types": "4.3.3",
36
+ "@moonbeam-network/xcm-types": "4.3.5",
37
37
  "@moonbeam-network/xcm-utils": "4.2.2"
38
38
  },
39
39
  "peerDependencies": {
@@ -42,9 +42,9 @@
42
42
  "@polkadot/types": "16.5.4",
43
43
  "@polkadot/util": "14.0.1",
44
44
  "@polkadot/util-crypto": "14.0.1",
45
- "@wormhole-foundation/sdk-connect": "^4.6.0",
46
- "@wormhole-foundation/sdk-evm": "^4.6.0",
47
- "viem": "^2.41.2"
45
+ "@wormhole-foundation/sdk-connect": "^4.7.4",
46
+ "@wormhole-foundation/sdk-evm": "^4.7.4",
47
+ "viem": "^2.44.2"
48
48
  },
49
49
  "scripts": {
50
50
  "build": "tsup",