@dedot/chaintypes 0.211.0 → 0.212.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 +2 -2
- package/paseo/index.d.ts +1 -1
- package/paseo/query.d.ts +10 -0
- package/paseo/tx.d.ts +10 -10
- package/paseo/types.d.ts +9237 -9233
- package/paseo-asset-hub/consts.d.ts +61 -1
- package/paseo-asset-hub/errors.d.ts +61 -1
- package/paseo-asset-hub/events.d.ts +10 -0
- package/paseo-asset-hub/index.d.ts +3 -1
- package/paseo-asset-hub/query.d.ts +77 -0
- package/paseo-asset-hub/runtime.d.ts +68 -1
- package/paseo-asset-hub/tx.d.ts +126 -47
- package/paseo-asset-hub/types.d.ts +14174 -13760
- package/paseo-people/index.d.ts +1 -1
- package/paseo-people/query.d.ts +10 -0
- package/paseo-people/types.d.ts +4131 -4127
package/paseo-people/index.d.ts
CHANGED
package/paseo-people/query.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ import type {
|
|
|
39
39
|
FrameSupportTokensMiscIdAmount,
|
|
40
40
|
FrameSupportTokensMiscIdAmount002,
|
|
41
41
|
PalletTransactionPaymentReleases,
|
|
42
|
+
FrameSupportStorageNoDrop,
|
|
42
43
|
PalletCollatorSelectionCandidateInfo,
|
|
43
44
|
PeoplePaseoRuntimeSessionKeys,
|
|
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
|
**/
|