@pezkuwi/api-augment 16.5.23 → 16.5.24
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/bizinikiwi/consts.d.ts +12 -13
- package/bizinikiwi/events.d.ts +682 -682
- package/bizinikiwi/query.d.ts +123 -123
- package/bizinikiwi/runtime.d.ts +5 -5
- package/bizinikiwi/tx.d.ts +223 -2115
- package/cjs/bizinikiwi/consts.d.ts +12 -13
- package/cjs/bizinikiwi/events.d.ts +682 -682
- package/cjs/bizinikiwi/query.d.ts +123 -123
- package/cjs/bizinikiwi/runtime.d.ts +5 -5
- package/cjs/bizinikiwi/tx.d.ts +223 -2115
- package/cjs/packageInfo.js +1 -1
- package/cjs/pezkuwi/consts.d.ts +6 -7
- package/cjs/pezkuwi/events.d.ts +247 -247
- package/cjs/pezkuwi/query.d.ts +69 -69
- package/cjs/pezkuwi/runtime.d.ts +4 -4
- package/cjs/pezkuwi/tx.d.ts +81 -571
- package/package.json +6 -6
- package/packageInfo.js +1 -1
- package/pezkuwi/consts.d.ts +6 -7
- package/pezkuwi/events.d.ts +247 -247
- package/pezkuwi/query.d.ts +69 -69
- package/pezkuwi/runtime.d.ts +4 -4
- package/pezkuwi/tx.d.ts +81 -571
package/bizinikiwi/consts.d.ts
CHANGED
|
@@ -2,8 +2,7 @@ import '@pezkuwi/api-base/types/consts';
|
|
|
2
2
|
import type { ApiTypes, AugmentedConst } from '@pezkuwi/api-base/types';
|
|
3
3
|
import type { Bytes, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
|
4
4
|
import type { Codec, ITuple } from '@pezkuwi/types-codec/types';
|
|
5
|
-
import type {
|
|
6
|
-
import type { PezframeSupportPezpalletId, PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletContractsEnvironment, PezpalletContractsSchedule, PezpalletReferendaTrackDetails, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight } from '@pezkuwi/types/lookup';
|
|
5
|
+
import type { PezframeSupportPezpalletId, PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletContractsEnvironment, PezpalletContractsSchedule, PezpalletReferendaTrackDetails, PezspCoreCryptoAccountId32, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight } from '@pezkuwi/types/lookup';
|
|
7
6
|
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
|
|
8
7
|
declare module '@pezkuwi/api-base/types/consts' {
|
|
9
8
|
interface AugmentedConsts<ApiType extends ApiTypes> {
|
|
@@ -47,7 +46,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
47
46
|
/**
|
|
48
47
|
* A fee to withdraw the liquidity.
|
|
49
48
|
**/
|
|
50
|
-
liquidityWithdrawalFee:
|
|
49
|
+
liquidityWithdrawalFee: u32 & AugmentedConst<ApiType>;
|
|
51
50
|
/**
|
|
52
51
|
* A % the liquidity providers will take of every swap. Represents 10ths of a percent.
|
|
53
52
|
**/
|
|
@@ -248,7 +247,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
248
247
|
* This deposit has optional upper and lower bounds with `CuratorDepositMax` and
|
|
249
248
|
* `CuratorDepositMin`.
|
|
250
249
|
**/
|
|
251
|
-
curatorDepositMultiplier:
|
|
250
|
+
curatorDepositMultiplier: u32 & AugmentedConst<ApiType>;
|
|
252
251
|
/**
|
|
253
252
|
* The amount held on deposit per byte within the tip report reason or bounty description.
|
|
254
253
|
**/
|
|
@@ -323,7 +322,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
323
322
|
* protects the code from being removed. In order to prevent abuse these actions are
|
|
324
323
|
* protected with a percentage of the code deposit.
|
|
325
324
|
**/
|
|
326
|
-
codeHashLockupDepositPercent:
|
|
325
|
+
codeHashLockupDepositPercent: u32 & AugmentedConst<ApiType>;
|
|
327
326
|
/**
|
|
328
327
|
* Fallback value to limit the storage deposit if it's not being set by the caller.
|
|
329
328
|
**/
|
|
@@ -452,7 +451,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
452
451
|
/**
|
|
453
452
|
* Fraction of the slash that is rewarded to the caller of pending slash to the agent.
|
|
454
453
|
**/
|
|
455
|
-
slashRewardFraction:
|
|
454
|
+
slashRewardFraction: u32 & AugmentedConst<ApiType>;
|
|
456
455
|
/**
|
|
457
456
|
* Generic const
|
|
458
457
|
**/
|
|
@@ -529,7 +528,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
529
528
|
* The minimum amount of improvement to the solution score that defines a solution as
|
|
530
529
|
* "better" in the Signed phase.
|
|
531
530
|
**/
|
|
532
|
-
betterSignedThreshold:
|
|
531
|
+
betterSignedThreshold: u32 & AugmentedConst<ApiType>;
|
|
533
532
|
/**
|
|
534
533
|
* The maximum number of winners that can be elected by this `ElectionProvider`
|
|
535
534
|
* implementation.
|
|
@@ -1051,7 +1050,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
1051
1050
|
* The minimum amount of funds which may intentionally be left remaining under a single
|
|
1052
1051
|
* receipt.
|
|
1053
1052
|
**/
|
|
1054
|
-
minReceipt:
|
|
1053
|
+
minReceipt: u64 & AugmentedConst<ApiType>;
|
|
1055
1054
|
/**
|
|
1056
1055
|
* The treasury's pallet id, used for deriving its sovereign account ID.
|
|
1057
1056
|
**/
|
|
@@ -1064,7 +1063,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
1064
1063
|
/**
|
|
1065
1064
|
* The maximum proportion which may be thawed and the period over which it is reset.
|
|
1066
1065
|
**/
|
|
1067
|
-
thawThrottle: ITuple<[
|
|
1066
|
+
thawThrottle: ITuple<[u64, u32]> & AugmentedConst<ApiType>;
|
|
1068
1067
|
/**
|
|
1069
1068
|
* Generic const
|
|
1070
1069
|
**/
|
|
@@ -1295,7 +1294,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
1295
1294
|
* Instantiating a contract, protects the code from being removed. In order to prevent
|
|
1296
1295
|
* abuse these actions are protected with a percentage of the code deposit.
|
|
1297
1296
|
**/
|
|
1298
|
-
codeHashLockupDepositPercent:
|
|
1297
|
+
codeHashLockupDepositPercent: u32 & AugmentedConst<ApiType>;
|
|
1299
1298
|
/**
|
|
1300
1299
|
* The amount of balance a caller has to pay for each byte of storage.
|
|
1301
1300
|
*
|
|
@@ -1673,7 +1672,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
1673
1672
|
/**
|
|
1674
1673
|
* The percent of the final tip which goes to the original reporter of the tip.
|
|
1675
1674
|
**/
|
|
1676
|
-
tipFindersFee:
|
|
1675
|
+
tipFindersFee: u8 & AugmentedConst<ApiType>;
|
|
1677
1676
|
/**
|
|
1678
1677
|
* The non-zero amount held on deposit for placing a tip report.
|
|
1679
1678
|
**/
|
|
@@ -1717,7 +1716,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
1717
1716
|
/**
|
|
1718
1717
|
* Percentage of spare funds (if any) that are burnt per spend period.
|
|
1719
1718
|
**/
|
|
1720
|
-
burn:
|
|
1719
|
+
burn: u32 & AugmentedConst<ApiType>;
|
|
1721
1720
|
/**
|
|
1722
1721
|
* DEPRECATED: associated with `spend_local` call and will be removed in May 2025.
|
|
1723
1722
|
* Refer to <https://github.com/paritytech/polkadot-sdk/pull/5961> for migration to `spend`.
|
|
@@ -1738,7 +1737,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
|
|
1738
1737
|
/**
|
|
1739
1738
|
* Gets this pallet's derived pot account.
|
|
1740
1739
|
**/
|
|
1741
|
-
potAccount:
|
|
1740
|
+
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
|
1742
1741
|
/**
|
|
1743
1742
|
* Period between successive spends.
|
|
1744
1743
|
**/
|