@paraspell/sdk 1.1.4 → 1.1.8
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 +3 -0
- package/dist/index.cjs +396 -172
- package/dist/index.d.ts +4 -1
- package/dist/index.mjs +396 -173
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -176,6 +176,9 @@ paraspell.assets.getAssetDecimals(node: TNode, symbol: string)
|
|
|
176
176
|
//Get specific node id
|
|
177
177
|
paraspell.assets.getParaId(node: TNode)
|
|
178
178
|
|
|
179
|
+
//Get specific TNode from nodeID
|
|
180
|
+
paraspell.assets.getTNode(nodeID: number)
|
|
181
|
+
|
|
179
182
|
//Import all compatible nodes as constant:
|
|
180
183
|
paraspell.NODE_NAMES
|
|
181
184
|
```
|