@paraspell/sdk 3.0.5 → 3.0.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.
- package/README.md +3 -3
- package/dist/index.cjs +254 -225
- package/dist/index.d.ts +132 -170
- package/dist/index.mjs +254 -225
- package/package.json +32 -28
package/README.md
CHANGED
|
@@ -26,11 +26,11 @@ Our SDK introduced all Polkadot libraries as peer dependencies. The reason for t
|
|
|
26
26
|
|
|
27
27
|
```
|
|
28
28
|
//npm
|
|
29
|
-
npm install @polkadot/api @polkadot/types @polkadot/api-base @polkadot/apps-config
|
|
29
|
+
npm install @polkadot/api @polkadot/types @polkadot/api-base @polkadot/apps-config @polkadot/util
|
|
30
30
|
//yarn
|
|
31
|
-
yarn install @polkadot/api @polkadot/types @polkadot/api-base @polkadot/apps-config
|
|
31
|
+
yarn install @polkadot/api @polkadot/types @polkadot/api-base @polkadot/apps-config @polkadot/util
|
|
32
32
|
//pnpm
|
|
33
|
-
pnpm install @polkadot/api @polkadot/types @polkadot/api-base @polkadot/apps-config
|
|
33
|
+
pnpm install @polkadot/api @polkadot/types @polkadot/api-base @polkadot/apps-config @polkadot/util
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
##### Install SDK via npm||yarn||pnpm
|