@paraspell/sdk 8.2.0 → 8.2.1

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 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -222,10 +222,10 @@ const result = await Builder(API /*optional*/)
222
222
  .to(NODE_2)
223
223
  .currency({id: currencyID, amount: amount} | {symbol: currencySymbol, amount: amount} | {symbol: Native('currencySymbol'), amount: amount} | {symbol: Foreign('currencySymbol'), amount: amount} | {symbol: ForeignAbstract('currencySymbol'), amount: amount} | {multilocation: AssetMultilocationString, amount: amount | AssetMultilocationJson, amount: amount} | {multilocation: Override('Custom Multilocation'), amount: amount} | {multiasset: {currencySelection, isFeeAsset?: true /* for example symbol: symbol or id: id, or multilocation: multilocation*/, amount: amount}})
224
224
  .address(ADDRESS)
225
- .dryRun()
225
+ .dryRun(SENDER_ADDRESS)
226
226
 
227
227
  //Function pattern
228
- getDryRun({api /*optional*/, node, address, tx /* Extrinsic object */})
228
+ getDryRun({api /*optional*/, node, address /*sender address*/, tx /* Extrinsic object */})
229
229
  ```
230
230
 
231
231
  ### Asset claim:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paraspell/sdk",
3
- "version": "8.2.0",
3
+ "version": "8.2.1",
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
  "ethers": "^6.13.5",
27
27
  "viem": "^2.22.13",
28
- "@paraspell/sdk-core": "8.2.0"
28
+ "@paraspell/sdk-core": "8.2.1"
29
29
  },
30
30
  "peerDependencies": {
31
31
  "polkadot-api": ">= 1.8.4 < 2"