@dedot/chaintypes 0.215.0 → 0.217.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.
@@ -123,6 +123,15 @@ export interface ChainConsts extends GenericChainConsts {
123
123
  **/
124
124
  [name: string]: any;
125
125
  };
126
+ /**
127
+ * Pallet `WeightReclaim`'s constants
128
+ **/
129
+ weightReclaim: {
130
+ /**
131
+ * Generic pallet constant
132
+ **/
133
+ [name: string]: any;
134
+ };
126
135
  /**
127
136
  * Pallet `Balances`'s constants
128
137
  **/
@@ -41,6 +41,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
41
41
  FrameSystemExtensionsCheckWeight,
42
42
  PalletTransactionPaymentChargeTransactionPayment,
43
43
  FrameMetadataHashExtensionCheckMetadataHash,
44
+ [],
44
45
  ];
45
46
  AssetId: undefined;
46
47
  EventRecord: FrameSystemEventRecord;
@@ -48,7 +49,7 @@ interface ChainKnownTypes extends GenericChainKnownTypes {
48
49
 
49
50
  /**
50
51
  * @name: PolkadotPeopleApi
51
- * @specVersion: 2000000
52
+ * @specVersion: 2000005
52
53
  **/
53
54
  export interface PolkadotPeopleApi extends GenericSubstrateApi {
54
55
  rpc: ChainJsonRpcApis;
@@ -39,6 +39,7 @@ import type {
39
39
  FrameSupportTokensMiscIdAmount,
40
40
  FrameSupportTokensMiscIdAmount002,
41
41
  PalletTransactionPaymentReleases,
42
+ FrameSupportStorageNoDrop,
42
43
  PalletCollatorSelectionCandidateInfo,
43
44
  PeoplePolkadotRuntimeSessionKeys,
44
45
  SpStakingOffenceOffenceSeverity,
@@ -681,6 +682,15 @@ export interface ChainStorage extends GenericChainStorage {
681
682
  **/
682
683
  storageVersion: GenericStorageQuery<() => PalletTransactionPaymentReleases>;
683
684
 
685
+ /**
686
+ * The `OnChargeTransaction` stores the withdrawn tx fee here.
687
+ *
688
+ * Use `withdraw_txfee` and `remaining_txfee` to access from outside the crate.
689
+ *
690
+ * @param {Callback<FrameSupportStorageNoDrop | undefined> =} callback
691
+ **/
692
+ txPaymentCredit: GenericStorageQuery<() => FrameSupportStorageNoDrop | undefined>;
693
+
684
694
  /**
685
695
  * Generic pallet storage query
686
696
  **/