@dedot/chaintypes 0.103.0 → 0.104.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dedot/chaintypes",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.104.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": "
|
|
28
|
+
"gitHead": "d1f178de7e351fd9185995500d927f9ec45879aa",
|
|
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:
|
|
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
|
/**
|