@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.
- package/hydration/index.d.ts +1 -1
- package/package.json +2 -2
- package/paseo/index.d.ts +1 -1
- package/paseo-asset-hub/consts.d.ts +9 -0
- package/paseo-asset-hub/errors.d.ts +20 -0
- package/paseo-asset-hub/events.d.ts +8 -3
- package/paseo-asset-hub/index.d.ts +2 -1
- package/paseo-asset-hub/tx.d.ts +41 -0
- package/paseo-asset-hub/types.d.ts +79 -7
- package/paseo-people/consts.d.ts +9 -0
- package/paseo-people/index.d.ts +2 -1
- package/paseo-people/types.d.ts +12 -0
- package/polkadot/index.d.ts +1 -1
- package/polkadot/query.d.ts +10 -0
- package/polkadot/runtime.d.ts +0 -20
- package/polkadot/tx.d.ts +10 -10
- package/polkadot/types.d.ts +6970 -6969
- package/polkadot-asset-hub/consts.d.ts +130 -1
- package/polkadot-asset-hub/errors.d.ts +333 -0
- package/polkadot-asset-hub/events.d.ts +59 -3
- package/polkadot-asset-hub/index.d.ts +4 -1
- package/polkadot-asset-hub/query.d.ts +154 -0
- package/polkadot-asset-hub/runtime.d.ts +320 -0
- package/polkadot-asset-hub/tx.d.ts +555 -19
- package/polkadot-asset-hub/types.d.ts +14152 -12878
- package/polkadot-people/consts.d.ts +9 -0
- package/polkadot-people/index.d.ts +2 -1
- package/polkadot-people/query.d.ts +10 -0
- package/polkadot-people/types.d.ts +4313 -4297
|
@@ -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:
|
|
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
|
**/
|