@dedot/chaintypes 0.103.0 → 0.105.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.
@@ -23,7 +23,7 @@ export interface VersionedHydrationApi<Rv extends RpcVersion> extends GenericSub
23
23
 
24
24
  /**
25
25
  * @name: HydrationApi
26
- * @specVersion: 313
26
+ * @specVersion: 314
27
27
  **/
28
28
  export interface HydrationApi {
29
29
  legacy: VersionedHydrationApi<RpcLegacy>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dedot/chaintypes",
3
- "version": "0.103.0",
3
+ "version": "0.105.0",
4
4
  "description": "Types for substrate-based chains",
5
5
  "author": "Thang X. Vu <thang@dedot.dev>",
6
6
  "homepage": "https://dedot.dev",
@@ -25,7 +25,7 @@
25
25
  "directory": "dist"
26
26
  },
27
27
  "license": "Apache-2.0",
28
- "gitHead": "8edbeed19b792b804121039718984379ae887ee7",
28
+ "gitHead": "ab13ac41d310ad990289422679cd09e2a0de231f",
29
29
  "module": "./index.js",
30
30
  "types": "./index.d.ts",
31
31
  "exports": {
@@ -2910,14 +2910,7 @@ export interface ChainEvents<Rv extends RpcVersion> extends GenericChainEvents<R
2910
2910
  Rv,
2911
2911
  'Liquidation',
2912
2912
  'Liquidated',
2913
- {
2914
- liquidator: AccountId32;
2915
- evmAddress: H160;
2916
- collateralAsset: number;
2917
- debtAsset: number;
2918
- debtToCover: bigint;
2919
- profit: bigint;
2920
- }
2913
+ { user: H160; collateralAsset: number; debtAsset: number; debtToCover: bigint; profit: bigint }
2921
2914
  >;
2922
2915
 
2923
2916
  /**
@@ -23,7 +23,7 @@ export interface VersionedPaseoHydrationApi<Rv extends RpcVersion> extends Gener
23
23
 
24
24
  /**
25
25
  * @name: PaseoHydrationApi
26
- * @specVersion: 312
26
+ * @specVersion: 314
27
27
  **/
28
28
  export interface PaseoHydrationApi {
29
29
  legacy: VersionedPaseoHydrationApi<RpcLegacy>;
@@ -14370,14 +14370,7 @@ export type PalletLiquidationEvent =
14370
14370
  **/
14371
14371
  {
14372
14372
  name: 'Liquidated';
14373
- data: {
14374
- liquidator: AccountId32;
14375
- evmAddress: H160;
14376
- collateralAsset: number;
14377
- debtAsset: number;
14378
- debtToCover: bigint;
14379
- profit: bigint;
14380
- };
14373
+ data: { user: H160; collateralAsset: number; debtAsset: number; debtToCover: bigint; profit: bigint };
14381
14374
  };
14382
14375
 
14383
14376
  /**