@paraspell/sdk 11.6.1 → 11.7.2

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 +2 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -299,7 +299,8 @@ SDK offers enhanced localhost support. You can pass an object containing overrid
299
299
  ```ts
300
300
  const builder = await Builder({
301
301
  development: true, // Optional: Enforces overrides for all chains used
302
- decimalAbstraction: true //Abstracts decimals, so 1 as input amount equals 10_000_000_000 if selected asset is DOT.
302
+ decimalAbstraction: true // Abstracts decimals, so 1 as input amount equals 10_000_000_000 if selected asset is DOT.
303
+ xcmFormatCheck: true // Dryruns each call under the hood with dryrun bypass to confirm message passes with fictional balance
303
304
  apiOverrides: {
304
305
  Hydration: // "wsEndpointString" | papiClient
305
306
  BridgeHubPolkadot: // "wsEndpointString" | papiClient
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paraspell/sdk",
3
- "version": "11.6.1",
3
+ "version": "11.7.2",
4
4
  "description": "SDK for ParaSpell XCM/XCMP tool for developers",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "dependencies": {
26
26
  "@noble/hashes": "^1.8.0",
27
27
  "viem": "^2.36.0",
28
- "@paraspell/sdk-core": "11.6.1"
28
+ "@paraspell/sdk-core": "11.7.2"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "polkadot-api": ">= 1.17.2 < 2"