@paraspell/sdk-pjs 8.5.3 → 8.6.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.
- package/README.md +5 -0
- package/dist/index.cjs +1003 -1025
- package/dist/index.d.ts +72 -75
- package/dist/index.mjs +809 -830
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -223,6 +223,11 @@ const result = await Builder(API /*optional*/)
|
|
|
223
223
|
|
|
224
224
|
//Function pattern
|
|
225
225
|
await getDryRun({api /*optional*/, node, address /*sender address*/, tx /* Extrinsic object */})
|
|
226
|
+
|
|
227
|
+
//Check Parachain for DryRun support - returns true/false
|
|
228
|
+
import { hasDryRunSupport } from "@paraspell/sdk-pjs";
|
|
229
|
+
|
|
230
|
+
const result = hasDryRunSupport(node)
|
|
226
231
|
```
|
|
227
232
|
|
|
228
233
|
### Asset claim:
|