@paraspell/sdk 13.4.0 → 13.5.0

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/dist/index.d.ts +2 -5
  2. package/package.json +15 -15
package/dist/index.d.ts CHANGED
@@ -157,12 +157,9 @@ declare const getParaEthTransferFees: (ahApi?: TApiOrUrl<TPapiApi>) => Promise<[
157
157
  * Gets the Ethereum bridge status.
158
158
  */
159
159
  declare const getBridgeStatus: (ahApi?: TApiOrUrl<TPapiApi>) => Promise<_paraspell_sdk_core.TBridgeStatus>;
160
- declare const getOriginXcmFee: (options: _paraspell_sdk_core.TGetOriginXcmFeeBaseOptions<TPapiTransaction> & {
160
+ declare const getOriginXcmFee: (options: _paraspell_sdk_core.TGetOriginXcmFeeBaseOptions<TPapiTransaction, boolean> & {
161
161
  api?: TApiOrUrl<TPapiApi>;
162
- }) => Promise<_paraspell_sdk_core.TXcmFeeDetail & {
163
- forwardedXcms?: unknown;
164
- destParaId?: number;
165
- }>;
162
+ }) => Promise<_paraspell_sdk_core.TXcmFeeDetailWithForwardedXcm<boolean>>;
166
163
  declare const getXcmFee: <TDisableFallback extends boolean>(options: TGetXcmFeeBaseOptions<TPapiTransaction, TDisableFallback>, builderOptions?: TBuilderOptions<TApiOrUrl<TPapiApi>>) => Promise<_paraspell_sdk_core.TGetXcmFeeResult<TDisableFallback>>;
167
164
  declare const handleSwapExecuteTransfer: (options: TCreateBaseSwapXcmOptions, builderOptions?: TBuilderOptions<TApiOrUrl<TPapiApi>>) => Promise<TPapiTransaction>;
168
165
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paraspell/sdk",
3
- "version": "13.4.0",
3
+ "version": "13.5.0",
4
4
  "description": "SDK for ParaSpell XCM/XCMP tool for developers",
5
5
  "repository": {
6
6
  "type": "git",
@@ -22,30 +22,30 @@
22
22
  "dist"
23
23
  ],
24
24
  "dependencies": {
25
- "@noble/hashes": "^2.0.1",
26
- "@polkadot-labs/hdkd": "^0.0.27",
27
- "@polkadot-labs/hdkd-helpers": "^0.0.28",
28
- "viem": "^2.47.6",
29
- "@paraspell/sdk-core": "13.4.0"
25
+ "@noble/hashes": "^2.2.0",
26
+ "@polkadot-labs/hdkd": "^0.0.28",
27
+ "@polkadot-labs/hdkd-helpers": "^0.0.30",
28
+ "viem": "^2.48.4",
29
+ "@paraspell/sdk-core": "13.5.0"
30
30
  },
31
31
  "peerDependencies": {
32
32
  "polkadot-api": ">= 2 < 3"
33
33
  },
34
34
  "devDependencies": {
35
- "@acala-network/chopsticks": "^1.3.0",
35
+ "@acala-network/chopsticks": "^1.3.1",
36
36
  "@babel/plugin-syntax-import-attributes": "^7.28.6",
37
37
  "@babel/preset-env": "^7.29.2",
38
- "@codecov/rollup-plugin": "^1.9.1",
39
- "@noble/curves": "^2.0.1",
38
+ "@codecov/rollup-plugin": "^2.0.1",
39
+ "@noble/curves": "^2.2.0",
40
40
  "@rollup/plugin-babel": "^7.0.0",
41
41
  "@rollup/plugin-json": "^6.1.0",
42
42
  "@rollup/plugin-typescript": "^12.3.0",
43
- "@scure/bip32": "^2.0.1",
44
- "@scure/bip39": "^2.0.1",
45
- "@vitest/coverage-v8": "^4.1.2",
46
- "axios": "^1.14.0",
47
- "dotenv": "^17.3.1",
48
- "rollup": "^4.60.1",
43
+ "@scure/bip32": "^2.2.0",
44
+ "@scure/bip39": "^2.2.0",
45
+ "@vitest/coverage-v8": "^4.1.5",
46
+ "axios": "^1.15.2",
47
+ "dotenv": "^17.4.2",
48
+ "rollup": "^4.60.2",
49
49
  "rollup-plugin-dts": "^6.4.1",
50
50
  "tslib": "^2.8.1"
51
51
  },