@dedot/chaintypes 0.221.0 → 0.226.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.
@@ -16,7 +16,6 @@ import type {
16
16
  PalletTransactionPaymentChargeTransactionPayment,
17
17
  PalletClaimsValidateClaim,
18
18
  FrameMetadataHashExtensionCheckMetadataHash,
19
- CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim,
20
19
  } from './types.js';
21
20
  import { ChainConsts } from './consts.js';
22
21
  import { ChainStorage } from './query.js';
@@ -44,7 +43,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
44
43
  PalletTransactionPaymentChargeTransactionPayment,
45
44
  PalletClaimsValidateClaim,
46
45
  FrameMetadataHashExtensionCheckMetadataHash,
47
- CumulusPrimitivesStorageWeightReclaimStorageWeightReclaim,
46
+ [],
48
47
  ];
49
48
  AssetId: undefined;
50
49
  EventRecord: FrameSystemEventRecord;
@@ -52,7 +51,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
52
51
 
53
52
  /**
54
53
  * @name: PaseoHydrationApi
55
- * @specVersion: 378
54
+ * @specVersion: 393
56
55
  **/
57
56
  export interface PaseoHydrationApi extends GenericSubstrateApi {
58
57
  rpc: ChainJsonRpcApis;
@@ -5,13 +5,15 @@ import type { JsonRpcApis } from 'dedot/types/json-rpc';
5
5
 
6
6
  export type ChainJsonRpcApis = Pick<
7
7
  JsonRpcApis,
8
- | 'archive_unstable_body'
9
- | 'archive_unstable_call'
10
- | 'archive_unstable_finalizedHeight'
11
- | 'archive_unstable_genesisHash'
12
- | 'archive_unstable_hashByHeight'
13
- | 'archive_unstable_header'
14
- | 'archive_unstable_storage'
8
+ | 'archive_v1_body'
9
+ | 'archive_v1_call'
10
+ | 'archive_v1_finalizedHeight'
11
+ | 'archive_v1_genesisHash'
12
+ | 'archive_v1_hashByHeight'
13
+ | 'archive_v1_header'
14
+ | 'archive_v1_storage'
15
+ | 'archive_v1_storageDiff'
16
+ | 'archive_v1_storageDiff_stopStorageDiff'
15
17
  | 'author_hasKey'
16
18
  | 'author_hasSessionKeys'
17
19
  | 'author_insertKey'
@@ -99,9 +101,13 @@ export type ChainJsonRpcApis = Pick<
99
101
  | 'ismp_queryStateMachineLatestHeight'
100
102
  | 'ismp_queryStateMachineUpdateTime'
101
103
  | 'ismp_queryStateProof'
104
+ | 'liquidation_getBorrowers'
105
+ | 'liquidation_isRunning'
106
+ | 'liquidation_maxTransactionsPerBlock'
102
107
  | 'net_listening'
103
108
  | 'net_peerCount'
104
109
  | 'net_version'
110
+ | 'offchain_localStorageClear'
105
111
  | 'offchain_localStorageGet'
106
112
  | 'offchain_localStorageSet'
107
113
  | 'payment_queryFeeDetails'