mirror of
https://github.com/pezkuwichain/pezkuwi-api.git
synced 2026-04-21 23:47:57 +00:00
release: v16.5.36 - npm package structure fix
- Published from build/ directories for correct npm structure - Updated common dependencies to 14.0.25 - Added AuthorizeCall signed extension support - All packages now have index.js at root level
This commit is contained in:
+4
-4
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"engines": {
|
||||
"node": ">=18.14"
|
||||
@@ -14,7 +14,7 @@
|
||||
},
|
||||
"sideEffects": false,
|
||||
"type": "module",
|
||||
"version": "16.5.18",
|
||||
"version": "16.5.24",
|
||||
"versions": {
|
||||
"git": "16.5.18",
|
||||
"npm": "16.5.22"
|
||||
@@ -40,7 +40,7 @@
|
||||
"test:one": "pezkuwi-dev-run-test --env node"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@pezkuwi/dev": "0.85.7",
|
||||
"@pezkuwi/dev": "^0.85.11",
|
||||
"@pezkuwi/dev-test": "0.85.7",
|
||||
"@pezkuwi/dev-ts": "0.85.7",
|
||||
"@pezkuwi/typegen": "workspace:*",
|
||||
@@ -48,7 +48,7 @@
|
||||
"@types/yargs": "^17.0.35"
|
||||
},
|
||||
"resolutions": {
|
||||
"@pezkuwi/dev": "^0.85.7",
|
||||
"@pezkuwi/dev": "^0.85.11",
|
||||
"@pezkuwi/dev-test": "^0.85.7",
|
||||
"@pezkuwi/dev-ts": "^0.85.7",
|
||||
"@pezkuwi/hw-ledger": "14.0.11",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "API generated augmentation",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -449,12 +449,12 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/api-base": "16.5.22",
|
||||
"@pezkuwi/rpc-augment": "16.5.22",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-augment": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/api-base": "16.5.34",
|
||||
"@pezkuwi/rpc-augment": "16.5.34",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-augment": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,8 +8,7 @@ import '@pezkuwi/api-base/types/consts';
|
||||
import type { ApiTypes, AugmentedConst } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Option, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { Codec, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, Perbill, Permill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions, StagingXcmV5Location } from '@pezkuwi/types/lookup';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspCoreCryptoAccountId32, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions, StagingXcmV5Location } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
|
||||
|
||||
@@ -19,7 +18,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* A fee to withdraw the liquidity.
|
||||
**/
|
||||
liquidityWithdrawalFee: Permill & AugmentedConst<ApiType>;
|
||||
liquidityWithdrawalFee: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* A % the liquidity providers will take of every swap. Represents 10ths of a percent.
|
||||
**/
|
||||
@@ -170,7 +169,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* This deposit has optional upper and lower bounds with `CuratorDepositMax` and
|
||||
* `CuratorDepositMin`.
|
||||
**/
|
||||
curatorDepositMultiplier: Permill & AugmentedConst<ApiType>;
|
||||
curatorDepositMultiplier: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The amount held on deposit per byte within the tip report reason or bounty description.
|
||||
**/
|
||||
@@ -228,7 +227,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Gets this pallet's derived pot account.
|
||||
**/
|
||||
potAccount: AccountId32 & AugmentedConst<ApiType>;
|
||||
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Account Identifier from which the internal Pot is generated.
|
||||
**/
|
||||
@@ -266,7 +265,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Fraction of the slash that is rewarded to the caller of pending slash to the agent.
|
||||
**/
|
||||
slashRewardFraction: Perbill & AugmentedConst<ApiType>;
|
||||
slashRewardFraction: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -418,7 +417,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* The minimum amount of improvement to the solution score that defines a solution as
|
||||
* "better".
|
||||
**/
|
||||
solutionImprovementThreshold: Perbill & AugmentedConst<ApiType>;
|
||||
solutionImprovementThreshold: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -786,7 +785,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* Instantiating a contract, protects the code from being removed. In order to prevent
|
||||
* abuse these actions are protected with a percentage of the code deposit.
|
||||
**/
|
||||
codeHashLockupDepositPercent: Perbill & AugmentedConst<ApiType>;
|
||||
codeHashLockupDepositPercent: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The amount of balance a caller has to pay for each byte of storage.
|
||||
*
|
||||
@@ -1121,7 +1120,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Percentage of spare funds (if any) that are burnt per spend period.
|
||||
**/
|
||||
burn: Permill & AugmentedConst<ApiType>;
|
||||
burn: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* DEPRECATED: associated with `spend_local` call and will be removed in May 2025.
|
||||
* Refer to <https://github.com/paritytech/polkadot-sdk/pull/5961> for migration to `spend`.
|
||||
@@ -1142,7 +1141,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Gets this pallet's derived pot account.
|
||||
**/
|
||||
potAccount: AccountId32 & AugmentedConst<ApiType>;
|
||||
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Period between successive spends.
|
||||
**/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,8 +8,8 @@ import '@pezkuwi/api-base/types/storage';
|
||||
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@pezkuwi/api-base/types';
|
||||
import type { BTreeMap, BTreeSet, Bytes, Null, Option, Struct, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { AnyNumber, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H160, H256, Perbill, Percent } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AssetHubDicleRuntimeRuntimeParametersKey, AssetHubDicleRuntimeRuntimeParametersValue, AssetHubDicleRuntimeSessionKeys, AssetHubDicleRuntimeStakingNposCompactSolution24, BpXcmBridgeHubRouterBridgeState, PezcumulusPezpalletTeyrchainSystemRelayStateSnapshotMessagingStateSnapshot, PezcumulusPezpalletTeyrchainSystemTeyrchainInherentInboundMessageId, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentAncestor, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentSegmentTracker, PezcumulusPezpalletXcmpQueueOutboundChannelDetails, PezcumulusPezpalletXcmpQueueQueueConfigData, PezcumulusPrimitivesCoreAggregateMessageOrigin, PezframeElectionProviderSupportBoundedSupports, PezframeSupportDispatchPerDispatchClassWeight, PezframeSupportTokensMiscIdAmountRuntimeFreezeReason, PezframeSupportTokensMiscIdAmountRuntimeHoldReason, PezframeSystemAccountInfo, PezframeSystemCodeUpgradeAuthorization, PezframeSystemEventRecord, PezframeSystemLastRuntimeUpgradeInfo, PezframeSystemPhase, PezkuwiCorePrimitivesOutboundHrmpMessage, PezkuwiPrimitivesV8AbridgedHostConfiguration, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8UpgradeGoAhead, PezkuwiPrimitivesV8UpgradeRestriction, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezpalletAhMigratorBalancesBefore, PezpalletAhMigratorMigrationStage, PezpalletAssetConversionPoolInfo, PezpalletAssetsApproval, PezpalletAssetsAssetAccount, PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata, PezpalletBagsListListBag, PezpalletBagsListListNode, PezpalletBalancesAccountData, PezpalletBalancesBalanceLock, PezpalletBalancesReserveData, PezpalletBountiesBounty, PezpalletChildBountiesChildBounty, PezpalletCollatorSelectionCandidateInfo, PezpalletConvictionVotingVoteVoting, PezpalletDelegatedStakingAgentLedger, PezpalletDelegatedStakingDelegation, PezpalletElectionProviderMultiBlockPhase, PezpalletElectionProviderMultiBlockSignedSubmissionMetadata, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings, PezpalletElectionProviderMultiBlockVerifierImplsStatus, PezpalletElectionProviderMultiBlockVerifierImplsValidSolution, PezpalletMessageQueueBookState, PezpalletMessageQueuePage, PezpalletMigrationsMigrationCursor, PezpalletMultisigMultisig, PezpalletNftFractionalizationDetails, PezpalletNftsAttributeDeposit, PezpalletNftsAttributeNamespace, PezpalletNftsCollectionConfig, PezpalletNftsCollectionDetails, PezpalletNftsCollectionMetadata, PezpalletNftsItemConfig, PezpalletNftsItemDetails, PezpalletNftsItemMetadata, PezpalletNftsPendingSwap, PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsRewardPool, PezpalletNominationPoolsSubPools, PezpalletPreimageOldRequestStatus, PezpalletPreimageRequestStatus, PezpalletProxyAnnouncement, PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType, PezpalletRcMigratorAccountsAccount, PezpalletRcMigratorQueuePriority, PezpalletRecoveryActiveRecovery, PezpalletRecoveryRecoveryConfig, PezpalletReferendaReferendumInfoOriginCaller, PezpalletReviveStorageAccountInfo, PezpalletReviveStorageDeletionQueueManager, PezpalletReviveVmCodeInfo, PezpalletSchedulerRetryConfig, PezpalletSchedulerScheduled, PezpalletSocietyBid, PezpalletSocietyCandidacy, PezpalletSocietyGroupParams, PezpalletSocietyIntakeRecord, PezpalletSocietyMemberRecord, PezpalletSocietyPayoutRecord, PezpalletSocietyTally, PezpalletSocietyVote, PezpalletStakingAsyncActiveEraInfo, PezpalletStakingAsyncEraRewardPoints, PezpalletStakingAsyncForcing, PezpalletStakingAsyncLedgerStakingLedger, PezpalletStakingAsyncNominations, PezpalletStakingAsyncPezpalletBoundedExposurePage, PezpalletStakingAsyncPezpalletPruningStep, PezpalletStakingAsyncRcClientSessionReport, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingAsyncRewardDestination, PezpalletStakingAsyncSlashingOffenceRecord, PezpalletStakingAsyncSnapshotStatus, PezpalletStakingAsyncUnappliedSlash, PezpalletStakingAsyncValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletTransactionPaymentReleases, PezpalletTreasuryProposal, PezpalletTreasurySpendStatus, PezpalletUniquesCollectionDetails, PezpalletUniquesCollectionMetadata, PezpalletUniquesItemDetails, PezpalletUniquesItemMetadata, PezpalletVestingReleases, PezpalletVestingVestingInfo, PezpalletXcmAuthorizedAliasesEntry, PezpalletXcmQueryStatus, PezpalletXcmRemoteLockedFungibleRecord, PezpalletXcmVersionMigrationStage, PezspConsensusAuraSr25519AppSr25519Public, PezspCoreCryptoKeyTypeId, PezspNposElectionsElectionScore, PezspRuntimeDigest, PezspStakingPagedExposureMetadata, PezspTrieStorageProof, PezspWeightsWeightV2Weight, StagingXcmV5Instruction, StagingXcmV5Location, XcmVersionedAssetId, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { H160, H256 } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AssetHubDicleRuntimeRuntimeParametersKey, AssetHubDicleRuntimeRuntimeParametersValue, AssetHubDicleRuntimeSessionKeys, AssetHubDicleRuntimeStakingNposCompactSolution24, BpXcmBridgeHubRouterBridgeState, PezcumulusPezpalletTeyrchainSystemRelayStateSnapshotMessagingStateSnapshot, PezcumulusPezpalletTeyrchainSystemTeyrchainInherentInboundMessageId, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentAncestor, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentSegmentTracker, PezcumulusPezpalletXcmpQueueOutboundChannelDetails, PezcumulusPezpalletXcmpQueueQueueConfigData, PezcumulusPrimitivesCoreAggregateMessageOrigin, PezframeElectionProviderSupportBoundedSupports, PezframeSupportDispatchPerDispatchClassWeight, PezframeSupportTokensMiscIdAmountRuntimeFreezeReason, PezframeSupportTokensMiscIdAmountRuntimeHoldReason, PezframeSystemAccountInfo, PezframeSystemCodeUpgradeAuthorization, PezframeSystemEventRecord, PezframeSystemLastRuntimeUpgradeInfo, PezframeSystemPhase, PezkuwiCorePrimitivesOutboundHrmpMessage, PezkuwiPrimitivesV8AbridgedHostConfiguration, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8UpgradeGoAhead, PezkuwiPrimitivesV8UpgradeRestriction, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezpalletAhMigratorBalancesBefore, PezpalletAhMigratorMigrationStage, PezpalletAssetConversionPoolInfo, PezpalletAssetsApproval, PezpalletAssetsAssetAccount, PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata, PezpalletBagsListListBag, PezpalletBagsListListNode, PezpalletBalancesAccountData, PezpalletBalancesBalanceLock, PezpalletBalancesReserveData, PezpalletBountiesBounty, PezpalletChildBountiesChildBounty, PezpalletCollatorSelectionCandidateInfo, PezpalletConvictionVotingVoteVoting, PezpalletDelegatedStakingAgentLedger, PezpalletDelegatedStakingDelegation, PezpalletElectionProviderMultiBlockPhase, PezpalletElectionProviderMultiBlockSignedSubmissionMetadata, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings, PezpalletElectionProviderMultiBlockVerifierImplsStatus, PezpalletElectionProviderMultiBlockVerifierImplsValidSolution, PezpalletMessageQueueBookState, PezpalletMessageQueuePage, PezpalletMigrationsMigrationCursor, PezpalletMultisigMultisig, PezpalletNftFractionalizationDetails, PezpalletNftsAttributeDeposit, PezpalletNftsAttributeNamespace, PezpalletNftsCollectionConfig, PezpalletNftsCollectionDetails, PezpalletNftsCollectionMetadata, PezpalletNftsItemConfig, PezpalletNftsItemDetails, PezpalletNftsItemMetadata, PezpalletNftsPendingSwap, PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsRewardPool, PezpalletNominationPoolsSubPools, PezpalletPreimageOldRequestStatus, PezpalletPreimageRequestStatus, PezpalletProxyAnnouncement, PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType, PezpalletRcMigratorAccountsAccount, PezpalletRcMigratorQueuePriority, PezpalletRecoveryActiveRecovery, PezpalletRecoveryRecoveryConfig, PezpalletReferendaReferendumInfoOriginCaller, PezpalletReviveStorageAccountInfo, PezpalletReviveStorageDeletionQueueManager, PezpalletReviveVmCodeInfo, PezpalletSchedulerRetryConfig, PezpalletSchedulerScheduled, PezpalletSocietyBid, PezpalletSocietyCandidacy, PezpalletSocietyGroupParams, PezpalletSocietyIntakeRecord, PezpalletSocietyMemberRecord, PezpalletSocietyPayoutRecord, PezpalletSocietyTally, PezpalletSocietyVote, PezpalletStakingAsyncActiveEraInfo, PezpalletStakingAsyncEraRewardPoints, PezpalletStakingAsyncForcing, PezpalletStakingAsyncLedgerStakingLedger, PezpalletStakingAsyncNominations, PezpalletStakingAsyncPezpalletBoundedExposurePage, PezpalletStakingAsyncPezpalletPruningStep, PezpalletStakingAsyncRcClientSessionReport, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingAsyncRewardDestination, PezpalletStakingAsyncSlashingOffenceRecord, PezpalletStakingAsyncSnapshotStatus, PezpalletStakingAsyncUnappliedSlash, PezpalletStakingAsyncValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletTransactionPaymentReleases, PezpalletTreasuryProposal, PezpalletTreasurySpendStatus, PezpalletUniquesCollectionDetails, PezpalletUniquesCollectionMetadata, PezpalletUniquesItemDetails, PezpalletUniquesItemMetadata, PezpalletVestingReleases, PezpalletVestingVestingInfo, PezpalletXcmAuthorizedAliasesEntry, PezpalletXcmQueryStatus, PezpalletXcmRemoteLockedFungibleRecord, PezpalletXcmVersionMigrationStage, PezspConsensusAuraSr25519AppSr25519Public, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspNposElectionsElectionScore, PezspRuntimeDigest, PezspStakingPagedExposureMetadata, PezspTrieStorageProof, PezspWeightsWeightV2Weight, StagingXcmV5Instruction, StagingXcmV5Location, XcmVersionedAssetId, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
|
||||
@@ -43,7 +43,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* This account id has similar privileges to [`Config::AdminOrigin`] except that it
|
||||
* can not set the manager account id via `set_manager` call.
|
||||
**/
|
||||
manager: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
manager: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Block number when migration finished and extrinsics were unlocked.
|
||||
*
|
||||
@@ -63,7 +63,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* This is unlikely to happen, since we dry run the migration, but we keep it for completeness.
|
||||
**/
|
||||
rcAccounts: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletRcMigratorAccountsAccount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
rcAccounts: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletRcMigratorAccountsAccount>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -84,7 +84,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The value is (fund_pot, balance). The contribution pot is the second key in the
|
||||
* `RcCrowdloanContribution` storage.
|
||||
**/
|
||||
rcCrowdloanContribution: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[AccountId32, u128]>>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
|
||||
rcCrowdloanContribution: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<ITuple<[PezspCoreCryptoAccountId32, u128]>>>, [u32, u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The reserve that was taken to create a crowdloan.
|
||||
*
|
||||
@@ -96,7 +96,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* - The para_id of the crowdloan
|
||||
* - The account that will have the balance unreserved
|
||||
**/
|
||||
rcCrowdloanReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
|
||||
rcCrowdloanReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Amount of balance that was reserved for winning a lease auction.
|
||||
*
|
||||
@@ -113,7 +113,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* - The account that will have the balance unreserved.
|
||||
* - The balance to be unreserved.
|
||||
**/
|
||||
rcLeaseReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
|
||||
rcLeaseReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -151,13 +151,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The holdings of a specific account for a specific asset.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Approved balance transfers. First balance is the amount approved for transfer. Second
|
||||
* is the amount of `T::Currency` reserved for storing this.
|
||||
* First key is the asset ID, second key is the owner and third key is the delegate.
|
||||
**/
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, AccountId32]>;
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Details of an asset.
|
||||
**/
|
||||
@@ -230,7 +230,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Author of current block.
|
||||
**/
|
||||
author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
author: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -263,15 +263,15 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* `Balances` pallet, which uses a `StorageMap` to store balances data only.
|
||||
* NOTE: This is only used in the case that this pallet is used to store balances.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletBalancesAccountData>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Freeze locks on account balances.
|
||||
**/
|
||||
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeFreezeReason>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
freezes: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeFreezeReason>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Holds on account balances.
|
||||
**/
|
||||
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeHoldReason>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
holds: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeHoldReason>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total units of outstanding deactivated balance in the system.
|
||||
**/
|
||||
@@ -282,13 +282,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
|
||||
**/
|
||||
locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesBalanceLock>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
locks: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesBalanceLock>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Named reserves on some account balances.
|
||||
*
|
||||
* Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
|
||||
**/
|
||||
reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesReserveData>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
reserves: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesReserveData>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total units issued in the system.
|
||||
**/
|
||||
@@ -367,7 +367,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Pre-claimed Ethereum accounts, by the Account ID that they are claimed to.
|
||||
**/
|
||||
preclaims: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeCommonClaimsEthereumAddress>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
preclaims: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeCommonClaimsEthereumAddress>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The statement kind that must be signed, if any.
|
||||
**/
|
||||
@@ -409,11 +409,11 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The invulnerable, permissioned collators. This list must be sorted.
|
||||
**/
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Last block authored by collator.
|
||||
**/
|
||||
lastAuthoredBlock: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
lastAuthoredBlock: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<u32>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -425,12 +425,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* require. The actual amount locked on behalf of this pallet should always be the maximum of
|
||||
* this list.
|
||||
**/
|
||||
classLocksFor: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<ITuple<[u16, u128]>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
classLocksFor: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<ITuple<[u16, u128]>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* All voting for a particular voter in a particular voting class. We store the balance for the
|
||||
* number of votes that we have recorded.
|
||||
**/
|
||||
votingFor: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u16 | AnyNumber | Uint8Array) => Observable<PezpalletConvictionVotingVoteVoting>, [AccountId32, u16]> & QueryableStorageEntry<ApiType, [AccountId32, u16]>;
|
||||
votingFor: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u16 | AnyNumber | Uint8Array) => Observable<PezpalletConvictionVotingVoteVoting>, [PezspCoreCryptoAccountId32, u16]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u16]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -440,7 +440,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Map of `Agent` to their `Ledger`.
|
||||
**/
|
||||
agents: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingAgentLedger>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
agents: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingAgentLedger>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -455,7 +455,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Implementation note: We are not using a double map with `delegator` and `agent` account
|
||||
* as keys since we want to restrict delegators to delegate only to one account at a time.
|
||||
**/
|
||||
delegators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingDelegation>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
delegators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingDelegation>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -465,13 +465,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The holdings of a specific account for a specific asset.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [StagingXcmV5Location, AccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [StagingXcmV5Location, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Approved balance transfers. First balance is the amount approved for transfer. Second
|
||||
* is the amount of `T::Currency` reserved for storing this.
|
||||
* First key is the asset ID, second key is the owner and third key is the delegate.
|
||||
**/
|
||||
approvals: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [StagingXcmV5Location, AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, AccountId32, AccountId32]>;
|
||||
approvals: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [StagingXcmV5Location, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Details of an asset.
|
||||
**/
|
||||
@@ -507,7 +507,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The lookup from index to account.
|
||||
**/
|
||||
accounts: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[AccountId32, u128, bool]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
accounts: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[PezspCoreCryptoAccountId32, u128, bool]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -545,7 +545,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* For the time being, since we assume one pages of targets, at most ONE key will exist.
|
||||
**/
|
||||
pagedTargetSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<AccountId32>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
pagedTargetSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<PezspCoreCryptoAccountId32>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Same as [`PagedTargetSnapshot`], but it will store the hash of the snapshot.
|
||||
*
|
||||
@@ -555,7 +555,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Paginated voter snapshot. At most [`T::Pages`] keys will exist.
|
||||
**/
|
||||
pagedVoterSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
pagedVoterSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[PezspCoreCryptoAccountId32, u64, Vec<PezspCoreCryptoAccountId32>]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Same as [`PagedVoterSnapshot`], but it will store the hash of the snapshot.
|
||||
*
|
||||
@@ -588,19 +588,19 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* back.
|
||||
* * They always get their tx-fee back even if they are _discarded_.
|
||||
**/
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
sortedScores: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, PezspNposElectionsElectionScore]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
sortedScores: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Map from account to the metadata of their submission.
|
||||
*
|
||||
* invariant: for any Key1 of type `AccountId` in [`Submissions`], this storage map also has a
|
||||
* value.
|
||||
**/
|
||||
submissionMetadataStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletElectionProviderMultiBlockSignedSubmissionMetadata>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
submissionMetadataStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletElectionProviderMultiBlockSignedSubmissionMetadata>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Triple map from (round, account, page) to a solution page.
|
||||
**/
|
||||
submissionStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<AssetHubDicleRuntimeStakingNposCompactSolution24>>, [u32, AccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, u32]>;
|
||||
submissionStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<AssetHubDicleRuntimeStakingNposCompactSolution24>>, [u32, PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -621,7 +621,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* need this information anymore; the score is already computed once in
|
||||
* [`QueuedSolutionScore`], and the backing counts are checked.
|
||||
**/
|
||||
queuedSolutionBackings: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[AccountId32, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
queuedSolutionBackings: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[PezspCoreCryptoAccountId32, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* The score of the valid variant of [`QueuedSolution`].
|
||||
*
|
||||
@@ -679,7 +679,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The set of open multisig operations.
|
||||
**/
|
||||
multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PezpalletMultisigMultisig>>, [AccountId32, U8aFixed]> & QueryableStorageEntry<ApiType, [AccountId32, U8aFixed]>;
|
||||
multisigs: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PezpalletMultisigMultisig>>, [PezspCoreCryptoAccountId32, U8aFixed]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, U8aFixed]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -700,7 +700,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The items held by any given account; set out this way so that items owned by a single
|
||||
* account can be enumerated.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32, u32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* Attributes of a collection.
|
||||
**/
|
||||
@@ -713,7 +713,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The collections owned by any given account; set out this way so that collections owned by
|
||||
* a single account can be enumerated.
|
||||
**/
|
||||
collectionAccount: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32]>;
|
||||
collectionAccount: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Config of a collection.
|
||||
**/
|
||||
@@ -726,7 +726,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The items in existence and their ownership details.
|
||||
* Stores collection roles as per account.
|
||||
**/
|
||||
collectionRoleOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<u8>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
collectionRoleOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u8>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The items in existence and their ownership details.
|
||||
**/
|
||||
@@ -734,7 +734,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Item attribute approvals.
|
||||
**/
|
||||
itemAttributesApprovalsOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<AccountId32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
itemAttributesApprovalsOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<PezspCoreCryptoAccountId32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Config of an item.
|
||||
**/
|
||||
@@ -746,7 +746,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* A price of an item.
|
||||
**/
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<AccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<PezspCoreCryptoAccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Stores the `CollectionId` that is going to be used for the next collection.
|
||||
* This gets incremented whenever a new collection is created.
|
||||
@@ -755,7 +755,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The collection, if any, of which an account is willing to take ownership.
|
||||
**/
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Handles all the pending swaps.
|
||||
**/
|
||||
@@ -773,7 +773,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Map from a pool member account to their opted claim permission.
|
||||
**/
|
||||
claimPermissions: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletNominationPoolsClaimPermission>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
claimPermissions: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletNominationPoolsClaimPermission>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -803,7 +803,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* pool commissions that are > `GlobalMaxCommission`, necessary if a future
|
||||
* `GlobalMaxCommission` is lower than some current pool commissions.
|
||||
**/
|
||||
globalMaxCommission: AugmentedQuery<ApiType, () => Observable<Option<Perbill>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
globalMaxCommission: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Ever increasing number of all pools created so far.
|
||||
**/
|
||||
@@ -846,14 +846,14 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
poolMembers: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletNominationPoolsPoolMember>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
poolMembers: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletNominationPoolsPoolMember>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* A reverse lookup from the pool's account id to its id.
|
||||
*
|
||||
* This is only used for slashing and on automatic withdraw update. In all other instances, the
|
||||
* pool id is used, and the accounts are deterministically derived from it.
|
||||
**/
|
||||
reversePoolIdLookup: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
reversePoolIdLookup: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Reward pools. This is where there rewards for each pool accumulate. When a members payout is
|
||||
* claimed, the balance comes out of the reward pool. Keyed by the bonded pools account.
|
||||
@@ -1092,7 +1092,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Fungible assets which we know are locked on this chain.
|
||||
**/
|
||||
lockedFungibles: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedLocation]>>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
lockedFungibles: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedLocation]>>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The ongoing queries.
|
||||
**/
|
||||
@@ -1113,7 +1113,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Fungible assets which we know are locked on a remote chain.
|
||||
**/
|
||||
remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Option<PezpalletXcmRemoteLockedFungibleRecord>>, [u32, AccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, AccountId32, XcmVersionedAssetId]>;
|
||||
remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Option<PezpalletXcmRemoteLockedFungibleRecord>>, [u32, PezspCoreCryptoAccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, XcmVersionedAssetId]>;
|
||||
/**
|
||||
* Default version to encode XCM when latest version of destination is unknown. If `None`,
|
||||
* then the destinations whose XCM version is unknown are considered unreachable.
|
||||
@@ -1161,13 +1161,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The holdings of a specific account for a specific asset.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Approved balance transfers. First balance is the amount approved for transfer. Second
|
||||
* is the amount of `T::Currency` reserved for storing this.
|
||||
* First key is the asset ID, second key is the owner and third key is the delegate.
|
||||
**/
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, AccountId32]>;
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Details of an asset.
|
||||
**/
|
||||
@@ -1212,12 +1212,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The announcements made by the proxy (key).
|
||||
**/
|
||||
announcements: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyAnnouncement>, u128]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
announcements: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyAnnouncement>, u128]>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The set of account proxies. Maps the account which has delegated to the accounts
|
||||
* which are being delegated to, together with the amount held on deposit.
|
||||
**/
|
||||
proxies: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType>, u128]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
proxies: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType>, u128]>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1230,17 +1230,17 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* First account is the account to be recovered, and the second account
|
||||
* is the user trying to recover the account.
|
||||
**/
|
||||
activeRecoveries: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletRecoveryActiveRecovery>>, [AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32, AccountId32]>;
|
||||
activeRecoveries: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletRecoveryActiveRecovery>>, [PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The list of allowed proxy accounts.
|
||||
*
|
||||
* Map from the user who can access it to the recovered account.
|
||||
**/
|
||||
proxy: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AccountId32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
proxy: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The set of recoverable accounts and their recovery configuration.
|
||||
**/
|
||||
recoverable: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletRecoveryRecoveryConfig>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
recoverable: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletRecoveryRecoveryConfig>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1324,7 +1324,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Register your `AccountId32` using [`Pallet::map_account`] in order to
|
||||
* use it with this pallet.
|
||||
**/
|
||||
originalAccount: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<Option<AccountId32>>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
|
||||
originalAccount: AugmentedQuery<ApiType, (arg: H160 | string | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>, [H160]> & QueryableStorageEntry<ApiType, [H160]>;
|
||||
/**
|
||||
* A mapping from a contract's code hash to its code.
|
||||
**/
|
||||
@@ -1371,15 +1371,15 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* disabled using binary search. It gets cleared when `on_session_ending` returns
|
||||
* a new set of identities.
|
||||
**/
|
||||
disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u32, Perbill]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The owner of a key. The key is the `KeyTypeId` + the encoded key.
|
||||
**/
|
||||
keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoKeyTypeId, Bytes]> | [PezspCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<AccountId32>>, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]>;
|
||||
keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoKeyTypeId, Bytes]> | [PezspCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<PezspCoreCryptoAccountId32>>, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]>;
|
||||
/**
|
||||
* The next session keys for a validator.
|
||||
**/
|
||||
nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AssetHubDicleRuntimeSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
nextKeys: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<AssetHubDicleRuntimeSessionKeys>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* True if the underlying economic identities or weighting behind the validators
|
||||
* has changed in the queued validator set.
|
||||
@@ -1389,11 +1389,11 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The queued keys for the next session. When the next session begins, these keys
|
||||
* will be used to determine the validator's session keys.
|
||||
**/
|
||||
queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, AssetHubDicleRuntimeSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[PezspCoreCryptoAccountId32, AssetHubDicleRuntimeSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The current set of validators.
|
||||
**/
|
||||
validators: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
validators: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1404,7 +1404,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The current bids, stored ordered by the value of the bid.
|
||||
**/
|
||||
bids: AugmentedQuery<ApiType, () => Observable<Vec<PezpalletSocietyBid>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
candidates: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyCandidacy>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
candidates: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyCandidacy>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The number of challenge rounds there have been. Used to identify stale DefenderVotes.
|
||||
**/
|
||||
@@ -1412,24 +1412,24 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Votes for the defender, keyed by challenge round.
|
||||
**/
|
||||
defenderVotes: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyVote>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
defenderVotes: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyVote>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The defending member currently being challenged, along with a running tally of votes.
|
||||
**/
|
||||
defending: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[AccountId32, AccountId32, PezpalletSocietyTally]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
defending: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32, PezpalletSocietyTally]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The first member.
|
||||
**/
|
||||
founder: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
founder: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The most primary from the most recently approved rank 0 members in the society.
|
||||
**/
|
||||
head: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
head: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The current items in `Members` keyed by their unique index. Keys are densely populated
|
||||
* `0..MemberCount` (does not include `MemberCount`).
|
||||
**/
|
||||
memberByIndex: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<AccountId32>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
memberByIndex: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* The number of items in `Members` currently. (Doesn't include `SuspendedMembers`.)
|
||||
**/
|
||||
@@ -1437,7 +1437,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The current members and their rank. Doesn't include `SuspendedMembers`.
|
||||
**/
|
||||
members: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyMemberRecord>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
members: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyMemberRecord>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Next challenge rotation scheduled with [Config::BlockNumberProvider].
|
||||
**/
|
||||
@@ -1459,7 +1459,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Information regarding rank-0 payouts, past and future.
|
||||
**/
|
||||
payouts: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletSocietyPayoutRecord>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
payouts: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletSocietyPayoutRecord>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Amount of our account balance that is specifically for the next round's bid(s).
|
||||
**/
|
||||
@@ -1476,19 +1476,19 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The current skeptic.
|
||||
**/
|
||||
skeptic: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
skeptic: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The set of suspended members, with their old membership record.
|
||||
**/
|
||||
suspendedMembers: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyMemberRecord>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
suspendedMembers: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyMemberRecord>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Clear-cursor for Vote, map from Candidate -> (Maybe) Cursor.
|
||||
**/
|
||||
voteClearCursor: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Bytes>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
voteClearCursor: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Bytes>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Double map from Candidate -> Voter -> (Maybe) Vote.
|
||||
**/
|
||||
votes: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyVote>>, [AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32, AccountId32]>;
|
||||
votes: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletSocietyVote>>, [PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1507,7 +1507,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
bonded: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AccountId32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
bonded: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* A mapping from still-bonded eras to the first session index of that era.
|
||||
*
|
||||
@@ -1527,13 +1527,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* whose slashes should be cancelled, along with the maximum slash fraction that should
|
||||
* be cancelled for each validator.
|
||||
**/
|
||||
cancelledSlashes: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, Perbill]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
cancelledSlashes: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[PezspCoreCryptoAccountId32, u32]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* The threshold for when users can start calling `chill_other` for other validators /
|
||||
* nominators. The threshold is compared to the actual number of validators / nominators
|
||||
* (`CountFor*`) in the system compared to the configured max (`Max*Count`).
|
||||
**/
|
||||
chillThreshold: AugmentedQuery<ApiType, () => Observable<Option<Percent>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
chillThreshold: AugmentedQuery<ApiType, () => Observable<Option<u8>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* History of claimed paged rewards by era and validator.
|
||||
*
|
||||
@@ -1542,7 +1542,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* It is removed after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
claimedRewards: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Vec<u32>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
claimedRewards: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<u32>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -1565,7 +1565,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* A bounded list of the "electable" stashes that resulted from a successful election.
|
||||
**/
|
||||
electableStashes: AugmentedQuery<ApiType, () => Observable<BTreeSet<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
electableStashes: AugmentedQuery<ApiType, () => Observable<BTreeSet<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Tracks the current step of era pruning process for each era being lazily pruned.
|
||||
**/
|
||||
@@ -1589,7 +1589,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Is it removed after [`Config::HistoryDepth`] eras.
|
||||
* If stakers hasn't been set or has been removed then empty overview is returned.
|
||||
**/
|
||||
erasStakersOverview: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezspStakingPagedExposureMetadata>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasStakersOverview: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezspStakingPagedExposureMetadata>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Paginated exposure of a validator at given era.
|
||||
*
|
||||
@@ -1598,7 +1598,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* This is cleared after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
erasStakersPaged: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<PezpalletStakingAsyncPezpalletBoundedExposurePage>>, [u32, AccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, u32]>;
|
||||
erasStakersPaged: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<PezpalletStakingAsyncPezpalletBoundedExposurePage>>, [u32, PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* The total amount staked for the last [`Config::HistoryDepth`] eras.
|
||||
* If total hasn't been set or has been removed then 0 stake is returned.
|
||||
@@ -1611,7 +1611,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Is it removed after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
erasValidatorPrefs: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasValidatorPrefs: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total validator era payout for the last [`Config::HistoryDepth`] eras.
|
||||
*
|
||||
@@ -1627,14 +1627,14 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* easy to initialize and the performance hit is minimal (we expect no more than four
|
||||
* invulnerables) and restricted to testnets.
|
||||
**/
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Map from all (unlocked) "controller" accounts to the info regarding the staking.
|
||||
*
|
||||
* Note: All the reads and mutations to this storage *MUST* be done through the methods exposed
|
||||
* by [`StakingLedger`] to ensure data and lock consistency.
|
||||
**/
|
||||
ledger: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncLedgerStakingLedger>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
ledger: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncLedgerStakingLedger>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The maximum nominator count before we stop allowing new validators to join.
|
||||
*
|
||||
@@ -1646,7 +1646,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* is used for stake rewards.
|
||||
* See [Era payout](./index.html#era-payout).
|
||||
**/
|
||||
maxStakedRewards: AugmentedQuery<ApiType, () => Observable<Option<Percent>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
maxStakedRewards: AugmentedQuery<ApiType, () => Observable<Option<u8>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The maximum validator count before we stop allowing new validators to join.
|
||||
*
|
||||
@@ -1658,7 +1658,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* If set to `0`, no limit exists.
|
||||
**/
|
||||
minCommission: AugmentedQuery<ApiType, () => Observable<Perbill>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
minCommission: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The minimum active nominator stake of the last successful election.
|
||||
**/
|
||||
@@ -1701,7 +1701,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
nominators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncNominations>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
nominators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncNominations>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Stores reported offences in a queue until they are processed in subsequent blocks.
|
||||
*
|
||||
@@ -1714,7 +1714,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Any offences tied to an era older than `BondingDuration` are automatically dropped.
|
||||
* Processing always prioritizes the oldest era first.
|
||||
**/
|
||||
offenceQueue: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncSlashingOffenceRecord>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
offenceQueue: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncSlashingOffenceRecord>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Tracks the eras that contain offences in `OffenceQueue`, sorted from **earliest to latest**.
|
||||
*
|
||||
@@ -1734,7 +1734,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
payee: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncRewardDestination>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
payee: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncRewardDestination>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Tracks the currently processed offence record from the `OffenceQueue`.
|
||||
*
|
||||
@@ -1749,17 +1749,17 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* This ensures that offences are processed incrementally, preventing excessive computation
|
||||
* in a single block while maintaining correct slashing behavior.
|
||||
**/
|
||||
processingOffence: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[u32, AccountId32, PezpalletStakingAsyncSlashingOffenceRecord]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
processingOffence: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[u32, PezspCoreCryptoAccountId32, PezpalletStakingAsyncSlashingOffenceRecord]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The percentage of the slash that is distributed to reporters.
|
||||
*
|
||||
* The rest of the slashed value is handled by the `Slash`.
|
||||
**/
|
||||
slashRewardFraction: AugmentedQuery<ApiType, () => Observable<Perbill>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
slashRewardFraction: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* All unapplied slashes that are queued for later.
|
||||
**/
|
||||
unappliedSlashes: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: ITuple<[AccountId32, Perbill, u32]> | [AccountId32 | string | Uint8Array, Perbill | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<PezpalletStakingAsyncUnappliedSlash>>, [u32, ITuple<[AccountId32, Perbill, u32]>]> & QueryableStorageEntry<ApiType, [u32, ITuple<[AccountId32, Perbill, u32]>]>;
|
||||
unappliedSlashes: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: ITuple<[PezspCoreCryptoAccountId32, u32, u32]> | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncUnappliedSlash>>, [u32, ITuple<[PezspCoreCryptoAccountId32, u32, u32]>]> & QueryableStorageEntry<ApiType, [u32, ITuple<[PezspCoreCryptoAccountId32, u32, u32]>]>;
|
||||
/**
|
||||
* The ideal number of active validators.
|
||||
**/
|
||||
@@ -1769,12 +1769,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
validators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
validators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* All slashing events on validators, mapped by era to the highest slash proportion
|
||||
* and slash value of the era.
|
||||
**/
|
||||
validatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[Perbill, u128]>>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
validatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<ITuple<[u32, u128]>>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Stakers whose funds are managed by other pallets.
|
||||
*
|
||||
@@ -1783,7 +1783,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* directly via this pallet. Instead, these accounts are managed by other pallets and accessed
|
||||
* via low level apis. We keep track of them to do minimal integrity checks.
|
||||
**/
|
||||
virtualStakers: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Null>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
virtualStakers: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Voter snapshot progress status.
|
||||
*
|
||||
@@ -1853,7 +1853,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The full account information for a particular account ID.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezframeSystemAccountInfo>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezframeSystemAccountInfo>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Total length (in bytes) for all extrinsics put together, for the current block.
|
||||
**/
|
||||
@@ -2042,7 +2042,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The items held by any given account; set out this way so that items owned by a single
|
||||
* account can be enumerated.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32, u32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* The items in existence and their ownership details.
|
||||
**/
|
||||
@@ -2059,7 +2059,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The collections owned by any given account; set out this way so that collections owned by
|
||||
* a single account can be enumerated.
|
||||
**/
|
||||
classAccount: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32]>;
|
||||
classAccount: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Metadata of a collection.
|
||||
**/
|
||||
@@ -2075,11 +2075,11 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Price of an asset instance.
|
||||
**/
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<AccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<PezspCoreCryptoAccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* The collection, if any, of which an account is willing to take ownership.
|
||||
**/
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -2095,7 +2095,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Information regarding the vesting of a given account.
|
||||
**/
|
||||
vesting: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<PezpalletVestingVestingInfo>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
vesting: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Vec<PezpalletVestingVestingInfo>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -2117,7 +2117,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Nodes store links forward and back within their respective bags.
|
||||
**/
|
||||
listNodes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletBagsListListNode>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
listNodes: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletBagsListListNode>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Lock all updates to this pallet.
|
||||
*
|
||||
@@ -2129,7 +2129,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Pointer that remembers the next node that will be auto-rebagged.
|
||||
* When `None`, the next scan will start from the list head again.
|
||||
**/
|
||||
nextNodeAutoRebagged: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
nextNodeAutoRebagged: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
|
||||
@@ -12,7 +12,7 @@ import type { Extrinsic } from '@pezkuwi/types/interfaces/extrinsics';
|
||||
import type { OpaqueMetadata } from '@pezkuwi/types/interfaces/metadata';
|
||||
import type { AccountId32, H160, H256, OriginCaller, RuntimeCall, Slot, SlotDuration } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { ParaId } from '@pezkuwi/types/interfaces/teyrchains';
|
||||
import type { AssetsCommonRuntimeApiFungiblesAccessError, PezcumulusPrimitivesCoreCollationInfo, PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezpalletReviveEvmApiDebugRpcTypesTrace, PezpalletReviveEvmApiDebugRpcTypesTracerType, PezpalletReviveEvmApiRpcTypesGenGenericTransaction, PezpalletRevivePrimitivesCode, PezpalletRevivePrimitivesCodeUploadReturnValue, PezpalletRevivePrimitivesContractAccessError, PezpalletRevivePrimitivesContractResultExecReturnValue, PezpalletRevivePrimitivesContractResultInstantiateReturnValue, PezpalletRevivePrimitivesEthTransactError, PezpalletRevivePrimitivesEthTransactInfo, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspConsensusAuraSr25519AppSr25519Public, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, StagingXcmV5Location, XcmRuntimeApisAuthorizedAliasesError, XcmRuntimeApisAuthorizedAliasesOriginAliaser, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmRuntimeApisTrustedQueryError, XcmVersionedAsset, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { AssetsCommonRuntimeApiFungiblesAccessError, PezcumulusPrimitivesCoreCollationInfo, PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezpalletReviveEvmApiDebugRpcTypesTrace, PezpalletReviveEvmApiDebugRpcTypesTracerType, PezpalletReviveEvmApiRpcTypesGenGenericTransaction, PezpalletRevivePrimitivesCode, PezpalletRevivePrimitivesCodeUploadReturnValue, PezpalletRevivePrimitivesContractAccessError, PezpalletRevivePrimitivesContractResultExecReturnValue, PezpalletRevivePrimitivesContractResultInstantiateReturnValue, PezpalletRevivePrimitivesEthTransactError, PezpalletRevivePrimitivesEthTransactInfo, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspConsensusAuraSr25519AppSr25519Public, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, StagingXcmV5Location, XcmRuntimeApisAuthorizedAliasesError, XcmRuntimeApisAuthorizedAliasesOriginAliaser, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmRuntimeApisTrustedQueryError, XcmVersionedAsset, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { IExtrinsic, Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedCall<ApiType extends ApiTypes> = AugmentedCall<ApiType>;
|
||||
@@ -205,7 +205,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Converts `Location` to `AccountId`.
|
||||
**/
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<AccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<PezspCoreCryptoAccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
/**
|
||||
* Generic call
|
||||
**/
|
||||
@@ -220,7 +220,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the metadata at a given version.,, If the given `version` isn't supported, this will return `None`., Use [`Self::metadata_versions`] to find out about supported metadata version of the runtime.
|
||||
**/
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<Bytes>>>;
|
||||
/**
|
||||
* Returns the supported metadata versions.,, This can be used to call `metadata_at_version`.
|
||||
**/
|
||||
@@ -259,7 +259,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the bonded account and reward account associated with the pool_id.
|
||||
**/
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[AccountId32, AccountId32]>>>;
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>>;
|
||||
/**
|
||||
* Total balance contributed to the pool.
|
||||
**/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,8 +8,7 @@ import '@pezkuwi/api-base/types/consts';
|
||||
import type { ApiTypes, AugmentedConst } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Option, Vec, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { Codec, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, Perbill, Permill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions, StagingXcmV5Location } from '@pezkuwi/types/lookup';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspCoreCryptoAccountId32, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions, StagingXcmV5Location } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
|
||||
|
||||
@@ -19,7 +18,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* A fee to withdraw the liquidity.
|
||||
**/
|
||||
liquidityWithdrawalFee: Permill & AugmentedConst<ApiType>;
|
||||
liquidityWithdrawalFee: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* A % the liquidity providers will take of every swap. Represents 10ths of a percent.
|
||||
**/
|
||||
@@ -170,7 +169,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* This deposit has optional upper and lower bounds with `CuratorDepositMax` and
|
||||
* `CuratorDepositMin`.
|
||||
**/
|
||||
curatorDepositMultiplier: Permill & AugmentedConst<ApiType>;
|
||||
curatorDepositMultiplier: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The amount held on deposit per byte within the tip report reason or bounty description.
|
||||
**/
|
||||
@@ -228,7 +227,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Gets this pallet's derived pot account.
|
||||
**/
|
||||
potAccount: AccountId32 & AugmentedConst<ApiType>;
|
||||
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Account Identifier from which the internal Pot is generated.
|
||||
**/
|
||||
@@ -266,7 +265,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Fraction of the slash that is rewarded to the caller of pending slash to the agent.
|
||||
**/
|
||||
slashRewardFraction: Perbill & AugmentedConst<ApiType>;
|
||||
slashRewardFraction: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -418,7 +417,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* The minimum amount of improvement to the solution score that defines a solution as
|
||||
* "better".
|
||||
**/
|
||||
solutionImprovementThreshold: Perbill & AugmentedConst<ApiType>;
|
||||
solutionImprovementThreshold: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -938,7 +937,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Percentage of spare funds (if any) that are burnt per spend period.
|
||||
**/
|
||||
burn: Permill & AugmentedConst<ApiType>;
|
||||
burn: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* DEPRECATED: associated with `spend_local` call and will be removed in May 2025.
|
||||
* Refer to <https://github.com/paritytech/polkadot-sdk/pull/5961> for migration to `spend`.
|
||||
@@ -959,7 +958,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Gets this pallet's derived pot account.
|
||||
**/
|
||||
potAccount: AccountId32 & AugmentedConst<ApiType>;
|
||||
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Period between successive spends.
|
||||
**/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,8 +8,8 @@ import '@pezkuwi/api-base/types/storage';
|
||||
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@pezkuwi/api-base/types';
|
||||
import type { BTreeMap, BTreeSet, Bytes, Null, Option, Struct, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { AnyNumber, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, Perbill, Percent } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AssetHubPezkuwiRuntimeRuntimeParametersKey, AssetHubPezkuwiRuntimeRuntimeParametersValue, AssetHubPezkuwiRuntimeSessionKeys, AssetHubPezkuwiRuntimeStakingNposCompactSolution16, BpXcmBridgeHubRouterBridgeState, PezcumulusPezpalletTeyrchainSystemRelayStateSnapshotMessagingStateSnapshot, PezcumulusPezpalletTeyrchainSystemTeyrchainInherentInboundMessageId, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentAncestor, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentSegmentTracker, PezcumulusPezpalletXcmpQueueOutboundChannelDetails, PezcumulusPezpalletXcmpQueueQueueConfigData, PezcumulusPrimitivesCoreAggregateMessageOrigin, PezframeElectionProviderSupportBoundedSupports, PezframeSupportDispatchPerDispatchClassWeight, PezframeSupportTokensMiscIdAmountRuntimeFreezeReason, PezframeSupportTokensMiscIdAmountRuntimeHoldReason, PezframeSystemAccountInfo, PezframeSystemCodeUpgradeAuthorization, PezframeSystemEventRecord, PezframeSystemLastRuntimeUpgradeInfo, PezframeSystemPhase, PezkuwiCorePrimitivesOutboundHrmpMessage, PezkuwiPrimitivesV8AbridgedHostConfiguration, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8UpgradeGoAhead, PezkuwiPrimitivesV8UpgradeRestriction, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezpalletAhMigratorBalancesBefore, PezpalletAhMigratorMigrationStage, PezpalletAssetConversionPoolInfo, PezpalletAssetsApproval, PezpalletAssetsAssetAccount, PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata, PezpalletBagsListListBag, PezpalletBagsListListNode, PezpalletBalancesAccountData, PezpalletBalancesBalanceLock, PezpalletBalancesReserveData, PezpalletBountiesBounty, PezpalletChildBountiesChildBounty, PezpalletCollatorSelectionCandidateInfo, PezpalletConvictionVotingVoteVoting, PezpalletDelegatedStakingAgentLedger, PezpalletDelegatedStakingDelegation, PezpalletElectionProviderMultiBlockPhase, PezpalletElectionProviderMultiBlockSignedSubmissionMetadata, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings, PezpalletElectionProviderMultiBlockVerifierImplsStatus, PezpalletElectionProviderMultiBlockVerifierImplsValidSolution, PezpalletMessageQueueBookState, PezpalletMessageQueuePage, PezpalletMultisigMultisig, PezpalletNftsAttributeDeposit, PezpalletNftsAttributeNamespace, PezpalletNftsCollectionConfig, PezpalletNftsCollectionDetails, PezpalletNftsCollectionMetadata, PezpalletNftsItemConfig, PezpalletNftsItemDetails, PezpalletNftsItemMetadata, PezpalletNftsPendingSwap, PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsRewardPool, PezpalletNominationPoolsSubPools, PezpalletPreimageOldRequestStatus, PezpalletPreimageRequestStatus, PezpalletProxyAnnouncement, PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType, PezpalletRcMigratorAccountsAccount, PezpalletRcMigratorQueuePriority, PezpalletReferendaReferendumInfoOriginCaller, PezpalletSchedulerRetryConfig, PezpalletSchedulerScheduled, PezpalletStakingAsyncActiveEraInfo, PezpalletStakingAsyncEraRewardPoints, PezpalletStakingAsyncForcing, PezpalletStakingAsyncLedgerStakingLedger, PezpalletStakingAsyncNominations, PezpalletStakingAsyncPezpalletBoundedExposurePage, PezpalletStakingAsyncPezpalletPruningStep, PezpalletStakingAsyncRcClientSessionReport, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingAsyncRewardDestination, PezpalletStakingAsyncSlashingOffenceRecord, PezpalletStakingAsyncSnapshotStatus, PezpalletStakingAsyncUnappliedSlash, PezpalletStakingAsyncValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletTransactionPaymentReleases, PezpalletTreasuryProposal, PezpalletTreasurySpendStatus, PezpalletUniquesCollectionDetails, PezpalletUniquesCollectionMetadata, PezpalletUniquesItemDetails, PezpalletUniquesItemMetadata, PezpalletVestingReleases, PezpalletVestingVestingInfo, PezpalletXcmAuthorizedAliasesEntry, PezpalletXcmQueryStatus, PezpalletXcmRemoteLockedFungibleRecord, PezpalletXcmVersionMigrationStage, PezspConsensusAuraEd25519AppEd25519Public, PezspCoreCryptoKeyTypeId, PezspNposElectionsElectionScore, PezspRuntimeDigest, PezspStakingPagedExposureMetadata, PezspTrieStorageProof, PezspWeightsWeightV2Weight, SnowbridgeCoreOperatingModeBasicOperatingMode, StagingXcmV5Instruction, StagingXcmV5Location, XcmVersionedAssetId, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { H256 } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AssetHubPezkuwiRuntimeRuntimeParametersKey, AssetHubPezkuwiRuntimeRuntimeParametersValue, AssetHubPezkuwiRuntimeSessionKeys, AssetHubPezkuwiRuntimeStakingNposCompactSolution16, BpXcmBridgeHubRouterBridgeState, PezcumulusPezpalletTeyrchainSystemRelayStateSnapshotMessagingStateSnapshot, PezcumulusPezpalletTeyrchainSystemTeyrchainInherentInboundMessageId, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentAncestor, PezcumulusPezpalletTeyrchainSystemUnincludedSegmentSegmentTracker, PezcumulusPezpalletXcmpQueueOutboundChannelDetails, PezcumulusPezpalletXcmpQueueQueueConfigData, PezcumulusPrimitivesCoreAggregateMessageOrigin, PezframeElectionProviderSupportBoundedSupports, PezframeSupportDispatchPerDispatchClassWeight, PezframeSupportTokensMiscIdAmountRuntimeFreezeReason, PezframeSupportTokensMiscIdAmountRuntimeHoldReason, PezframeSystemAccountInfo, PezframeSystemCodeUpgradeAuthorization, PezframeSystemEventRecord, PezframeSystemLastRuntimeUpgradeInfo, PezframeSystemPhase, PezkuwiCorePrimitivesOutboundHrmpMessage, PezkuwiPrimitivesV8AbridgedHostConfiguration, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8UpgradeGoAhead, PezkuwiPrimitivesV8UpgradeRestriction, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezpalletAhMigratorBalancesBefore, PezpalletAhMigratorMigrationStage, PezpalletAssetConversionPoolInfo, PezpalletAssetsApproval, PezpalletAssetsAssetAccount, PezpalletAssetsAssetDetails, PezpalletAssetsAssetMetadata, PezpalletBagsListListBag, PezpalletBagsListListNode, PezpalletBalancesAccountData, PezpalletBalancesBalanceLock, PezpalletBalancesReserveData, PezpalletBountiesBounty, PezpalletChildBountiesChildBounty, PezpalletCollatorSelectionCandidateInfo, PezpalletConvictionVotingVoteVoting, PezpalletDelegatedStakingAgentLedger, PezpalletDelegatedStakingDelegation, PezpalletElectionProviderMultiBlockPhase, PezpalletElectionProviderMultiBlockSignedSubmissionMetadata, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings, PezpalletElectionProviderMultiBlockVerifierImplsStatus, PezpalletElectionProviderMultiBlockVerifierImplsValidSolution, PezpalletMessageQueueBookState, PezpalletMessageQueuePage, PezpalletMultisigMultisig, PezpalletNftsAttributeDeposit, PezpalletNftsAttributeNamespace, PezpalletNftsCollectionConfig, PezpalletNftsCollectionDetails, PezpalletNftsCollectionMetadata, PezpalletNftsItemConfig, PezpalletNftsItemDetails, PezpalletNftsItemMetadata, PezpalletNftsPendingSwap, PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsRewardPool, PezpalletNominationPoolsSubPools, PezpalletPreimageOldRequestStatus, PezpalletPreimageRequestStatus, PezpalletProxyAnnouncement, PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType, PezpalletRcMigratorAccountsAccount, PezpalletRcMigratorQueuePriority, PezpalletReferendaReferendumInfoOriginCaller, PezpalletSchedulerRetryConfig, PezpalletSchedulerScheduled, PezpalletStakingAsyncActiveEraInfo, PezpalletStakingAsyncEraRewardPoints, PezpalletStakingAsyncForcing, PezpalletStakingAsyncLedgerStakingLedger, PezpalletStakingAsyncNominations, PezpalletStakingAsyncPezpalletBoundedExposurePage, PezpalletStakingAsyncPezpalletPruningStep, PezpalletStakingAsyncRcClientSessionReport, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingAsyncRewardDestination, PezpalletStakingAsyncSlashingOffenceRecord, PezpalletStakingAsyncSnapshotStatus, PezpalletStakingAsyncUnappliedSlash, PezpalletStakingAsyncValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletTransactionPaymentReleases, PezpalletTreasuryProposal, PezpalletTreasurySpendStatus, PezpalletUniquesCollectionDetails, PezpalletUniquesCollectionMetadata, PezpalletUniquesItemDetails, PezpalletUniquesItemMetadata, PezpalletVestingReleases, PezpalletVestingVestingInfo, PezpalletXcmAuthorizedAliasesEntry, PezpalletXcmQueryStatus, PezpalletXcmRemoteLockedFungibleRecord, PezpalletXcmVersionMigrationStage, PezspConsensusAuraEd25519AppEd25519Public, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspNposElectionsElectionScore, PezspRuntimeDigest, PezspStakingPagedExposureMetadata, PezspTrieStorageProof, PezspWeightsWeightV2Weight, SnowbridgeCoreOperatingModeBasicOperatingMode, StagingXcmV5Instruction, StagingXcmV5Location, XcmVersionedAssetId, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
|
||||
@@ -43,7 +43,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* This account id has similar privileges to [`Config::AdminOrigin`] except that it
|
||||
* can not set the manager account id via `set_manager` call.
|
||||
**/
|
||||
manager: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
manager: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Block number when migration finished and extrinsics were unlocked.
|
||||
*
|
||||
@@ -63,7 +63,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* This is unlikely to happen, since we dry run the migration, but we keep it for completeness.
|
||||
**/
|
||||
rcAccounts: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletRcMigratorAccountsAccount>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
rcAccounts: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletRcMigratorAccountsAccount>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -84,7 +84,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The value is (fund_pot, balance). The contribution pot is the second key in the
|
||||
* `RcCrowdloanContribution` storage.
|
||||
**/
|
||||
rcCrowdloanContribution: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[AccountId32, u128]>>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
|
||||
rcCrowdloanContribution: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<ITuple<[PezspCoreCryptoAccountId32, u128]>>>, [u32, u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The reserve that was taken to create a crowdloan.
|
||||
*
|
||||
@@ -96,7 +96,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* - The para_id of the crowdloan
|
||||
* - The account that will have the balance unreserved
|
||||
**/
|
||||
rcCrowdloanReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
|
||||
rcCrowdloanReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Amount of balance that was reserved for winning a lease auction.
|
||||
*
|
||||
@@ -113,7 +113,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* - The account that will have the balance unreserved.
|
||||
* - The balance to be unreserved.
|
||||
**/
|
||||
rcLeaseReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, AccountId32]>;
|
||||
rcLeaseReserve: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -151,13 +151,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The holdings of a specific account for a specific asset.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Approved balance transfers. First balance is the amount approved for transfer. Second
|
||||
* is the amount of `T::Currency` reserved for storing this.
|
||||
* First key is the asset ID, second key is the owner and third key is the delegate.
|
||||
**/
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, AccountId32]>;
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Details of an asset.
|
||||
**/
|
||||
@@ -230,7 +230,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Author of current block.
|
||||
**/
|
||||
author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
author: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -263,15 +263,15 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* `Balances` pallet, which uses a `StorageMap` to store balances data only.
|
||||
* NOTE: This is only used in the case that this pallet is used to store balances.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletBalancesAccountData>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Freeze locks on account balances.
|
||||
**/
|
||||
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeFreezeReason>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
freezes: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeFreezeReason>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Holds on account balances.
|
||||
**/
|
||||
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeHoldReason>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
holds: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeHoldReason>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total units of outstanding deactivated balance in the system.
|
||||
**/
|
||||
@@ -282,13 +282,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
|
||||
**/
|
||||
locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesBalanceLock>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
locks: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesBalanceLock>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Named reserves on some account balances.
|
||||
*
|
||||
* Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
|
||||
**/
|
||||
reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesReserveData>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
reserves: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesReserveData>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total units issued in the system.
|
||||
**/
|
||||
@@ -367,7 +367,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Pre-claimed Ethereum accounts, by the Account ID that they are claimed to.
|
||||
**/
|
||||
preclaims: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeCommonClaimsEthereumAddress>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
preclaims: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeCommonClaimsEthereumAddress>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The statement kind that must be signed, if any.
|
||||
**/
|
||||
@@ -409,11 +409,11 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The invulnerable, permissioned collators. This list must be sorted.
|
||||
**/
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Last block authored by collator.
|
||||
**/
|
||||
lastAuthoredBlock: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
lastAuthoredBlock: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<u32>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -425,12 +425,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* require. The actual amount locked on behalf of this pallet should always be the maximum of
|
||||
* this list.
|
||||
**/
|
||||
classLocksFor: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<ITuple<[u16, u128]>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
classLocksFor: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<ITuple<[u16, u128]>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* All voting for a particular voter in a particular voting class. We store the balance for the
|
||||
* number of votes that we have recorded.
|
||||
**/
|
||||
votingFor: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u16 | AnyNumber | Uint8Array) => Observable<PezpalletConvictionVotingVoteVoting>, [AccountId32, u16]> & QueryableStorageEntry<ApiType, [AccountId32, u16]>;
|
||||
votingFor: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u16 | AnyNumber | Uint8Array) => Observable<PezpalletConvictionVotingVoteVoting>, [PezspCoreCryptoAccountId32, u16]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u16]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -440,7 +440,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Map of `Agent` to their `Ledger`.
|
||||
**/
|
||||
agents: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingAgentLedger>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
agents: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingAgentLedger>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -455,7 +455,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Implementation note: We are not using a double map with `delegator` and `agent` account
|
||||
* as keys since we want to restrict delegators to delegate only to one account at a time.
|
||||
**/
|
||||
delegators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingDelegation>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
delegators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingDelegation>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -465,13 +465,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The holdings of a specific account for a specific asset.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [StagingXcmV5Location, AccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [StagingXcmV5Location, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Approved balance transfers. First balance is the amount approved for transfer. Second
|
||||
* is the amount of `T::Currency` reserved for storing this.
|
||||
* First key is the asset ID, second key is the owner and third key is the delegate.
|
||||
**/
|
||||
approvals: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [StagingXcmV5Location, AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, AccountId32, AccountId32]>;
|
||||
approvals: AugmentedQuery<ApiType, (arg1: StagingXcmV5Location | { parents?: any; interior?: any } | string | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [StagingXcmV5Location, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [StagingXcmV5Location, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Details of an asset.
|
||||
**/
|
||||
@@ -507,7 +507,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The lookup from index to account.
|
||||
**/
|
||||
accounts: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[AccountId32, u128, bool]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
accounts: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[PezspCoreCryptoAccountId32, u128, bool]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -545,7 +545,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* For the time being, since we assume one pages of targets, at most ONE key will exist.
|
||||
**/
|
||||
pagedTargetSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<AccountId32>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
pagedTargetSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<PezspCoreCryptoAccountId32>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Same as [`PagedTargetSnapshot`], but it will store the hash of the snapshot.
|
||||
*
|
||||
@@ -555,7 +555,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Paginated voter snapshot. At most [`T::Pages`] keys will exist.
|
||||
**/
|
||||
pagedVoterSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[AccountId32, u64, Vec<AccountId32>]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
pagedVoterSnapshot: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[PezspCoreCryptoAccountId32, u64, Vec<PezspCoreCryptoAccountId32>]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Same as [`PagedVoterSnapshot`], but it will store the hash of the snapshot.
|
||||
*
|
||||
@@ -588,19 +588,19 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* back.
|
||||
* * They always get their tx-fee back even if they are _discarded_.
|
||||
**/
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
sortedScores: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, PezspNposElectionsElectionScore]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
sortedScores: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Map from account to the metadata of their submission.
|
||||
*
|
||||
* invariant: for any Key1 of type `AccountId` in [`Submissions`], this storage map also has a
|
||||
* value.
|
||||
**/
|
||||
submissionMetadataStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletElectionProviderMultiBlockSignedSubmissionMetadata>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
submissionMetadataStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletElectionProviderMultiBlockSignedSubmissionMetadata>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Triple map from (round, account, page) to a solution page.
|
||||
**/
|
||||
submissionStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<AssetHubPezkuwiRuntimeStakingNposCompactSolution16>>, [u32, AccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, u32]>;
|
||||
submissionStorage: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<AssetHubPezkuwiRuntimeStakingNposCompactSolution16>>, [u32, PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -621,7 +621,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* need this information anymore; the score is already computed once in
|
||||
* [`QueuedSolutionScore`], and the backing counts are checked.
|
||||
**/
|
||||
queuedSolutionBackings: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[AccountId32, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
queuedSolutionBackings: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<ITuple<[PezspCoreCryptoAccountId32, PezpalletElectionProviderMultiBlockVerifierImplsPartialBackings]>>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* The score of the valid variant of [`QueuedSolution`].
|
||||
*
|
||||
@@ -660,7 +660,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The set of open multisig operations.
|
||||
**/
|
||||
multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PezpalletMultisigMultisig>>, [AccountId32, U8aFixed]> & QueryableStorageEntry<ApiType, [AccountId32, U8aFixed]>;
|
||||
multisigs: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PezpalletMultisigMultisig>>, [PezspCoreCryptoAccountId32, U8aFixed]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, U8aFixed]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -671,7 +671,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The items held by any given account; set out this way so that items owned by a single
|
||||
* account can be enumerated.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32, u32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* Attributes of a collection.
|
||||
**/
|
||||
@@ -684,7 +684,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The collections owned by any given account; set out this way so that collections owned by
|
||||
* a single account can be enumerated.
|
||||
**/
|
||||
collectionAccount: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32]>;
|
||||
collectionAccount: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Config of a collection.
|
||||
**/
|
||||
@@ -697,7 +697,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The items in existence and their ownership details.
|
||||
* Stores collection roles as per account.
|
||||
**/
|
||||
collectionRoleOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<u8>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
collectionRoleOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u8>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The items in existence and their ownership details.
|
||||
**/
|
||||
@@ -705,7 +705,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Item attribute approvals.
|
||||
**/
|
||||
itemAttributesApprovalsOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<AccountId32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
itemAttributesApprovalsOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<BTreeSet<PezspCoreCryptoAccountId32>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Config of an item.
|
||||
**/
|
||||
@@ -717,7 +717,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* A price of an item.
|
||||
**/
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<AccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<PezspCoreCryptoAccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* Stores the `CollectionId` that is going to be used for the next collection.
|
||||
* This gets incremented whenever a new collection is created.
|
||||
@@ -726,7 +726,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The collection, if any, of which an account is willing to take ownership.
|
||||
**/
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Handles all the pending swaps.
|
||||
**/
|
||||
@@ -744,7 +744,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Map from a pool member account to their opted claim permission.
|
||||
**/
|
||||
claimPermissions: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletNominationPoolsClaimPermission>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
claimPermissions: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletNominationPoolsClaimPermission>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -774,7 +774,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* pool commissions that are > `GlobalMaxCommission`, necessary if a future
|
||||
* `GlobalMaxCommission` is lower than some current pool commissions.
|
||||
**/
|
||||
globalMaxCommission: AugmentedQuery<ApiType, () => Observable<Option<Perbill>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
globalMaxCommission: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Ever increasing number of all pools created so far.
|
||||
**/
|
||||
@@ -817,14 +817,14 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
poolMembers: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletNominationPoolsPoolMember>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
poolMembers: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletNominationPoolsPoolMember>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* A reverse lookup from the pool's account id to its id.
|
||||
*
|
||||
* This is only used for slashing and on automatic withdraw update. In all other instances, the
|
||||
* pool id is used, and the accounts are deterministically derived from it.
|
||||
**/
|
||||
reversePoolIdLookup: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
reversePoolIdLookup: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Reward pools. This is where there rewards for each pool accumulate. When a members payout is
|
||||
* claimed, the balance comes out of the reward pool. Keyed by the bonded pools account.
|
||||
@@ -1063,7 +1063,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Fungible assets which we know are locked on this chain.
|
||||
**/
|
||||
lockedFungibles: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedLocation]>>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
lockedFungibles: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedLocation]>>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The ongoing queries.
|
||||
**/
|
||||
@@ -1084,7 +1084,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Fungible assets which we know are locked on a remote chain.
|
||||
**/
|
||||
remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Option<PezpalletXcmRemoteLockedFungibleRecord>>, [u32, AccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, AccountId32, XcmVersionedAssetId]>;
|
||||
remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Option<PezpalletXcmRemoteLockedFungibleRecord>>, [u32, PezspCoreCryptoAccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, XcmVersionedAssetId]>;
|
||||
/**
|
||||
* Default version to encode XCM when latest version of destination is unknown. If `None`,
|
||||
* then the destinations whose XCM version is unknown are considered unreachable.
|
||||
@@ -1132,13 +1132,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The holdings of a specific account for a specific asset.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsAssetAccount>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Approved balance transfers. First balance is the amount approved for transfer. Second
|
||||
* is the amount of `T::Currency` reserved for storing this.
|
||||
* First key is the asset ID, second key is the owner and third key is the delegate.
|
||||
**/
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, AccountId32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, AccountId32]>;
|
||||
approvals: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletAssetsApproval>>, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Details of an asset.
|
||||
**/
|
||||
@@ -1183,12 +1183,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The announcements made by the proxy (key).
|
||||
**/
|
||||
announcements: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyAnnouncement>, u128]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
announcements: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyAnnouncement>, u128]>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The set of account proxies. Maps the account which has delegated to the accounts
|
||||
* which are being delegated to, together with the amount held on deposit.
|
||||
**/
|
||||
proxies: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType>, u128]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
proxies: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType>, u128]>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1265,15 +1265,15 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* disabled using binary search. It gets cleared when `on_session_ending` returns
|
||||
* a new set of identities.
|
||||
**/
|
||||
disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u32, Perbill]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The owner of a key. The key is the `KeyTypeId` + the encoded key.
|
||||
**/
|
||||
keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoKeyTypeId, Bytes]> | [PezspCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<AccountId32>>, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]>;
|
||||
keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoKeyTypeId, Bytes]> | [PezspCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<PezspCoreCryptoAccountId32>>, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]>;
|
||||
/**
|
||||
* The next session keys for a validator.
|
||||
**/
|
||||
nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AssetHubPezkuwiRuntimeSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
nextKeys: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<AssetHubPezkuwiRuntimeSessionKeys>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* True if the underlying economic identities or weighting behind the validators
|
||||
* has changed in the queued validator set.
|
||||
@@ -1283,11 +1283,11 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The queued keys for the next session. When the next session begins, these keys
|
||||
* will be used to determine the validator's session keys.
|
||||
**/
|
||||
queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, AssetHubPezkuwiRuntimeSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[PezspCoreCryptoAccountId32, AssetHubPezkuwiRuntimeSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The current set of validators.
|
||||
**/
|
||||
validators: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
validators: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1316,7 +1316,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
bonded: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AccountId32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
bonded: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* A mapping from still-bonded eras to the first session index of that era.
|
||||
*
|
||||
@@ -1336,13 +1336,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* whose slashes should be cancelled, along with the maximum slash fraction that should
|
||||
* be cancelled for each validator.
|
||||
**/
|
||||
cancelledSlashes: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[AccountId32, Perbill]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
cancelledSlashes: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<ITuple<[PezspCoreCryptoAccountId32, u32]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* The threshold for when users can start calling `chill_other` for other validators /
|
||||
* nominators. The threshold is compared to the actual number of validators / nominators
|
||||
* (`CountFor*`) in the system compared to the configured max (`Max*Count`).
|
||||
**/
|
||||
chillThreshold: AugmentedQuery<ApiType, () => Observable<Option<Percent>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
chillThreshold: AugmentedQuery<ApiType, () => Observable<Option<u8>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* History of claimed paged rewards by era and validator.
|
||||
*
|
||||
@@ -1351,7 +1351,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* It is removed after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
claimedRewards: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Vec<u32>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
claimedRewards: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<u32>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -1374,7 +1374,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* A bounded list of the "electable" stashes that resulted from a successful election.
|
||||
**/
|
||||
electableStashes: AugmentedQuery<ApiType, () => Observable<BTreeSet<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
electableStashes: AugmentedQuery<ApiType, () => Observable<BTreeSet<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Tracks the current step of era pruning process for each era being lazily pruned.
|
||||
**/
|
||||
@@ -1398,7 +1398,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Is it removed after [`Config::HistoryDepth`] eras.
|
||||
* If stakers hasn't been set or has been removed then empty overview is returned.
|
||||
**/
|
||||
erasStakersOverview: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezspStakingPagedExposureMetadata>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasStakersOverview: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezspStakingPagedExposureMetadata>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Paginated exposure of a validator at given era.
|
||||
*
|
||||
@@ -1407,7 +1407,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* This is cleared after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
erasStakersPaged: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<PezpalletStakingAsyncPezpalletBoundedExposurePage>>, [u32, AccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, u32]>;
|
||||
erasStakersPaged: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<PezpalletStakingAsyncPezpalletBoundedExposurePage>>, [u32, PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* The total amount staked for the last [`Config::HistoryDepth`] eras.
|
||||
* If total hasn't been set or has been removed then 0 stake is returned.
|
||||
@@ -1420,7 +1420,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Is it removed after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
erasValidatorPrefs: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasValidatorPrefs: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total validator era payout for the last [`Config::HistoryDepth`] eras.
|
||||
*
|
||||
@@ -1436,14 +1436,14 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* easy to initialize and the performance hit is minimal (we expect no more than four
|
||||
* invulnerables) and restricted to testnets.
|
||||
**/
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Map from all (unlocked) "controller" accounts to the info regarding the staking.
|
||||
*
|
||||
* Note: All the reads and mutations to this storage *MUST* be done through the methods exposed
|
||||
* by [`StakingLedger`] to ensure data and lock consistency.
|
||||
**/
|
||||
ledger: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncLedgerStakingLedger>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
ledger: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncLedgerStakingLedger>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The maximum nominator count before we stop allowing new validators to join.
|
||||
*
|
||||
@@ -1455,7 +1455,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* is used for stake rewards.
|
||||
* See [Era payout](./index.html#era-payout).
|
||||
**/
|
||||
maxStakedRewards: AugmentedQuery<ApiType, () => Observable<Option<Percent>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
maxStakedRewards: AugmentedQuery<ApiType, () => Observable<Option<u8>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The maximum validator count before we stop allowing new validators to join.
|
||||
*
|
||||
@@ -1467,7 +1467,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* If set to `0`, no limit exists.
|
||||
**/
|
||||
minCommission: AugmentedQuery<ApiType, () => Observable<Perbill>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
minCommission: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The minimum active nominator stake of the last successful election.
|
||||
**/
|
||||
@@ -1510,7 +1510,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
nominators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncNominations>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
nominators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncNominations>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Stores reported offences in a queue until they are processed in subsequent blocks.
|
||||
*
|
||||
@@ -1523,7 +1523,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Any offences tied to an era older than `BondingDuration` are automatically dropped.
|
||||
* Processing always prioritizes the oldest era first.
|
||||
**/
|
||||
offenceQueue: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncSlashingOffenceRecord>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
offenceQueue: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncSlashingOffenceRecord>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Tracks the eras that contain offences in `OffenceQueue`, sorted from **earliest to latest**.
|
||||
*
|
||||
@@ -1543,7 +1543,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
payee: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncRewardDestination>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
payee: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncRewardDestination>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Tracks the currently processed offence record from the `OffenceQueue`.
|
||||
*
|
||||
@@ -1558,17 +1558,17 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* This ensures that offences are processed incrementally, preventing excessive computation
|
||||
* in a single block while maintaining correct slashing behavior.
|
||||
**/
|
||||
processingOffence: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[u32, AccountId32, PezpalletStakingAsyncSlashingOffenceRecord]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
processingOffence: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[u32, PezspCoreCryptoAccountId32, PezpalletStakingAsyncSlashingOffenceRecord]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The percentage of the slash that is distributed to reporters.
|
||||
*
|
||||
* The rest of the slashed value is handled by the `Slash`.
|
||||
**/
|
||||
slashRewardFraction: AugmentedQuery<ApiType, () => Observable<Perbill>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
slashRewardFraction: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* All unapplied slashes that are queued for later.
|
||||
**/
|
||||
unappliedSlashes: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: ITuple<[AccountId32, Perbill, u32]> | [AccountId32 | string | Uint8Array, Perbill | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<PezpalletStakingAsyncUnappliedSlash>>, [u32, ITuple<[AccountId32, Perbill, u32]>]> & QueryableStorageEntry<ApiType, [u32, ITuple<[AccountId32, Perbill, u32]>]>;
|
||||
unappliedSlashes: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: ITuple<[PezspCoreCryptoAccountId32, u32, u32]> | string | Uint8Array) => Observable<Option<PezpalletStakingAsyncUnappliedSlash>>, [u32, ITuple<[PezspCoreCryptoAccountId32, u32, u32]>]> & QueryableStorageEntry<ApiType, [u32, ITuple<[PezspCoreCryptoAccountId32, u32, u32]>]>;
|
||||
/**
|
||||
* The ideal number of active validators.
|
||||
**/
|
||||
@@ -1578,12 +1578,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
validators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
validators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletStakingAsyncValidatorPrefs>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* All slashing events on validators, mapped by era to the highest slash proportion
|
||||
* and slash value of the era.
|
||||
**/
|
||||
validatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[Perbill, u128]>>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
validatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<ITuple<[u32, u128]>>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Stakers whose funds are managed by other pallets.
|
||||
*
|
||||
@@ -1592,7 +1592,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* directly via this pallet. Instead, these accounts are managed by other pallets and accessed
|
||||
* via low level apis. We keep track of them to do minimal integrity checks.
|
||||
**/
|
||||
virtualStakers: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Null>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
virtualStakers: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Voter snapshot progress status.
|
||||
*
|
||||
@@ -1662,7 +1662,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The full account information for a particular account ID.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezframeSystemAccountInfo>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezframeSystemAccountInfo>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Total length (in bytes) for all extrinsics put together, for the current block.
|
||||
**/
|
||||
@@ -1851,7 +1851,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The items held by any given account; set out this way so that items owned by a single
|
||||
* account can be enumerated.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32, u32]>;
|
||||
account: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* The items in existence and their ownership details.
|
||||
**/
|
||||
@@ -1868,7 +1868,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The collections owned by any given account; set out this way so that collections owned by
|
||||
* a single account can be enumerated.
|
||||
**/
|
||||
classAccount: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [AccountId32, u32]> & QueryableStorageEntry<ApiType, [AccountId32, u32]>;
|
||||
classAccount: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Metadata of a collection.
|
||||
**/
|
||||
@@ -1884,11 +1884,11 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Price of an asset instance.
|
||||
**/
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<AccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
itemPriceOf: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[u128, Option<PezspCoreCryptoAccountId32>]>>>, [u32, u32]> & QueryableStorageEntry<ApiType, [u32, u32]>;
|
||||
/**
|
||||
* The collection, if any, of which an account is willing to take ownership.
|
||||
**/
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
ownershipAcceptance: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1904,7 +1904,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Information regarding the vesting of a given account.
|
||||
**/
|
||||
vesting: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<PezpalletVestingVestingInfo>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
vesting: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Vec<PezpalletVestingVestingInfo>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1926,7 +1926,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Nodes store links forward and back within their respective bags.
|
||||
**/
|
||||
listNodes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletBagsListListNode>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
listNodes: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletBagsListListNode>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Lock all updates to this pallet.
|
||||
*
|
||||
@@ -1938,7 +1938,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Pointer that remembers the next node that will be auto-rebagged.
|
||||
* When `None`, the next scan will start from the list head again.
|
||||
**/
|
||||
nextNodeAutoRebagged: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
nextNodeAutoRebagged: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
|
||||
@@ -12,7 +12,7 @@ import type { Extrinsic } from '@pezkuwi/types/interfaces/extrinsics';
|
||||
import type { OpaqueMetadata } from '@pezkuwi/types/interfaces/metadata';
|
||||
import type { AccountId32, H256, RuntimeCall, Slot, SlotDuration } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { ParaId } from '@pezkuwi/types/interfaces/teyrchains';
|
||||
import type { AssetHubPezkuwiRuntimeOriginCaller, AssetsCommonRuntimeApiFungiblesAccessError, PezcumulusPrimitivesCoreCollationInfo, PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspConsensusAuraEd25519AppEd25519Public, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, StagingXcmV5Location, XcmRuntimeApisAuthorizedAliasesError, XcmRuntimeApisAuthorizedAliasesOriginAliaser, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmRuntimeApisTrustedQueryError, XcmVersionedAsset, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { AssetHubPezkuwiRuntimeOriginCaller, AssetsCommonRuntimeApiFungiblesAccessError, PezcumulusPrimitivesCoreCollationInfo, PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspConsensusAuraEd25519AppEd25519Public, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, StagingXcmV5Location, XcmRuntimeApisAuthorizedAliasesError, XcmRuntimeApisAuthorizedAliasesOriginAliaser, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmRuntimeApisTrustedQueryError, XcmVersionedAsset, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { IExtrinsic, Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedCall<ApiType extends ApiTypes> = AugmentedCall<ApiType>;
|
||||
@@ -205,7 +205,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Converts `Location` to `AccountId`.
|
||||
**/
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<AccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<PezspCoreCryptoAccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
/**
|
||||
* Generic call
|
||||
**/
|
||||
@@ -220,7 +220,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the metadata at a given version.,, If the given `version` isn't supported, this will return `None`., Use [`Self::metadata_versions`] to find out about supported metadata version of the runtime.
|
||||
**/
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<Bytes>>>;
|
||||
/**
|
||||
* Returns the supported metadata versions.,, This can be used to call `metadata_at_version`.
|
||||
**/
|
||||
@@ -259,7 +259,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the bonded account and reward account associated with the pool_id.
|
||||
**/
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[AccountId32, AccountId32]>>>;
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>>;
|
||||
/**
|
||||
* Total balance contributed to the pool.
|
||||
**/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,8 +8,7 @@ import '@pezkuwi/api-base/types/consts';
|
||||
import type { ApiTypes, AugmentedConst } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { Codec, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, Perbill, Percent, Permill, Perquintill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportPezpalletId, PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletContractsEnvironment, PezpalletContractsSchedule, PezpalletReferendaTrackDetails, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight } from '@pezkuwi/types/lookup';
|
||||
import type { PezframeSupportPezpalletId, PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletContractsEnvironment, PezpalletContractsSchedule, PezpalletReferendaTrackDetails, PezspCoreCryptoAccountId32, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
|
||||
|
||||
@@ -55,7 +54,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* A fee to withdraw the liquidity.
|
||||
**/
|
||||
liquidityWithdrawalFee: Permill & AugmentedConst<ApiType>;
|
||||
liquidityWithdrawalFee: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* A % the liquidity providers will take of every swap. Represents 10ths of a percent.
|
||||
**/
|
||||
@@ -256,7 +255,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* This deposit has optional upper and lower bounds with `CuratorDepositMax` and
|
||||
* `CuratorDepositMin`.
|
||||
**/
|
||||
curatorDepositMultiplier: Permill & AugmentedConst<ApiType>;
|
||||
curatorDepositMultiplier: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The amount held on deposit per byte within the tip report reason or bounty description.
|
||||
**/
|
||||
@@ -331,7 +330,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* protects the code from being removed. In order to prevent abuse these actions are
|
||||
* protected with a percentage of the code deposit.
|
||||
**/
|
||||
codeHashLockupDepositPercent: Perbill & AugmentedConst<ApiType>;
|
||||
codeHashLockupDepositPercent: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Fallback value to limit the storage deposit if it's not being set by the caller.
|
||||
**/
|
||||
@@ -460,7 +459,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Fraction of the slash that is rewarded to the caller of pending slash to the agent.
|
||||
**/
|
||||
slashRewardFraction: Perbill & AugmentedConst<ApiType>;
|
||||
slashRewardFraction: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -537,7 +536,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* The minimum amount of improvement to the solution score that defines a solution as
|
||||
* "better" in the Signed phase.
|
||||
**/
|
||||
betterSignedThreshold: Perbill & AugmentedConst<ApiType>;
|
||||
betterSignedThreshold: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The maximum number of winners that can be elected by this `ElectionProvider`
|
||||
* implementation.
|
||||
@@ -1059,7 +1058,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* The minimum amount of funds which may intentionally be left remaining under a single
|
||||
* receipt.
|
||||
**/
|
||||
minReceipt: Perquintill & AugmentedConst<ApiType>;
|
||||
minReceipt: u64 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The treasury's pallet id, used for deriving its sovereign account ID.
|
||||
**/
|
||||
@@ -1072,7 +1071,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* The maximum proportion which may be thawed and the period over which it is reset.
|
||||
**/
|
||||
thawThrottle: ITuple<[Perquintill, u32]> & AugmentedConst<ApiType>;
|
||||
thawThrottle: ITuple<[u64, u32]> & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -1303,7 +1302,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* Instantiating a contract, protects the code from being removed. In order to prevent
|
||||
* abuse these actions are protected with a percentage of the code deposit.
|
||||
**/
|
||||
codeHashLockupDepositPercent: Perbill & AugmentedConst<ApiType>;
|
||||
codeHashLockupDepositPercent: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The amount of balance a caller has to pay for each byte of storage.
|
||||
*
|
||||
@@ -1681,7 +1680,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* The percent of the final tip which goes to the original reporter of the tip.
|
||||
**/
|
||||
tipFindersFee: Percent & AugmentedConst<ApiType>;
|
||||
tipFindersFee: u8 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The non-zero amount held on deposit for placing a tip report.
|
||||
**/
|
||||
@@ -1725,7 +1724,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Percentage of spare funds (if any) that are burnt per spend period.
|
||||
**/
|
||||
burn: Permill & AugmentedConst<ApiType>;
|
||||
burn: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* DEPRECATED: associated with `spend_local` call and will be removed in May 2025.
|
||||
* Refer to <https://github.com/paritytech/polkadot-sdk/pull/5961> for migration to `spend`.
|
||||
@@ -1746,7 +1745,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Gets this pallet's derived pot account.
|
||||
**/
|
||||
potAccount: AccountId32 & AugmentedConst<ApiType>;
|
||||
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Period between successive spends.
|
||||
**/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -12,7 +12,7 @@ import type { OpaqueKeyOwnershipProof } from '@pezkuwi/types/interfaces/babe';
|
||||
import type { Extrinsic } from '@pezkuwi/types/interfaces/extrinsics';
|
||||
import type { OpaqueMetadata } from '@pezkuwi/types/interfaces/metadata';
|
||||
import type { AccountId32, H160, H256, RuntimeCall, Slot } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezframeSystemEventRecord, PezpalletContractsPrimitivesCode, PezpalletContractsPrimitivesCodeUploadReturnValue, PezpalletContractsPrimitivesContractAccessError, PezpalletContractsPrimitivesContractResult, PezpalletContractsPrimitivesExecReturnValue, PezpalletContractsPrimitivesStorageDeposit, PezpalletContractsWasmDeterminism, PezpalletReviveEvmApiDebugRpcTypesTrace, PezpalletReviveEvmApiDebugRpcTypesTracerType, PezpalletReviveEvmApiRpcTypesGenGenericTransaction, PezpalletRevivePrimitivesCode, PezpalletRevivePrimitivesCodeUploadReturnValue, PezpalletRevivePrimitivesContractAccessError, PezpalletRevivePrimitivesContractResultExecReturnValue, PezpalletRevivePrimitivesContractResultInstantiateReturnValue, PezpalletRevivePrimitivesEthTransactError, PezpalletRevivePrimitivesEthTransactInfo, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeConfiguration, PezspConsensusBabeEpoch, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyForkVotingProofOpaqueValue, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusBeefyValidatorSet, PezspConsensusGrandpaAppPublic, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspMixnetMixnode, PezspMixnetMixnodesErr, PezspMixnetSessionStatus, PezspMmrPrimitivesError, PezspMmrPrimitivesLeafProof, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspStatementStoreRuntimeApiInvalidStatement, PezspStatementStoreRuntimeApiStatementSource, PezspStatementStoreRuntimeApiValidStatement, PezspStatementStoreStatement, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight } from '@pezkuwi/types/lookup';
|
||||
import type { PezframeSupportTokensFungibleUnionOfNativeOrWithId, PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezframeSystemEventRecord, PezpalletContractsPrimitivesCode, PezpalletContractsPrimitivesCodeUploadReturnValue, PezpalletContractsPrimitivesContractAccessError, PezpalletContractsPrimitivesContractResult, PezpalletContractsPrimitivesExecReturnValue, PezpalletContractsPrimitivesStorageDeposit, PezpalletContractsWasmDeterminism, PezpalletReviveEvmApiDebugRpcTypesTrace, PezpalletReviveEvmApiDebugRpcTypesTracerType, PezpalletReviveEvmApiRpcTypesGenGenericTransaction, PezpalletRevivePrimitivesCode, PezpalletRevivePrimitivesCodeUploadReturnValue, PezpalletRevivePrimitivesContractAccessError, PezpalletRevivePrimitivesContractResultExecReturnValue, PezpalletRevivePrimitivesContractResultInstantiateReturnValue, PezpalletRevivePrimitivesEthTransactError, PezpalletRevivePrimitivesEthTransactInfo, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeConfiguration, PezspConsensusBabeEpoch, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyForkVotingProofOpaqueValue, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusBeefyValidatorSet, PezspConsensusGrandpaAppPublic, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspMixnetMixnode, PezspMixnetMixnodesErr, PezspMixnetSessionStatus, PezspMmrPrimitivesError, PezspMmrPrimitivesLeafProof, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspStatementStoreRuntimeApiInvalidStatement, PezspStatementStoreRuntimeApiStatementSource, PezspStatementStoreRuntimeApiValidStatement, PezspStatementStoreStatement, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight } from '@pezkuwi/types/lookup';
|
||||
import type { IExtrinsic, Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedCall<ApiType extends ApiTypes> = AugmentedCall<ApiType>;
|
||||
@@ -272,7 +272,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the metadata at a given version.,, If the given `version` isn't supported, this will return `None`., Use [`Self::metadata_versions`] to find out about supported metadata version of the runtime.
|
||||
**/
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<Bytes>>>;
|
||||
/**
|
||||
* Returns the supported metadata versions.,, This can be used to call `metadata_at_version`.
|
||||
**/
|
||||
@@ -345,7 +345,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
*
|
||||
**/
|
||||
collectionOwner: AugmentedCall<ApiType, (collection: u32 | AnyNumber | Uint8Array) => Observable<Option<AccountId32>>>;
|
||||
collectionOwner: AugmentedCall<ApiType, (collection: u32 | AnyNumber | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>>;
|
||||
/**
|
||||
*
|
||||
**/
|
||||
@@ -353,7 +353,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
*
|
||||
**/
|
||||
owner: AugmentedCall<ApiType, (collection: u32 | AnyNumber | Uint8Array, item: u32 | AnyNumber | Uint8Array) => Observable<Option<AccountId32>>>;
|
||||
owner: AugmentedCall<ApiType, (collection: u32 | AnyNumber | Uint8Array, item: u32 | AnyNumber | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>>;
|
||||
/**
|
||||
*
|
||||
**/
|
||||
@@ -392,7 +392,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the bonded account and reward account associated with the pool_id.
|
||||
**/
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[AccountId32, AccountId32]>>>;
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>>;
|
||||
/**
|
||||
* Total balance contributed to the pool.
|
||||
**/
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -8,8 +8,7 @@ import '@pezkuwi/api-base/types/consts';
|
||||
import type { ApiTypes, AugmentedConst } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Option, Vec, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { Codec, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, Perbill, Permill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions } from '@pezkuwi/types/lookup';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspCoreCryptoAccountId32, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
|
||||
|
||||
@@ -154,7 +153,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* This deposit has optional upper and lower bounds with `CuratorDepositMax` and
|
||||
* `CuratorDepositMin`.
|
||||
**/
|
||||
curatorDepositMultiplier: Permill & AugmentedConst<ApiType>;
|
||||
curatorDepositMultiplier: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The amount held on deposit per byte within the tip report reason or bounty description.
|
||||
**/
|
||||
@@ -253,7 +252,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Fraction of the slash that is rewarded to the caller of pending slash to the agent.
|
||||
**/
|
||||
slashRewardFraction: Perbill & AugmentedConst<ApiType>;
|
||||
slashRewardFraction: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -264,7 +263,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* The minimum amount of improvement to the solution score that defines a solution as
|
||||
* "better" in the Signed phase.
|
||||
**/
|
||||
betterSignedThreshold: Perbill & AugmentedConst<ApiType>;
|
||||
betterSignedThreshold: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Maximum number of voters that can support a winner in an election solution.
|
||||
*
|
||||
@@ -897,7 +896,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Percentage of spare funds (if any) that are burnt per spend period.
|
||||
**/
|
||||
burn: Permill & AugmentedConst<ApiType>;
|
||||
burn: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* DEPRECATED: associated with `spend_local` call and will be removed in May 2025.
|
||||
* Refer to <https://github.com/paritytech/polkadot-sdk/pull/5961> for migration to `spend`.
|
||||
@@ -918,7 +917,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Gets this pallet's derived pot account.
|
||||
**/
|
||||
potAccount: AccountId32 & AugmentedConst<ApiType>;
|
||||
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Period between successive spends.
|
||||
**/
|
||||
|
||||
@@ -8,8 +8,8 @@ import '@pezkuwi/api-base/types/events';
|
||||
import type { ApiTypes, AugmentedEvent } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, Perbill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { DicleRuntimeConstantsProxyProxyType, PezframeSupportDispatchPostDispatchInfo, PezframeSupportMessagesProcessMessageError, PezframeSupportPreimagesBounded, PezframeSupportTokensMiscBalanceStatus, PezframeSystemDispatchEventInfo, PezkuwiPrimitivesVstagingCandidateReceiptV2, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeTeyrchainsDisputesDisputeLocation, PezkuwiRuntimeTeyrchainsDisputesDisputeResult, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesUnexpectedKind, PezpalletConvictionVotingTally, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseElectionCompute, PezpalletElectionProviderMultiPhasePhase, PezpalletMultisigTimepoint, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsPoolState, PezpalletProxyDepositKind, PezpalletRankedCollectiveTally, PezpalletRankedCollectiveVoteRecord, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletRecoveryDepositKind, PezpalletSocietyGroupParams, PezpalletStakingAsyncAhClientUnexpectedKind, PezpalletStakingForcing, PezpalletStakingRewardDestination, PezpalletStakingValidatorPrefs, PezspConsensusGrandpaAppPublic, PezspNposElectionsElectionScore, PezspRuntimeDispatchError, PezspRuntimeDispatchErrorWithPostInfo, PezspWeightsWeightV2Weight, StagingDicleRuntimeRuntimeParametersKey, StagingDicleRuntimeRuntimeParametersValue, StagingXcmV5AssetAssets, StagingXcmV5Location, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmV3MaybeErrorCode, XcmV3TraitsSendError, XcmV5TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { H256 } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { DicleRuntimeConstantsProxyProxyType, PezframeSupportDispatchPostDispatchInfo, PezframeSupportMessagesProcessMessageError, PezframeSupportPreimagesBounded, PezframeSupportTokensMiscBalanceStatus, PezframeSystemDispatchEventInfo, PezkuwiPrimitivesVstagingCandidateReceiptV2, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeTeyrchainsDisputesDisputeLocation, PezkuwiRuntimeTeyrchainsDisputesDisputeResult, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesUnexpectedKind, PezpalletConvictionVotingTally, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseElectionCompute, PezpalletElectionProviderMultiPhasePhase, PezpalletMultisigTimepoint, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsPoolState, PezpalletProxyDepositKind, PezpalletRankedCollectiveTally, PezpalletRankedCollectiveVoteRecord, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletRecoveryDepositKind, PezpalletSocietyGroupParams, PezpalletStakingAsyncAhClientUnexpectedKind, PezpalletStakingForcing, PezpalletStakingRewardDestination, PezpalletStakingValidatorPrefs, PezspConsensusGrandpaAppPublic, PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore, PezspRuntimeDispatchError, PezspRuntimeDispatchErrorWithPostInfo, PezspWeightsWeightV2Weight, StagingDicleRuntimeRuntimeParametersKey, StagingDicleRuntimeRuntimeParametersValue, StagingXcmV5AssetAssets, StagingXcmV5Location, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmV3MaybeErrorCode, XcmV3TraitsSendError, XcmV5TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
|
||||
|
||||
@@ -37,21 +37,21 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A new bid has been accepted as the current winner.
|
||||
**/
|
||||
BidAccepted: AugmentedEvent<ApiType, [bidder: AccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32], { bidder: AccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32 }>;
|
||||
BidAccepted: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32], { bidder: PezspCoreCryptoAccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32 }>;
|
||||
/**
|
||||
* Someone attempted to lease the same slot twice for a parachain. The amount is held in
|
||||
* reserve but no parachain slot has been leased.
|
||||
**/
|
||||
ReserveConfiscated: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, amount: u128], { paraId: u32, leaser: AccountId32, amount: u128 }>;
|
||||
ReserveConfiscated: AugmentedEvent<ApiType, [paraId: u32, leaser: PezspCoreCryptoAccountId32, amount: u128], { paraId: u32, leaser: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Funds were reserved for a winning bid. First balance is the extra amount reserved.
|
||||
* Second is the total.
|
||||
**/
|
||||
Reserved: AugmentedEvent<ApiType, [bidder: AccountId32, extraReserved: u128, totalAmount: u128], { bidder: AccountId32, extraReserved: u128, totalAmount: u128 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, extraReserved: u128, totalAmount: u128], { bidder: PezspCoreCryptoAccountId32, extraReserved: u128, totalAmount: u128 }>;
|
||||
/**
|
||||
* Funds were unreserved since bidder is no longer active. `[bidder, amount]`
|
||||
**/
|
||||
Unreserved: AugmentedEvent<ApiType, [bidder: AccountId32, amount: u128], { bidder: AccountId32, amount: u128 }>;
|
||||
Unreserved: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, amount: u128], { bidder: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* The winning offset was chosen for an auction. This will map into the `Winning` storage
|
||||
* map.
|
||||
@@ -66,28 +66,28 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A balance was set by root.
|
||||
**/
|
||||
BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { who: AccountId32, free: u128 }>;
|
||||
BalanceSet: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, free: u128], { who: PezspCoreCryptoAccountId32, free: u128 }>;
|
||||
/**
|
||||
* Some amount was burned from an account.
|
||||
**/
|
||||
Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Burned: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was deposited (e.g. for transaction fees).
|
||||
**/
|
||||
Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Deposit: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account was removed whose balance was non-zero but below ExistentialDeposit,
|
||||
* resulting in an outright loss.
|
||||
**/
|
||||
DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;
|
||||
DustLost: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, amount: u128], { account: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account was created with some free balance.
|
||||
**/
|
||||
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
|
||||
Endowed: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, freeBalance: u128], { account: PezspCoreCryptoAccountId32, freeBalance: u128 }>;
|
||||
/**
|
||||
* Some balance was frozen.
|
||||
**/
|
||||
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Frozen: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Total issuance was increased by `amount`, creating a credit to be balanced.
|
||||
**/
|
||||
@@ -95,11 +95,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some balance was locked.
|
||||
**/
|
||||
Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Locked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was minted into an account.
|
||||
**/
|
||||
Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Minted: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Total issuance was decreased by `amount`, creating a debt to be balanced.
|
||||
**/
|
||||
@@ -107,28 +107,28 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some balance was reserved (moved from free to reserved).
|
||||
**/
|
||||
Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some balance was moved from the reserve of the first account to the second account.
|
||||
* Final argument indicates the destination balance type.
|
||||
**/
|
||||
ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus }>;
|
||||
ReserveRepatriated: AugmentedEvent<ApiType, [from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus], { from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus }>;
|
||||
/**
|
||||
* Some amount was restored into an account.
|
||||
**/
|
||||
Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Restored: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was removed from the account (e.g. for misbehavior).
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was suspended from an account (it can be restored later).
|
||||
**/
|
||||
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Suspended: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some balance was thawed.
|
||||
**/
|
||||
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Thawed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* The `TotalIssuance` was forcefully changed.
|
||||
**/
|
||||
@@ -136,7 +136,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Transfer succeeded.
|
||||
**/
|
||||
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
|
||||
Transfer: AugmentedEvent<ApiType, [from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128], { from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An unexpected/defensive event was triggered.
|
||||
**/
|
||||
@@ -144,19 +144,19 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some balance was unlocked.
|
||||
**/
|
||||
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Unlocked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some balance was unreserved (moved from reserved to free).
|
||||
**/
|
||||
Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Unreserved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account was upgraded.
|
||||
**/
|
||||
Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
|
||||
Upgraded: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32], { who: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Some amount was withdrawn from the account (e.g. for transaction fees).
|
||||
**/
|
||||
Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Withdraw: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -170,7 +170,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty is awarded to a beneficiary.
|
||||
**/
|
||||
BountyAwarded: AugmentedEvent<ApiType, [index: u32, beneficiary: AccountId32], { index: u32, beneficiary: AccountId32 }>;
|
||||
BountyAwarded: AugmentedEvent<ApiType, [index: u32, beneficiary: PezspCoreCryptoAccountId32], { index: u32, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty proposal is funded and became active.
|
||||
**/
|
||||
@@ -182,7 +182,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty is claimed by beneficiary.
|
||||
**/
|
||||
BountyClaimed: AugmentedEvent<ApiType, [index: u32, payout: u128, beneficiary: AccountId32], { index: u32, payout: u128, beneficiary: AccountId32 }>;
|
||||
BountyClaimed: AugmentedEvent<ApiType, [index: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32], { index: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty expiry is extended.
|
||||
**/
|
||||
@@ -198,11 +198,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty curator is accepted.
|
||||
**/
|
||||
CuratorAccepted: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], { bountyId: u32, curator: AccountId32 }>;
|
||||
CuratorAccepted: AugmentedEvent<ApiType, [bountyId: u32, curator: PezspCoreCryptoAccountId32], { bountyId: u32, curator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty curator is proposed.
|
||||
**/
|
||||
CuratorProposed: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], { bountyId: u32, curator: AccountId32 }>;
|
||||
CuratorProposed: AugmentedEvent<ApiType, [bountyId: u32, curator: PezspCoreCryptoAccountId32], { bountyId: u32, curator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty curator is unassigned.
|
||||
**/
|
||||
@@ -210,7 +210,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty deposit has been poked.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [bountyId: u32, proposer: AccountId32, oldDeposit: u128, newDeposit: u128], { bountyId: u32, proposer: AccountId32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [bountyId: u32, proposer: PezspCoreCryptoAccountId32, oldDeposit: u128, newDeposit: u128], { bountyId: u32, proposer: PezspCoreCryptoAccountId32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -224,7 +224,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A child-bounty is awarded to a beneficiary.
|
||||
**/
|
||||
Awarded: AugmentedEvent<ApiType, [index: u32, childIndex: u32, beneficiary: AccountId32], { index: u32, childIndex: u32, beneficiary: AccountId32 }>;
|
||||
Awarded: AugmentedEvent<ApiType, [index: u32, childIndex: u32, beneficiary: PezspCoreCryptoAccountId32], { index: u32, childIndex: u32, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A child-bounty is cancelled.
|
||||
**/
|
||||
@@ -232,7 +232,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A child-bounty is claimed by beneficiary.
|
||||
**/
|
||||
Claimed: AugmentedEvent<ApiType, [index: u32, childIndex: u32, payout: u128, beneficiary: AccountId32], { index: u32, childIndex: u32, payout: u128, beneficiary: AccountId32 }>;
|
||||
Claimed: AugmentedEvent<ApiType, [index: u32, childIndex: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32], { index: u32, childIndex: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -242,7 +242,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Someone claimed some DOTs.
|
||||
**/
|
||||
Claimed: AugmentedEvent<ApiType, [who: AccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128], { who: AccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128 }>;
|
||||
Claimed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128], { who: PezspCoreCryptoAccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -252,23 +252,23 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account has delegated their vote to another account. \[who, target\]
|
||||
**/
|
||||
Delegated: AugmentedEvent<ApiType, [AccountId32, AccountId32]>;
|
||||
Delegated: AugmentedEvent<ApiType, [PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* An \[account\] has cancelled a previous delegation operation.
|
||||
**/
|
||||
Undelegated: AugmentedEvent<ApiType, [AccountId32]>;
|
||||
Undelegated: AugmentedEvent<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* An account has voted
|
||||
**/
|
||||
Voted: AugmentedEvent<ApiType, [who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
Voted: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
/**
|
||||
* A vote has been removed
|
||||
**/
|
||||
VoteRemoved: AugmentedEvent<ApiType, [who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
VoteRemoved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
/**
|
||||
* The lockup period of a conviction vote expired, and the funds have been unlocked.
|
||||
**/
|
||||
VoteUnlocked: AugmentedEvent<ApiType, [who: AccountId32, class_: u16], { who: AccountId32, class: u16 }>;
|
||||
VoteUnlocked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, class_: u16], { who: PezspCoreCryptoAccountId32, class: u16 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -300,7 +300,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Contributed to a crowd sale.
|
||||
**/
|
||||
Contributed: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], { who: AccountId32, fundIndex: u32, amount: u128 }>;
|
||||
Contributed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128], { who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128 }>;
|
||||
/**
|
||||
* Create a new crowdloaning campaign.
|
||||
**/
|
||||
@@ -320,7 +320,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A memo has been updated.
|
||||
**/
|
||||
MemoUpdated: AugmentedEvent<ApiType, [who: AccountId32, paraId: u32, memo: Bytes], { who: AccountId32, paraId: u32, memo: Bytes }>;
|
||||
MemoUpdated: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, paraId: u32, memo: Bytes], { who: PezspCoreCryptoAccountId32, paraId: u32, memo: Bytes }>;
|
||||
/**
|
||||
* The loans in a fund have been partially dissolved, i.e. there are some left
|
||||
* over child keys that still need to be killed.
|
||||
@@ -329,7 +329,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Withdrew full balance of a contributor.
|
||||
**/
|
||||
Withdrew: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], { who: AccountId32, fundIndex: u32, amount: u128 }>;
|
||||
Withdrew: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128], { who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -339,19 +339,19 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Funds delegated by a delegator.
|
||||
**/
|
||||
Delegated: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
Delegated: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Unclaimed delegation funds migrated to delegator.
|
||||
**/
|
||||
MigratedDelegation: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
MigratedDelegation: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Funds released to a delegator.
|
||||
**/
|
||||
Released: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
Released: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Funds slashed from a delegator.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -375,11 +375,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account has been rewarded for their signed submission being finalized.
|
||||
**/
|
||||
Rewarded: AugmentedEvent<ApiType, [account: AccountId32, value: u128], { account: AccountId32, value: u128 }>;
|
||||
Rewarded: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, value: u128], { account: PezspCoreCryptoAccountId32, value: u128 }>;
|
||||
/**
|
||||
* An account has been slashed for submitting an invalid signed submission.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [account: AccountId32, value: u128], { account: AccountId32, value: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, value: u128], { account: PezspCoreCryptoAccountId32, value: u128 }>;
|
||||
/**
|
||||
* A solution was stored with the given compute.
|
||||
*
|
||||
@@ -389,7 +389,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* `T::ForceOrigin`. The `bool` is `true` when a previous solution was ejected to make
|
||||
* room for this one.
|
||||
**/
|
||||
SolutionStored: AugmentedEvent<ApiType, [compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<AccountId32>, prevEjected: bool], { compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<AccountId32>, prevEjected: bool }>;
|
||||
SolutionStored: AugmentedEvent<ApiType, [compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<PezspCoreCryptoAccountId32>, prevEjected: bool], { compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<PezspCoreCryptoAccountId32>, prevEjected: bool }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -414,11 +414,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A staker was slashed for requesting fast-unstake whilst being exposed.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A staker was unstaked.
|
||||
**/
|
||||
Unstaked: AugmentedEvent<ApiType, [stash: AccountId32, result: Result<Null, PezspRuntimeDispatchError>], { stash: AccountId32, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
Unstaked: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, result: Result<Null, PezspRuntimeDispatchError>], { stash: PezspCoreCryptoAccountId32, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -428,24 +428,24 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A member `who` has been added.
|
||||
**/
|
||||
MemberAdded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
|
||||
MemberAdded: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32], { who: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The member `who` had their `AccountId` changed to `new_who`.
|
||||
**/
|
||||
MemberExchanged: AugmentedEvent<ApiType, [who: AccountId32, newWho: AccountId32], { who: AccountId32, newWho: AccountId32 }>;
|
||||
MemberExchanged: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, newWho: PezspCoreCryptoAccountId32], { who: PezspCoreCryptoAccountId32, newWho: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The member `who` of given `rank` has been removed from the collective.
|
||||
**/
|
||||
MemberRemoved: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], { who: AccountId32, rank: u16 }>;
|
||||
MemberRemoved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, rank: u16], { who: PezspCoreCryptoAccountId32, rank: u16 }>;
|
||||
/**
|
||||
* The member `who`se rank has been changed to the given `rank`.
|
||||
**/
|
||||
RankChanged: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], { who: AccountId32, rank: u16 }>;
|
||||
RankChanged: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, rank: u16], { who: PezspCoreCryptoAccountId32, rank: u16 }>;
|
||||
/**
|
||||
* The member `who` has voted for the `poll` with the given `vote` leading to an updated
|
||||
* `tally`.
|
||||
**/
|
||||
Voted: AugmentedEvent<ApiType, [who: AccountId32, poll: u32, vote: PezpalletRankedCollectiveVoteRecord, tally: PezpalletRankedCollectiveTally], { who: AccountId32, poll: u32, vote: PezpalletRankedCollectiveVoteRecord, tally: PezpalletRankedCollectiveTally }>;
|
||||
Voted: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, poll: u32, vote: PezpalletRankedCollectiveVoteRecord, tally: PezpalletRankedCollectiveTally], { who: PezspCoreCryptoAccountId32, poll: u32, vote: PezpalletRankedCollectiveVoteRecord, tally: PezpalletRankedCollectiveTally }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -469,11 +469,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The decision deposit has been placed.
|
||||
**/
|
||||
DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* The decision deposit has been refunded.
|
||||
**/
|
||||
DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has moved into the deciding phase.
|
||||
**/
|
||||
@@ -481,7 +481,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A deposit has been slashed.
|
||||
**/
|
||||
DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
DepositSlashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has been killed.
|
||||
**/
|
||||
@@ -501,7 +501,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The submission deposit has been refunded.
|
||||
**/
|
||||
SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has been submitted.
|
||||
**/
|
||||
@@ -585,11 +585,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A deposit to reserve an index has been poked/reconsidered.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, index: u32, oldDeposit: u128, newDeposit: u128], { who: AccountId32, index: u32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, index: u32, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, index: u32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A account index was assigned.
|
||||
**/
|
||||
IndexAssigned: AugmentedEvent<ApiType, [who: AccountId32, index: u32], { who: AccountId32, index: u32 }>;
|
||||
IndexAssigned: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, index: u32], { who: PezspCoreCryptoAccountId32, index: u32 }>;
|
||||
/**
|
||||
* A account index has been freed up (unassigned).
|
||||
**/
|
||||
@@ -597,7 +597,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A account index has been frozen to its current account ID.
|
||||
**/
|
||||
IndexFrozen: AugmentedEvent<ApiType, [index: u32, who: AccountId32], { index: u32, who: AccountId32 }>;
|
||||
IndexFrozen: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32], { index: u32, who: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -629,23 +629,23 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The deposit for a multisig operation has been updated/poked.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], { who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A multisig operation has been approved by someone.
|
||||
**/
|
||||
MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], { approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed }>;
|
||||
MultisigApproval: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], { approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed }>;
|
||||
/**
|
||||
* A multisig operation has been cancelled.
|
||||
**/
|
||||
MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], { cancelling: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed }>;
|
||||
MultisigCancelled: AugmentedEvent<ApiType, [cancelling: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], { cancelling: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed }>;
|
||||
/**
|
||||
* A multisig operation has been executed.
|
||||
**/
|
||||
MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError>], { approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
MultisigExecuted: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError>], { approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
/**
|
||||
* A new multisig operation has begun.
|
||||
**/
|
||||
NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], { approving: AccountId32, multisig: AccountId32, callHash: U8aFixed }>;
|
||||
NewMultisig: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], { approving: PezspCoreCryptoAccountId32, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -655,11 +655,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A member has became bonded in a pool.
|
||||
**/
|
||||
Bonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, bonded: u128, joined: bool], { member: AccountId32, poolId: u32, bonded: u128, joined: bool }>;
|
||||
Bonded: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, bonded: u128, joined: bool], { member: PezspCoreCryptoAccountId32, poolId: u32, bonded: u128, joined: bool }>;
|
||||
/**
|
||||
* A pool has been created.
|
||||
**/
|
||||
Created: AugmentedEvent<ApiType, [depositor: AccountId32, poolId: u32], { depositor: AccountId32, poolId: u32 }>;
|
||||
Created: AugmentedEvent<ApiType, [depositor: PezspCoreCryptoAccountId32, poolId: u32], { depositor: PezspCoreCryptoAccountId32, poolId: u32 }>;
|
||||
/**
|
||||
* A pool has been destroyed.
|
||||
**/
|
||||
@@ -667,11 +667,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Global parameters regulating nomination pools have been updated.
|
||||
**/
|
||||
GlobalParamsUpdated: AugmentedEvent<ApiType, [minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<Perbill>], { minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<Perbill> }>;
|
||||
GlobalParamsUpdated: AugmentedEvent<ApiType, [minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<u32>], { minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<u32> }>;
|
||||
/**
|
||||
* A pool member's claim permission has been updated.
|
||||
**/
|
||||
MemberClaimPermissionUpdated: AugmentedEvent<ApiType, [member: AccountId32, permission: PezpalletNominationPoolsClaimPermission], { member: AccountId32, permission: PezpalletNominationPoolsClaimPermission }>;
|
||||
MemberClaimPermissionUpdated: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, permission: PezpalletNominationPoolsClaimPermission], { member: PezspCoreCryptoAccountId32, permission: PezpalletNominationPoolsClaimPermission }>;
|
||||
/**
|
||||
* A member has been removed from a pool.
|
||||
*
|
||||
@@ -679,11 +679,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* Any funds that are still delegated (i.e. dangling delegation) are released and are
|
||||
* represented by `released_balance`.
|
||||
**/
|
||||
MemberRemoved: AugmentedEvent<ApiType, [poolId: u32, member: AccountId32, releasedBalance: u128], { poolId: u32, member: AccountId32, releasedBalance: u128 }>;
|
||||
MemberRemoved: AugmentedEvent<ApiType, [poolId: u32, member: PezspCoreCryptoAccountId32, releasedBalance: u128], { poolId: u32, member: PezspCoreCryptoAccountId32, releasedBalance: u128 }>;
|
||||
/**
|
||||
* A pool's metadata was updated.
|
||||
**/
|
||||
MetadataUpdated: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], { poolId: u32, caller: AccountId32 }>;
|
||||
MetadataUpdated: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], { poolId: u32, caller: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Topped up deficit in frozen ED of the reward pool.
|
||||
**/
|
||||
@@ -695,7 +695,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A payout has been made to a member.
|
||||
**/
|
||||
PaidOut: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, payout: u128], { member: AccountId32, poolId: u32, payout: u128 }>;
|
||||
PaidOut: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, payout: u128], { member: PezspCoreCryptoAccountId32, poolId: u32, payout: u128 }>;
|
||||
/**
|
||||
* A pool's commission `change_rate` has been changed.
|
||||
**/
|
||||
@@ -711,20 +711,20 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A pool's commission setting has been changed.
|
||||
**/
|
||||
PoolCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, current: Option<ITuple<[Perbill, AccountId32]>>], { poolId: u32, current: Option<ITuple<[Perbill, AccountId32]>> }>;
|
||||
PoolCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>], { poolId: u32, current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>> }>;
|
||||
/**
|
||||
* A pool's maximum commission setting has been changed.
|
||||
**/
|
||||
PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, maxCommission: Perbill], { poolId: u32, maxCommission: Perbill }>;
|
||||
PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, maxCommission: u32], { poolId: u32, maxCommission: u32 }>;
|
||||
/**
|
||||
* A pool's nominating account (or the pool's root account) has nominated a validator set
|
||||
* on behalf of the pool.
|
||||
**/
|
||||
PoolNominationMade: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], { poolId: u32, caller: AccountId32 }>;
|
||||
PoolNominationMade: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], { poolId: u32, caller: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The pool is chilled i.e. no longer nominating.
|
||||
**/
|
||||
PoolNominatorChilled: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], { poolId: u32, caller: AccountId32 }>;
|
||||
PoolNominatorChilled: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], { poolId: u32, caller: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The active balance of pool `pool_id` has been slashed to `balance`.
|
||||
**/
|
||||
@@ -733,7 +733,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* The roles of a pool have been updated to the given new roles. Note that the depositor
|
||||
* can never change.
|
||||
**/
|
||||
RolesUpdated: AugmentedEvent<ApiType, [root: Option<AccountId32>, bouncer: Option<AccountId32>, nominator: Option<AccountId32>], { root: Option<AccountId32>, bouncer: Option<AccountId32>, nominator: Option<AccountId32> }>;
|
||||
RolesUpdated: AugmentedEvent<ApiType, [root: Option<PezspCoreCryptoAccountId32>, bouncer: Option<PezspCoreCryptoAccountId32>, nominator: Option<PezspCoreCryptoAccountId32>], { root: Option<PezspCoreCryptoAccountId32>, bouncer: Option<PezspCoreCryptoAccountId32>, nominator: Option<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The state of a pool has changed
|
||||
**/
|
||||
@@ -751,7 +751,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* number of points that are issued in the unbonding pool will be less than the amount
|
||||
* requested to be unbonded.
|
||||
**/
|
||||
Unbonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32], { member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32 }>;
|
||||
Unbonded: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128, era: u32], { member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128, era: u32 }>;
|
||||
/**
|
||||
* The unbond pool at `era` of pool `pool_id` has been slashed to `balance`.
|
||||
**/
|
||||
@@ -764,7 +764,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance
|
||||
* will be 1.
|
||||
**/
|
||||
Withdrawn: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128], { member: AccountId32, poolId: u32, balance: u128, points: u128 }>;
|
||||
Withdrawn: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128], { member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -786,11 +786,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account was given credits.
|
||||
**/
|
||||
AccountCredited: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
AccountCredited: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An order was placed at some spot price amount by orderer ordered_by
|
||||
**/
|
||||
OnDemandOrderPlaced: AugmentedEvent<ApiType, [paraId: u32, spotPrice: u128, orderedBy: AccountId32], { paraId: u32, spotPrice: u128, orderedBy: AccountId32 }>;
|
||||
OnDemandOrderPlaced: AugmentedEvent<ApiType, [paraId: u32, spotPrice: u128, orderedBy: PezspCoreCryptoAccountId32], { paraId: u32, spotPrice: u128, orderedBy: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The value of the spot price has likely changed
|
||||
**/
|
||||
@@ -927,15 +927,15 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An announcement was placed to make a call in the future.
|
||||
**/
|
||||
Announced: AugmentedEvent<ApiType, [real: AccountId32, proxy: AccountId32, callHash: H256], { real: AccountId32, proxy: AccountId32, callHash: H256 }>;
|
||||
Announced: AugmentedEvent<ApiType, [real: PezspCoreCryptoAccountId32, proxy: PezspCoreCryptoAccountId32, callHash: H256], { real: PezspCoreCryptoAccountId32, proxy: PezspCoreCryptoAccountId32, callHash: H256 }>;
|
||||
/**
|
||||
* A deposit stored for proxies or announcements was poked / updated.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], { who: AccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A proxy was added.
|
||||
**/
|
||||
ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32], { delegator: AccountId32, delegatee: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
ProxyAdded: AugmentedEvent<ApiType, [delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32], { delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
/**
|
||||
* A proxy was executed correctly, with the given.
|
||||
**/
|
||||
@@ -943,16 +943,16 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A proxy was removed.
|
||||
**/
|
||||
ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32], { delegator: AccountId32, delegatee: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
ProxyRemoved: AugmentedEvent<ApiType, [delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32], { delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
/**
|
||||
* A pure account has been created by new proxy with given
|
||||
* disambiguation index and proxy type.
|
||||
**/
|
||||
PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: AccountId32, who: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
PureCreated: AugmentedEvent<ApiType, [pure: PezspCoreCryptoAccountId32, who: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: PezspCoreCryptoAccountId32, who: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
/**
|
||||
* A pure proxy was killed by its spawner.
|
||||
**/
|
||||
PureKilled: AugmentedEvent<ApiType, [pure: AccountId32, spawner: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: AccountId32, spawner: AccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
PureKilled: AugmentedEvent<ApiType, [pure: PezspCoreCryptoAccountId32, spawner: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: PezspCoreCryptoAccountId32, spawner: PezspCoreCryptoAccountId32, proxyType: DicleRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -962,7 +962,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The accounts to be preserved on Relay Chain were set.
|
||||
**/
|
||||
AccountsPreserved: AugmentedEvent<ApiType, [accounts: Vec<AccountId32>], { accounts: Vec<AccountId32> }>;
|
||||
AccountsPreserved: AugmentedEvent<ApiType, [accounts: Vec<PezspCoreCryptoAccountId32>], { accounts: Vec<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The AH UMP queue priority config was set.
|
||||
**/
|
||||
@@ -991,7 +991,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The canceller account id was set.
|
||||
**/
|
||||
CancellerSet: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: Option<AccountId32>], { old: Option<AccountId32>, new_: Option<AccountId32> }>;
|
||||
CancellerSet: AugmentedEvent<ApiType, [old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32>], { old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The manager multisig dispatched something.
|
||||
**/
|
||||
@@ -1003,7 +1003,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The manager account id was set.
|
||||
**/
|
||||
ManagerSet: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: Option<AccountId32>], { old: Option<AccountId32>, new_: Option<AccountId32> }>;
|
||||
ManagerSet: AugmentedEvent<ApiType, [old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32>], { old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The RC kept balance was consumed.
|
||||
**/
|
||||
@@ -1057,31 +1057,31 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Lost account has been successfully recovered by rescuer account.
|
||||
**/
|
||||
AccountRecovered: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32], { lostAccount: AccountId32, rescuerAccount: AccountId32 }>;
|
||||
AccountRecovered: AugmentedEvent<ApiType, [lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32], { lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A deposit has been updated.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, kind: PezpalletRecoveryDepositKind, oldDeposit: u128, newDeposit: u128], { who: AccountId32, kind: PezpalletRecoveryDepositKind, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, kind: PezpalletRecoveryDepositKind, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, kind: PezpalletRecoveryDepositKind, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A recovery process for lost account by rescuer account has been closed.
|
||||
**/
|
||||
RecoveryClosed: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32], { lostAccount: AccountId32, rescuerAccount: AccountId32 }>;
|
||||
RecoveryClosed: AugmentedEvent<ApiType, [lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32], { lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A recovery process has been set up for an account.
|
||||
**/
|
||||
RecoveryCreated: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
|
||||
RecoveryCreated: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], { account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A recovery process has been initiated for lost account by rescuer account.
|
||||
**/
|
||||
RecoveryInitiated: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32], { lostAccount: AccountId32, rescuerAccount: AccountId32 }>;
|
||||
RecoveryInitiated: AugmentedEvent<ApiType, [lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32], { lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A recovery process has been removed for an account.
|
||||
**/
|
||||
RecoveryRemoved: AugmentedEvent<ApiType, [lostAccount: AccountId32], { lostAccount: AccountId32 }>;
|
||||
RecoveryRemoved: AugmentedEvent<ApiType, [lostAccount: PezspCoreCryptoAccountId32], { lostAccount: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A recovery process for lost account by rescuer account has been vouched for by sender.
|
||||
**/
|
||||
RecoveryVouched: AugmentedEvent<ApiType, [lostAccount: AccountId32, rescuerAccount: AccountId32, sender: AccountId32], { lostAccount: AccountId32, rescuerAccount: AccountId32, sender: AccountId32 }>;
|
||||
RecoveryVouched: AugmentedEvent<ApiType, [lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32, sender: PezspCoreCryptoAccountId32], { lostAccount: PezspCoreCryptoAccountId32, rescuerAccount: PezspCoreCryptoAccountId32, sender: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1105,11 +1105,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The decision deposit has been placed.
|
||||
**/
|
||||
DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* The decision deposit has been refunded.
|
||||
**/
|
||||
DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has moved into the deciding phase.
|
||||
**/
|
||||
@@ -1117,7 +1117,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A deposit has been slashed.
|
||||
**/
|
||||
DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
DepositSlashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has been killed.
|
||||
**/
|
||||
@@ -1137,7 +1137,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The submission deposit has been refunded.
|
||||
**/
|
||||
SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has been submitted.
|
||||
**/
|
||||
@@ -1153,8 +1153,8 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
};
|
||||
registrar: {
|
||||
Deregistered: AugmentedEvent<ApiType, [paraId: u32], { paraId: u32 }>;
|
||||
Registered: AugmentedEvent<ApiType, [paraId: u32, manager: AccountId32], { paraId: u32, manager: AccountId32 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [paraId: u32, who: AccountId32], { paraId: u32, who: AccountId32 }>;
|
||||
Registered: AugmentedEvent<ApiType, [paraId: u32, manager: PezspCoreCryptoAccountId32], { paraId: u32, manager: PezspCoreCryptoAccountId32 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [paraId: u32, who: PezspCoreCryptoAccountId32], { paraId: u32, who: PezspCoreCryptoAccountId32 }>;
|
||||
Swapped: AugmentedEvent<ApiType, [paraId: u32, otherId: u32], { paraId: u32, otherId: u32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
@@ -1222,11 +1222,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Validator has been disabled.
|
||||
**/
|
||||
ValidatorDisabled: AugmentedEvent<ApiType, [validator: AccountId32], { validator: AccountId32 }>;
|
||||
ValidatorDisabled: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32], { validator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Validator has been re-enabled.
|
||||
**/
|
||||
ValidatorReenabled: AugmentedEvent<ApiType, [validator: AccountId32], { validator: AccountId32 }>;
|
||||
ValidatorReenabled: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32], { validator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1238,7 +1238,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* First balance is any extra amount reserved on top of the para's existing deposit.
|
||||
* Second balance is the total amount reserved.
|
||||
**/
|
||||
Leased: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128], { paraId: u32, leaser: AccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128 }>;
|
||||
Leased: AugmentedEvent<ApiType, [paraId: u32, leaser: PezspCoreCryptoAccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128], { paraId: u32, leaser: PezspCoreCryptoAccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128 }>;
|
||||
/**
|
||||
* A new `[lease_period]` is beginning.
|
||||
**/
|
||||
@@ -1252,24 +1252,24 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A candidate was dropped (due to an excess of bids in the system).
|
||||
**/
|
||||
AutoUnbid: AugmentedEvent<ApiType, [candidate: AccountId32], { candidate: AccountId32 }>;
|
||||
AutoUnbid: AugmentedEvent<ApiType, [candidate: PezspCoreCryptoAccountId32], { candidate: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A membership bid just happened. The given account is the candidate's ID and their offer
|
||||
* is the second.
|
||||
**/
|
||||
Bid: AugmentedEvent<ApiType, [candidateId: AccountId32, offer: u128], { candidateId: AccountId32, offer: u128 }>;
|
||||
Bid: AugmentedEvent<ApiType, [candidateId: PezspCoreCryptoAccountId32, offer: u128], { candidateId: PezspCoreCryptoAccountId32, offer: u128 }>;
|
||||
/**
|
||||
* A candidate has been suspended
|
||||
**/
|
||||
CandidateSuspended: AugmentedEvent<ApiType, [candidate: AccountId32], { candidate: AccountId32 }>;
|
||||
CandidateSuspended: AugmentedEvent<ApiType, [candidate: PezspCoreCryptoAccountId32], { candidate: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A member has been challenged
|
||||
**/
|
||||
Challenged: AugmentedEvent<ApiType, [member: AccountId32], { member: AccountId32 }>;
|
||||
Challenged: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32], { member: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A vote has been placed for a defending member
|
||||
**/
|
||||
DefenderVote: AugmentedEvent<ApiType, [voter: AccountId32, vote: bool], { voter: AccountId32, vote: bool }>;
|
||||
DefenderVote: AugmentedEvent<ApiType, [voter: PezspCoreCryptoAccountId32, vote: bool], { voter: PezspCoreCryptoAccountId32, vote: bool }>;
|
||||
/**
|
||||
* Some funds were deposited into the society account.
|
||||
**/
|
||||
@@ -1277,24 +1277,24 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A deposit was poked / adjusted.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, oldDeposit: u128, newDeposit: u128], { who: AccountId32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A \[member\] got elevated to \[rank\].
|
||||
**/
|
||||
Elevated: AugmentedEvent<ApiType, [member: AccountId32, rank: u32], { member: AccountId32, rank: u32 }>;
|
||||
Elevated: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, rank: u32], { member: PezspCoreCryptoAccountId32, rank: u32 }>;
|
||||
/**
|
||||
* The society is founded by the given identity.
|
||||
**/
|
||||
Founded: AugmentedEvent<ApiType, [founder: AccountId32], { founder: AccountId32 }>;
|
||||
Founded: AugmentedEvent<ApiType, [founder: PezspCoreCryptoAccountId32], { founder: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A group of candidates have been inducted. The batch's primary is the first value, the
|
||||
* batch in full is the second.
|
||||
**/
|
||||
Inducted: AugmentedEvent<ApiType, [primary: AccountId32, candidates: Vec<AccountId32>], { primary: AccountId32, candidates: Vec<AccountId32> }>;
|
||||
Inducted: AugmentedEvent<ApiType, [primary: PezspCoreCryptoAccountId32, candidates: Vec<PezspCoreCryptoAccountId32>], { primary: PezspCoreCryptoAccountId32, candidates: Vec<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* A member has been suspended
|
||||
**/
|
||||
MemberSuspended: AugmentedEvent<ApiType, [member: AccountId32], { member: AccountId32 }>;
|
||||
MemberSuspended: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32], { member: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A new set of \[params\] has been set for the group.
|
||||
**/
|
||||
@@ -1302,28 +1302,28 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A suspended member has been judged.
|
||||
**/
|
||||
SuspendedMemberJudgement: AugmentedEvent<ApiType, [who: AccountId32, judged: bool], { who: AccountId32, judged: bool }>;
|
||||
SuspendedMemberJudgement: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, judged: bool], { who: PezspCoreCryptoAccountId32, judged: bool }>;
|
||||
/**
|
||||
* A candidate was dropped (by their request).
|
||||
**/
|
||||
Unbid: AugmentedEvent<ApiType, [candidate: AccountId32], { candidate: AccountId32 }>;
|
||||
Unbid: AugmentedEvent<ApiType, [candidate: PezspCoreCryptoAccountId32], { candidate: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Society is unfounded.
|
||||
**/
|
||||
Unfounded: AugmentedEvent<ApiType, [founder: AccountId32], { founder: AccountId32 }>;
|
||||
Unfounded: AugmentedEvent<ApiType, [founder: PezspCoreCryptoAccountId32], { founder: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A candidate was dropped (by request of who vouched for them).
|
||||
**/
|
||||
Unvouch: AugmentedEvent<ApiType, [candidate: AccountId32], { candidate: AccountId32 }>;
|
||||
Unvouch: AugmentedEvent<ApiType, [candidate: PezspCoreCryptoAccountId32], { candidate: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A vote has been placed
|
||||
**/
|
||||
Vote: AugmentedEvent<ApiType, [candidate: AccountId32, voter: AccountId32, vote: bool], { candidate: AccountId32, voter: AccountId32, vote: bool }>;
|
||||
Vote: AugmentedEvent<ApiType, [candidate: PezspCoreCryptoAccountId32, voter: PezspCoreCryptoAccountId32, vote: bool], { candidate: PezspCoreCryptoAccountId32, voter: PezspCoreCryptoAccountId32, vote: bool }>;
|
||||
/**
|
||||
* A membership bid just happened by vouching. The given account is the candidate's ID and
|
||||
* their offer is the second. The vouching party is the third.
|
||||
**/
|
||||
Vouch: AugmentedEvent<ApiType, [candidateId: AccountId32, offer: u128, vouching: AccountId32], { candidateId: AccountId32, offer: u128, vouching: AccountId32 }>;
|
||||
Vouch: AugmentedEvent<ApiType, [candidateId: PezspCoreCryptoAccountId32, offer: u128, vouching: PezspCoreCryptoAccountId32], { candidateId: PezspCoreCryptoAccountId32, offer: u128, vouching: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1336,11 +1336,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably,
|
||||
* it will not be emitted for staking rewards when they are added to stake.
|
||||
**/
|
||||
Bonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Bonded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account has stopped participating as either a validator or nominator.
|
||||
**/
|
||||
Chilled: AugmentedEvent<ApiType, [stash: AccountId32], { stash: AccountId32 }>;
|
||||
Chilled: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32], { stash: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Report of a controller batch deprecation.
|
||||
**/
|
||||
@@ -1349,7 +1349,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* Staking balance migrated from locks to holds, with any balance that could not be held
|
||||
* is force withdrawn.
|
||||
**/
|
||||
CurrencyMigrated: AugmentedEvent<ApiType, [stash: AccountId32, forceWithdraw: u128], { stash: AccountId32, forceWithdraw: u128 }>;
|
||||
CurrencyMigrated: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, forceWithdraw: u128], { stash: PezspCoreCryptoAccountId32, forceWithdraw: u128 }>;
|
||||
/**
|
||||
* The era payout has been set; the first balance is the validator-payout; the second is
|
||||
* the remainder from the maximum amount of reward.
|
||||
@@ -1362,7 +1362,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A nominator has been kicked from a validator.
|
||||
**/
|
||||
Kicked: AugmentedEvent<ApiType, [nominator: AccountId32, stash: AccountId32], { nominator: AccountId32, stash: AccountId32 }>;
|
||||
Kicked: AugmentedEvent<ApiType, [nominator: PezspCoreCryptoAccountId32, stash: PezspCoreCryptoAccountId32], { nominator: PezspCoreCryptoAccountId32, stash: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* An old slashing report from a prior era was discarded because it could
|
||||
* not be processed.
|
||||
@@ -1371,20 +1371,20 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A Page of stakers rewards are getting paid. `next` is `None` if all pages are claimed.
|
||||
**/
|
||||
PayoutStarted: AugmentedEvent<ApiType, [eraIndex: u32, validatorStash: AccountId32, page: u32, next: Option<u32>], { eraIndex: u32, validatorStash: AccountId32, page: u32, next: Option<u32> }>;
|
||||
PayoutStarted: AugmentedEvent<ApiType, [eraIndex: u32, validatorStash: PezspCoreCryptoAccountId32, page: u32, next: Option<u32>], { eraIndex: u32, validatorStash: PezspCoreCryptoAccountId32, page: u32, next: Option<u32> }>;
|
||||
/**
|
||||
* The nominator has been rewarded by this amount to this destination.
|
||||
**/
|
||||
Rewarded: AugmentedEvent<ApiType, [stash: AccountId32, dest: PezpalletStakingRewardDestination, amount: u128], { stash: AccountId32, dest: PezpalletStakingRewardDestination, amount: u128 }>;
|
||||
Rewarded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, dest: PezpalletStakingRewardDestination, amount: u128], { stash: PezspCoreCryptoAccountId32, dest: PezpalletStakingRewardDestination, amount: u128 }>;
|
||||
/**
|
||||
* A staker (validator or nominator) has been slashed by the given amount.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [staker: AccountId32, amount: u128], { staker: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [staker: PezspCoreCryptoAccountId32, amount: u128], { staker: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A slash for the given validator, for the given percentage of their stake, at the given
|
||||
* era as been reported.
|
||||
**/
|
||||
SlashReported: AugmentedEvent<ApiType, [validator: AccountId32, fraction: Perbill, slashEra: u32], { validator: AccountId32, fraction: Perbill, slashEra: u32 }>;
|
||||
SlashReported: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32, fraction: u32, slashEra: u32], { validator: PezspCoreCryptoAccountId32, fraction: u32, slashEra: u32 }>;
|
||||
/**
|
||||
* Targets size limit reached.
|
||||
**/
|
||||
@@ -1404,16 +1404,16 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account has unbonded this amount.
|
||||
**/
|
||||
Unbonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Unbonded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A validator has set their preferences.
|
||||
**/
|
||||
ValidatorPrefsSet: AugmentedEvent<ApiType, [stash: AccountId32, prefs: PezpalletStakingValidatorPrefs], { stash: AccountId32, prefs: PezpalletStakingValidatorPrefs }>;
|
||||
ValidatorPrefsSet: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, prefs: PezpalletStakingValidatorPrefs], { stash: PezspCoreCryptoAccountId32, prefs: PezpalletStakingValidatorPrefs }>;
|
||||
/**
|
||||
* An account has called `withdraw_unbonded` and removed unbonding chunks worth `Balance`
|
||||
* from the unlocking queue.
|
||||
**/
|
||||
Withdrawn: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Withdrawn: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1462,11 +1462,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account was reaped.
|
||||
**/
|
||||
KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
|
||||
KilledAccount: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], { account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A new account was created.
|
||||
**/
|
||||
NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
|
||||
NewAccount: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], { account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* An invalid authorized upgrade was rejected while trying to apply it.
|
||||
**/
|
||||
@@ -1474,7 +1474,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* On on-chain remark happened.
|
||||
**/
|
||||
Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;
|
||||
Remarked: AugmentedEvent<ApiType, [sender: PezspCoreCryptoAccountId32, hash_: H256], { sender: PezspCoreCryptoAccountId32, hash_: H256 }>;
|
||||
/**
|
||||
* An upgrade was authorized.
|
||||
**/
|
||||
@@ -1489,7 +1489,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
|
||||
* has been paid by `who`.
|
||||
**/
|
||||
TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;
|
||||
TransactionFeePaid: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, actualFee: u128, tip: u128], { who: PezspCoreCryptoAccountId32, actualFee: u128, tip: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1507,7 +1507,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some funds have been allocated.
|
||||
**/
|
||||
Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;
|
||||
Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: PezspCoreCryptoAccountId32], { proposalIndex: u32, award: u128, account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Some of our funds have been burnt.
|
||||
**/
|
||||
@@ -1531,7 +1531,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A new spend proposal has been approved.
|
||||
**/
|
||||
SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;
|
||||
SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: PezspCoreCryptoAccountId32], { proposalIndex: u32, amount: u128, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* We have ended a spend period and will now allocate funds.
|
||||
**/
|
||||
@@ -1593,16 +1593,16 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An \[account\] has become fully vested.
|
||||
**/
|
||||
VestingCompleted: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
|
||||
VestingCompleted: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], { account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A vesting schedule has been created.
|
||||
**/
|
||||
VestingCreated: AugmentedEvent<ApiType, [account: AccountId32, scheduleIndex: u32], { account: AccountId32, scheduleIndex: u32 }>;
|
||||
VestingCreated: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, scheduleIndex: u32], { account: PezspCoreCryptoAccountId32, scheduleIndex: u32 }>;
|
||||
/**
|
||||
* The amount vested has been updated. This could indicate a change in funds available.
|
||||
* The balance given is the amount which is left unvested (and thus locked).
|
||||
**/
|
||||
VestingUpdated: AugmentedEvent<ApiType, [account: AccountId32, unvested: u128], { account: AccountId32, unvested: u128 }>;
|
||||
VestingUpdated: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, unvested: u128], { account: PezspCoreCryptoAccountId32, unvested: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1612,11 +1612,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Moved an account from one bag to another.
|
||||
**/
|
||||
Rebagged: AugmentedEvent<ApiType, [who: AccountId32, from: u64, to: u64], { who: AccountId32, from: u64, to: u64 }>;
|
||||
Rebagged: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, from: u64, to: u64], { who: PezspCoreCryptoAccountId32, from: u64, to: u64 }>;
|
||||
/**
|
||||
* Updated the score of some account to the given amount.
|
||||
**/
|
||||
ScoreUpdated: AugmentedEvent<ApiType, [who: AccountId32, newScore: u64], { who: AccountId32, newScore: u64 }>;
|
||||
ScoreUpdated: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, newScore: u64], { who: PezspCoreCryptoAccountId32, newScore: u64 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -13,7 +13,7 @@ import type { Extrinsic } from '@pezkuwi/types/interfaces/extrinsics';
|
||||
import type { OpaqueMetadata } from '@pezkuwi/types/interfaces/metadata';
|
||||
import type { AccountId32, H256, OriginCaller, RuntimeCall, Slot } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { ParaId, ValidationCodeHash } from '@pezkuwi/types/interfaces/teyrchains';
|
||||
import type { PezkuwiCorePrimitivesInboundDownwardMessage, PezkuwiCorePrimitivesInboundHrmpMessage, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8CandidateCommitments, PezkuwiPrimitivesV8DisputeState, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8GroupRotationInfo, PezkuwiPrimitivesV8OccupiedCoreAssumption, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SessionInfo, PezkuwiPrimitivesV8SlashingDisputeProof, PezkuwiPrimitivesV8SlashingPendingSlashes, PezkuwiPrimitivesV8ValidatorAppPublic, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingAsyncBackingBackingState, PezkuwiPrimitivesVstagingAsyncBackingConstraints, PezkuwiPrimitivesVstagingCandidateEvent, PezkuwiPrimitivesVstagingCommittedCandidateReceiptV2, PezkuwiPrimitivesVstagingCoreState, PezkuwiPrimitivesVstagingScrapedOnChainVotes, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeConfiguration, PezspConsensusBabeEpoch, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyForkVotingProofOpaqueValue, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusBeefyMmrBeefyAuthoritySet, PezspConsensusBeefyValidatorSet, PezspConsensusGrandpaAppPublic, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspMmrPrimitivesError, PezspMmrPrimitivesLeafProof, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, RelayCommonApisInflationInfo, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { PezkuwiCorePrimitivesInboundDownwardMessage, PezkuwiCorePrimitivesInboundHrmpMessage, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8CandidateCommitments, PezkuwiPrimitivesV8DisputeState, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8GroupRotationInfo, PezkuwiPrimitivesV8OccupiedCoreAssumption, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SessionInfo, PezkuwiPrimitivesV8SlashingDisputeProof, PezkuwiPrimitivesV8SlashingPendingSlashes, PezkuwiPrimitivesV8ValidatorAppPublic, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingAsyncBackingBackingState, PezkuwiPrimitivesVstagingAsyncBackingConstraints, PezkuwiPrimitivesVstagingCandidateEvent, PezkuwiPrimitivesVstagingCommittedCandidateReceiptV2, PezkuwiPrimitivesVstagingCoreState, PezkuwiPrimitivesVstagingScrapedOnChainVotes, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeConfiguration, PezspConsensusBabeEpoch, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyForkVotingProofOpaqueValue, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusBeefyMmrBeefyAuthoritySet, PezspConsensusBeefyValidatorSet, PezspConsensusGrandpaAppPublic, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspMmrPrimitivesError, PezspMmrPrimitivesLeafProof, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, RelayCommonApisInflationInfo, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { IExtrinsic, Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedCall<ApiType extends ApiTypes> = AugmentedCall<ApiType>;
|
||||
@@ -239,7 +239,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Converts `Location` to `AccountId`.
|
||||
**/
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<AccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<PezspCoreCryptoAccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
/**
|
||||
* Generic call
|
||||
**/
|
||||
@@ -254,7 +254,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the metadata at a given version.,, If the given `version` isn't supported, this will return `None`., Use [`Self::metadata_versions`] to find out about supported metadata version of the runtime.
|
||||
**/
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<Bytes>>>;
|
||||
/**
|
||||
* Returns the supported metadata versions.,, This can be used to call `metadata_at_version`.
|
||||
**/
|
||||
@@ -320,7 +320,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the bonded account and reward account associated with the pool_id.
|
||||
**/
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[AccountId32, AccountId32]>>>;
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>>;
|
||||
/**
|
||||
* Total balance contributed to the pool.
|
||||
**/
|
||||
|
||||
@@ -8,8 +8,8 @@ import '@pezkuwi/api-base/types/submittable';
|
||||
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Compact, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { AnyNumber, IMethod, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, MultiAddress, Perbill, Percent, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { DicleRuntimeConstantsProxyProxyType, PezframeSupportPreimagesBounded, PezframeSupportScheduleDispatchTime, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SchedulerParams, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingDisputeProof, PezkuwiPrimitivesVstagingInherentData, PezkuwiRuntimeCommonClaimsEcdsaSignature, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesAdjustmentDirection, PezpalletBrokerCoretimeInterfaceCoreAssignment, PezpalletConvictionVotingConviction, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseRawSolution, PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PezpalletMultisigTimepoint, PezpalletNominationPoolsBondExtra, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpPerbill, PezpalletNominationPoolsConfigOpU128, PezpalletNominationPoolsConfigOpU32, PezpalletNominationPoolsPoolState, PezpalletRcMigratorManagerMultisigVote, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientOperatingMode, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingPezpalletConfigOpPerbill, PezpalletStakingPezpalletConfigOpPercent, PezpalletStakingPezpalletConfigOpU128, PezpalletStakingPezpalletConfigOpU32, PezpalletStakingRewardDestination, PezpalletStakingUnlockChunk, PezpalletStakingValidatorPrefs, PezpalletVestingVestingInfo, PezspConsensusBabeDigestsNextConfigDescriptor, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyForkVotingProofAncestryProof, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspNposElectionsElectionScore, PezspNposElectionsSupport, PezspRuntimeMultiSignature, PezspRuntimeMultiSigner, PezspSessionMembershipProof, PezspWeightsWeightV2Weight, StagingDicleRuntimeOriginCaller, StagingDicleRuntimeRuntimeParameters, StagingDicleRuntimeSessionKeys, StagingXcmExecutorAssetTransferTransferType, StagingXcmV5Location, StagingXcmV5Response, XcmV3WeightLimit, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { AccountId, AccountIndex, Address, H256, LookupSource, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { DicleRuntimeConstantsProxyProxyType, PezframeSupportPreimagesBounded, PezframeSupportScheduleDispatchTime, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SchedulerParams, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingDisputeProof, PezkuwiPrimitivesVstagingInherentData, PezkuwiRuntimeCommonClaimsEcdsaSignature, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesAdjustmentDirection, PezpalletBrokerCoretimeInterfaceCoreAssignment, PezpalletConvictionVotingConviction, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseRawSolution, PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PezpalletMultisigTimepoint, PezpalletNominationPoolsBondExtra, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpPerbill, PezpalletNominationPoolsConfigOpU128, PezpalletNominationPoolsConfigOpU32, PezpalletNominationPoolsPoolState, PezpalletRcMigratorManagerMultisigVote, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientOperatingMode, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingPezpalletConfigOpPerbill, PezpalletStakingPezpalletConfigOpPercent, PezpalletStakingPezpalletConfigOpU128, PezpalletStakingPezpalletConfigOpU32, PezpalletStakingRewardDestination, PezpalletStakingUnlockChunk, PezpalletStakingValidatorPrefs, PezpalletVestingVestingInfo, PezspConsensusBabeDigestsNextConfigDescriptor, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyForkVotingProofAncestryProof, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore, PezspNposElectionsSupport, PezspRuntimeMultiAddress, PezspRuntimeMultiSignature, PezspRuntimeMultiSigner, PezspSessionMembershipProof, PezspWeightsWeightV2Weight, StagingDicleRuntimeOriginCaller, StagingDicleRuntimeRuntimeParameters, StagingDicleRuntimeSessionKeys, StagingXcmExecutorAssetTransferTransferType, StagingXcmV5Location, StagingXcmV5Response, XcmV3WeightLimit, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
|
||||
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
|
||||
@@ -138,18 +138,18 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin for this call is `root`.
|
||||
**/
|
||||
forceSetBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
forceSetBalance: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Exactly as `transfer_allow_death`, except the origin must be root and the source account
|
||||
* may be specified.
|
||||
**/
|
||||
forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
|
||||
forceTransfer: AugmentedSubmittable<(source: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Unreserve some balance from a user by force.
|
||||
*
|
||||
* Can only be called by ROOT.
|
||||
**/
|
||||
forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
|
||||
forceUnreserve: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u128]>;
|
||||
/**
|
||||
* Transfer the entire transferable balance from the caller account.
|
||||
*
|
||||
@@ -167,7 +167,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* transfer everything except at least the existential deposit, which will guarantee to
|
||||
* keep the sender account alive (true).
|
||||
**/
|
||||
transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
|
||||
transferAll: AugmentedSubmittable<(dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, bool]>;
|
||||
/**
|
||||
* Transfer some liquid free balance to another account.
|
||||
*
|
||||
@@ -177,7 +177,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin for this call must be `Signed` by the transactor.
|
||||
**/
|
||||
transferAllowDeath: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
transferAllowDeath: AugmentedSubmittable<(dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
|
||||
* kill the origin account.
|
||||
@@ -186,7 +186,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* [`transfer_allow_death`]: struct.Pallet.html#method.transfer
|
||||
**/
|
||||
transferKeepAlive: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
transferKeepAlive: AugmentedSubmittable<(dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Upgrade a specified account.
|
||||
*
|
||||
@@ -197,7 +197,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* be upgraded. (We let some not have to be upgraded just in order to allow for the
|
||||
* possibility of churn).
|
||||
**/
|
||||
upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
upgradeAccounts: AugmentedSubmittable<(who: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -303,7 +303,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - O(1).
|
||||
**/
|
||||
approveBountyWithCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress, Compact<u128>]>;
|
||||
approveBountyWithCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Award bounty to a beneficiary account. The beneficiary will be able to claim the funds
|
||||
* after a delay.
|
||||
@@ -316,7 +316,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - O(1).
|
||||
**/
|
||||
awardBounty: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress]>;
|
||||
awardBounty: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Claim the payout from an awarded bounty after payout delay.
|
||||
*
|
||||
@@ -393,7 +393,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - O(1).
|
||||
**/
|
||||
proposeCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress, Compact<u128>]>;
|
||||
proposeCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Unassign curator from a bounty.
|
||||
*
|
||||
@@ -483,7 +483,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `child_bounty_id`: Index of child bounty.
|
||||
* - `beneficiary`: Beneficiary account.
|
||||
**/
|
||||
awardChildBounty: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, MultiAddress]>;
|
||||
awardChildBounty: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Claim the payout from an awarded child-bounty after payout delay.
|
||||
*
|
||||
@@ -545,7 +545,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `curator`: Address of child-bounty curator.
|
||||
* - `fee`: payment fee to child-bounty curator for execution.
|
||||
**/
|
||||
proposeCurator: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, curator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, MultiAddress, Compact<u128>]>;
|
||||
proposeCurator: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, curator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Unassign curator from a child-bounty.
|
||||
*
|
||||
@@ -637,7 +637,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Total Complexity: O(1)
|
||||
* </weight>
|
||||
**/
|
||||
claim: AugmentedSubmittable<(dest: AccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature) => SubmittableExtrinsic<ApiType>, [AccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature]>;
|
||||
claim: AugmentedSubmittable<(dest: PezspCoreCryptoAccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature]>;
|
||||
/**
|
||||
* Make a claim to collect your DOTs by signing a statement.
|
||||
*
|
||||
@@ -667,7 +667,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Total Complexity: O(1)
|
||||
* </weight>
|
||||
**/
|
||||
claimAttest: AugmentedSubmittable<(dest: AccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature, statement: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature, Bytes]>;
|
||||
claimAttest: AugmentedSubmittable<(dest: PezspCoreCryptoAccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature, statement: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature, Bytes]>;
|
||||
/**
|
||||
* Mint a new claim to collect DOTs.
|
||||
*
|
||||
@@ -686,7 +686,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* </weight>
|
||||
**/
|
||||
mintClaim: AugmentedSubmittable<(who: PezkuwiRuntimeCommonClaimsEthereumAddress, value: u128 | AnyNumber | Uint8Array, vestingSchedule: Option<ITuple<[u128, u128, u32]>> | null | Uint8Array | ITuple<[u128, u128, u32]> | [u128 | AnyNumber | Uint8Array, u128 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], statement: Option<PezkuwiRuntimeCommonClaimsStatementKind> | null | Uint8Array | PezkuwiRuntimeCommonClaimsStatementKind) => SubmittableExtrinsic<ApiType>, [PezkuwiRuntimeCommonClaimsEthereumAddress, u128, Option<ITuple<[u128, u128, u32]>>, Option<PezkuwiRuntimeCommonClaimsStatementKind>]>;
|
||||
moveClaim: AugmentedSubmittable<(old: PezkuwiRuntimeCommonClaimsEthereumAddress, updated: PezkuwiRuntimeCommonClaimsEthereumAddress, maybePreclaim: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsEthereumAddress, Option<AccountId32>]>;
|
||||
moveClaim: AugmentedSubmittable<(old: PezkuwiRuntimeCommonClaimsEthereumAddress, updated: PezkuwiRuntimeCommonClaimsEthereumAddress, maybePreclaim: Option<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsEthereumAddress, Option<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -846,7 +846,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
/**
|
||||
* Set the on demand (parathreads) fee variability.
|
||||
**/
|
||||
setOnDemandFeeVariability: AugmentedSubmittable<(updated: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Perbill]>;
|
||||
setOnDemandFeeVariability: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
||||
/**
|
||||
* Set the on demand (parathreads) queue max size.
|
||||
**/
|
||||
@@ -854,7 +854,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
/**
|
||||
* Set the on demand (parathreads) fee variability.
|
||||
**/
|
||||
setOnDemandTargetQueueUtilization: AugmentedSubmittable<(updated: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Perbill]>;
|
||||
setOnDemandTargetQueueUtilization: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
||||
/**
|
||||
* Set the availability period for paras.
|
||||
**/
|
||||
@@ -918,7 +918,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Weight: `O(R)` where R is the number of polls the voter delegating to has
|
||||
* voted on. Weight is initially charged as if maximum votes, but is refunded later.
|
||||
**/
|
||||
delegate: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, to: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, conviction: PezpalletConvictionVotingConviction, balance: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, MultiAddress, PezpalletConvictionVotingConviction, u128]>;
|
||||
delegate: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, to: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, conviction: PezpalletConvictionVotingConviction, balance: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, PezspRuntimeMultiAddress, PezpalletConvictionVotingConviction, u128]>;
|
||||
/**
|
||||
* Remove a vote for a poll.
|
||||
*
|
||||
@@ -937,7 +937,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Weight: `O(R + log R)` where R is the number of polls that `target` has voted on.
|
||||
* Weight is calculated for the maximum number of vote.
|
||||
**/
|
||||
removeOtherVote: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, clazz: u16 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u16, u32]>;
|
||||
removeOtherVote: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, clazz: u16 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u16, u32]>;
|
||||
/**
|
||||
* Remove a vote for a poll.
|
||||
*
|
||||
@@ -998,7 +998,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Weight: `O(R)` with R number of vote of target.
|
||||
**/
|
||||
unlock: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, MultiAddress]>;
|
||||
unlock: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Vote in a poll. If `vote.is_aye()`, the vote is to enact the proposal;
|
||||
* otherwise it is a vote to keep the status quo.
|
||||
@@ -1029,7 +1029,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* -`end_hint`: An optional hint as to when this particular set of instructions will end.
|
||||
**/
|
||||
assignCore: AugmentedSubmittable<(core: u16 | AnyNumber | Uint8Array, begin: u32 | AnyNumber | Uint8Array, assignment: Vec<ITuple<[PezpalletBrokerCoretimeInterfaceCoreAssignment, u16]>> | ([PezpalletBrokerCoretimeInterfaceCoreAssignment, u16 | AnyNumber | Uint8Array])[], endHint: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [u16, u32, Vec<ITuple<[PezpalletBrokerCoretimeInterfaceCoreAssignment, u16]>>, Option<u32>]>;
|
||||
creditAccount: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u128]>;
|
||||
creditAccount: AugmentedSubmittable<(who: PezspCoreCryptoAccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u128]>;
|
||||
/**
|
||||
* Request the configuration to be updated with the specified number of cores. Warning:
|
||||
* Since this only schedules a configuration update, it takes two sessions to come into
|
||||
@@ -1120,7 +1120,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `who`: The account whose contribution should be withdrawn.
|
||||
* - `index`: The parachain to whose crowdloan the contribution was made.
|
||||
**/
|
||||
withdraw: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array, index: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, Compact<u32>]>;
|
||||
withdraw: AugmentedSubmittable<(who: PezspCoreCryptoAccountId32 | string | Uint8Array, index: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, Compact<u32>]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -1144,7 +1144,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* feasibility check itself can in principle cause the election process to fail (due to
|
||||
* memory/weight constrains).
|
||||
**/
|
||||
setEmergencyElectionResult: AugmentedSubmittable<(supports: Vec<ITuple<[AccountId32, PezspNposElectionsSupport]>> | ([AccountId32 | string | Uint8Array, PezspNposElectionsSupport])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, PezspNposElectionsSupport]>>]>;
|
||||
setEmergencyElectionResult: AugmentedSubmittable<(supports: Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsSupport]>> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsSupport]>>]>;
|
||||
/**
|
||||
* Set a new value for `MinimumUntrustedScore`.
|
||||
*
|
||||
@@ -1268,7 +1268,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Weight: `O(1)`
|
||||
**/
|
||||
addMember: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
addMember: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Remove votes from the given poll. It must have ended.
|
||||
*
|
||||
@@ -1291,7 +1291,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Weight: `O(1)`, less if the member's index is highest in its rank.
|
||||
**/
|
||||
demoteMember: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
demoteMember: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Exchanges a member with a new account and the same existing rank.
|
||||
*
|
||||
@@ -1299,7 +1299,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `who`: Account of existing member of rank greater than zero to be exchanged.
|
||||
* - `new_who`: New Account of existing member of rank greater than zero to exchanged to.
|
||||
**/
|
||||
exchangeMember: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newWho: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress]>;
|
||||
exchangeMember: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, newWho: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Increment the rank of an existing member by one.
|
||||
*
|
||||
@@ -1308,7 +1308,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Weight: `O(1)`
|
||||
**/
|
||||
promoteMember: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
promoteMember: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Remove the member entirely.
|
||||
*
|
||||
@@ -1318,7 +1318,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Weight: `O(min_rank)`.
|
||||
**/
|
||||
removeMember: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, minRank: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u16]>;
|
||||
removeMember: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, minRank: u16 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u16]>;
|
||||
/**
|
||||
* Add an aye or nay vote for the sender to the given proposal.
|
||||
*
|
||||
@@ -1628,7 +1628,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
forceTransfer: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, index: u32 | AnyNumber | Uint8Array, freeze: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32, bool]>;
|
||||
forceTransfer: AugmentedSubmittable<(updated: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, index: u32 | AnyNumber | Uint8Array, freeze: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32, bool]>;
|
||||
/**
|
||||
* Free up an index owned by the sender.
|
||||
*
|
||||
@@ -1686,7 +1686,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
transfer: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32]>;
|
||||
transfer: AugmentedSubmittable<(updated: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -1763,7 +1763,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit
|
||||
* taken for its lifetime of `DepositBase + threshold * DepositFactor`.
|
||||
**/
|
||||
approveAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PezpalletMultisigTimepoint>, U8aFixed, PezspWeightsWeightV2Weight]>;
|
||||
approveAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, Option<PezpalletMultisigTimepoint>, U8aFixed, PezspWeightsWeightV2Weight]>;
|
||||
/**
|
||||
* Register approval for a dispatch to be made from a deterministic composite account if
|
||||
* approved by a total of `threshold - 1` of `other_signatories`.
|
||||
@@ -1805,7 +1805,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit
|
||||
* taken for its lifetime of `DepositBase + threshold * DepositFactor`.
|
||||
**/
|
||||
asMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, call: RuntimeCall | IMethod | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PezpalletMultisigTimepoint>, RuntimeCall, PezspWeightsWeightV2Weight]>;
|
||||
asMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, call: RuntimeCall | IMethod | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, Option<PezpalletMultisigTimepoint>, RuntimeCall, PezspWeightsWeightV2Weight]>;
|
||||
/**
|
||||
* Immediately dispatch a multi-signature call using a single approval from the caller.
|
||||
*
|
||||
@@ -1820,7 +1820,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* O(Z + C) where Z is the length of the call and C its execution weight.
|
||||
**/
|
||||
asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>, RuntimeCall]>;
|
||||
asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>, RuntimeCall]>;
|
||||
/**
|
||||
* Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously
|
||||
* for this operation will be unreserved on success.
|
||||
@@ -1844,7 +1844,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - I/O: 1 read `O(S)`, one remove.
|
||||
* - Storage: removes one item.
|
||||
**/
|
||||
cancelAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], timepoint: PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, PezpalletMultisigTimepoint, U8aFixed]>;
|
||||
cancelAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, timepoint: PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, PezpalletMultisigTimepoint, U8aFixed]>;
|
||||
/**
|
||||
* Poke the deposit reserved for an existing multisig operation.
|
||||
*
|
||||
@@ -1860,7 +1860,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Emits `DepositPoked` if successful.
|
||||
**/
|
||||
pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, U8aFixed]>;
|
||||
pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, U8aFixed]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -1888,7 +1888,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
||||
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
||||
**/
|
||||
applySlash: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
applySlash: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Bond `extra` more funds from `origin` into the pool to which they already belong.
|
||||
*
|
||||
@@ -1910,7 +1910,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* `other` members assuming set_claim_permission for the given member is
|
||||
* `PermissionlessCompound` or `PermissionlessAll`.
|
||||
**/
|
||||
bondExtraOther: AugmentedSubmittable<(member: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, extra: PezpalletNominationPoolsBondExtra) => SubmittableExtrinsic<ApiType>, [MultiAddress, PezpalletNominationPoolsBondExtra]>;
|
||||
bondExtraOther: AugmentedSubmittable<(member: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, extra: PezpalletNominationPoolsBondExtra) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezpalletNominationPoolsBondExtra]>;
|
||||
/**
|
||||
* Chill on behalf of the pool.
|
||||
*
|
||||
@@ -1967,7 +1967,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Pool member `other` must have a `PermissionlessWithdraw` or `PermissionlessAll` claim
|
||||
* permission for this call to be successful.
|
||||
**/
|
||||
claimPayoutOther: AugmentedSubmittable<(other: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
claimPayoutOther: AugmentedSubmittable<(other: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Create a new delegation pool.
|
||||
*
|
||||
@@ -1987,7 +1987,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* In addition to `amount`, the caller will transfer the existential deposit; so the caller
|
||||
* needs at have at least `amount + existential_deposit` transferable.
|
||||
**/
|
||||
create: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, nominator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, bouncer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress, MultiAddress, MultiAddress]>;
|
||||
create: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, nominator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, bouncer: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Create a new delegation pool with a previously used pool id
|
||||
*
|
||||
@@ -1996,7 +1996,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* same as `create` with the inclusion of
|
||||
* * `pool_id` - `A valid PoolId.
|
||||
**/
|
||||
createWithPoolId: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, nominator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, bouncer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, poolId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress, MultiAddress, MultiAddress, u32]>;
|
||||
createWithPoolId: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, nominator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, bouncer: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, poolId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Stake funds with a pool. The amount to bond is delegated (or transferred based on
|
||||
* [`adapter::StakeStrategyType`]) from the member to the pool account and immediately
|
||||
@@ -2027,7 +2027,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* If the pool has migrated to delegation based staking, the staked tokens of pool members
|
||||
* can be moved and held in their own account. See [`adapter::DelegateStake`]
|
||||
**/
|
||||
migrateDelegation: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
migrateDelegation: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Migrate pool from [`adapter::StakeStrategyType::Transfer`] to
|
||||
* [`adapter::StakeStrategyType::Delegate`].
|
||||
@@ -2054,7 +2054,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* In addition to a `root` or `nominator` role of `origin`, the pool's depositor needs to
|
||||
* have at least `depositor_min_bond` in the pool to start nominating.
|
||||
**/
|
||||
nominate: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, validators: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, Vec<AccountId32>]>;
|
||||
nominate: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, validators: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Call `withdraw_unbonded` for the pools account. This call can be made by any account.
|
||||
*
|
||||
@@ -2081,7 +2081,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* - If a `None` is supplied to `new_commission`, existing commission will be removed.
|
||||
**/
|
||||
setCommission: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newCommission: Option<ITuple<[Perbill, AccountId32]>> | null | Uint8Array | ITuple<[Perbill, AccountId32]> | [Perbill | AnyNumber | Uint8Array, AccountId32 | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[Perbill, AccountId32]>>]>;
|
||||
setCommission: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newCommission: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>]>;
|
||||
/**
|
||||
* Set the commission change rate for a pool.
|
||||
*
|
||||
@@ -2103,7 +2103,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - Current commission will be lowered in the event it is higher than a new max
|
||||
* commission.
|
||||
**/
|
||||
setCommissionMax: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, maxCommission: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Perbill]>;
|
||||
setCommissionMax: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, maxCommission: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
|
||||
/**
|
||||
* Update configurations for the nomination pools. The origin for this call must be
|
||||
* [`Config::AdminOrigin`].
|
||||
@@ -2171,7 +2171,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* in which case, the result of this call will likely be the `NoMoreChunks` error from the
|
||||
* staking system.
|
||||
**/
|
||||
unbond: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, unbondingPoints: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
unbond: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, unbondingPoints: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Update the roles of the pool.
|
||||
*
|
||||
@@ -2181,7 +2181,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* It emits an event, notifying UIs of the role change. This event is quite relevant to
|
||||
* most pool members and they should be informed of changes to pool roles.
|
||||
**/
|
||||
updateRoles: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newRoot: PezpalletNominationPoolsConfigOpAccountId32, newNominator: PezpalletNominationPoolsConfigOpAccountId32, newBouncer: PezpalletNominationPoolsConfigOpAccountId32) => SubmittableExtrinsic<ApiType>, [u32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32]>;
|
||||
updateRoles: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newRoot: PezpalletNominationPoolsConfigOpAccountId32 | string | Uint8Array, newNominator: PezpalletNominationPoolsConfigOpAccountId32 | string | Uint8Array, newBouncer: PezpalletNominationPoolsConfigOpAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32]>;
|
||||
/**
|
||||
* Withdraw unbonded funds from `member_account`. If no bonded funds can be unbonded, an
|
||||
* error is returned.
|
||||
@@ -2206,7 +2206,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* withdraw. This calculation adds some weight overhead and is only defensive. In reality,
|
||||
* pool slashes must have been already applied via permissionless [`Call::apply_slash`].
|
||||
**/
|
||||
withdrawUnbonded: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32]>;
|
||||
withdrawUnbonded: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -2464,7 +2464,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `delay`: The announcement period required of the initial proxy. Will generally be
|
||||
* zero.
|
||||
**/
|
||||
addProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, DicleRuntimeConstantsProxyProxyType, u32]>;
|
||||
addProxy: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, DicleRuntimeConstantsProxyProxyType, u32]>;
|
||||
/**
|
||||
* Publish the hash of a proxy-call that will be made in the future.
|
||||
*
|
||||
@@ -2482,7 +2482,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `real`: The account that the proxy will make a call on behalf of.
|
||||
* - `call_hash`: The hash of the call to be made by the `real` account.
|
||||
**/
|
||||
announce: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
||||
announce: AugmentedSubmittable<(real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, H256]>;
|
||||
/**
|
||||
* Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
|
||||
* initialize it with a proxy of `proxy_type` for `origin` sender.
|
||||
@@ -2522,7 +2522,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Fails with `NoPermission` in case the caller is not a previously created pure
|
||||
* account whose `create_pure` call has corresponding parameters.
|
||||
**/
|
||||
killPure: AugmentedSubmittable<(spawner: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: DicleRuntimeConstantsProxyProxyType, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, DicleRuntimeConstantsProxyProxyType, u16, Compact<u32>, Compact<u32>]>;
|
||||
killPure: AugmentedSubmittable<(spawner: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, proxyType: DicleRuntimeConstantsProxyProxyType, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, DicleRuntimeConstantsProxyProxyType, u16, Compact<u32>, Compact<u32>]>;
|
||||
/**
|
||||
* Poke / Adjust deposits made for proxies and announcements based on current values.
|
||||
* This can be used by accounts to possibly lower their locked amount.
|
||||
@@ -2545,7 +2545,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
|
||||
* - `call`: The call to be made by the `real` account.
|
||||
**/
|
||||
proxy: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<DicleRuntimeConstantsProxyProxyType> | null | Uint8Array | DicleRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<DicleRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
proxy: AugmentedSubmittable<(real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, forceProxyType: Option<DicleRuntimeConstantsProxyProxyType> | null | Uint8Array | DicleRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Option<DicleRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
/**
|
||||
* Dispatch the given `call` from an account that the sender is authorized for through
|
||||
* `add_proxy`.
|
||||
@@ -2559,7 +2559,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
|
||||
* - `call`: The call to be made by the `real` account.
|
||||
**/
|
||||
proxyAnnounced: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<DicleRuntimeConstantsProxyProxyType> | null | Uint8Array | DicleRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<DicleRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
proxyAnnounced: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, forceProxyType: Option<DicleRuntimeConstantsProxyProxyType> | null | Uint8Array | DicleRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, Option<DicleRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
/**
|
||||
* Remove the given announcement of a delegate.
|
||||
*
|
||||
@@ -2572,7 +2572,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `delegate`: The account that previously announced the call.
|
||||
* - `call_hash`: The hash of the call to be made.
|
||||
**/
|
||||
rejectAnnouncement: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
||||
rejectAnnouncement: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, H256]>;
|
||||
/**
|
||||
* Remove a given announcement.
|
||||
*
|
||||
@@ -2585,7 +2585,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `real`: The account that the proxy will make a call on behalf of.
|
||||
* - `call_hash`: The hash of the call to be made by the `real` account.
|
||||
**/
|
||||
removeAnnouncement: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
||||
removeAnnouncement: AugmentedSubmittable<(real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, H256]>;
|
||||
/**
|
||||
* Unregister all proxy accounts for the sender.
|
||||
*
|
||||
@@ -2604,7 +2604,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `proxy`: The account that the `caller` would like to remove as a proxy.
|
||||
* - `proxy_type`: The permissions currently enabled for the removed proxy account.
|
||||
**/
|
||||
removeProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, DicleRuntimeConstantsProxyProxyType, u32]>;
|
||||
removeProxy: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, proxyType: DicleRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, DicleRuntimeConstantsProxyProxyType, u32]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -2633,7 +2633,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The accounts must have no consumers references.
|
||||
**/
|
||||
preserveAccounts: AugmentedSubmittable<(accounts: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
preserveAccounts: AugmentedSubmittable<(accounts: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Receive a query response from the Asset Hub for a previously sent xcm message.
|
||||
**/
|
||||
@@ -2683,14 +2683,14 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The canceller can only stop scheduled migration.
|
||||
**/
|
||||
setCanceller: AugmentedSubmittable<(updated: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [Option<AccountId32>]>;
|
||||
setCanceller: AugmentedSubmittable<(updated: Option<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Set the manager account id.
|
||||
*
|
||||
* The manager has the similar to [`Config::AdminOrigin`] privileges except that it
|
||||
* can not set the manager account id via `set_manager` call.
|
||||
**/
|
||||
setManager: AugmentedSubmittable<(updated: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [Option<AccountId32>]>;
|
||||
setManager: AugmentedSubmittable<(updated: Option<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Set the unprocessed message buffer size.
|
||||
*
|
||||
@@ -2732,7 +2732,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `account`: The recovered account you want to make a call on-behalf-of.
|
||||
* - `call`: The call you want to make with the recovered account.
|
||||
**/
|
||||
asRecovered: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, RuntimeCall]>;
|
||||
asRecovered: AugmentedSubmittable<(account: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, RuntimeCall]>;
|
||||
/**
|
||||
* Cancel the ability to use `as_recovered` for `account`.
|
||||
*
|
||||
@@ -2742,7 +2742,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Parameters:
|
||||
* - `account`: The recovered account you are able to call on-behalf-of.
|
||||
**/
|
||||
cancelRecovered: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
cancelRecovered: AugmentedSubmittable<(account: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Allow a successful rescuer to claim their recovered account.
|
||||
*
|
||||
@@ -2754,7 +2754,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `account`: The lost account that you want to claim has been successfully recovered by
|
||||
* you.
|
||||
**/
|
||||
claimRecovery: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
claimRecovery: AugmentedSubmittable<(account: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* As the controller of a recoverable account, close an active recovery
|
||||
* process for your account.
|
||||
@@ -2768,7 +2768,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Parameters:
|
||||
* - `rescuer`: The account trying to rescue this recoverable account.
|
||||
**/
|
||||
closeRecovery: AugmentedSubmittable<(rescuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
closeRecovery: AugmentedSubmittable<(rescuer: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Create a recovery configuration for your account. This makes your account recoverable.
|
||||
*
|
||||
@@ -2787,7 +2787,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `delay_period`: The number of blocks after a recovery attempt is initialized that
|
||||
* needs to pass before the account can be recovered.
|
||||
**/
|
||||
createRecovery: AugmentedSubmittable<(friends: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], threshold: u16 | AnyNumber | Uint8Array, delayPeriod: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>, u16, u32]>;
|
||||
createRecovery: AugmentedSubmittable<(friends: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, threshold: u16 | AnyNumber | Uint8Array, delayPeriod: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>, u16, u32]>;
|
||||
/**
|
||||
* Initiate the process for recovering a recoverable account.
|
||||
*
|
||||
@@ -2801,7 +2801,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `account`: The lost account that you want to recover. This account needs to be
|
||||
* recoverable (i.e. have a recovery configuration).
|
||||
**/
|
||||
initiateRecovery: AugmentedSubmittable<(account: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
initiateRecovery: AugmentedSubmittable<(account: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Poke deposits for recovery configurations and / or active recoveries.
|
||||
*
|
||||
@@ -2827,7 +2827,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Emits `DepositPoked` if any deposit is updated.
|
||||
* Multiple events may be emitted in case both types of deposits are updated.
|
||||
**/
|
||||
pokeDeposit: AugmentedSubmittable<(maybeAccount: Option<MultiAddress> | null | Uint8Array | MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string) => SubmittableExtrinsic<ApiType>, [Option<MultiAddress>]>;
|
||||
pokeDeposit: AugmentedSubmittable<(maybeAccount: Option<PezspRuntimeMultiAddress> | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<PezspRuntimeMultiAddress>]>;
|
||||
/**
|
||||
* Remove the recovery process for your account. Recovered accounts are still accessible.
|
||||
*
|
||||
@@ -2852,7 +2852,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `lost`: The "lost account" to be recovered.
|
||||
* - `rescuer`: The "rescuer account" which can call as the lost account.
|
||||
**/
|
||||
setRecovered: AugmentedSubmittable<(lost: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, rescuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress]>;
|
||||
setRecovered: AugmentedSubmittable<(lost: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, rescuer: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Allow a "friend" of a recoverable account to vouch for an active recovery
|
||||
* process for that account.
|
||||
@@ -2867,7 +2867,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* The combination of these two parameters must point to an active recovery
|
||||
* process.
|
||||
**/
|
||||
vouchRecovery: AugmentedSubmittable<(lost: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, rescuer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress]>;
|
||||
vouchRecovery: AugmentedSubmittable<(lost: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, rescuer: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -2993,7 +2993,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* The deposit taken can be specified for this registration. Any `ParaId`
|
||||
* can be registered, including sub-1000 IDs which are System Parachains.
|
||||
**/
|
||||
forceRegister: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array, deposit: u128 | AnyNumber | Uint8Array, id: u32 | AnyNumber | Uint8Array, genesisHead: Bytes | string | Uint8Array, validationCode: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u128, u32, Bytes, Bytes]>;
|
||||
forceRegister: AugmentedSubmittable<(who: PezspCoreCryptoAccountId32 | string | Uint8Array, deposit: u128 | AnyNumber | Uint8Array, id: u32 | AnyNumber | Uint8Array, genesisHead: Bytes | string | Uint8Array, validationCode: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u128, u32, Bytes, Bytes]>;
|
||||
/**
|
||||
* Register head data and validation code for a reserved Para Id.
|
||||
*
|
||||
@@ -3199,7 +3199,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin for this call must match `T::ForceOrigin`.
|
||||
**/
|
||||
forceLease: AugmentedSubmittable<(para: u32 | AnyNumber | Uint8Array, leaser: AccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, periodBegin: u32 | AnyNumber | Uint8Array, periodCount: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, AccountId32, u128, u32, u32]>;
|
||||
forceLease: AugmentedSubmittable<(para: u32 | AnyNumber | Uint8Array, leaser: PezspCoreCryptoAccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, periodBegin: u32 | AnyNumber | Uint8Array, periodCount: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PezspCoreCryptoAccountId32, u128, u32, u32]>;
|
||||
/**
|
||||
* Try to onboard a parachain that has a lease for the current lease period.
|
||||
*
|
||||
@@ -3221,7 +3221,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Founder, only after the period for voting has ended and only when the candidate is not
|
||||
* clearly rejected.
|
||||
**/
|
||||
bestowMembership: AugmentedSubmittable<(candidate: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
bestowMembership: AugmentedSubmittable<(candidate: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* A user outside of the society can make a bid for entry.
|
||||
*
|
||||
@@ -3244,7 +3244,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* May be called by any Signed origin, but only after the candidate's candidacy is ended.
|
||||
**/
|
||||
cleanupCandidacy: AugmentedSubmittable<(candidate: AccountId32 | string | Uint8Array, max: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32]>;
|
||||
cleanupCandidacy: AugmentedSubmittable<(candidate: PezspCoreCryptoAccountId32 | string | Uint8Array, max: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Remove up to `max` stale votes for the defender in the given `challenge_round`.
|
||||
*
|
||||
@@ -3276,7 +3276,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The bid deposit is lost and the voucher is banned.
|
||||
**/
|
||||
dropCandidate: AugmentedSubmittable<(candidate: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
dropCandidate: AugmentedSubmittable<(candidate: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Found the society.
|
||||
*
|
||||
@@ -3296,7 +3296,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Complexity: O(1)
|
||||
**/
|
||||
foundSociety: AugmentedSubmittable<(founder: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, maxMembers: u32 | AnyNumber | Uint8Array, maxIntake: u32 | AnyNumber | Uint8Array, maxStrikes: u32 | AnyNumber | Uint8Array, candidateDeposit: u128 | AnyNumber | Uint8Array, rules: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32, u32, u32, u128, Bytes]>;
|
||||
foundSociety: AugmentedSubmittable<(founder: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, maxMembers: u32 | AnyNumber | Uint8Array, maxIntake: u32 | AnyNumber | Uint8Array, maxStrikes: u32 | AnyNumber | Uint8Array, candidateDeposit: u128 | AnyNumber | Uint8Array, rules: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32, u32, u32, u128, Bytes]>;
|
||||
/**
|
||||
* Allow suspension judgement origin to make judgement on a suspended member.
|
||||
*
|
||||
@@ -3313,7 +3313,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `forgive` - A boolean representing whether the suspension judgement origin forgives
|
||||
* (`true`) or rejects (`false`) a suspended member.
|
||||
**/
|
||||
judgeSuspendedMember: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forgive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
|
||||
judgeSuspendedMember: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, forgive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, bool]>;
|
||||
/**
|
||||
* Remove the candidate's application from the society. Callable only by the Signed origin
|
||||
* of the Founder, only after the period for voting has ended, and only when they do not
|
||||
@@ -3321,7 +3321,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Any bid deposit is lost and voucher is banned.
|
||||
**/
|
||||
kickCandidate: AugmentedSubmittable<(candidate: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
kickCandidate: AugmentedSubmittable<(candidate: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Transfer the first matured payout for the sender and remove it from the records.
|
||||
*
|
||||
@@ -3401,7 +3401,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `approve`: A boolean which says if the candidate should be approved (`true`) or
|
||||
* rejected (`false`).
|
||||
**/
|
||||
vote: AugmentedSubmittable<(candidate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, approve: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
|
||||
vote: AugmentedSubmittable<(candidate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, approve: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, bool]>;
|
||||
/**
|
||||
* As a member, vouch for someone to join society by placing a bid on their behalf.
|
||||
*
|
||||
@@ -3421,7 +3421,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `tip`: Your cut of the total `value` payout when the candidate is inducted into
|
||||
* the society. Tips larger than `value` will be saturated upon payout.
|
||||
**/
|
||||
vouch: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: u128 | AnyNumber | Uint8Array, tip: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128, u128]>;
|
||||
vouch: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, value: u128 | AnyNumber | Uint8Array, tip: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u128, u128]>;
|
||||
/**
|
||||
* Repay the payment previously given to the member with the signed origin, remove any
|
||||
* pending payments, and elevate them from rank 0 to rank 1.
|
||||
@@ -3519,7 +3519,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* This can be helpful if bond requirements are updated, and we need to remove old users
|
||||
* who do not satisfy these requirements.
|
||||
**/
|
||||
chillOther: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
chillOther: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Updates a batch of controller accounts to their corresponding stash account if they are
|
||||
* not the same. Ignores any controller accounts that do not exist, and does not operate if
|
||||
@@ -3529,13 +3529,13 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin must be `T::AdminOrigin`.
|
||||
**/
|
||||
deprecateControllerBatch: AugmentedSubmittable<(controllers: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
deprecateControllerBatch: AugmentedSubmittable<(controllers: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Force a validator to have at least the minimum commission. This will not affect a
|
||||
* validator who already has a commission greater than or equal to the minimum. Any account
|
||||
* can call this.
|
||||
**/
|
||||
forceApplyMinCommission: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
forceApplyMinCommission: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Force there to be a new era at the end of the next session. After this, it will be
|
||||
* reset to normal (non-forced) behaviour.
|
||||
@@ -3591,7 +3591,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `num_slashing_spans`: Refer to comments on [`Call::withdraw_unbonded`] for more
|
||||
* details.
|
||||
**/
|
||||
forceUnstake: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32]>;
|
||||
forceUnstake: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Increments the ideal number of validators up to maximum of
|
||||
* `ElectionProviderBase::MaxWinners`.
|
||||
@@ -3615,7 +3615,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Note: Making this call only makes sense if you first set the validator preferences to
|
||||
* block any further nominations.
|
||||
**/
|
||||
kick: AugmentedSubmittable<(who: Vec<MultiAddress> | (MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<MultiAddress>]>;
|
||||
kick: AugmentedSubmittable<(who: Vec<PezspRuntimeMultiAddress> | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspRuntimeMultiAddress>]>;
|
||||
/**
|
||||
* This function allows governance to manually slash a validator and is a
|
||||
* **fallback mechanism**.
|
||||
@@ -3639,7 +3639,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* will be applied.
|
||||
* - The slash will be deferred by `SlashDeferDuration` eras before being enacted.
|
||||
**/
|
||||
manualSlash: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, slashFraction: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, Perbill]>;
|
||||
manualSlash: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, slashFraction: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* Removes the legacy Staking locks if they exist.
|
||||
*
|
||||
@@ -3649,7 +3649,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The fee is waived if the migration is successful.
|
||||
**/
|
||||
migrateCurrency: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
migrateCurrency: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Declare the desire to nominate `targets` for the origin controller.
|
||||
*
|
||||
@@ -3662,7 +3662,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* which is capped at CompactAssignments::LIMIT (T::MaxNominations).
|
||||
* - Both the reads and writes follow a similar pattern.
|
||||
**/
|
||||
nominate: AugmentedSubmittable<(targets: Vec<MultiAddress> | (MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<MultiAddress>]>;
|
||||
nominate: AugmentedSubmittable<(targets: Vec<PezspRuntimeMultiAddress> | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspRuntimeMultiAddress>]>;
|
||||
/**
|
||||
* Pay out next page of the stakers behind a validator for the given era.
|
||||
*
|
||||
@@ -3678,7 +3678,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* If all pages are claimed, it returns an error `InvalidPage`.
|
||||
**/
|
||||
payoutStakers: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32]>;
|
||||
payoutStakers: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Pay out a page of the stakers behind a validator for the given era and page.
|
||||
*
|
||||
@@ -3698,7 +3698,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* and so it should not be assumed the highest staker would be on the topmost page and vice
|
||||
* versa. If rewards are not claimed in [`Config::HistoryDepth`] eras, they are lost.
|
||||
**/
|
||||
payoutStakersByPage: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, page: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, u32]>;
|
||||
payoutStakersByPage: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, page: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* Remove all data structures concerning a staker/stash once it is at a state where it can
|
||||
* be considered `dust` in the staking system. The requirements are:
|
||||
@@ -3719,7 +3719,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `num_slashing_spans`: Refer to comments on [`Call::withdraw_unbonded`] for more
|
||||
* details.
|
||||
**/
|
||||
reapStash: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32]>;
|
||||
reapStash: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Rebond a portion of the stash scheduled to be unlocked.
|
||||
*
|
||||
@@ -3743,7 +3743,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ledger associated with the stash. If the input parameters are not set, the ledger will
|
||||
* be reset values from on-chain state.
|
||||
**/
|
||||
restoreLedger: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array, maybeController: Option<AccountId32> | null | Uint8Array | AccountId32 | string, maybeTotal: Option<u128> | null | Uint8Array | u128 | AnyNumber, maybeUnlocking: Option<Vec<PezpalletStakingUnlockChunk>> | null | Uint8Array | Vec<PezpalletStakingUnlockChunk> | (PezpalletStakingUnlockChunk)[]) => SubmittableExtrinsic<ApiType>, [AccountId32, Option<AccountId32>, Option<u128>, Option<Vec<PezpalletStakingUnlockChunk>>]>;
|
||||
restoreLedger: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array, maybeController: Option<PezspCoreCryptoAccountId32> | string | Uint8Array, maybeTotal: Option<u128> | null | Uint8Array | u128 | AnyNumber, maybeUnlocking: Option<Vec<PezpalletStakingUnlockChunk>> | null | Uint8Array | Vec<PezpalletStakingUnlockChunk> | (PezpalletStakingUnlockChunk)[]) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, Option<PezspCoreCryptoAccountId32>, Option<u128>, Option<Vec<PezpalletStakingUnlockChunk>>]>;
|
||||
/**
|
||||
* Scale up the ideal number of validators by a factor up to maximum of
|
||||
* `ElectionProviderBase::MaxWinners`.
|
||||
@@ -3753,7 +3753,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* Same as [`Self::set_validator_count`].
|
||||
**/
|
||||
scaleValidatorCount: AugmentedSubmittable<(factor: Percent | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Percent]>;
|
||||
scaleValidatorCount: AugmentedSubmittable<(factor: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u8]>;
|
||||
/**
|
||||
* (Re-)sets the controller of a stash to the stash itself. This function previously
|
||||
* accepted a `controller` argument to set the controller to an account other than the
|
||||
@@ -3776,14 +3776,14 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin must be Root.
|
||||
**/
|
||||
setInvulnerables: AugmentedSubmittable<(invulnerables: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
setInvulnerables: AugmentedSubmittable<(invulnerables: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Sets the minimum amount of commission that each validators must maintain.
|
||||
*
|
||||
* This call has lower privilege requirements than `set_staking_config` and can be called
|
||||
* by the `T::AdminOrigin`. Root can always call this.
|
||||
**/
|
||||
setMinCommission: AugmentedSubmittable<(updated: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Perbill]>;
|
||||
setMinCommission: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
||||
/**
|
||||
* (Re-)set the payment target for a controller.
|
||||
*
|
||||
@@ -3860,7 +3860,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* This will waive the transaction fee if the `payee` is successfully migrated.
|
||||
**/
|
||||
updatePayee: AugmentedSubmittable<(controller: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
updatePayee: AugmentedSubmittable<(controller: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Declare the desire to validate for the origin controller.
|
||||
*
|
||||
@@ -4136,7 +4136,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Emits [`Event::SpendApproved`] if successful.
|
||||
**/
|
||||
spendLocal: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress]>;
|
||||
spendLocal: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, beneficiary: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Void previously approved spend.
|
||||
*
|
||||
@@ -4297,7 +4297,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `target`: An account that has a vesting schedule
|
||||
* - `schedule_index`: The vesting schedule index that should be removed
|
||||
**/
|
||||
forceRemoveVestingSchedule: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, scheduleIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32]>;
|
||||
forceRemoveVestingSchedule: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, scheduleIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Force a vested transfer.
|
||||
*
|
||||
@@ -4314,7 +4314,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
forceVestedTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, PezpalletVestingVestingInfo]>;
|
||||
forceVestedTransfer: AugmentedSubmittable<(source: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, PezpalletVestingVestingInfo]>;
|
||||
/**
|
||||
* Merge two vesting schedules together, creating a new vesting schedule that unlocks over
|
||||
* the highest possible start and end blocks. If both schedules have already started the
|
||||
@@ -4366,7 +4366,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
vestedTransfer: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [MultiAddress, PezpalletVestingVestingInfo]>;
|
||||
vestedTransfer: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezpalletVestingVestingInfo]>;
|
||||
/**
|
||||
* Unlock any vested funds of a `target` account.
|
||||
*
|
||||
@@ -4380,7 +4380,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
vestOther: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
vestOther: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -4399,13 +4399,13 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - both nodes are within the same bag,
|
||||
* - and `origin` has a greater `Score` than `lighter`.
|
||||
**/
|
||||
putInFrontOf: AugmentedSubmittable<(lighter: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
putInFrontOf: AugmentedSubmittable<(lighter: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Same as [`Pallet::put_in_front_of`], but it can be called by anyone.
|
||||
*
|
||||
* Fee is paid by the origin under all circumstances.
|
||||
**/
|
||||
putInFrontOfOther: AugmentedSubmittable<(heavier: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, lighter: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress]>;
|
||||
putInFrontOfOther: AugmentedSubmittable<(heavier: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, lighter: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Declare that some `dislocated` account has, through rewards or penalties, sufficiently
|
||||
* changed its score that it should properly fall into a different bag than its current
|
||||
@@ -4418,7 +4418,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* If `dislocated` does not exists, it returns an error.
|
||||
**/
|
||||
rebag: AugmentedSubmittable<(dislocated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
rebag: AugmentedSubmittable<(dislocated: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/api-augment', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/api-augment', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -8,8 +8,7 @@ import '@pezkuwi/api-base/types/consts';
|
||||
import type { ApiTypes, AugmentedConst } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Option, Vec, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { Codec, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, Perbill, Permill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions } from '@pezkuwi/types/lookup';
|
||||
import type { PezframeSupportPezpalletId, PezframeSystemLimitsBlockLength, PezframeSystemLimitsBlockWeights, PezpalletReferendaTrackDetails, PezspCoreCryptoAccountId32, PezspVersionRuntimeVersion, PezspWeightsRuntimeDbWeight, PezspWeightsWeightV2Weight, StagingXcmV5Junctions } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedConst<ApiType extends ApiTypes> = AugmentedConst<ApiType>;
|
||||
|
||||
@@ -154,7 +153,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* This deposit has optional upper and lower bounds with `CuratorDepositMax` and
|
||||
* `CuratorDepositMin`.
|
||||
**/
|
||||
curatorDepositMultiplier: Permill & AugmentedConst<ApiType>;
|
||||
curatorDepositMultiplier: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* The amount held on deposit per byte within the tip report reason or bounty description.
|
||||
**/
|
||||
@@ -253,7 +252,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Fraction of the slash that is rewarded to the caller of pending slash to the agent.
|
||||
**/
|
||||
slashRewardFraction: Perbill & AugmentedConst<ApiType>;
|
||||
slashRewardFraction: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Generic const
|
||||
**/
|
||||
@@ -264,7 +263,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
* The minimum amount of improvement to the solution score that defines a solution as
|
||||
* "better" in the Signed phase.
|
||||
**/
|
||||
betterSignedThreshold: Perbill & AugmentedConst<ApiType>;
|
||||
betterSignedThreshold: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Maximum number of voters that can support a winner in an election solution.
|
||||
*
|
||||
@@ -811,7 +810,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Percentage of spare funds (if any) that are burnt per spend period.
|
||||
**/
|
||||
burn: Permill & AugmentedConst<ApiType>;
|
||||
burn: u32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* DEPRECATED: associated with `spend_local` call and will be removed in May 2025.
|
||||
* Refer to <https://github.com/paritytech/polkadot-sdk/pull/5961> for migration to `spend`.
|
||||
@@ -832,7 +831,7 @@ declare module '@pezkuwi/api-base/types/consts' {
|
||||
/**
|
||||
* Gets this pallet's derived pot account.
|
||||
**/
|
||||
potAccount: AccountId32 & AugmentedConst<ApiType>;
|
||||
potAccount: PezspCoreCryptoAccountId32 & AugmentedConst<ApiType>;
|
||||
/**
|
||||
* Period between successive spends.
|
||||
**/
|
||||
|
||||
@@ -8,8 +8,8 @@ import '@pezkuwi/api-base/types/events';
|
||||
import type { ApiTypes, AugmentedEvent } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, Perbill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportDispatchPostDispatchInfo, PezframeSupportMessagesProcessMessageError, PezframeSupportPreimagesBounded, PezframeSupportTokensMiscBalanceStatus, PezframeSystemDispatchEventInfo, PezkuwiPrimitivesVstagingCandidateReceiptV2, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeConstantsProxyProxyType, PezkuwiRuntimeTeyrchainsDisputesDisputeLocation, PezkuwiRuntimeTeyrchainsDisputesDisputeResult, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesUnexpectedKind, PezpalletConvictionVotingTally, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseElectionCompute, PezpalletElectionProviderMultiPhasePhase, PezpalletMultisigTimepoint, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsPoolState, PezpalletProxyDepositKind, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientUnexpectedKind, PezpalletStakingForcing, PezpalletStakingRewardDestination, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationError, PezpalletStateTrieMigrationMigrationCompute, PezspConsensusGrandpaAppPublic, PezspNposElectionsElectionScore, PezspRuntimeDispatchError, PezspRuntimeDispatchErrorWithPostInfo, PezspWeightsWeightV2Weight, StagingXcmV5AssetAssets, StagingXcmV5Location, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmV3MaybeErrorCode, XcmV3TraitsSendError, XcmV5TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { H256 } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportDispatchPostDispatchInfo, PezframeSupportMessagesProcessMessageError, PezframeSupportPreimagesBounded, PezframeSupportTokensMiscBalanceStatus, PezframeSystemDispatchEventInfo, PezkuwiPrimitivesVstagingCandidateReceiptV2, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeConstantsProxyProxyType, PezkuwiRuntimeTeyrchainsDisputesDisputeLocation, PezkuwiRuntimeTeyrchainsDisputesDisputeResult, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesUnexpectedKind, PezpalletConvictionVotingTally, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseElectionCompute, PezpalletElectionProviderMultiPhasePhase, PezpalletMultisigTimepoint, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsPoolState, PezpalletProxyDepositKind, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientUnexpectedKind, PezpalletStakingForcing, PezpalletStakingRewardDestination, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationError, PezpalletStateTrieMigrationMigrationCompute, PezspConsensusGrandpaAppPublic, PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore, PezspRuntimeDispatchError, PezspRuntimeDispatchErrorWithPostInfo, PezspWeightsWeightV2Weight, StagingXcmV5AssetAssets, StagingXcmV5Location, StagingXcmV5Response, StagingXcmV5TraitsOutcome, StagingXcmV5Xcm, XcmV3MaybeErrorCode, XcmV3TraitsSendError, XcmV5TraitsError, XcmVersionedAssets, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;
|
||||
|
||||
@@ -37,21 +37,21 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A new bid has been accepted as the current winner.
|
||||
**/
|
||||
BidAccepted: AugmentedEvent<ApiType, [bidder: AccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32], { bidder: AccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32 }>;
|
||||
BidAccepted: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32], { bidder: PezspCoreCryptoAccountId32, paraId: u32, amount: u128, firstSlot: u32, lastSlot: u32 }>;
|
||||
/**
|
||||
* Someone attempted to lease the same slot twice for a parachain. The amount is held in
|
||||
* reserve but no parachain slot has been leased.
|
||||
**/
|
||||
ReserveConfiscated: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, amount: u128], { paraId: u32, leaser: AccountId32, amount: u128 }>;
|
||||
ReserveConfiscated: AugmentedEvent<ApiType, [paraId: u32, leaser: PezspCoreCryptoAccountId32, amount: u128], { paraId: u32, leaser: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Funds were reserved for a winning bid. First balance is the extra amount reserved.
|
||||
* Second is the total.
|
||||
**/
|
||||
Reserved: AugmentedEvent<ApiType, [bidder: AccountId32, extraReserved: u128, totalAmount: u128], { bidder: AccountId32, extraReserved: u128, totalAmount: u128 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, extraReserved: u128, totalAmount: u128], { bidder: PezspCoreCryptoAccountId32, extraReserved: u128, totalAmount: u128 }>;
|
||||
/**
|
||||
* Funds were unreserved since bidder is no longer active. `[bidder, amount]`
|
||||
**/
|
||||
Unreserved: AugmentedEvent<ApiType, [bidder: AccountId32, amount: u128], { bidder: AccountId32, amount: u128 }>;
|
||||
Unreserved: AugmentedEvent<ApiType, [bidder: PezspCoreCryptoAccountId32, amount: u128], { bidder: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* The winning offset was chosen for an auction. This will map into the `Winning` storage
|
||||
* map.
|
||||
@@ -66,28 +66,28 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A balance was set by root.
|
||||
**/
|
||||
BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { who: AccountId32, free: u128 }>;
|
||||
BalanceSet: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, free: u128], { who: PezspCoreCryptoAccountId32, free: u128 }>;
|
||||
/**
|
||||
* Some amount was burned from an account.
|
||||
**/
|
||||
Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Burned: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was deposited (e.g. for transaction fees).
|
||||
**/
|
||||
Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Deposit: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account was removed whose balance was non-zero but below ExistentialDeposit,
|
||||
* resulting in an outright loss.
|
||||
**/
|
||||
DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;
|
||||
DustLost: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, amount: u128], { account: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account was created with some free balance.
|
||||
**/
|
||||
Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;
|
||||
Endowed: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, freeBalance: u128], { account: PezspCoreCryptoAccountId32, freeBalance: u128 }>;
|
||||
/**
|
||||
* Some balance was frozen.
|
||||
**/
|
||||
Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Frozen: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Total issuance was increased by `amount`, creating a credit to be balanced.
|
||||
**/
|
||||
@@ -95,11 +95,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some balance was locked.
|
||||
**/
|
||||
Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Locked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was minted into an account.
|
||||
**/
|
||||
Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Minted: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Total issuance was decreased by `amount`, creating a debt to be balanced.
|
||||
**/
|
||||
@@ -107,28 +107,28 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some balance was reserved (moved from free to reserved).
|
||||
**/
|
||||
Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some balance was moved from the reserve of the first account to the second account.
|
||||
* Final argument indicates the destination balance type.
|
||||
**/
|
||||
ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus }>;
|
||||
ReserveRepatriated: AugmentedEvent<ApiType, [from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus], { from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128, destinationStatus: PezframeSupportTokensMiscBalanceStatus }>;
|
||||
/**
|
||||
* Some amount was restored into an account.
|
||||
**/
|
||||
Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Restored: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was removed from the account (e.g. for misbehavior).
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some amount was suspended from an account (it can be restored later).
|
||||
**/
|
||||
Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Suspended: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some balance was thawed.
|
||||
**/
|
||||
Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Thawed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* The `TotalIssuance` was forcefully changed.
|
||||
**/
|
||||
@@ -136,7 +136,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Transfer succeeded.
|
||||
**/
|
||||
Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;
|
||||
Transfer: AugmentedEvent<ApiType, [from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128], { from: PezspCoreCryptoAccountId32, to: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An unexpected/defensive event was triggered.
|
||||
**/
|
||||
@@ -144,19 +144,19 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some balance was unlocked.
|
||||
**/
|
||||
Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Unlocked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Some balance was unreserved (moved from reserved to free).
|
||||
**/
|
||||
Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Unreserved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account was upgraded.
|
||||
**/
|
||||
Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;
|
||||
Upgraded: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32], { who: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Some amount was withdrawn from the account (e.g. for transaction fees).
|
||||
**/
|
||||
Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Withdraw: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -170,7 +170,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty is awarded to a beneficiary.
|
||||
**/
|
||||
BountyAwarded: AugmentedEvent<ApiType, [index: u32, beneficiary: AccountId32], { index: u32, beneficiary: AccountId32 }>;
|
||||
BountyAwarded: AugmentedEvent<ApiType, [index: u32, beneficiary: PezspCoreCryptoAccountId32], { index: u32, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty proposal is funded and became active.
|
||||
**/
|
||||
@@ -182,7 +182,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty is claimed by beneficiary.
|
||||
**/
|
||||
BountyClaimed: AugmentedEvent<ApiType, [index: u32, payout: u128, beneficiary: AccountId32], { index: u32, payout: u128, beneficiary: AccountId32 }>;
|
||||
BountyClaimed: AugmentedEvent<ApiType, [index: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32], { index: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty expiry is extended.
|
||||
**/
|
||||
@@ -198,11 +198,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty curator is accepted.
|
||||
**/
|
||||
CuratorAccepted: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], { bountyId: u32, curator: AccountId32 }>;
|
||||
CuratorAccepted: AugmentedEvent<ApiType, [bountyId: u32, curator: PezspCoreCryptoAccountId32], { bountyId: u32, curator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty curator is proposed.
|
||||
**/
|
||||
CuratorProposed: AugmentedEvent<ApiType, [bountyId: u32, curator: AccountId32], { bountyId: u32, curator: AccountId32 }>;
|
||||
CuratorProposed: AugmentedEvent<ApiType, [bountyId: u32, curator: PezspCoreCryptoAccountId32], { bountyId: u32, curator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A bounty curator is unassigned.
|
||||
**/
|
||||
@@ -210,7 +210,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A bounty deposit has been poked.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [bountyId: u32, proposer: AccountId32, oldDeposit: u128, newDeposit: u128], { bountyId: u32, proposer: AccountId32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [bountyId: u32, proposer: PezspCoreCryptoAccountId32, oldDeposit: u128, newDeposit: u128], { bountyId: u32, proposer: PezspCoreCryptoAccountId32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -224,7 +224,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A child-bounty is awarded to a beneficiary.
|
||||
**/
|
||||
Awarded: AugmentedEvent<ApiType, [index: u32, childIndex: u32, beneficiary: AccountId32], { index: u32, childIndex: u32, beneficiary: AccountId32 }>;
|
||||
Awarded: AugmentedEvent<ApiType, [index: u32, childIndex: u32, beneficiary: PezspCoreCryptoAccountId32], { index: u32, childIndex: u32, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A child-bounty is cancelled.
|
||||
**/
|
||||
@@ -232,7 +232,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A child-bounty is claimed by beneficiary.
|
||||
**/
|
||||
Claimed: AugmentedEvent<ApiType, [index: u32, childIndex: u32, payout: u128, beneficiary: AccountId32], { index: u32, childIndex: u32, payout: u128, beneficiary: AccountId32 }>;
|
||||
Claimed: AugmentedEvent<ApiType, [index: u32, childIndex: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32], { index: u32, childIndex: u32, payout: u128, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -242,7 +242,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Someone claimed some DOTs.
|
||||
**/
|
||||
Claimed: AugmentedEvent<ApiType, [who: AccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128], { who: AccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128 }>;
|
||||
Claimed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128], { who: PezspCoreCryptoAccountId32, ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -252,23 +252,23 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account has delegated their vote to another account. \[who, target\]
|
||||
**/
|
||||
Delegated: AugmentedEvent<ApiType, [AccountId32, AccountId32]>;
|
||||
Delegated: AugmentedEvent<ApiType, [PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* An \[account\] has cancelled a previous delegation operation.
|
||||
**/
|
||||
Undelegated: AugmentedEvent<ApiType, [AccountId32]>;
|
||||
Undelegated: AugmentedEvent<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* An account has voted
|
||||
**/
|
||||
Voted: AugmentedEvent<ApiType, [who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
Voted: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
/**
|
||||
* A vote has been removed
|
||||
**/
|
||||
VoteRemoved: AugmentedEvent<ApiType, [who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: AccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
VoteRemoved: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote], { who: PezspCoreCryptoAccountId32, vote: PezpalletConvictionVotingVoteAccountVote }>;
|
||||
/**
|
||||
* The lockup period of a conviction vote expired, and the funds have been unlocked.
|
||||
**/
|
||||
VoteUnlocked: AugmentedEvent<ApiType, [who: AccountId32, class_: u16], { who: AccountId32, class: u16 }>;
|
||||
VoteUnlocked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, class_: u16], { who: PezspCoreCryptoAccountId32, class: u16 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -300,7 +300,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Contributed to a crowd sale.
|
||||
**/
|
||||
Contributed: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], { who: AccountId32, fundIndex: u32, amount: u128 }>;
|
||||
Contributed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128], { who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128 }>;
|
||||
/**
|
||||
* Create a new crowdloaning campaign.
|
||||
**/
|
||||
@@ -320,7 +320,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A memo has been updated.
|
||||
**/
|
||||
MemoUpdated: AugmentedEvent<ApiType, [who: AccountId32, paraId: u32, memo: Bytes], { who: AccountId32, paraId: u32, memo: Bytes }>;
|
||||
MemoUpdated: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, paraId: u32, memo: Bytes], { who: PezspCoreCryptoAccountId32, paraId: u32, memo: Bytes }>;
|
||||
/**
|
||||
* The loans in a fund have been partially dissolved, i.e. there are some left
|
||||
* over child keys that still need to be killed.
|
||||
@@ -329,7 +329,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Withdrew full balance of a contributor.
|
||||
**/
|
||||
Withdrew: AugmentedEvent<ApiType, [who: AccountId32, fundIndex: u32, amount: u128], { who: AccountId32, fundIndex: u32, amount: u128 }>;
|
||||
Withdrew: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128], { who: PezspCoreCryptoAccountId32, fundIndex: u32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -339,19 +339,19 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Funds delegated by a delegator.
|
||||
**/
|
||||
Delegated: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
Delegated: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Unclaimed delegation funds migrated to delegator.
|
||||
**/
|
||||
MigratedDelegation: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
MigratedDelegation: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Funds released to a delegator.
|
||||
**/
|
||||
Released: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
Released: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Funds slashed from a delegator.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [agent: AccountId32, delegator: AccountId32, amount: u128], { agent: AccountId32, delegator: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128], { agent: PezspCoreCryptoAccountId32, delegator: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -375,11 +375,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account has been rewarded for their signed submission being finalized.
|
||||
**/
|
||||
Rewarded: AugmentedEvent<ApiType, [account: AccountId32, value: u128], { account: AccountId32, value: u128 }>;
|
||||
Rewarded: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, value: u128], { account: PezspCoreCryptoAccountId32, value: u128 }>;
|
||||
/**
|
||||
* An account has been slashed for submitting an invalid signed submission.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [account: AccountId32, value: u128], { account: AccountId32, value: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, value: u128], { account: PezspCoreCryptoAccountId32, value: u128 }>;
|
||||
/**
|
||||
* A solution was stored with the given compute.
|
||||
*
|
||||
@@ -389,7 +389,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* `T::ForceOrigin`. The `bool` is `true` when a previous solution was ejected to make
|
||||
* room for this one.
|
||||
**/
|
||||
SolutionStored: AugmentedEvent<ApiType, [compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<AccountId32>, prevEjected: bool], { compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<AccountId32>, prevEjected: bool }>;
|
||||
SolutionStored: AugmentedEvent<ApiType, [compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<PezspCoreCryptoAccountId32>, prevEjected: bool], { compute: PezpalletElectionProviderMultiPhaseElectionCompute, origin: Option<PezspCoreCryptoAccountId32>, prevEjected: bool }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -414,11 +414,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A staker was slashed for requesting fast-unstake whilst being exposed.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A staker was unstaked.
|
||||
**/
|
||||
Unstaked: AugmentedEvent<ApiType, [stash: AccountId32, result: Result<Null, PezspRuntimeDispatchError>], { stash: AccountId32, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
Unstaked: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, result: Result<Null, PezspRuntimeDispatchError>], { stash: PezspCoreCryptoAccountId32, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -494,11 +494,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A deposit to reserve an index has been poked/reconsidered.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, index: u32, oldDeposit: u128, newDeposit: u128], { who: AccountId32, index: u32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, index: u32, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, index: u32, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A account index was assigned.
|
||||
**/
|
||||
IndexAssigned: AugmentedEvent<ApiType, [who: AccountId32, index: u32], { who: AccountId32, index: u32 }>;
|
||||
IndexAssigned: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, index: u32], { who: PezspCoreCryptoAccountId32, index: u32 }>;
|
||||
/**
|
||||
* A account index has been freed up (unassigned).
|
||||
**/
|
||||
@@ -506,7 +506,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A account index has been frozen to its current account ID.
|
||||
**/
|
||||
IndexFrozen: AugmentedEvent<ApiType, [index: u32, who: AccountId32], { index: u32, who: AccountId32 }>;
|
||||
IndexFrozen: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32], { index: u32, who: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -538,23 +538,23 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The deposit for a multisig operation has been updated/poked.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], { who: AccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, callHash: U8aFixed, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A multisig operation has been approved by someone.
|
||||
**/
|
||||
MultisigApproval: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], { approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed }>;
|
||||
MultisigApproval: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], { approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed }>;
|
||||
/**
|
||||
* A multisig operation has been cancelled.
|
||||
**/
|
||||
MultisigCancelled: AugmentedEvent<ApiType, [cancelling: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed], { cancelling: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed }>;
|
||||
MultisigCancelled: AugmentedEvent<ApiType, [cancelling: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], { cancelling: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed }>;
|
||||
/**
|
||||
* A multisig operation has been executed.
|
||||
**/
|
||||
MultisigExecuted: AugmentedEvent<ApiType, [approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError>], { approving: AccountId32, timepoint: PezpalletMultisigTimepoint, multisig: AccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
MultisigExecuted: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError>], { approving: PezspCoreCryptoAccountId32, timepoint: PezpalletMultisigTimepoint, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed, result: Result<Null, PezspRuntimeDispatchError> }>;
|
||||
/**
|
||||
* A new multisig operation has begun.
|
||||
**/
|
||||
NewMultisig: AugmentedEvent<ApiType, [approving: AccountId32, multisig: AccountId32, callHash: U8aFixed], { approving: AccountId32, multisig: AccountId32, callHash: U8aFixed }>;
|
||||
NewMultisig: AugmentedEvent<ApiType, [approving: PezspCoreCryptoAccountId32, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed], { approving: PezspCoreCryptoAccountId32, multisig: PezspCoreCryptoAccountId32, callHash: U8aFixed }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -564,11 +564,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A member has became bonded in a pool.
|
||||
**/
|
||||
Bonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, bonded: u128, joined: bool], { member: AccountId32, poolId: u32, bonded: u128, joined: bool }>;
|
||||
Bonded: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, bonded: u128, joined: bool], { member: PezspCoreCryptoAccountId32, poolId: u32, bonded: u128, joined: bool }>;
|
||||
/**
|
||||
* A pool has been created.
|
||||
**/
|
||||
Created: AugmentedEvent<ApiType, [depositor: AccountId32, poolId: u32], { depositor: AccountId32, poolId: u32 }>;
|
||||
Created: AugmentedEvent<ApiType, [depositor: PezspCoreCryptoAccountId32, poolId: u32], { depositor: PezspCoreCryptoAccountId32, poolId: u32 }>;
|
||||
/**
|
||||
* A pool has been destroyed.
|
||||
**/
|
||||
@@ -576,11 +576,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Global parameters regulating nomination pools have been updated.
|
||||
**/
|
||||
GlobalParamsUpdated: AugmentedEvent<ApiType, [minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<Perbill>], { minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<Perbill> }>;
|
||||
GlobalParamsUpdated: AugmentedEvent<ApiType, [minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<u32>], { minJoinBond: u128, minCreateBond: u128, maxPools: Option<u32>, maxMembers: Option<u32>, maxMembersPerPool: Option<u32>, globalMaxCommission: Option<u32> }>;
|
||||
/**
|
||||
* A pool member's claim permission has been updated.
|
||||
**/
|
||||
MemberClaimPermissionUpdated: AugmentedEvent<ApiType, [member: AccountId32, permission: PezpalletNominationPoolsClaimPermission], { member: AccountId32, permission: PezpalletNominationPoolsClaimPermission }>;
|
||||
MemberClaimPermissionUpdated: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, permission: PezpalletNominationPoolsClaimPermission], { member: PezspCoreCryptoAccountId32, permission: PezpalletNominationPoolsClaimPermission }>;
|
||||
/**
|
||||
* A member has been removed from a pool.
|
||||
*
|
||||
@@ -588,11 +588,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* Any funds that are still delegated (i.e. dangling delegation) are released and are
|
||||
* represented by `released_balance`.
|
||||
**/
|
||||
MemberRemoved: AugmentedEvent<ApiType, [poolId: u32, member: AccountId32, releasedBalance: u128], { poolId: u32, member: AccountId32, releasedBalance: u128 }>;
|
||||
MemberRemoved: AugmentedEvent<ApiType, [poolId: u32, member: PezspCoreCryptoAccountId32, releasedBalance: u128], { poolId: u32, member: PezspCoreCryptoAccountId32, releasedBalance: u128 }>;
|
||||
/**
|
||||
* A pool's metadata was updated.
|
||||
**/
|
||||
MetadataUpdated: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], { poolId: u32, caller: AccountId32 }>;
|
||||
MetadataUpdated: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], { poolId: u32, caller: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Topped up deficit in frozen ED of the reward pool.
|
||||
**/
|
||||
@@ -604,7 +604,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A payout has been made to a member.
|
||||
**/
|
||||
PaidOut: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, payout: u128], { member: AccountId32, poolId: u32, payout: u128 }>;
|
||||
PaidOut: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, payout: u128], { member: PezspCoreCryptoAccountId32, poolId: u32, payout: u128 }>;
|
||||
/**
|
||||
* A pool's commission `change_rate` has been changed.
|
||||
**/
|
||||
@@ -620,20 +620,20 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A pool's commission setting has been changed.
|
||||
**/
|
||||
PoolCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, current: Option<ITuple<[Perbill, AccountId32]>>], { poolId: u32, current: Option<ITuple<[Perbill, AccountId32]>> }>;
|
||||
PoolCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>], { poolId: u32, current: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>> }>;
|
||||
/**
|
||||
* A pool's maximum commission setting has been changed.
|
||||
**/
|
||||
PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, maxCommission: Perbill], { poolId: u32, maxCommission: Perbill }>;
|
||||
PoolMaxCommissionUpdated: AugmentedEvent<ApiType, [poolId: u32, maxCommission: u32], { poolId: u32, maxCommission: u32 }>;
|
||||
/**
|
||||
* A pool's nominating account (or the pool's root account) has nominated a validator set
|
||||
* on behalf of the pool.
|
||||
**/
|
||||
PoolNominationMade: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], { poolId: u32, caller: AccountId32 }>;
|
||||
PoolNominationMade: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], { poolId: u32, caller: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The pool is chilled i.e. no longer nominating.
|
||||
**/
|
||||
PoolNominatorChilled: AugmentedEvent<ApiType, [poolId: u32, caller: AccountId32], { poolId: u32, caller: AccountId32 }>;
|
||||
PoolNominatorChilled: AugmentedEvent<ApiType, [poolId: u32, caller: PezspCoreCryptoAccountId32], { poolId: u32, caller: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The active balance of pool `pool_id` has been slashed to `balance`.
|
||||
**/
|
||||
@@ -642,7 +642,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* The roles of a pool have been updated to the given new roles. Note that the depositor
|
||||
* can never change.
|
||||
**/
|
||||
RolesUpdated: AugmentedEvent<ApiType, [root: Option<AccountId32>, bouncer: Option<AccountId32>, nominator: Option<AccountId32>], { root: Option<AccountId32>, bouncer: Option<AccountId32>, nominator: Option<AccountId32> }>;
|
||||
RolesUpdated: AugmentedEvent<ApiType, [root: Option<PezspCoreCryptoAccountId32>, bouncer: Option<PezspCoreCryptoAccountId32>, nominator: Option<PezspCoreCryptoAccountId32>], { root: Option<PezspCoreCryptoAccountId32>, bouncer: Option<PezspCoreCryptoAccountId32>, nominator: Option<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The state of a pool has changed
|
||||
**/
|
||||
@@ -660,7 +660,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* number of points that are issued in the unbonding pool will be less than the amount
|
||||
* requested to be unbonded.
|
||||
**/
|
||||
Unbonded: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32], { member: AccountId32, poolId: u32, balance: u128, points: u128, era: u32 }>;
|
||||
Unbonded: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128, era: u32], { member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128, era: u32 }>;
|
||||
/**
|
||||
* The unbond pool at `era` of pool `pool_id` has been slashed to `balance`.
|
||||
**/
|
||||
@@ -673,7 +673,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* Similar to `Unbonded` event, in the absence of slashing, the ratio of point to balance
|
||||
* will be 1.
|
||||
**/
|
||||
Withdrawn: AugmentedEvent<ApiType, [member: AccountId32, poolId: u32, balance: u128, points: u128], { member: AccountId32, poolId: u32, balance: u128, points: u128 }>;
|
||||
Withdrawn: AugmentedEvent<ApiType, [member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128], { member: PezspCoreCryptoAccountId32, poolId: u32, balance: u128, points: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -695,11 +695,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account was given credits.
|
||||
**/
|
||||
AccountCredited: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
AccountCredited: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An order was placed at some spot price amount by orderer ordered_by
|
||||
**/
|
||||
OnDemandOrderPlaced: AugmentedEvent<ApiType, [paraId: u32, spotPrice: u128, orderedBy: AccountId32], { paraId: u32, spotPrice: u128, orderedBy: AccountId32 }>;
|
||||
OnDemandOrderPlaced: AugmentedEvent<ApiType, [paraId: u32, spotPrice: u128, orderedBy: PezspCoreCryptoAccountId32], { paraId: u32, spotPrice: u128, orderedBy: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* The value of the spot price has likely changed
|
||||
**/
|
||||
@@ -824,15 +824,15 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An announcement was placed to make a call in the future.
|
||||
**/
|
||||
Announced: AugmentedEvent<ApiType, [real: AccountId32, proxy: AccountId32, callHash: H256], { real: AccountId32, proxy: AccountId32, callHash: H256 }>;
|
||||
Announced: AugmentedEvent<ApiType, [real: PezspCoreCryptoAccountId32, proxy: PezspCoreCryptoAccountId32, callHash: H256], { real: PezspCoreCryptoAccountId32, proxy: PezspCoreCryptoAccountId32, callHash: H256 }>;
|
||||
/**
|
||||
* A deposit stored for proxies or announcements was poked / updated.
|
||||
**/
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: AccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], { who: AccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128 }>;
|
||||
DepositPoked: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128], { who: PezspCoreCryptoAccountId32, kind: PezpalletProxyDepositKind, oldDeposit: u128, newDeposit: u128 }>;
|
||||
/**
|
||||
* A proxy was added.
|
||||
**/
|
||||
ProxyAdded: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], { delegator: AccountId32, delegatee: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
ProxyAdded: AugmentedEvent<ApiType, [delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], { delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
/**
|
||||
* A proxy was executed correctly, with the given.
|
||||
**/
|
||||
@@ -840,16 +840,16 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A proxy was removed.
|
||||
**/
|
||||
ProxyRemoved: AugmentedEvent<ApiType, [delegator: AccountId32, delegatee: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], { delegator: AccountId32, delegatee: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
ProxyRemoved: AugmentedEvent<ApiType, [delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32], { delegator: PezspCoreCryptoAccountId32, delegatee: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 }>;
|
||||
/**
|
||||
* A pure account has been created by new proxy with given
|
||||
* disambiguation index and proxy type.
|
||||
**/
|
||||
PureCreated: AugmentedEvent<ApiType, [pure: AccountId32, who: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: AccountId32, who: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
PureCreated: AugmentedEvent<ApiType, [pure: PezspCoreCryptoAccountId32, who: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: PezspCoreCryptoAccountId32, who: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
/**
|
||||
* A pure proxy was killed by its spawner.
|
||||
**/
|
||||
PureKilled: AugmentedEvent<ApiType, [pure: AccountId32, spawner: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: AccountId32, spawner: AccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
PureKilled: AugmentedEvent<ApiType, [pure: PezspCoreCryptoAccountId32, spawner: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16], { pure: PezspCoreCryptoAccountId32, spawner: PezspCoreCryptoAccountId32, proxyType: PezkuwiRuntimeConstantsProxyProxyType, disambiguationIndex: u16 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -859,7 +859,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The accounts to be preserved on Relay Chain were set.
|
||||
**/
|
||||
AccountsPreserved: AugmentedEvent<ApiType, [accounts: Vec<AccountId32>], { accounts: Vec<AccountId32> }>;
|
||||
AccountsPreserved: AugmentedEvent<ApiType, [accounts: Vec<PezspCoreCryptoAccountId32>], { accounts: Vec<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The AH UMP queue priority config was set.
|
||||
**/
|
||||
@@ -888,7 +888,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The canceller account id was set.
|
||||
**/
|
||||
CancellerSet: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: Option<AccountId32>], { old: Option<AccountId32>, new_: Option<AccountId32> }>;
|
||||
CancellerSet: AugmentedEvent<ApiType, [old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32>], { old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The manager multisig dispatched something.
|
||||
**/
|
||||
@@ -900,7 +900,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The manager account id was set.
|
||||
**/
|
||||
ManagerSet: AugmentedEvent<ApiType, [old: Option<AccountId32>, new_: Option<AccountId32>], { old: Option<AccountId32>, new_: Option<AccountId32> }>;
|
||||
ManagerSet: AugmentedEvent<ApiType, [old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32>], { old: Option<PezspCoreCryptoAccountId32>, new_: Option<PezspCoreCryptoAccountId32> }>;
|
||||
/**
|
||||
* The RC kept balance was consumed.
|
||||
**/
|
||||
@@ -972,11 +972,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The decision deposit has been placed.
|
||||
**/
|
||||
DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* The decision deposit has been refunded.
|
||||
**/
|
||||
DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has moved into the deciding phase.
|
||||
**/
|
||||
@@ -984,7 +984,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A deposit has been slashed.
|
||||
**/
|
||||
DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
DepositSlashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has been killed.
|
||||
**/
|
||||
@@ -1004,7 +1004,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* The submission deposit has been refunded.
|
||||
**/
|
||||
SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;
|
||||
SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: PezspCoreCryptoAccountId32, amount: u128], { index: u32, who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A referendum has been submitted.
|
||||
**/
|
||||
@@ -1020,8 +1020,8 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
};
|
||||
registrar: {
|
||||
Deregistered: AugmentedEvent<ApiType, [paraId: u32], { paraId: u32 }>;
|
||||
Registered: AugmentedEvent<ApiType, [paraId: u32, manager: AccountId32], { paraId: u32, manager: AccountId32 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [paraId: u32, who: AccountId32], { paraId: u32, who: AccountId32 }>;
|
||||
Registered: AugmentedEvent<ApiType, [paraId: u32, manager: PezspCoreCryptoAccountId32], { paraId: u32, manager: PezspCoreCryptoAccountId32 }>;
|
||||
Reserved: AugmentedEvent<ApiType, [paraId: u32, who: PezspCoreCryptoAccountId32], { paraId: u32, who: PezspCoreCryptoAccountId32 }>;
|
||||
Swapped: AugmentedEvent<ApiType, [paraId: u32, otherId: u32], { paraId: u32, otherId: u32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
@@ -1089,11 +1089,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Validator has been disabled.
|
||||
**/
|
||||
ValidatorDisabled: AugmentedEvent<ApiType, [validator: AccountId32], { validator: AccountId32 }>;
|
||||
ValidatorDisabled: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32], { validator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Validator has been re-enabled.
|
||||
**/
|
||||
ValidatorReenabled: AugmentedEvent<ApiType, [validator: AccountId32], { validator: AccountId32 }>;
|
||||
ValidatorReenabled: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32], { validator: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1105,7 +1105,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* First balance is any extra amount reserved on top of the para's existing deposit.
|
||||
* Second balance is the total amount reserved.
|
||||
**/
|
||||
Leased: AugmentedEvent<ApiType, [paraId: u32, leaser: AccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128], { paraId: u32, leaser: AccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128 }>;
|
||||
Leased: AugmentedEvent<ApiType, [paraId: u32, leaser: PezspCoreCryptoAccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128], { paraId: u32, leaser: PezspCoreCryptoAccountId32, periodBegin: u32, periodCount: u32, extraReserved: u128, totalAmount: u128 }>;
|
||||
/**
|
||||
* A new `[lease_period]` is beginning.
|
||||
**/
|
||||
@@ -1122,11 +1122,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* NOTE: This event is only emitted when funds are bonded via a dispatchable. Notably,
|
||||
* it will not be emitted for staking rewards when they are added to stake.
|
||||
**/
|
||||
Bonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Bonded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* An account has stopped participating as either a validator or nominator.
|
||||
**/
|
||||
Chilled: AugmentedEvent<ApiType, [stash: AccountId32], { stash: AccountId32 }>;
|
||||
Chilled: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32], { stash: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Report of a controller batch deprecation.
|
||||
**/
|
||||
@@ -1135,7 +1135,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* Staking balance migrated from locks to holds, with any balance that could not be held
|
||||
* is force withdrawn.
|
||||
**/
|
||||
CurrencyMigrated: AugmentedEvent<ApiType, [stash: AccountId32, forceWithdraw: u128], { stash: AccountId32, forceWithdraw: u128 }>;
|
||||
CurrencyMigrated: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, forceWithdraw: u128], { stash: PezspCoreCryptoAccountId32, forceWithdraw: u128 }>;
|
||||
/**
|
||||
* The era payout has been set; the first balance is the validator-payout; the second is
|
||||
* the remainder from the maximum amount of reward.
|
||||
@@ -1148,7 +1148,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A nominator has been kicked from a validator.
|
||||
**/
|
||||
Kicked: AugmentedEvent<ApiType, [nominator: AccountId32, stash: AccountId32], { nominator: AccountId32, stash: AccountId32 }>;
|
||||
Kicked: AugmentedEvent<ApiType, [nominator: PezspCoreCryptoAccountId32, stash: PezspCoreCryptoAccountId32], { nominator: PezspCoreCryptoAccountId32, stash: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* An old slashing report from a prior era was discarded because it could
|
||||
* not be processed.
|
||||
@@ -1157,20 +1157,20 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A Page of stakers rewards are getting paid. `next` is `None` if all pages are claimed.
|
||||
**/
|
||||
PayoutStarted: AugmentedEvent<ApiType, [eraIndex: u32, validatorStash: AccountId32, page: u32, next: Option<u32>], { eraIndex: u32, validatorStash: AccountId32, page: u32, next: Option<u32> }>;
|
||||
PayoutStarted: AugmentedEvent<ApiType, [eraIndex: u32, validatorStash: PezspCoreCryptoAccountId32, page: u32, next: Option<u32>], { eraIndex: u32, validatorStash: PezspCoreCryptoAccountId32, page: u32, next: Option<u32> }>;
|
||||
/**
|
||||
* The nominator has been rewarded by this amount to this destination.
|
||||
**/
|
||||
Rewarded: AugmentedEvent<ApiType, [stash: AccountId32, dest: PezpalletStakingRewardDestination, amount: u128], { stash: AccountId32, dest: PezpalletStakingRewardDestination, amount: u128 }>;
|
||||
Rewarded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, dest: PezpalletStakingRewardDestination, amount: u128], { stash: PezspCoreCryptoAccountId32, dest: PezpalletStakingRewardDestination, amount: u128 }>;
|
||||
/**
|
||||
* A staker (validator or nominator) has been slashed by the given amount.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [staker: AccountId32, amount: u128], { staker: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [staker: PezspCoreCryptoAccountId32, amount: u128], { staker: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A slash for the given validator, for the given percentage of their stake, at the given
|
||||
* era as been reported.
|
||||
**/
|
||||
SlashReported: AugmentedEvent<ApiType, [validator: AccountId32, fraction: Perbill, slashEra: u32], { validator: AccountId32, fraction: Perbill, slashEra: u32 }>;
|
||||
SlashReported: AugmentedEvent<ApiType, [validator: PezspCoreCryptoAccountId32, fraction: u32, slashEra: u32], { validator: PezspCoreCryptoAccountId32, fraction: u32, slashEra: u32 }>;
|
||||
/**
|
||||
* Targets size limit reached.
|
||||
**/
|
||||
@@ -1190,16 +1190,16 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account has unbonded this amount.
|
||||
**/
|
||||
Unbonded: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Unbonded: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* A validator has set their preferences.
|
||||
**/
|
||||
ValidatorPrefsSet: AugmentedEvent<ApiType, [stash: AccountId32, prefs: PezpalletStakingValidatorPrefs], { stash: AccountId32, prefs: PezpalletStakingValidatorPrefs }>;
|
||||
ValidatorPrefsSet: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, prefs: PezpalletStakingValidatorPrefs], { stash: PezspCoreCryptoAccountId32, prefs: PezpalletStakingValidatorPrefs }>;
|
||||
/**
|
||||
* An account has called `withdraw_unbonded` and removed unbonding chunks worth `Balance`
|
||||
* from the unlocking queue.
|
||||
**/
|
||||
Withdrawn: AugmentedEvent<ApiType, [stash: AccountId32, amount: u128], { stash: AccountId32, amount: u128 }>;
|
||||
Withdrawn: AugmentedEvent<ApiType, [stash: PezspCoreCryptoAccountId32, amount: u128], { stash: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1249,7 +1249,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some account got slashed by the given amount.
|
||||
**/
|
||||
Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;
|
||||
Slashed: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, amount: u128], { who: PezspCoreCryptoAccountId32, amount: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1271,11 +1271,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An account was reaped.
|
||||
**/
|
||||
KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
|
||||
KilledAccount: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], { account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A new account was created.
|
||||
**/
|
||||
NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
|
||||
NewAccount: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], { account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* An invalid authorized upgrade was rejected while trying to apply it.
|
||||
**/
|
||||
@@ -1283,7 +1283,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* On on-chain remark happened.
|
||||
**/
|
||||
Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;
|
||||
Remarked: AugmentedEvent<ApiType, [sender: PezspCoreCryptoAccountId32, hash_: H256], { sender: PezspCoreCryptoAccountId32, hash_: H256 }>;
|
||||
/**
|
||||
* An upgrade was authorized.
|
||||
**/
|
||||
@@ -1298,7 +1298,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
* A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,
|
||||
* has been paid by `who`.
|
||||
**/
|
||||
TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;
|
||||
TransactionFeePaid: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, actualFee: u128, tip: u128], { who: PezspCoreCryptoAccountId32, actualFee: u128, tip: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1316,7 +1316,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Some funds have been allocated.
|
||||
**/
|
||||
Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;
|
||||
Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: PezspCoreCryptoAccountId32], { proposalIndex: u32, award: u128, account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* Some of our funds have been burnt.
|
||||
**/
|
||||
@@ -1340,7 +1340,7 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* A new spend proposal has been approved.
|
||||
**/
|
||||
SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;
|
||||
SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: PezspCoreCryptoAccountId32], { proposalIndex: u32, amount: u128, beneficiary: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* We have ended a spend period and will now allocate funds.
|
||||
**/
|
||||
@@ -1402,16 +1402,16 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* An \[account\] has become fully vested.
|
||||
**/
|
||||
VestingCompleted: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;
|
||||
VestingCompleted: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32], { account: PezspCoreCryptoAccountId32 }>;
|
||||
/**
|
||||
* A vesting schedule has been created.
|
||||
**/
|
||||
VestingCreated: AugmentedEvent<ApiType, [account: AccountId32, scheduleIndex: u32], { account: AccountId32, scheduleIndex: u32 }>;
|
||||
VestingCreated: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, scheduleIndex: u32], { account: PezspCoreCryptoAccountId32, scheduleIndex: u32 }>;
|
||||
/**
|
||||
* The amount vested has been updated. This could indicate a change in funds available.
|
||||
* The balance given is the amount which is left unvested (and thus locked).
|
||||
**/
|
||||
VestingUpdated: AugmentedEvent<ApiType, [account: AccountId32, unvested: u128], { account: AccountId32, unvested: u128 }>;
|
||||
VestingUpdated: AugmentedEvent<ApiType, [account: PezspCoreCryptoAccountId32, unvested: u128], { account: PezspCoreCryptoAccountId32, unvested: u128 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
@@ -1421,11 +1421,11 @@ declare module '@pezkuwi/api-base/types/events' {
|
||||
/**
|
||||
* Moved an account from one bag to another.
|
||||
**/
|
||||
Rebagged: AugmentedEvent<ApiType, [who: AccountId32, from: u64, to: u64], { who: AccountId32, from: u64, to: u64 }>;
|
||||
Rebagged: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, from: u64, to: u64], { who: PezspCoreCryptoAccountId32, from: u64, to: u64 }>;
|
||||
/**
|
||||
* Updated the score of some account to the given amount.
|
||||
**/
|
||||
ScoreUpdated: AugmentedEvent<ApiType, [who: AccountId32, newScore: u64], { who: AccountId32, newScore: u64 }>;
|
||||
ScoreUpdated: AugmentedEvent<ApiType, [who: PezspCoreCryptoAccountId32, newScore: u64], { who: PezspCoreCryptoAccountId32, newScore: u64 }>;
|
||||
/**
|
||||
* Generic event
|
||||
**/
|
||||
|
||||
@@ -6,10 +6,10 @@
|
||||
import '@pezkuwi/api-base/types/storage';
|
||||
|
||||
import type { ApiTypes, AugmentedQuery, QueryableStorageEntry } from '@pezkuwi/api-base/types';
|
||||
import type { BTreeMap, BTreeSet, Bytes, Null, Option, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@pezkuwi/types-codec';
|
||||
import type { BTreeMap, BTreeSet, Bytes, Null, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { AnyNumber, IMethod, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, Perbill, Percent, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { BinaryHeapEnqueuedOrder, PezframeSupportDispatchPerDispatchClassWeight, PezframeSupportScheduleDispatchTime, PezframeSupportTokensMiscIdAmountRuntimeFreezeReason, PezframeSupportTokensMiscIdAmountRuntimeHoldReason, PezframeSystemAccountInfo, PezframeSystemCodeUpgradeAuthorization, PezframeSystemEventRecord, PezframeSystemLastRuntimeUpgradeInfo, PezframeSystemPhase, PezkuwiCorePrimitivesInboundDownwardMessage, PezkuwiCorePrimitivesInboundHrmpMessage, PezkuwiPrimitivesV8AssignmentAppPublic, PezkuwiPrimitivesV8DisputeState, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8SessionInfo, PezkuwiPrimitivesV8UpgradeGoAhead, PezkuwiPrimitivesV8UpgradeRestriction, PezkuwiPrimitivesV8ValidatorAppPublic, PezkuwiPrimitivesVstagingPendingSlashes, PezkuwiPrimitivesVstagingScrapedOnChainVotes, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonCrowdloanFundInfo, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeCommonParasRegistrarParaInfo, PezkuwiRuntimeSessionKeys, PezkuwiRuntimeTeyrchainsAssignerCoretimeCoreDescriptor, PezkuwiRuntimeTeyrchainsAssignerCoretimeSchedule, PezkuwiRuntimeTeyrchainsConfigurationHostConfiguration, PezkuwiRuntimeTeyrchainsHrmpHrmpChannel, PezkuwiRuntimeTeyrchainsHrmpHrmpOpenChannelRequest, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiRuntimeTeyrchainsInclusionCandidatePendingAvailability, PezkuwiRuntimeTeyrchainsInitializerBufferedSessionChange, PezkuwiRuntimeTeyrchainsOnDemandTypesCoreAffinityCount, PezkuwiRuntimeTeyrchainsOnDemandTypesEnqueuedOrder, PezkuwiRuntimeTeyrchainsOnDemandTypesQueueStatusType, PezkuwiRuntimeTeyrchainsParasAuthorizedCodeHashAndExpiry, PezkuwiRuntimeTeyrchainsParasParaGenesisArgs, PezkuwiRuntimeTeyrchainsParasParaLifecycle, PezkuwiRuntimeTeyrchainsParasParaPastCodeMeta, PezkuwiRuntimeTeyrchainsParasPvfCheckActiveVoteState, PezkuwiRuntimeTeyrchainsSchedulerCommonAssignment, PezkuwiRuntimeTeyrchainsSharedAllowedRelayParentsTracker, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBagsListListBag, PezpalletBagsListListNode, PezpalletBalancesAccountData, PezpalletBalancesBalanceLock, PezpalletBalancesReserveData, PezpalletBountiesBounty, PezpalletChildBountiesChildBounty, PezpalletConvictionVotingVoteVoting, PezpalletDelegatedStakingAgentLedger, PezpalletDelegatedStakingDelegation, PezpalletElectionProviderMultiPhasePhase, PezpalletElectionProviderMultiPhaseReadySolution, PezpalletElectionProviderMultiPhaseRoundSnapshot, PezpalletElectionProviderMultiPhaseSignedSignedSubmission, PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PezpalletFastUnstakeUnstakeRequest, PezpalletGrandpaStoredPendingChange, PezpalletGrandpaStoredState, PezpalletMessageQueueBookState, PezpalletMessageQueuePage, PezpalletMultisigMultisig, PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsRewardPool, PezpalletNominationPoolsSubPools, PezpalletPreimageOldRequestStatus, PezpalletPreimageRequestStatus, PezpalletProxyAnnouncement, PezpalletProxyProxyDefinition, PezpalletRcMigratorAccountsAccountState, PezpalletRcMigratorAccountsMigratedBalances, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletReferendaReferendumInfo, PezpalletSchedulerRetryConfig, PezpalletSchedulerScheduled, PezpalletStakingActiveEraInfo, PezpalletStakingAsyncAhClientOperatingMode, PezpalletStakingAsyncRcClientOffence, PezpalletStakingAsyncRcClientSessionReport, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingEraRewardPoints, PezpalletStakingForcing, PezpalletStakingNominations, PezpalletStakingRewardDestination, PezpalletStakingSlashingSlashingSpans, PezpalletStakingSlashingSpanRecord, PezpalletStakingStakingLedger, PezpalletStakingUnappliedSlash, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletTransactionPaymentReleases, PezpalletTreasuryProposal, PezpalletTreasurySpendStatus, PezpalletVestingReleases, PezpalletVestingVestingInfo, PezpalletXcmAuthorizedAliasesEntry, PezpalletXcmQueryStatus, PezpalletXcmRemoteLockedFungibleRecord, PezpalletXcmVersionMigrationStage, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeEpochConfiguration, PezspConsensusBabeDigestsNextConfigDescriptor, PezspConsensusBabeDigestsPreDigest, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyMmrBeefyAuthoritySet, PezspConsensusGrandpaAppPublic, PezspCoreCryptoKeyTypeId, PezspNposElectionsElectionScore, PezspRuntimeDigest, PezspStakingExposure, PezspStakingExposurePage, PezspStakingOffenceOffenceDetails, PezspStakingPagedExposureMetadata, PezspWeightsWeightV2Weight, StagingXcmV5Instruction, StagingXcmV5Xcm, XcmVersionedAssetId, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { H256, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { BinaryHeapEnqueuedOrder, PezframeSupportDispatchPerDispatchClassWeight, PezframeSupportScheduleDispatchTime, PezframeSupportTokensMiscIdAmountRuntimeFreezeReason, PezframeSupportTokensMiscIdAmountRuntimeHoldReason, PezframeSystemAccountInfo, PezframeSystemCodeUpgradeAuthorization, PezframeSystemEventRecord, PezframeSystemLastRuntimeUpgradeInfo, PezframeSystemPhase, PezkuwiCorePrimitivesInboundDownwardMessage, PezkuwiCorePrimitivesInboundHrmpMessage, PezkuwiPrimitivesV8AssignmentAppPublic, PezkuwiPrimitivesV8DisputeState, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8SessionInfo, PezkuwiPrimitivesV8UpgradeGoAhead, PezkuwiPrimitivesV8UpgradeRestriction, PezkuwiPrimitivesV8ValidatorAppPublic, PezkuwiPrimitivesVstagingPendingSlashes, PezkuwiPrimitivesVstagingScrapedOnChainVotes, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonCrowdloanFundInfo, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeCommonParasRegistrarParaInfo, PezkuwiRuntimeSessionKeys, PezkuwiRuntimeTeyrchainsAssignerCoretimeCoreDescriptor, PezkuwiRuntimeTeyrchainsAssignerCoretimeSchedule, PezkuwiRuntimeTeyrchainsConfigurationHostConfiguration, PezkuwiRuntimeTeyrchainsHrmpHrmpChannel, PezkuwiRuntimeTeyrchainsHrmpHrmpOpenChannelRequest, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiRuntimeTeyrchainsInclusionCandidatePendingAvailability, PezkuwiRuntimeTeyrchainsInitializerBufferedSessionChange, PezkuwiRuntimeTeyrchainsOnDemandTypesCoreAffinityCount, PezkuwiRuntimeTeyrchainsOnDemandTypesEnqueuedOrder, PezkuwiRuntimeTeyrchainsOnDemandTypesQueueStatusType, PezkuwiRuntimeTeyrchainsParasAuthorizedCodeHashAndExpiry, PezkuwiRuntimeTeyrchainsParasParaGenesisArgs, PezkuwiRuntimeTeyrchainsParasParaLifecycle, PezkuwiRuntimeTeyrchainsParasParaPastCodeMeta, PezkuwiRuntimeTeyrchainsParasPvfCheckActiveVoteState, PezkuwiRuntimeTeyrchainsSchedulerCommonAssignment, PezkuwiRuntimeTeyrchainsSharedAllowedRelayParentsTracker, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBagsListListBag, PezpalletBagsListListNode, PezpalletBalancesAccountData, PezpalletBalancesBalanceLock, PezpalletBalancesReserveData, PezpalletBountiesBounty, PezpalletChildBountiesChildBounty, PezpalletConvictionVotingVoteVoting, PezpalletDelegatedStakingAgentLedger, PezpalletDelegatedStakingDelegation, PezpalletElectionProviderMultiPhasePhase, PezpalletElectionProviderMultiPhaseReadySolution, PezpalletElectionProviderMultiPhaseRoundSnapshot, PezpalletElectionProviderMultiPhaseSignedSignedSubmission, PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PezpalletFastUnstakeUnstakeRequest, PezpalletGrandpaStoredPendingChange, PezpalletGrandpaStoredState, PezpalletMessageQueueBookState, PezpalletMessageQueuePage, PezpalletMultisigMultisig, PezpalletNominationPoolsBondedPoolInner, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsPoolMember, PezpalletNominationPoolsRewardPool, PezpalletNominationPoolsSubPools, PezpalletPreimageOldRequestStatus, PezpalletPreimageRequestStatus, PezpalletProxyAnnouncement, PezpalletProxyProxyDefinition, PezpalletRcMigratorAccountsAccountState, PezpalletRcMigratorAccountsMigratedBalances, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletReferendaReferendumInfo, PezpalletSchedulerRetryConfig, PezpalletSchedulerScheduled, PezpalletStakingActiveEraInfo, PezpalletStakingAsyncAhClientOperatingMode, PezpalletStakingAsyncRcClientOffence, PezpalletStakingAsyncRcClientSessionReport, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingEraRewardPoints, PezpalletStakingForcing, PezpalletStakingNominations, PezpalletStakingRewardDestination, PezpalletStakingSlashingSlashingSpans, PezpalletStakingSlashingSpanRecord, PezpalletStakingStakingLedger, PezpalletStakingUnappliedSlash, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletTransactionPaymentReleases, PezpalletTreasuryProposal, PezpalletTreasurySpendStatus, PezpalletVestingReleases, PezpalletVestingVestingInfo, PezpalletXcmAuthorizedAliasesEntry, PezpalletXcmQueryStatus, PezpalletXcmRemoteLockedFungibleRecord, PezpalletXcmVersionMigrationStage, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeEpochConfiguration, PezspConsensusBabeDigestsNextConfigDescriptor, PezspConsensusBabeDigestsPreDigest, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyMmrBeefyAuthoritySet, PezspConsensusGrandpaAppPublic, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspNposElectionsElectionScore, PezspRuntimeDigest, PezspStakingExposure, PezspStakingExposurePage, PezspStakingOffenceOffenceDetails, PezspStakingPagedExposureMetadata, PezspWeightsWeightV2Weight, StagingXcmV5Instruction, StagingXcmV5Xcm, XcmVersionedAssetId, XcmVersionedLocation } from '@pezkuwi/types/lookup';
|
||||
import type { Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedQuery<ApiType extends ApiTypes> = AugmentedQuery<ApiType, () => unknown>;
|
||||
@@ -46,13 +46,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Amounts currently reserved in the accounts of the bidders currently winning
|
||||
* (sub-)ranges.
|
||||
**/
|
||||
reservedAmounts: AugmentedQuery<ApiType, (arg: ITuple<[AccountId32, u32]> | [AccountId32 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<Option<u128>>, [ITuple<[AccountId32, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[AccountId32, u32]>]>;
|
||||
reservedAmounts: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoAccountId32, u32]> | string | Uint8Array) => Observable<Option<u128>>, [ITuple<[PezspCoreCryptoAccountId32, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoAccountId32, u32]>]>;
|
||||
/**
|
||||
* The winning bids for each of the 10 ranges at each sample in the final Ending Period of
|
||||
* the current auction. The map's key is the 0-based index into the Sample Size. The
|
||||
* first sample of the ending period is 0; the last is `Sample Size - 1`.
|
||||
**/
|
||||
winning: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<Option<ITuple<[AccountId32, u32, u128]>>>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
winning: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<Option<ITuple<[PezspCoreCryptoAccountId32, u32, u128]>>>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -76,7 +76,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Author of current block.
|
||||
**/
|
||||
author: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
author: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -222,15 +222,15 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* `Balances` pallet, which uses a `StorageMap` to store balances data only.
|
||||
* NOTE: This is only used in the case that this pallet is used to store balances.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletBalancesAccountData>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletBalancesAccountData>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Freeze locks on account balances.
|
||||
**/
|
||||
freezes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeFreezeReason>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
freezes: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeFreezeReason>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Holds on account balances.
|
||||
**/
|
||||
holds: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeHoldReason>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
holds: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezframeSupportTokensMiscIdAmountRuntimeHoldReason>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total units of outstanding deactivated balance in the system.
|
||||
**/
|
||||
@@ -241,13 +241,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Use of locks is deprecated in favour of freezes. See `https://github.com/paritytech/substrate/pull/12951/`
|
||||
**/
|
||||
locks: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesBalanceLock>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
locks: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesBalanceLock>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Named reserves on some account balances.
|
||||
*
|
||||
* Use of reserves is deprecated in favour of holds. See `https://github.com/paritytech/substrate/pull/12951/`
|
||||
**/
|
||||
reserves: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesReserveData>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
reserves: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<PezpalletBalancesReserveData>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total units issued in the system.
|
||||
**/
|
||||
@@ -379,7 +379,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Pre-claimed Ethereum accounts, by the Account ID that they are claimed to.
|
||||
**/
|
||||
preclaims: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeCommonClaimsEthereumAddress>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
preclaims: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeCommonClaimsEthereumAddress>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The statement kind that must be signed, if any.
|
||||
**/
|
||||
@@ -428,12 +428,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* require. The actual amount locked on behalf of this pallet should always be the maximum of
|
||||
* this list.
|
||||
**/
|
||||
classLocksFor: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Vec<ITuple<[u16, u128]>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
classLocksFor: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<ITuple<[u16, u128]>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* All voting for a particular voter in a particular voting class. We store the balance for the
|
||||
* number of votes that we have recorded.
|
||||
**/
|
||||
votingFor: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: u16 | AnyNumber | Uint8Array) => Observable<PezpalletConvictionVotingVoteVoting>, [AccountId32, u16]> & QueryableStorageEntry<ApiType, [AccountId32, u16]>;
|
||||
votingFor: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: u16 | AnyNumber | Uint8Array) => Observable<PezpalletConvictionVotingVoteVoting>, [PezspCoreCryptoAccountId32, u16]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, u16]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -486,7 +486,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Map of `Agent` to their `Ledger`.
|
||||
**/
|
||||
agents: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingAgentLedger>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
agents: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingAgentLedger>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -501,7 +501,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Implementation note: We are not using a double map with `delegator` and `agent` account
|
||||
* as keys since we want to restrict delegators to delegate only to one account at a time.
|
||||
**/
|
||||
delegators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingDelegation>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
delegators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletDelegatedStakingDelegation>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -642,7 +642,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Keeps track of `AccountId` wishing to unstake and it's corresponding deposit.
|
||||
**/
|
||||
queue: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u128>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
queue: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u128>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -793,7 +793,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The lookup from index to account.
|
||||
**/
|
||||
accounts: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[AccountId32, u128, bool]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
accounts: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<ITuple<[PezspCoreCryptoAccountId32, u128, bool]>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -869,7 +869,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The set of open multisig operations.
|
||||
**/
|
||||
multisigs: AugmentedQuery<ApiType, (arg1: AccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PezpalletMultisigMultisig>>, [AccountId32, U8aFixed]> & QueryableStorageEntry<ApiType, [AccountId32, U8aFixed]>;
|
||||
multisigs: AugmentedQuery<ApiType, (arg1: PezspCoreCryptoAccountId32 | string | Uint8Array, arg2: U8aFixed | string | Uint8Array) => Observable<Option<PezpalletMultisigMultisig>>, [PezspCoreCryptoAccountId32, U8aFixed]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32, U8aFixed]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -883,7 +883,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Map from a pool member account to their opted claim permission.
|
||||
**/
|
||||
claimPermissions: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletNominationPoolsClaimPermission>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
claimPermissions: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletNominationPoolsClaimPermission>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -913,7 +913,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* pool commissions that are > `GlobalMaxCommission`, necessary if a future
|
||||
* `GlobalMaxCommission` is lower than some current pool commissions.
|
||||
**/
|
||||
globalMaxCommission: AugmentedQuery<ApiType, () => Observable<Option<Perbill>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
globalMaxCommission: AugmentedQuery<ApiType, () => Observable<Option<u32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Ever increasing number of all pools created so far.
|
||||
**/
|
||||
@@ -956,14 +956,14 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
poolMembers: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletNominationPoolsPoolMember>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
poolMembers: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletNominationPoolsPoolMember>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* A reverse lookup from the pool's account id to its id.
|
||||
*
|
||||
* This is only used for slashing and on automatic withdraw update. In all other instances, the
|
||||
* pool id is used, and the accounts are deterministically derived from it.
|
||||
**/
|
||||
reversePoolIdLookup: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<u32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
reversePoolIdLookup: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Reward pools. This is where there rewards for each pool accumulate. When a members payout is
|
||||
* claimed, the balance comes out of the reward pool. Keyed by the bonded pools account.
|
||||
@@ -1009,7 +1009,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Keeps track of credits owned by each account.
|
||||
**/
|
||||
credits: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u128>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
credits: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<u128>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Priority queue for all orders which don't yet (or not any more) have any core affinity.
|
||||
**/
|
||||
@@ -1287,7 +1287,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The validator account keys of the validators actively participating in parachain consensus.
|
||||
**/
|
||||
accountKeys: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<AccountId32>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
accountKeys: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Option<Vec<PezspCoreCryptoAccountId32>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Assignment keys for the current session.
|
||||
* Note that this API is private due to it being prone to 'off-by-one' at session boundaries.
|
||||
@@ -1370,12 +1370,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The announcements made by the proxy (key).
|
||||
**/
|
||||
announcements: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyAnnouncement>, u128]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
announcements: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyAnnouncement>, u128]>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The set of account proxies. Maps the account which has delegated to the accounts
|
||||
* which are being delegated to, together with the amount held on deposit.
|
||||
**/
|
||||
proxies: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyProxyDefinition>, u128]>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
proxies: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<ITuple<[Vec<PezpalletProxyProxyDefinition>, u128]>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1396,7 +1396,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* This account id can only stop scheduled migration.
|
||||
**/
|
||||
canceller: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
canceller: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The duration of the post migration cool-off period.
|
||||
*
|
||||
@@ -1419,7 +1419,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* This account id has similar privileges to [`Config::AdminOrigin`] except that it
|
||||
* can not set the manager account id via `set_manager` call.
|
||||
**/
|
||||
manager: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
manager: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The current round of the multisig voting.
|
||||
*
|
||||
@@ -1429,13 +1429,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The multisig AccountIDs that votes to execute a specific call.
|
||||
**/
|
||||
managerMultisigs: AugmentedQuery<ApiType, (arg: RuntimeCall | IMethod | string | Uint8Array) => Observable<Vec<AccountId32>>, [RuntimeCall]> & QueryableStorageEntry<ApiType, [RuntimeCall]>;
|
||||
managerMultisigs: AugmentedQuery<ApiType, (arg: RuntimeCall | IMethod | string | Uint8Array) => Observable<Vec<PezspCoreCryptoAccountId32>>, [RuntimeCall]> & QueryableStorageEntry<ApiType, [RuntimeCall]>;
|
||||
/**
|
||||
* How often each participant voted in the current round.
|
||||
*
|
||||
* Will be cleared at the end of each round.
|
||||
**/
|
||||
managerVotesInCurrentRound: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
managerVotesInCurrentRound: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<u32>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Block number when migration finished and extrinsics were unlocked.
|
||||
*
|
||||
@@ -1473,12 +1473,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Boolean value is whether they have been migrated to the Asset Hub. Needed for idempotency.
|
||||
**/
|
||||
pureProxyCandidatesMigrated: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<bool>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
pureProxyCandidatesMigrated: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<bool>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Helper storage item to obtain and store the known accounts that should be kept partially or
|
||||
* fully on Relay Chain.
|
||||
**/
|
||||
rcAccounts: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletRcMigratorAccountsAccountState>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
rcAccounts: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletRcMigratorAccountsAccountState>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Helper storage item to store the total balance that should be kept on Relay Chain.
|
||||
**/
|
||||
@@ -1608,15 +1608,15 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* disabled using binary search. It gets cleared when `on_session_ending` returns
|
||||
* a new set of identities.
|
||||
**/
|
||||
disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u32, Perbill]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
disabledValidators: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[u32, u32]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The owner of a key. The key is the `KeyTypeId` + the encoded key.
|
||||
**/
|
||||
keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoKeyTypeId, Bytes]> | [PezspCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<AccountId32>>, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]>;
|
||||
keyOwner: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoKeyTypeId, Bytes]> | [PezspCoreCryptoKeyTypeId | string | Uint8Array, Bytes | string | Uint8Array]) => Observable<Option<PezspCoreCryptoAccountId32>>, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoKeyTypeId, Bytes]>]>;
|
||||
/**
|
||||
* The next session keys for a validator.
|
||||
**/
|
||||
nextKeys: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeSessionKeys>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
nextKeys: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezkuwiRuntimeSessionKeys>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* True if the underlying economic identities or weighting behind the validators
|
||||
* has changed in the queued validator set.
|
||||
@@ -1626,11 +1626,11 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* The queued keys for the next session. When the next session begins, these keys
|
||||
* will be used to determine the validator's session keys.
|
||||
**/
|
||||
queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[AccountId32, PezkuwiRuntimeSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
queuedKeys: AugmentedQuery<ApiType, () => Observable<Vec<ITuple<[PezspCoreCryptoAccountId32, PezkuwiRuntimeSessionKeys]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The current set of validators.
|
||||
**/
|
||||
validators: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
validators: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1655,7 +1655,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* It is illegal for a `None` value to trail in the list.
|
||||
**/
|
||||
leases: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<ITuple<[AccountId32, u128]>>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
leases: AugmentedQuery<ApiType, (arg: u32 | AnyNumber | Uint8Array) => Observable<Vec<Option<ITuple<[PezspCoreCryptoAccountId32, u128]>>>>, [u32]> & QueryableStorageEntry<ApiType, [u32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1674,7 +1674,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
bonded: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<AccountId32>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
bonded: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezspCoreCryptoAccountId32>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* A mapping from still-bonded eras to the first session index of that era.
|
||||
*
|
||||
@@ -1692,7 +1692,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* nominators. The threshold is compared to the actual number of validators / nominators
|
||||
* (`CountFor*`) in the system compared to the configured max (`Max*Count`).
|
||||
**/
|
||||
chillThreshold: AugmentedQuery<ApiType, () => Observable<Option<Percent>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
chillThreshold: AugmentedQuery<ApiType, () => Observable<Option<u8>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* History of claimed paged rewards by era and validator.
|
||||
*
|
||||
@@ -1701,7 +1701,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* It is removed after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
claimedRewards: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Vec<u32>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
claimedRewards: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Vec<u32>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Counter for the related counted storage map
|
||||
**/
|
||||
@@ -1742,7 +1742,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Note: Deprecated since v14. Use `EraInfo` instead to work with exposures.
|
||||
**/
|
||||
erasStakers: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<PezspStakingExposure>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasStakers: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezspStakingExposure>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Clipped Exposure of validator at era.
|
||||
*
|
||||
@@ -1761,7 +1761,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Note: Deprecated since v14. Use `EraInfo` instead to work with exposures.
|
||||
**/
|
||||
erasStakersClipped: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<PezspStakingExposure>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasStakersClipped: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezspStakingExposure>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Summary of validator exposure at a given era.
|
||||
*
|
||||
@@ -1776,7 +1776,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Is it removed after [`Config::HistoryDepth`] eras.
|
||||
* If stakers hasn't been set or has been removed then empty overview is returned.
|
||||
**/
|
||||
erasStakersOverview: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<PezspStakingPagedExposureMetadata>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasStakersOverview: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezspStakingPagedExposureMetadata>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Paginated exposure of a validator at given era.
|
||||
*
|
||||
@@ -1785,7 +1785,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* This is cleared after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
erasStakersPaged: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<PezspStakingExposurePage>>, [u32, AccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, AccountId32, u32]>;
|
||||
erasStakersPaged: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: u32 | AnyNumber | Uint8Array) => Observable<Option<PezspStakingExposurePage>>, [u32, PezspCoreCryptoAccountId32, u32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* The session index at which the era start for the last [`Config::HistoryDepth`] eras.
|
||||
*
|
||||
@@ -1805,7 +1805,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Is it removed after [`Config::HistoryDepth`] eras.
|
||||
**/
|
||||
erasValidatorPrefs: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<PezpalletStakingValidatorPrefs>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
erasValidatorPrefs: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletStakingValidatorPrefs>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The total validator era payout for the last [`Config::HistoryDepth`] eras.
|
||||
*
|
||||
@@ -1821,14 +1821,14 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* easy to initialize and the performance hit is minimal (we expect no more than four
|
||||
* invulnerables) and restricted to testnets.
|
||||
**/
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
invulnerables: AugmentedQuery<ApiType, () => Observable<Vec<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Map from all (unlocked) "controller" accounts to the info regarding the staking.
|
||||
*
|
||||
* Note: All the reads and mutations to this storage *MUST* be done through the methods exposed
|
||||
* by [`StakingLedger`] to ensure data and lock consistency.
|
||||
**/
|
||||
ledger: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingStakingLedger>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
ledger: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingStakingLedger>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The maximum nominator count before we stop allowing new validators to join.
|
||||
*
|
||||
@@ -1840,7 +1840,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* is used for stake rewards.
|
||||
* See [Era payout](./index.html#era-payout).
|
||||
**/
|
||||
maxStakedRewards: AugmentedQuery<ApiType, () => Observable<Option<Percent>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
maxStakedRewards: AugmentedQuery<ApiType, () => Observable<Option<u8>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The maximum validator count before we stop allowing new validators to join.
|
||||
*
|
||||
@@ -1852,7 +1852,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* If set to `0`, no limit exists.
|
||||
**/
|
||||
minCommission: AugmentedQuery<ApiType, () => Observable<Perbill>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
minCommission: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The minimum active nominator stake of the last successful election.
|
||||
**/
|
||||
@@ -1890,32 +1890,32 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
nominators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingNominations>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
nominators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingNominations>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* All slashing events on nominators, mapped by era to the highest slash value of the era.
|
||||
**/
|
||||
nominatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
nominatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<u128>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Where the reward payment should be made. Keyed by stash.
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
payee: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingRewardDestination>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
payee: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingRewardDestination>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Slashing spans for stash accounts.
|
||||
**/
|
||||
slashingSpans: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingSlashingSlashingSpans>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
slashingSpans: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletStakingSlashingSlashingSpans>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The percentage of the slash that is distributed to reporters.
|
||||
*
|
||||
* The rest of the slashed value is handled by the `Slash`.
|
||||
**/
|
||||
slashRewardFraction: AugmentedQuery<ApiType, () => Observable<Perbill>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
slashRewardFraction: AugmentedQuery<ApiType, () => Observable<u32>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Records information about the maximum slash of a stash within a slashing span,
|
||||
* as well as how much reward has been paid out.
|
||||
**/
|
||||
spanSlash: AugmentedQuery<ApiType, (arg: ITuple<[AccountId32, u32]> | [AccountId32 | string | Uint8Array, u32 | AnyNumber | Uint8Array]) => Observable<PezpalletStakingSlashingSpanRecord>, [ITuple<[AccountId32, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[AccountId32, u32]>]>;
|
||||
spanSlash: AugmentedQuery<ApiType, (arg: ITuple<[PezspCoreCryptoAccountId32, u32]> | string | Uint8Array) => Observable<PezpalletStakingSlashingSpanRecord>, [ITuple<[PezspCoreCryptoAccountId32, u32]>]> & QueryableStorageEntry<ApiType, [ITuple<[PezspCoreCryptoAccountId32, u32]>]>;
|
||||
/**
|
||||
* All unapplied slashes that are queued for later.
|
||||
**/
|
||||
@@ -1929,12 +1929,12 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* TWOX-NOTE: SAFE since `AccountId` is a secure hash.
|
||||
**/
|
||||
validators: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezpalletStakingValidatorPrefs>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
validators: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezpalletStakingValidatorPrefs>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* All slashing events on validators, mapped by era to the highest slash proportion
|
||||
* and slash value of the era.
|
||||
**/
|
||||
validatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array) => Observable<Option<ITuple<[Perbill, u128]>>>, [u32, AccountId32]> & QueryableStorageEntry<ApiType, [u32, AccountId32]>;
|
||||
validatorSlashInEra: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<ITuple<[u32, u128]>>>, [u32, PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Stakers whose funds are managed by other pallets.
|
||||
*
|
||||
@@ -1943,7 +1943,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* directly via this pallet. Instead, these accounts are managed by other pallets and accessed
|
||||
* via low level apis. We keep track of them to do minimal integrity checks.
|
||||
**/
|
||||
virtualStakers: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Null>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
virtualStakers: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Null>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -1993,13 +1993,13 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* This is populated during a session, and is flushed and sent over via [`SendToAssetHub`]
|
||||
* at each session end.
|
||||
**/
|
||||
validatorPoints: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<u32>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
validatorPoints: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<u32>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The queued validator sets for a given planning session index.
|
||||
*
|
||||
* This is received via a call from AssetHub.
|
||||
**/
|
||||
validatorSet: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[u32, Vec<AccountId32>]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
validatorSet: AugmentedQuery<ApiType, () => Observable<Option<ITuple<[u32, Vec<PezspCoreCryptoAccountId32>]>>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* The session index at which the latest elected validator set was applied.
|
||||
*
|
||||
@@ -2041,7 +2041,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* The full account information for a particular account ID.
|
||||
**/
|
||||
account: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<PezframeSystemAccountInfo>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
account: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<PezframeSystemAccountInfo>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Total length (in bytes) for all extrinsics put together, for the current block.
|
||||
**/
|
||||
@@ -2219,7 +2219,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Information regarding the vesting of a given account.
|
||||
**/
|
||||
vesting: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<PezpalletVestingVestingInfo>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
vesting: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Vec<PezpalletVestingVestingInfo>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -2241,7 +2241,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
*
|
||||
* Nodes store links forward and back within their respective bags.
|
||||
**/
|
||||
listNodes: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<PezpalletBagsListListNode>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
listNodes: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<PezpalletBagsListListNode>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Lock all updates to this pallet.
|
||||
*
|
||||
@@ -2253,7 +2253,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
* Pointer that remembers the next node that will be auto-rebagged.
|
||||
* When `None`, the next scan will start from the list head again.
|
||||
**/
|
||||
nextNodeAutoRebagged: AugmentedQuery<ApiType, () => Observable<Option<AccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
nextNodeAutoRebagged: AugmentedQuery<ApiType, () => Observable<Option<PezspCoreCryptoAccountId32>>, []> & QueryableStorageEntry<ApiType, []>;
|
||||
/**
|
||||
* Generic query
|
||||
**/
|
||||
@@ -2287,7 +2287,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Fungible assets which we know are locked on this chain.
|
||||
**/
|
||||
lockedFungibles: AugmentedQuery<ApiType, (arg: AccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedLocation]>>>>, [AccountId32]> & QueryableStorageEntry<ApiType, [AccountId32]>;
|
||||
lockedFungibles: AugmentedQuery<ApiType, (arg: PezspCoreCryptoAccountId32 | string | Uint8Array) => Observable<Option<Vec<ITuple<[u128, XcmVersionedLocation]>>>>, [PezspCoreCryptoAccountId32]> & QueryableStorageEntry<ApiType, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* The ongoing queries.
|
||||
**/
|
||||
@@ -2308,7 +2308,7 @@ declare module '@pezkuwi/api-base/types/storage' {
|
||||
/**
|
||||
* Fungible assets which we know are locked on a remote chain.
|
||||
**/
|
||||
remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: AccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Option<PezpalletXcmRemoteLockedFungibleRecord>>, [u32, AccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, AccountId32, XcmVersionedAssetId]>;
|
||||
remoteLockedFungibles: AugmentedQuery<ApiType, (arg1: u32 | AnyNumber | Uint8Array, arg2: PezspCoreCryptoAccountId32 | string | Uint8Array, arg3: XcmVersionedAssetId | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Option<PezpalletXcmRemoteLockedFungibleRecord>>, [u32, PezspCoreCryptoAccountId32, XcmVersionedAssetId]> & QueryableStorageEntry<ApiType, [u32, PezspCoreCryptoAccountId32, XcmVersionedAssetId]>;
|
||||
/**
|
||||
* Default version to encode XCM when latest version of destination is unknown. If `None`,
|
||||
* then the destinations whose XCM version is unknown are considered unreachable.
|
||||
|
||||
@@ -13,7 +13,7 @@ import type { Extrinsic } from '@pezkuwi/types/interfaces/extrinsics';
|
||||
import type { OpaqueMetadata } from '@pezkuwi/types/interfaces/metadata';
|
||||
import type { AccountId32, H256, RuntimeCall, Slot } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { ParaId, ValidationCodeHash } from '@pezkuwi/types/interfaces/teyrchains';
|
||||
import type { PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezkuwiCorePrimitivesInboundDownwardMessage, PezkuwiCorePrimitivesInboundHrmpMessage, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8CandidateCommitments, PezkuwiPrimitivesV8DisputeState, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8GroupRotationInfo, PezkuwiPrimitivesV8OccupiedCoreAssumption, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SessionInfo, PezkuwiPrimitivesV8SlashingDisputeProof, PezkuwiPrimitivesV8SlashingPendingSlashes, PezkuwiPrimitivesV8ValidatorAppPublic, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingAsyncBackingBackingState, PezkuwiPrimitivesVstagingAsyncBackingConstraints, PezkuwiPrimitivesVstagingCandidateEvent, PezkuwiPrimitivesVstagingCommittedCandidateReceiptV2, PezkuwiPrimitivesVstagingCoreState, PezkuwiPrimitivesVstagingScrapedOnChainVotes, PezkuwiRuntimeOriginCaller, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeConfiguration, PezspConsensusBabeEpoch, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyForkVotingProofOpaqueValue, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusBeefyMmrBeefyAuthoritySet, PezspConsensusBeefyValidatorSet, PezspConsensusGrandpaAppPublic, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspMmrPrimitivesError, PezspMmrPrimitivesLeafProof, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, RelayCommonApisInflationInfo, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { PezframeSupportViewFunctionsViewFunctionDispatchError, PezframeSupportViewFunctionsViewFunctionId, PezkuwiCorePrimitivesInboundDownwardMessage, PezkuwiCorePrimitivesInboundHrmpMessage, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8CandidateCommitments, PezkuwiPrimitivesV8DisputeState, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8GroupRotationInfo, PezkuwiPrimitivesV8OccupiedCoreAssumption, PezkuwiPrimitivesV8PersistedValidationData, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SessionInfo, PezkuwiPrimitivesV8SlashingDisputeProof, PezkuwiPrimitivesV8SlashingPendingSlashes, PezkuwiPrimitivesV8ValidatorAppPublic, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingAsyncBackingBackingState, PezkuwiPrimitivesVstagingAsyncBackingConstraints, PezkuwiPrimitivesVstagingCandidateEvent, PezkuwiPrimitivesVstagingCommittedCandidateReceiptV2, PezkuwiPrimitivesVstagingCoreState, PezkuwiPrimitivesVstagingScrapedOnChainVotes, PezkuwiRuntimeOriginCaller, PezpalletTransactionPaymentFeeDetails, PezpalletTransactionPaymentRuntimeDispatchInfo, PezspAuthorityDiscoveryAppPublic, PezspConsensusBabeAppPublic, PezspConsensusBabeBabeConfiguration, PezspConsensusBabeEpoch, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyEcdsaCryptoPublic, PezspConsensusBeefyForkVotingProofOpaqueValue, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusBeefyMmrBeefyAuthoritySet, PezspConsensusBeefyValidatorSet, PezspConsensusGrandpaAppPublic, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoAccountId32, PezspCoreCryptoKeyTypeId, PezspInherentsCheckInherentsResult, PezspInherentsInherentData, PezspMmrPrimitivesError, PezspMmrPrimitivesLeafProof, PezspRuntimeBlock, PezspRuntimeDispatchError, PezspRuntimeExtrinsicInclusionMode, PezspRuntimeHeader, PezspRuntimeTransactionValidityTransactionSource, PezspRuntimeTransactionValidityTransactionValidityError, PezspRuntimeTransactionValidityValidTransaction, PezspVersionRuntimeVersion, PezspWeightsWeightV2Weight, RelayCommonApisInflationInfo, XcmRuntimeApisConversionsError, XcmRuntimeApisDryRunCallDryRunEffects, XcmRuntimeApisDryRunError, XcmRuntimeApisDryRunXcmDryRunEffects, XcmRuntimeApisFeesError, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { IExtrinsic, Observable } from '@pezkuwi/types/types';
|
||||
|
||||
export type __AugmentedCall<ApiType extends ApiTypes> = AugmentedCall<ApiType>;
|
||||
@@ -239,7 +239,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Converts `Location` to `AccountId`.
|
||||
**/
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<AccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
convertLocation: AugmentedCall<ApiType, (location: XcmVersionedLocation | { V3: any } | { V4: any } | { V5: any } | string | Uint8Array) => Observable<Result<PezspCoreCryptoAccountId32, XcmRuntimeApisConversionsError>>>;
|
||||
/**
|
||||
* Generic call
|
||||
**/
|
||||
@@ -254,7 +254,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the metadata at a given version.,, If the given `version` isn't supported, this will return `None`., Use [`Self::metadata_versions`] to find out about supported metadata version of the runtime.
|
||||
**/
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<OpaqueMetadata>>>;
|
||||
metadataAtVersion: AugmentedCall<ApiType, (version: u32 | AnyNumber | Uint8Array) => Observable<Option<Bytes>>>;
|
||||
/**
|
||||
* Returns the supported metadata versions.,, This can be used to call `metadata_at_version`.
|
||||
**/
|
||||
@@ -320,7 +320,7 @@ declare module '@pezkuwi/api-base/types/calls' {
|
||||
/**
|
||||
* Returns the bonded account and reward account associated with the pool_id.
|
||||
**/
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[AccountId32, AccountId32]>>>;
|
||||
poolAccounts: AugmentedCall<ApiType, (pool_id: u32 | AnyNumber | Uint8Array) => Observable<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>>;
|
||||
/**
|
||||
* Total balance contributed to the pool.
|
||||
**/
|
||||
|
||||
@@ -8,8 +8,8 @@ import '@pezkuwi/api-base/types/submittable';
|
||||
import type { ApiTypes, AugmentedSubmittable, SubmittableExtrinsic, SubmittableExtrinsicFunction } from '@pezkuwi/api-base/types';
|
||||
import type { Bytes, Compact, Option, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { AnyNumber, IMethod, ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, MultiAddress, Perbill, Percent, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportPreimagesBounded, PezframeSupportScheduleDispatchTime, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SchedulerParams, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingDisputeProof, PezkuwiPrimitivesVstagingInherentData, PezkuwiRuntimeCommonClaimsEcdsaSignature, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeConstantsProxyProxyType, PezkuwiRuntimeOriginCaller, PezkuwiRuntimeSessionKeys, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesAdjustmentDirection, PezpalletBrokerCoretimeInterfaceCoreAssignment, PezpalletConvictionVotingConviction, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseRawSolution, PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PezpalletMultisigTimepoint, PezpalletNominationPoolsBondExtra, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpPerbill, PezpalletNominationPoolsConfigOpU128, PezpalletNominationPoolsConfigOpU32, PezpalletNominationPoolsPoolState, PezpalletRcMigratorManagerMultisigVote, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientOperatingMode, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingPezpalletConfigOpPerbill, PezpalletStakingPezpalletConfigOpPercent, PezpalletStakingPezpalletConfigOpU128, PezpalletStakingPezpalletConfigOpU32, PezpalletStakingRewardDestination, PezpalletStakingUnlockChunk, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletStateTrieMigrationProgress, PezpalletVestingVestingInfo, PezspConsensusBabeDigestsNextConfigDescriptor, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyForkVotingProofAncestryProof, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspNposElectionsElectionScore, PezspNposElectionsSupport, PezspRuntimeMultiSignature, PezspRuntimeMultiSigner, PezspSessionMembershipProof, PezspWeightsWeightV2Weight, StagingXcmExecutorAssetTransferTransferType, StagingXcmV5Location, StagingXcmV5Response, XcmV3WeightLimit, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
import type { AccountId, AccountIndex, Address, H256, LookupSource, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { PezframeSupportPreimagesBounded, PezframeSupportScheduleDispatchTime, PezkuwiPrimitivesV8ApprovalVotingParams, PezkuwiPrimitivesV8AsyncBackingAsyncBackingParams, PezkuwiPrimitivesV8ExecutorParams, PezkuwiPrimitivesV8PvfCheckStatement, PezkuwiPrimitivesV8SchedulerParams, PezkuwiPrimitivesV8ValidatorAppSignature, PezkuwiPrimitivesVstagingDisputeProof, PezkuwiPrimitivesVstagingInherentData, PezkuwiRuntimeCommonClaimsEcdsaSignature, PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind, PezkuwiRuntimeCommonImplsVersionedLocatableAsset, PezkuwiRuntimeConstantsProxyProxyType, PezkuwiRuntimeOriginCaller, PezkuwiRuntimeSessionKeys, PezkuwiRuntimeTeyrchainsInclusionAggregateMessageOrigin, PezkuwiTeyrchainPrimitivesPrimitivesHrmpChannelId, PezpalletBalancesAdjustmentDirection, PezpalletBrokerCoretimeInterfaceCoreAssignment, PezpalletConvictionVotingConviction, PezpalletConvictionVotingVoteAccountVote, PezpalletElectionProviderMultiPhaseRawSolution, PezpalletElectionProviderMultiPhaseSolutionOrSnapshotSize, PezpalletMultisigTimepoint, PezpalletNominationPoolsBondExtra, PezpalletNominationPoolsClaimPermission, PezpalletNominationPoolsCommissionChangeRate, PezpalletNominationPoolsCommissionClaimPermission, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpPerbill, PezpalletNominationPoolsConfigOpU128, PezpalletNominationPoolsConfigOpU32, PezpalletNominationPoolsPoolState, PezpalletRcMigratorManagerMultisigVote, PezpalletRcMigratorMigrationSettings, PezpalletRcMigratorMigrationStage, PezpalletRcMigratorQueuePriority, PezpalletStakingAsyncAhClientOperatingMode, PezpalletStakingAsyncRcClientValidatorSetReport, PezpalletStakingPezpalletConfigOpPerbill, PezpalletStakingPezpalletConfigOpPercent, PezpalletStakingPezpalletConfigOpU128, PezpalletStakingPezpalletConfigOpU32, PezpalletStakingRewardDestination, PezpalletStakingUnlockChunk, PezpalletStakingValidatorPrefs, PezpalletStateTrieMigrationMigrationLimits, PezpalletStateTrieMigrationMigrationTask, PezpalletStateTrieMigrationProgress, PezpalletVestingVestingInfo, PezspConsensusBabeDigestsNextConfigDescriptor, PezspConsensusBeefyDoubleVotingProof, PezspConsensusBeefyForkVotingProofAncestryProof, PezspConsensusBeefyFutureBlockVotingProof, PezspConsensusGrandpaEquivocationProof, PezspConsensusSlotsEquivocationProof, PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore, PezspNposElectionsSupport, PezspRuntimeMultiAddress, PezspRuntimeMultiSignature, PezspRuntimeMultiSigner, PezspSessionMembershipProof, PezspWeightsWeightV2Weight, StagingXcmExecutorAssetTransferTransferType, StagingXcmV5Location, StagingXcmV5Response, XcmV3WeightLimit, XcmVersionedAssetId, XcmVersionedAssets, XcmVersionedLocation, XcmVersionedXcm } from '@pezkuwi/types/lookup';
|
||||
|
||||
export type __AugmentedSubmittable = AugmentedSubmittable<() => unknown>;
|
||||
export type __SubmittableExtrinsic<ApiType extends ApiTypes> = SubmittableExtrinsic<ApiType>;
|
||||
@@ -138,18 +138,18 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin for this call is `root`.
|
||||
**/
|
||||
forceSetBalance: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
forceSetBalance: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, newFree: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Exactly as `transfer_allow_death`, except the origin must be root and the source account
|
||||
* may be specified.
|
||||
**/
|
||||
forceTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Compact<u128>]>;
|
||||
forceTransfer: AugmentedSubmittable<(source: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Unreserve some balance from a user by force.
|
||||
*
|
||||
* Can only be called by ROOT.
|
||||
**/
|
||||
forceUnreserve: AugmentedSubmittable<(who: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u128]>;
|
||||
forceUnreserve: AugmentedSubmittable<(who: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u128]>;
|
||||
/**
|
||||
* Transfer the entire transferable balance from the caller account.
|
||||
*
|
||||
@@ -167,7 +167,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* transfer everything except at least the existential deposit, which will guarantee to
|
||||
* keep the sender account alive (true).
|
||||
**/
|
||||
transferAll: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, bool]>;
|
||||
transferAll: AugmentedSubmittable<(dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, keepAlive: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, bool]>;
|
||||
/**
|
||||
* Transfer some liquid free balance to another account.
|
||||
*
|
||||
@@ -177,7 +177,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin for this call must be `Signed` by the transactor.
|
||||
**/
|
||||
transferAllowDeath: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
transferAllowDeath: AugmentedSubmittable<(dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Same as the [`transfer_allow_death`] call, but with a check that the transfer will not
|
||||
* kill the origin account.
|
||||
@@ -186,7 +186,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* [`transfer_allow_death`]: struct.Pallet.html#method.transfer
|
||||
**/
|
||||
transferKeepAlive: AugmentedSubmittable<(dest: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
transferKeepAlive: AugmentedSubmittable<(dest: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, value: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Upgrade a specified account.
|
||||
*
|
||||
@@ -197,7 +197,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* be upgraded. (We let some not have to be upgraded just in order to allow for the
|
||||
* possibility of churn).
|
||||
**/
|
||||
upgradeAccounts: AugmentedSubmittable<(who: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
upgradeAccounts: AugmentedSubmittable<(who: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -303,7 +303,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - O(1).
|
||||
**/
|
||||
approveBountyWithCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress, Compact<u128>]>;
|
||||
approveBountyWithCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Award bounty to a beneficiary account. The beneficiary will be able to claim the funds
|
||||
* after a delay.
|
||||
@@ -316,7 +316,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - O(1).
|
||||
**/
|
||||
awardBounty: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress]>;
|
||||
awardBounty: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Claim the payout from an awarded bounty after payout delay.
|
||||
*
|
||||
@@ -393,7 +393,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - O(1).
|
||||
**/
|
||||
proposeCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, MultiAddress, Compact<u128>]>;
|
||||
proposeCurator: AugmentedSubmittable<(bountyId: Compact<u32> | AnyNumber | Uint8Array, curator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Unassign curator from a bounty.
|
||||
*
|
||||
@@ -483,7 +483,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `child_bounty_id`: Index of child bounty.
|
||||
* - `beneficiary`: Beneficiary account.
|
||||
**/
|
||||
awardChildBounty: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, MultiAddress]>;
|
||||
awardChildBounty: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, beneficiary: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Claim the payout from an awarded child-bounty after payout delay.
|
||||
*
|
||||
@@ -545,7 +545,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `curator`: Address of child-bounty curator.
|
||||
* - `fee`: payment fee to child-bounty curator for execution.
|
||||
**/
|
||||
proposeCurator: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, curator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, MultiAddress, Compact<u128>]>;
|
||||
proposeCurator: AugmentedSubmittable<(parentBountyId: Compact<u32> | AnyNumber | Uint8Array, childBountyId: Compact<u32> | AnyNumber | Uint8Array, curator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, fee: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u32>, Compact<u32>, PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Unassign curator from a child-bounty.
|
||||
*
|
||||
@@ -637,7 +637,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Total Complexity: O(1)
|
||||
* </weight>
|
||||
**/
|
||||
claim: AugmentedSubmittable<(dest: AccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature) => SubmittableExtrinsic<ApiType>, [AccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature]>;
|
||||
claim: AugmentedSubmittable<(dest: PezspCoreCryptoAccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature]>;
|
||||
/**
|
||||
* Make a claim to collect your DOTs by signing a statement.
|
||||
*
|
||||
@@ -667,7 +667,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Total Complexity: O(1)
|
||||
* </weight>
|
||||
**/
|
||||
claimAttest: AugmentedSubmittable<(dest: AccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature, statement: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature, Bytes]>;
|
||||
claimAttest: AugmentedSubmittable<(dest: PezspCoreCryptoAccountId32 | string | Uint8Array, ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature, statement: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, PezkuwiRuntimeCommonClaimsEcdsaSignature, Bytes]>;
|
||||
/**
|
||||
* Mint a new claim to collect DOTs.
|
||||
*
|
||||
@@ -686,7 +686,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* </weight>
|
||||
**/
|
||||
mintClaim: AugmentedSubmittable<(who: PezkuwiRuntimeCommonClaimsEthereumAddress, value: u128 | AnyNumber | Uint8Array, vestingSchedule: Option<ITuple<[u128, u128, u32]>> | null | Uint8Array | ITuple<[u128, u128, u32]> | [u128 | AnyNumber | Uint8Array, u128 | AnyNumber | Uint8Array, u32 | AnyNumber | Uint8Array], statement: Option<PezkuwiRuntimeCommonClaimsStatementKind> | null | Uint8Array | PezkuwiRuntimeCommonClaimsStatementKind) => SubmittableExtrinsic<ApiType>, [PezkuwiRuntimeCommonClaimsEthereumAddress, u128, Option<ITuple<[u128, u128, u32]>>, Option<PezkuwiRuntimeCommonClaimsStatementKind>]>;
|
||||
moveClaim: AugmentedSubmittable<(old: PezkuwiRuntimeCommonClaimsEthereumAddress, updated: PezkuwiRuntimeCommonClaimsEthereumAddress, maybePreclaim: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsEthereumAddress, Option<AccountId32>]>;
|
||||
moveClaim: AugmentedSubmittable<(old: PezkuwiRuntimeCommonClaimsEthereumAddress, updated: PezkuwiRuntimeCommonClaimsEthereumAddress, maybePreclaim: Option<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsEthereumAddress, Option<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -846,7 +846,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
/**
|
||||
* Set the on demand (parathreads) fee variability.
|
||||
**/
|
||||
setOnDemandFeeVariability: AugmentedSubmittable<(updated: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Perbill]>;
|
||||
setOnDemandFeeVariability: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
||||
/**
|
||||
* Set the on demand (parathreads) queue max size.
|
||||
**/
|
||||
@@ -854,7 +854,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
/**
|
||||
* Set the on demand (parathreads) fee variability.
|
||||
**/
|
||||
setOnDemandTargetQueueUtilization: AugmentedSubmittable<(updated: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Perbill]>;
|
||||
setOnDemandTargetQueueUtilization: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
||||
/**
|
||||
* Set the availability period for paras.
|
||||
**/
|
||||
@@ -918,7 +918,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Weight: `O(R)` where R is the number of polls the voter delegating to has
|
||||
* voted on. Weight is initially charged as if maximum votes, but is refunded later.
|
||||
**/
|
||||
delegate: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, to: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, conviction: PezpalletConvictionVotingConviction, balance: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, MultiAddress, PezpalletConvictionVotingConviction, u128]>;
|
||||
delegate: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, to: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, conviction: PezpalletConvictionVotingConviction, balance: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, PezspRuntimeMultiAddress, PezpalletConvictionVotingConviction, u128]>;
|
||||
/**
|
||||
* Remove a vote for a poll.
|
||||
*
|
||||
@@ -937,7 +937,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Weight: `O(R + log R)` where R is the number of polls that `target` has voted on.
|
||||
* Weight is calculated for the maximum number of vote.
|
||||
**/
|
||||
removeOtherVote: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, clazz: u16 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u16, u32]>;
|
||||
removeOtherVote: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, clazz: u16 | AnyNumber | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u16, u32]>;
|
||||
/**
|
||||
* Remove a vote for a poll.
|
||||
*
|
||||
@@ -998,7 +998,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Weight: `O(R)` with R number of vote of target.
|
||||
**/
|
||||
unlock: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, MultiAddress]>;
|
||||
unlock: AugmentedSubmittable<(clazz: u16 | AnyNumber | Uint8Array, target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Vote in a poll. If `vote.is_aye()`, the vote is to enact the proposal;
|
||||
* otherwise it is a vote to keep the status quo.
|
||||
@@ -1029,7 +1029,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* -`end_hint`: An optional hint as to when this particular set of instructions will end.
|
||||
**/
|
||||
assignCore: AugmentedSubmittable<(core: u16 | AnyNumber | Uint8Array, begin: u32 | AnyNumber | Uint8Array, assignment: Vec<ITuple<[PezpalletBrokerCoretimeInterfaceCoreAssignment, u16]>> | ([PezpalletBrokerCoretimeInterfaceCoreAssignment, u16 | AnyNumber | Uint8Array])[], endHint: Option<u32> | null | Uint8Array | u32 | AnyNumber) => SubmittableExtrinsic<ApiType>, [u16, u32, Vec<ITuple<[PezpalletBrokerCoretimeInterfaceCoreAssignment, u16]>>, Option<u32>]>;
|
||||
creditAccount: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u128]>;
|
||||
creditAccount: AugmentedSubmittable<(who: PezspCoreCryptoAccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u128]>;
|
||||
/**
|
||||
* Request the configuration to be updated with the specified number of cores. Warning:
|
||||
* Since this only schedules a configuration update, it takes two sessions to come into
|
||||
@@ -1120,7 +1120,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `who`: The account whose contribution should be withdrawn.
|
||||
* - `index`: The parachain to whose crowdloan the contribution was made.
|
||||
**/
|
||||
withdraw: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array, index: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, Compact<u32>]>;
|
||||
withdraw: AugmentedSubmittable<(who: PezspCoreCryptoAccountId32 | string | Uint8Array, index: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, Compact<u32>]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -1144,7 +1144,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* feasibility check itself can in principle cause the election process to fail (due to
|
||||
* memory/weight constrains).
|
||||
**/
|
||||
setEmergencyElectionResult: AugmentedSubmittable<(supports: Vec<ITuple<[AccountId32, PezspNposElectionsSupport]>> | ([AccountId32 | string | Uint8Array, PezspNposElectionsSupport])[]) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[AccountId32, PezspNposElectionsSupport]>>]>;
|
||||
setEmergencyElectionResult: AugmentedSubmittable<(supports: Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsSupport]>> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<ITuple<[PezspCoreCryptoAccountId32, PezspNposElectionsSupport]>>]>;
|
||||
/**
|
||||
* Set a new value for `MinimumUntrustedScore`.
|
||||
*
|
||||
@@ -1453,7 +1453,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
forceTransfer: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, index: u32 | AnyNumber | Uint8Array, freeze: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32, bool]>;
|
||||
forceTransfer: AugmentedSubmittable<(updated: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, index: u32 | AnyNumber | Uint8Array, freeze: bool | boolean | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32, bool]>;
|
||||
/**
|
||||
* Free up an index owned by the sender.
|
||||
*
|
||||
@@ -1511,7 +1511,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
transfer: AugmentedSubmittable<(updated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32]>;
|
||||
transfer: AugmentedSubmittable<(updated: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, index: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -1588,7 +1588,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit
|
||||
* taken for its lifetime of `DepositBase + threshold * DepositFactor`.
|
||||
**/
|
||||
approveAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PezpalletMultisigTimepoint>, U8aFixed, PezspWeightsWeightV2Weight]>;
|
||||
approveAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, Option<PezpalletMultisigTimepoint>, U8aFixed, PezspWeightsWeightV2Weight]>;
|
||||
/**
|
||||
* Register approval for a dispatch to be made from a deterministic composite account if
|
||||
* approved by a total of `threshold - 1` of `other_signatories`.
|
||||
@@ -1630,7 +1630,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - Storage: inserts one item, value size bounded by `MaxSignatories`, with a deposit
|
||||
* taken for its lifetime of `DepositBase + threshold * DepositFactor`.
|
||||
**/
|
||||
asMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, call: RuntimeCall | IMethod | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, Option<PezpalletMultisigTimepoint>, RuntimeCall, PezspWeightsWeightV2Weight]>;
|
||||
asMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, maybeTimepoint: Option<PezpalletMultisigTimepoint> | null | Uint8Array | PezpalletMultisigTimepoint, call: RuntimeCall | IMethod | string | Uint8Array, maxWeight: PezspWeightsWeightV2Weight) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, Option<PezpalletMultisigTimepoint>, RuntimeCall, PezspWeightsWeightV2Weight]>;
|
||||
/**
|
||||
* Immediately dispatch a multi-signature call using a single approval from the caller.
|
||||
*
|
||||
@@ -1645,7 +1645,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* O(Z + C) where Z is the length of the call and C its execution weight.
|
||||
**/
|
||||
asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>, RuntimeCall]>;
|
||||
asMultiThreshold1: AugmentedSubmittable<(otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>, RuntimeCall]>;
|
||||
/**
|
||||
* Cancel a pre-existing, on-going multisig transaction. Any deposit reserved previously
|
||||
* for this operation will be unreserved on success.
|
||||
@@ -1669,7 +1669,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - I/O: 1 read `O(S)`, one remove.
|
||||
* - Storage: removes one item.
|
||||
**/
|
||||
cancelAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], timepoint: PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, PezpalletMultisigTimepoint, U8aFixed]>;
|
||||
cancelAsMulti: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, timepoint: PezpalletMultisigTimepoint, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, PezpalletMultisigTimepoint, U8aFixed]>;
|
||||
/**
|
||||
* Poke the deposit reserved for an existing multisig operation.
|
||||
*
|
||||
@@ -1685,7 +1685,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Emits `DepositPoked` if successful.
|
||||
**/
|
||||
pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[], callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<AccountId32>, U8aFixed]>;
|
||||
pokeDeposit: AugmentedSubmittable<(threshold: u16 | AnyNumber | Uint8Array, otherSignatories: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array, callHash: U8aFixed | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u16, Vec<PezspCoreCryptoAccountId32>, U8aFixed]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -1713,7 +1713,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* is successful, fee is refunded and caller may be rewarded with a part of the slash
|
||||
* based on the [`crate::pallet::Config::StakeAdapter`] configuration.
|
||||
**/
|
||||
applySlash: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
applySlash: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Bond `extra` more funds from `origin` into the pool to which they already belong.
|
||||
*
|
||||
@@ -1735,7 +1735,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* `other` members assuming set_claim_permission for the given member is
|
||||
* `PermissionlessCompound` or `PermissionlessAll`.
|
||||
**/
|
||||
bondExtraOther: AugmentedSubmittable<(member: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, extra: PezpalletNominationPoolsBondExtra) => SubmittableExtrinsic<ApiType>, [MultiAddress, PezpalletNominationPoolsBondExtra]>;
|
||||
bondExtraOther: AugmentedSubmittable<(member: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, extra: PezpalletNominationPoolsBondExtra) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezpalletNominationPoolsBondExtra]>;
|
||||
/**
|
||||
* Chill on behalf of the pool.
|
||||
*
|
||||
@@ -1792,7 +1792,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Pool member `other` must have a `PermissionlessWithdraw` or `PermissionlessAll` claim
|
||||
* permission for this call to be successful.
|
||||
**/
|
||||
claimPayoutOther: AugmentedSubmittable<(other: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
claimPayoutOther: AugmentedSubmittable<(other: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Create a new delegation pool.
|
||||
*
|
||||
@@ -1812,7 +1812,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* In addition to `amount`, the caller will transfer the existential deposit; so the caller
|
||||
* needs at have at least `amount + existential_deposit` transferable.
|
||||
**/
|
||||
create: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, nominator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, bouncer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress, MultiAddress, MultiAddress]>;
|
||||
create: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, nominator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, bouncer: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Create a new delegation pool with a previously used pool id
|
||||
*
|
||||
@@ -1821,7 +1821,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* same as `create` with the inclusion of
|
||||
* * `pool_id` - `A valid PoolId.
|
||||
**/
|
||||
createWithPoolId: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, nominator: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, bouncer: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, poolId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress, MultiAddress, MultiAddress, u32]>;
|
||||
createWithPoolId: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, root: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, nominator: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, bouncer: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, poolId: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Stake funds with a pool. The amount to bond is delegated (or transferred based on
|
||||
* [`adapter::StakeStrategyType`]) from the member to the pool account and immediately
|
||||
@@ -1852,7 +1852,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* If the pool has migrated to delegation based staking, the staked tokens of pool members
|
||||
* can be moved and held in their own account. See [`adapter::DelegateStake`]
|
||||
**/
|
||||
migrateDelegation: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
migrateDelegation: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Migrate pool from [`adapter::StakeStrategyType::Transfer`] to
|
||||
* [`adapter::StakeStrategyType::Delegate`].
|
||||
@@ -1879,7 +1879,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* In addition to a `root` or `nominator` role of `origin`, the pool's depositor needs to
|
||||
* have at least `depositor_min_bond` in the pool to start nominating.
|
||||
**/
|
||||
nominate: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, validators: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [u32, Vec<AccountId32>]>;
|
||||
nominate: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, validators: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Call `withdraw_unbonded` for the pools account. This call can be made by any account.
|
||||
*
|
||||
@@ -1906,7 +1906,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* - If a `None` is supplied to `new_commission`, existing commission will be removed.
|
||||
**/
|
||||
setCommission: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newCommission: Option<ITuple<[Perbill, AccountId32]>> | null | Uint8Array | ITuple<[Perbill, AccountId32]> | [Perbill | AnyNumber | Uint8Array, AccountId32 | string | Uint8Array]) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[Perbill, AccountId32]>>]>;
|
||||
setCommission: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newCommission: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>]>;
|
||||
/**
|
||||
* Set the commission change rate for a pool.
|
||||
*
|
||||
@@ -1928,7 +1928,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - Current commission will be lowered in the event it is higher than a new max
|
||||
* commission.
|
||||
**/
|
||||
setCommissionMax: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, maxCommission: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, Perbill]>;
|
||||
setCommissionMax: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, maxCommission: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, u32]>;
|
||||
/**
|
||||
* Update configurations for the nomination pools. The origin for this call must be
|
||||
* [`Config::AdminOrigin`].
|
||||
@@ -1996,7 +1996,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* in which case, the result of this call will likely be the `NoMoreChunks` error from the
|
||||
* staking system.
|
||||
**/
|
||||
unbond: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, unbondingPoints: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Compact<u128>]>;
|
||||
unbond: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, unbondingPoints: Compact<u128> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Compact<u128>]>;
|
||||
/**
|
||||
* Update the roles of the pool.
|
||||
*
|
||||
@@ -2006,7 +2006,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* It emits an event, notifying UIs of the role change. This event is quite relevant to
|
||||
* most pool members and they should be informed of changes to pool roles.
|
||||
**/
|
||||
updateRoles: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newRoot: PezpalletNominationPoolsConfigOpAccountId32, newNominator: PezpalletNominationPoolsConfigOpAccountId32, newBouncer: PezpalletNominationPoolsConfigOpAccountId32) => SubmittableExtrinsic<ApiType>, [u32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32]>;
|
||||
updateRoles: AugmentedSubmittable<(poolId: u32 | AnyNumber | Uint8Array, newRoot: PezpalletNominationPoolsConfigOpAccountId32 | string | Uint8Array, newNominator: PezpalletNominationPoolsConfigOpAccountId32 | string | Uint8Array, newBouncer: PezpalletNominationPoolsConfigOpAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32, PezpalletNominationPoolsConfigOpAccountId32]>;
|
||||
/**
|
||||
* Withdraw unbonded funds from `member_account`. If no bonded funds can be unbonded, an
|
||||
* error is returned.
|
||||
@@ -2031,7 +2031,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* withdraw. This calculation adds some weight overhead and is only defensive. In reality,
|
||||
* pool slashes must have been already applied via permissionless [`Call::apply_slash`].
|
||||
**/
|
||||
withdrawUnbonded: AugmentedSubmittable<(memberAccount: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32]>;
|
||||
withdrawUnbonded: AugmentedSubmittable<(memberAccount: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -2276,7 +2276,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `delay`: The announcement period required of the initial proxy. Will generally be
|
||||
* zero.
|
||||
**/
|
||||
addProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PezkuwiRuntimeConstantsProxyProxyType, u32]>;
|
||||
addProxy: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezkuwiRuntimeConstantsProxyProxyType, u32]>;
|
||||
/**
|
||||
* Publish the hash of a proxy-call that will be made in the future.
|
||||
*
|
||||
@@ -2294,7 +2294,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `real`: The account that the proxy will make a call on behalf of.
|
||||
* - `call_hash`: The hash of the call to be made by the `real` account.
|
||||
**/
|
||||
announce: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
||||
announce: AugmentedSubmittable<(real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, H256]>;
|
||||
/**
|
||||
* Spawn a fresh new account that is guaranteed to be otherwise inaccessible, and
|
||||
* initialize it with a proxy of `proxy_type` for `origin` sender.
|
||||
@@ -2334,7 +2334,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Fails with `NoPermission` in case the caller is not a previously created pure
|
||||
* account whose `create_pure` call has corresponding parameters.
|
||||
**/
|
||||
killPure: AugmentedSubmittable<(spawner: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PezkuwiRuntimeConstantsProxyProxyType, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PezkuwiRuntimeConstantsProxyProxyType, u16, Compact<u32>, Compact<u32>]>;
|
||||
killPure: AugmentedSubmittable<(spawner: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, proxyType: PezkuwiRuntimeConstantsProxyProxyType, index: u16 | AnyNumber | Uint8Array, height: Compact<u32> | AnyNumber | Uint8Array, extIndex: Compact<u32> | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezkuwiRuntimeConstantsProxyProxyType, u16, Compact<u32>, Compact<u32>]>;
|
||||
/**
|
||||
* Poke / Adjust deposits made for proxies and announcements based on current values.
|
||||
* This can be used by accounts to possibly lower their locked amount.
|
||||
@@ -2357,7 +2357,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
|
||||
* - `call`: The call to be made by the `real` account.
|
||||
**/
|
||||
proxy: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<PezkuwiRuntimeConstantsProxyProxyType> | null | Uint8Array | PezkuwiRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, Option<PezkuwiRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
proxy: AugmentedSubmittable<(real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, forceProxyType: Option<PezkuwiRuntimeConstantsProxyProxyType> | null | Uint8Array | PezkuwiRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, Option<PezkuwiRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
/**
|
||||
* Dispatch the given `call` from an account that the sender is authorized for through
|
||||
* `add_proxy`.
|
||||
@@ -2371,7 +2371,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `force_proxy_type`: Specify the exact proxy type to be used and checked for this call.
|
||||
* - `call`: The call to be made by the `real` account.
|
||||
**/
|
||||
proxyAnnounced: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, forceProxyType: Option<PezkuwiRuntimeConstantsProxyProxyType> | null | Uint8Array | PezkuwiRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, Option<PezkuwiRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
proxyAnnounced: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, forceProxyType: Option<PezkuwiRuntimeConstantsProxyProxyType> | null | Uint8Array | PezkuwiRuntimeConstantsProxyProxyType, call: RuntimeCall | IMethod | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, Option<PezkuwiRuntimeConstantsProxyProxyType>, RuntimeCall]>;
|
||||
/**
|
||||
* Remove the given announcement of a delegate.
|
||||
*
|
||||
@@ -2384,7 +2384,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `delegate`: The account that previously announced the call.
|
||||
* - `call_hash`: The hash of the call to be made.
|
||||
**/
|
||||
rejectAnnouncement: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
||||
rejectAnnouncement: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, H256]>;
|
||||
/**
|
||||
* Remove a given announcement.
|
||||
*
|
||||
@@ -2397,7 +2397,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `real`: The account that the proxy will make a call on behalf of.
|
||||
* - `call_hash`: The hash of the call to be made by the `real` account.
|
||||
**/
|
||||
removeAnnouncement: AugmentedSubmittable<(real: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, H256]>;
|
||||
removeAnnouncement: AugmentedSubmittable<(real: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, callHash: H256 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, H256]>;
|
||||
/**
|
||||
* Unregister all proxy accounts for the sender.
|
||||
*
|
||||
@@ -2416,7 +2416,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `proxy`: The account that the `caller` would like to remove as a proxy.
|
||||
* - `proxy_type`: The permissions currently enabled for the removed proxy account.
|
||||
**/
|
||||
removeProxy: AugmentedSubmittable<(delegate: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, PezkuwiRuntimeConstantsProxyProxyType, u32]>;
|
||||
removeProxy: AugmentedSubmittable<(delegate: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, proxyType: PezkuwiRuntimeConstantsProxyProxyType, delay: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezkuwiRuntimeConstantsProxyProxyType, u32]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -2445,7 +2445,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The accounts must have no consumers references.
|
||||
**/
|
||||
preserveAccounts: AugmentedSubmittable<(accounts: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
preserveAccounts: AugmentedSubmittable<(accounts: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Receive a query response from the Asset Hub for a previously sent xcm message.
|
||||
**/
|
||||
@@ -2495,14 +2495,14 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The canceller can only stop scheduled migration.
|
||||
**/
|
||||
setCanceller: AugmentedSubmittable<(updated: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [Option<AccountId32>]>;
|
||||
setCanceller: AugmentedSubmittable<(updated: Option<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Set the manager account id.
|
||||
*
|
||||
* The manager has the similar to [`Config::AdminOrigin`] privileges except that it
|
||||
* can not set the manager account id via `set_manager` call.
|
||||
**/
|
||||
setManager: AugmentedSubmittable<(updated: Option<AccountId32> | null | Uint8Array | AccountId32 | string) => SubmittableExtrinsic<ApiType>, [Option<AccountId32>]>;
|
||||
setManager: AugmentedSubmittable<(updated: Option<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Option<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Set the migration settings. Can only be done by admin or manager.
|
||||
**/
|
||||
@@ -2657,7 +2657,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* The deposit taken can be specified for this registration. Any `ParaId`
|
||||
* can be registered, including sub-1000 IDs which are System Parachains.
|
||||
**/
|
||||
forceRegister: AugmentedSubmittable<(who: AccountId32 | string | Uint8Array, deposit: u128 | AnyNumber | Uint8Array, id: u32 | AnyNumber | Uint8Array, genesisHead: Bytes | string | Uint8Array, validationCode: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u128, u32, Bytes, Bytes]>;
|
||||
forceRegister: AugmentedSubmittable<(who: PezspCoreCryptoAccountId32 | string | Uint8Array, deposit: u128 | AnyNumber | Uint8Array, id: u32 | AnyNumber | Uint8Array, genesisHead: Bytes | string | Uint8Array, validationCode: Bytes | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u128, u32, Bytes, Bytes]>;
|
||||
/**
|
||||
* Register head data and validation code for a reserved Para Id.
|
||||
*
|
||||
@@ -2863,7 +2863,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin for this call must match `T::ForceOrigin`.
|
||||
**/
|
||||
forceLease: AugmentedSubmittable<(para: u32 | AnyNumber | Uint8Array, leaser: AccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, periodBegin: u32 | AnyNumber | Uint8Array, periodCount: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, AccountId32, u128, u32, u32]>;
|
||||
forceLease: AugmentedSubmittable<(para: u32 | AnyNumber | Uint8Array, leaser: PezspCoreCryptoAccountId32 | string | Uint8Array, amount: u128 | AnyNumber | Uint8Array, periodBegin: u32 | AnyNumber | Uint8Array, periodCount: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32, PezspCoreCryptoAccountId32, u128, u32, u32]>;
|
||||
/**
|
||||
* Try to onboard a parachain that has a lease for the current lease period.
|
||||
*
|
||||
@@ -2966,7 +2966,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* This can be helpful if bond requirements are updated, and we need to remove old users
|
||||
* who do not satisfy these requirements.
|
||||
**/
|
||||
chillOther: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
chillOther: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Updates a batch of controller accounts to their corresponding stash account if they are
|
||||
* not the same. Ignores any controller accounts that do not exist, and does not operate if
|
||||
@@ -2976,13 +2976,13 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin must be `T::AdminOrigin`.
|
||||
**/
|
||||
deprecateControllerBatch: AugmentedSubmittable<(controllers: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
deprecateControllerBatch: AugmentedSubmittable<(controllers: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Force a validator to have at least the minimum commission. This will not affect a
|
||||
* validator who already has a commission greater than or equal to the minimum. Any account
|
||||
* can call this.
|
||||
**/
|
||||
forceApplyMinCommission: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
forceApplyMinCommission: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Force there to be a new era at the end of the next session. After this, it will be
|
||||
* reset to normal (non-forced) behaviour.
|
||||
@@ -3038,7 +3038,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `num_slashing_spans`: Refer to comments on [`Call::withdraw_unbonded`] for more
|
||||
* details.
|
||||
**/
|
||||
forceUnstake: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32]>;
|
||||
forceUnstake: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Increments the ideal number of validators up to maximum of
|
||||
* `ElectionProviderBase::MaxWinners`.
|
||||
@@ -3062,7 +3062,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* Note: Making this call only makes sense if you first set the validator preferences to
|
||||
* block any further nominations.
|
||||
**/
|
||||
kick: AugmentedSubmittable<(who: Vec<MultiAddress> | (MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<MultiAddress>]>;
|
||||
kick: AugmentedSubmittable<(who: Vec<PezspRuntimeMultiAddress> | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspRuntimeMultiAddress>]>;
|
||||
/**
|
||||
* This function allows governance to manually slash a validator and is a
|
||||
* **fallback mechanism**.
|
||||
@@ -3086,7 +3086,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* will be applied.
|
||||
* - The slash will be deferred by `SlashDeferDuration` eras before being enacted.
|
||||
**/
|
||||
manualSlash: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, slashFraction: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, Perbill]>;
|
||||
manualSlash: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, slashFraction: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* Removes the legacy Staking locks if they exist.
|
||||
*
|
||||
@@ -3096,7 +3096,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The fee is waived if the migration is successful.
|
||||
**/
|
||||
migrateCurrency: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
migrateCurrency: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Declare the desire to nominate `targets` for the origin controller.
|
||||
*
|
||||
@@ -3109,7 +3109,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* which is capped at CompactAssignments::LIMIT (T::MaxNominations).
|
||||
* - Both the reads and writes follow a similar pattern.
|
||||
**/
|
||||
nominate: AugmentedSubmittable<(targets: Vec<MultiAddress> | (MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<MultiAddress>]>;
|
||||
nominate: AugmentedSubmittable<(targets: Vec<PezspRuntimeMultiAddress> | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspRuntimeMultiAddress>]>;
|
||||
/**
|
||||
* Pay out next page of the stakers behind a validator for the given era.
|
||||
*
|
||||
@@ -3125,7 +3125,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* If all pages are claimed, it returns an error `InvalidPage`.
|
||||
**/
|
||||
payoutStakers: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32]>;
|
||||
payoutStakers: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Pay out a page of the stakers behind a validator for the given era and page.
|
||||
*
|
||||
@@ -3145,7 +3145,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* and so it should not be assumed the highest staker would be on the topmost page and vice
|
||||
* versa. If rewards are not claimed in [`Config::HistoryDepth`] eras, they are lost.
|
||||
**/
|
||||
payoutStakersByPage: AugmentedSubmittable<(validatorStash: AccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, page: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32, u32]>;
|
||||
payoutStakersByPage: AugmentedSubmittable<(validatorStash: PezspCoreCryptoAccountId32 | string | Uint8Array, era: u32 | AnyNumber | Uint8Array, page: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
/**
|
||||
* Remove all data structures concerning a staker/stash once it is at a state where it can
|
||||
* be considered `dust` in the staking system. The requirements are:
|
||||
@@ -3166,7 +3166,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `num_slashing_spans`: Refer to comments on [`Call::withdraw_unbonded`] for more
|
||||
* details.
|
||||
**/
|
||||
reapStash: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32, u32]>;
|
||||
reapStash: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array, numSlashingSpans: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, u32]>;
|
||||
/**
|
||||
* Rebond a portion of the stash scheduled to be unlocked.
|
||||
*
|
||||
@@ -3190,7 +3190,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ledger associated with the stash. If the input parameters are not set, the ledger will
|
||||
* be reset values from on-chain state.
|
||||
**/
|
||||
restoreLedger: AugmentedSubmittable<(stash: AccountId32 | string | Uint8Array, maybeController: Option<AccountId32> | null | Uint8Array | AccountId32 | string, maybeTotal: Option<u128> | null | Uint8Array | u128 | AnyNumber, maybeUnlocking: Option<Vec<PezpalletStakingUnlockChunk>> | null | Uint8Array | Vec<PezpalletStakingUnlockChunk> | (PezpalletStakingUnlockChunk)[]) => SubmittableExtrinsic<ApiType>, [AccountId32, Option<AccountId32>, Option<u128>, Option<Vec<PezpalletStakingUnlockChunk>>]>;
|
||||
restoreLedger: AugmentedSubmittable<(stash: PezspCoreCryptoAccountId32 | string | Uint8Array, maybeController: Option<PezspCoreCryptoAccountId32> | string | Uint8Array, maybeTotal: Option<u128> | null | Uint8Array | u128 | AnyNumber, maybeUnlocking: Option<Vec<PezpalletStakingUnlockChunk>> | null | Uint8Array | Vec<PezpalletStakingUnlockChunk> | (PezpalletStakingUnlockChunk)[]) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32, Option<PezspCoreCryptoAccountId32>, Option<u128>, Option<Vec<PezpalletStakingUnlockChunk>>]>;
|
||||
/**
|
||||
* Scale up the ideal number of validators by a factor up to maximum of
|
||||
* `ElectionProviderBase::MaxWinners`.
|
||||
@@ -3200,7 +3200,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* Same as [`Self::set_validator_count`].
|
||||
**/
|
||||
scaleValidatorCount: AugmentedSubmittable<(factor: Percent | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Percent]>;
|
||||
scaleValidatorCount: AugmentedSubmittable<(factor: u8 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u8]>;
|
||||
/**
|
||||
* (Re-)sets the controller of a stash to the stash itself. This function previously
|
||||
* accepted a `controller` argument to set the controller to an account other than the
|
||||
@@ -3223,14 +3223,14 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* The dispatch origin must be Root.
|
||||
**/
|
||||
setInvulnerables: AugmentedSubmittable<(invulnerables: Vec<AccountId32> | (AccountId32 | string | Uint8Array)[]) => SubmittableExtrinsic<ApiType>, [Vec<AccountId32>]>;
|
||||
setInvulnerables: AugmentedSubmittable<(invulnerables: Vec<PezspCoreCryptoAccountId32> | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Vec<PezspCoreCryptoAccountId32>]>;
|
||||
/**
|
||||
* Sets the minimum amount of commission that each validators must maintain.
|
||||
*
|
||||
* This call has lower privilege requirements than `set_staking_config` and can be called
|
||||
* by the `T::AdminOrigin`. Root can always call this.
|
||||
**/
|
||||
setMinCommission: AugmentedSubmittable<(updated: Perbill | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [Perbill]>;
|
||||
setMinCommission: AugmentedSubmittable<(updated: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [u32]>;
|
||||
/**
|
||||
* (Re-)set the payment target for a controller.
|
||||
*
|
||||
@@ -3307,7 +3307,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* This will waive the transaction fee if the `payee` is successfully migrated.
|
||||
**/
|
||||
updatePayee: AugmentedSubmittable<(controller: AccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [AccountId32]>;
|
||||
updatePayee: AugmentedSubmittable<(controller: PezspCoreCryptoAccountId32 | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspCoreCryptoAccountId32]>;
|
||||
/**
|
||||
* Declare the desire to validate for the origin controller.
|
||||
*
|
||||
@@ -3651,7 +3651,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* Emits [`Event::SpendApproved`] if successful.
|
||||
**/
|
||||
spendLocal: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, beneficiary: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, MultiAddress]>;
|
||||
spendLocal: AugmentedSubmittable<(amount: Compact<u128> | AnyNumber | Uint8Array, beneficiary: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [Compact<u128>, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Void previously approved spend.
|
||||
*
|
||||
@@ -3812,7 +3812,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - `target`: An account that has a vesting schedule
|
||||
* - `schedule_index`: The vesting schedule index that should be removed
|
||||
**/
|
||||
forceRemoveVestingSchedule: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, scheduleIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, u32]>;
|
||||
forceRemoveVestingSchedule: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, scheduleIndex: u32 | AnyNumber | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, u32]>;
|
||||
/**
|
||||
* Force a vested transfer.
|
||||
*
|
||||
@@ -3829,7 +3829,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
forceVestedTransfer: AugmentedSubmittable<(source: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress, PezpalletVestingVestingInfo]>;
|
||||
forceVestedTransfer: AugmentedSubmittable<(source: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress, PezpalletVestingVestingInfo]>;
|
||||
/**
|
||||
* Merge two vesting schedules together, creating a new vesting schedule that unlocks over
|
||||
* the highest possible start and end blocks. If both schedules have already started the
|
||||
@@ -3881,7 +3881,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
vestedTransfer: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [MultiAddress, PezpalletVestingVestingInfo]>;
|
||||
vestedTransfer: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, schedule: PezpalletVestingVestingInfo) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezpalletVestingVestingInfo]>;
|
||||
/**
|
||||
* Unlock any vested funds of a `target` account.
|
||||
*
|
||||
@@ -3895,7 +3895,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* ## Complexity
|
||||
* - `O(1)`.
|
||||
**/
|
||||
vestOther: AugmentedSubmittable<(target: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
vestOther: AugmentedSubmittable<(target: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
@@ -3914,13 +3914,13 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
* - both nodes are within the same bag,
|
||||
* - and `origin` has a greater `Score` than `lighter`.
|
||||
**/
|
||||
putInFrontOf: AugmentedSubmittable<(lighter: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
putInFrontOf: AugmentedSubmittable<(lighter: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Same as [`Pallet::put_in_front_of`], but it can be called by anyone.
|
||||
*
|
||||
* Fee is paid by the origin under all circumstances.
|
||||
**/
|
||||
putInFrontOfOther: AugmentedSubmittable<(heavier: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array, lighter: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress, MultiAddress]>;
|
||||
putInFrontOfOther: AugmentedSubmittable<(heavier: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array, lighter: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress, PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Declare that some `dislocated` account has, through rewards or penalties, sufficiently
|
||||
* changed its score that it should properly fall into a different bag than its current
|
||||
@@ -3933,7 +3933,7 @@ declare module '@pezkuwi/api-base/types/submittable' {
|
||||
*
|
||||
* If `dislocated` does not exists, it returns an error.
|
||||
**/
|
||||
rebag: AugmentedSubmittable<(dislocated: MultiAddress | { Id: any } | { Index: any } | { Raw: any } | { Address32: any } | { Address20: any } | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [MultiAddress]>;
|
||||
rebag: AugmentedSubmittable<(dislocated: PezspRuntimeMultiAddress | AccountId | AccountIndex | Address | LookupSource | string | Uint8Array) => SubmittableExtrinsic<ApiType>, [PezspRuntimeMultiAddress]>;
|
||||
/**
|
||||
* Generic tx
|
||||
**/
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Interfaces for interacting with contracts and contract ABIs",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -255,9 +255,9 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/rpc-core": "16.5.22",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/rpc-core": "16.5.34",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/api-base', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/api-base', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Interfaces for interacting with contracts and contract ABIs",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -395,15 +395,15 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/api": "16.5.22",
|
||||
"@pezkuwi/api-augment": "16.5.22",
|
||||
"@pezkuwi/keyring": "14.0.13",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/types-create": "16.5.22",
|
||||
"@pezkuwi/types-support": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util-crypto": "14.0.13",
|
||||
"@pezkuwi/api": "16.5.34",
|
||||
"@pezkuwi/api-augment": "16.5.34",
|
||||
"@pezkuwi/keyring": "14.0.23",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/types-create": "16.5.34",
|
||||
"@pezkuwi/types-support": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"@pezkuwi/util-crypto": "14.0.23",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/api-contract', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/api-contract', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Common functions used across Pezkuwi, derived from RPC calls and storage queries.",
|
||||
"engines": {
|
||||
@@ -19,20 +19,20 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"dependencies": {
|
||||
"@pezkuwi/api": "16.5.22",
|
||||
"@pezkuwi/api-augment": "16.5.22",
|
||||
"@pezkuwi/api-base": "16.5.22",
|
||||
"@pezkuwi/rpc-core": "16.5.22",
|
||||
"@pezkuwi/rpc-provider": "16.5.22",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/types-support": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util-crypto": "14.0.13",
|
||||
"@pezkuwi/api": "16.5.34",
|
||||
"@pezkuwi/api-augment": "16.5.34",
|
||||
"@pezkuwi/api-base": "16.5.34",
|
||||
"@pezkuwi/rpc-core": "16.5.34",
|
||||
"@pezkuwi/rpc-provider": "16.5.34",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/types-support": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"@pezkuwi/util-crypto": "14.0.23",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/api-derive', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/api-derive', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
+17
-17
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Promise and RxJS wrappers around the Pezkuwi JS RPC",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -591,21 +591,21 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/api-augment": "16.5.22",
|
||||
"@pezkuwi/api-base": "16.5.22",
|
||||
"@pezkuwi/api-derive": "16.5.22",
|
||||
"@pezkuwi/keyring": "14.0.13",
|
||||
"@pezkuwi/rpc-augment": "16.5.22",
|
||||
"@pezkuwi/rpc-core": "16.5.22",
|
||||
"@pezkuwi/rpc-provider": "16.5.22",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-augment": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/types-create": "16.5.22",
|
||||
"@pezkuwi/types-known": "16.5.22",
|
||||
"@pezkuwi/types-support": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util-crypto": "14.0.13",
|
||||
"@pezkuwi/api-augment": "16.5.34",
|
||||
"@pezkuwi/api-base": "16.5.34",
|
||||
"@pezkuwi/api-derive": "16.5.34",
|
||||
"@pezkuwi/keyring": "14.0.23",
|
||||
"@pezkuwi/rpc-augment": "16.5.34",
|
||||
"@pezkuwi/rpc-core": "16.5.34",
|
||||
"@pezkuwi/rpc-provider": "16.5.34",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-augment": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/types-create": "16.5.34",
|
||||
"@pezkuwi/types-known": "16.5.34",
|
||||
"@pezkuwi/types-support": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"@pezkuwi/util-crypto": "14.0.23",
|
||||
"eventemitter3": "^5.0.1",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/api', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/api', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pezkuwi/bizinikiwi-bindings",
|
||||
"version": "16.5.22",
|
||||
"author": "Dijital Kurdistan Tech Institute <info@pezkuwichain.io>",
|
||||
"version": "16.5.34",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"homepage": "https://github.com/pezkuwichain/pezkuwi-api/tree/master/packages/bizinikiwi-bindings#readme",
|
||||
"repository": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pezkuwi/merkleize-metadata",
|
||||
"version": "16.5.22",
|
||||
"author": "Dijital Kurdistan Tech Institute <info@pezkuwichain.io>",
|
||||
"version": "16.5.34",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"homepage": "https://github.com/pezkuwichain/pezkuwi-api/tree/master/packages/merkleize-metadata#readme",
|
||||
"repository": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pezkuwi/metadata-builders",
|
||||
"version": "16.5.22",
|
||||
"author": "Dijital Kurdistan Tech Institute <info@pezkuwichain.io>",
|
||||
"version": "16.5.34",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"homepage": "https://github.com/pezkuwichain/pezkuwi-api/tree/master/packages/metadata-builders#readme",
|
||||
"repository": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pezkuwi/papi-utils",
|
||||
"version": "16.5.22",
|
||||
"author": "Dijital Kurdistan Tech Institute <info@pezkuwichain.io>",
|
||||
"version": "16.5.34",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"homepage": "https://github.com/pezkuwichain/pezkuwi-api/tree/master/packages/papi-utils#readme",
|
||||
"repository": {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "RPC generated augmentation",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -129,10 +129,10 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/rpc-core": "16.5.22",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/rpc-core": "16.5.34",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/rpc-augment', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/rpc-augment', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "A JavaScript wrapper for the Pezkuwi JsonRPC interface",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -199,11 +199,11 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/keyring": "14.0.13",
|
||||
"@pezkuwi/rpc-augment": "16.5.22",
|
||||
"@pezkuwi/rpc-provider": "16.5.22",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/keyring": "14.0.23",
|
||||
"@pezkuwi/rpc-augment": "16.5.34",
|
||||
"@pezkuwi/rpc-provider": "16.5.34",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/rpc-core', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/rpc-core', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Transport providers for the API",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -325,14 +325,14 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/keyring": "14.0.13",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-support": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util-crypto": "14.0.13",
|
||||
"@pezkuwi/x-fetch": "14.0.13",
|
||||
"@pezkuwi/x-global": "14.0.13",
|
||||
"@pezkuwi/x-ws": "14.0.13",
|
||||
"@pezkuwi/keyring": "14.0.23",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-support": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"@pezkuwi/util-crypto": "14.0.23",
|
||||
"@pezkuwi/x-fetch": "14.0.23",
|
||||
"@pezkuwi/x-global": "14.0.23",
|
||||
"@pezkuwi/x-ws": "14.0.23",
|
||||
"eventemitter3": "^5.0.1",
|
||||
"mock-socket": "^9.3.1",
|
||||
"nock": "^13.5.5",
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/rpc-provider', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/rpc-provider', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Type generation scripts",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"bin": {
|
||||
@@ -527,19 +527,19 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/api": "16.5.22",
|
||||
"@pezkuwi/api-augment": "16.5.22",
|
||||
"@pezkuwi/api-derive": "16.5.22",
|
||||
"@pezkuwi/rpc-augment": "16.5.22",
|
||||
"@pezkuwi/rpc-provider": "16.5.22",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-augment": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/types-create": "16.5.22",
|
||||
"@pezkuwi/types-support": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util-crypto": "14.0.13",
|
||||
"@pezkuwi/x-ws": "14.0.13",
|
||||
"@pezkuwi/api": "16.5.34",
|
||||
"@pezkuwi/api-augment": "16.5.34",
|
||||
"@pezkuwi/api-derive": "16.5.34",
|
||||
"@pezkuwi/rpc-augment": "16.5.34",
|
||||
"@pezkuwi/rpc-provider": "16.5.34",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-augment": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/types-create": "16.5.34",
|
||||
"@pezkuwi/types-support": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"@pezkuwi/util-crypto": "14.0.23",
|
||||
"@pezkuwi/x-ws": "14.0.23",
|
||||
"comment-parser": "^1.4.1",
|
||||
"handlebars": "^4.7.8",
|
||||
"tslib": "^2.8.1",
|
||||
|
||||
@@ -224,17 +224,53 @@ function generateLookupTypes (registry: Registry, filtered: [PortableType, TypeD
|
||||
),
|
||||
interfaces: []
|
||||
};
|
||||
const items = filtered
|
||||
// Special type mappings: PezkuwiChain types that should extend standard types
|
||||
const TYPE_MAPPINGS: Record<string, string> = {
|
||||
PezspCoreCryptoAccountId32: 'AccountId32',
|
||||
PezspRuntimeMultiAddress: 'MultiAddress'
|
||||
};
|
||||
|
||||
// Add imports for AccountId32 and MultiAddress - needed for all lookup files that use TYPE_MAPPINGS
|
||||
const runtimePath = '@pezkuwi/types/interfaces/runtime';
|
||||
if (imports.localTypes[runtimePath]) {
|
||||
imports.localTypes[runtimePath]['AccountId32'] = true;
|
||||
imports.localTypes[runtimePath]['MultiAddress'] = true;
|
||||
}
|
||||
|
||||
// For non-bizinikiwi files, add base type definitions at the start
|
||||
const baseTypeDefs: string[] = [];
|
||||
if (subPath && subPath !== 'bizinikiwi') {
|
||||
// Add PezspCoreCryptoAccountId32 and PezspRuntimeMultiAddress definitions
|
||||
// These extend the standard types and are needed in all lookup files
|
||||
baseTypeDefs.push(
|
||||
' /** @name PezspCoreCryptoAccountId32 (0) */\n interface PezspCoreCryptoAccountId32 extends AccountId32 {}',
|
||||
' /** @name PezspRuntimeMultiAddress (1) */\n interface PezspRuntimeMultiAddress extends MultiAddress {}'
|
||||
);
|
||||
}
|
||||
|
||||
const items = [
|
||||
...baseTypeDefs,
|
||||
...filtered
|
||||
.map(([, typeDef]) => {
|
||||
// Deep rebrand the type names (including nested sub types) before generating interfaces
|
||||
const rebranded = deepRebrandTypeDef(typeDef);
|
||||
|
||||
// Check for special type mappings first - skip if already in base types for this file
|
||||
if (rebranded.lookupName && TYPE_MAPPINGS[rebranded.lookupName]) {
|
||||
// For bizinikiwi, include the mapping; for others, skip (already in baseTypeDefs)
|
||||
if (subPath === 'bizinikiwi') {
|
||||
return exportInterface(rebranded.lookupIndex, rebranded.lookupName, TYPE_MAPPINGS[rebranded.lookupName]);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
return rebranded.lookupNameRoot && rebranded.lookupName
|
||||
? exportInterface(rebranded.lookupIndex, rebranded.lookupName, rebranded.lookupNameRoot)
|
||||
: typeEncoders[rebranded.info](registry, imports.definitions, rebranded, imports);
|
||||
})
|
||||
.filter((t): t is string => !!t)
|
||||
.map((t) => t.replace(/\nexport /, '\n'));
|
||||
.map((t) => t.replace(/\nexport /, '\n'))
|
||||
];
|
||||
|
||||
writeFile(path.join(destDir, `types${subPath ? `-${subPath}` : ''}.ts`), () => generateLookupTypesTmpl({
|
||||
headerType: 'defs',
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/typegen', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/typegen', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -6,7 +6,7 @@ import type { UInt } from '@pezkuwi/types-codec';
|
||||
import type { TypeDef } from '@pezkuwi/types-create/types';
|
||||
import type { ModuleTypes, TypeImports } from './imports.js';
|
||||
|
||||
import { GenericAccountId, GenericCall, GenericLookupSource, GenericVote } from '@pezkuwi/types/generic';
|
||||
import { GenericAccountId, GenericCall, GenericLookupSource, GenericMultiAddress, GenericVote } from '@pezkuwi/types/generic';
|
||||
import { AllConvictions } from '@pezkuwi/types/interfaces/democracy/definitions';
|
||||
import { AbstractInt, bool, Compact, Enum, Null, Option, Struct, Tuple, Vec, WrapperKeepOpaque, WrapperOpaque } from '@pezkuwi/types-codec';
|
||||
import { getTypeDef, TypeDefInfo } from '@pezkuwi/types-create';
|
||||
@@ -44,6 +44,18 @@ export function getSimilarTypes (registry: Registry, definitions: Record<string,
|
||||
return ['null'];
|
||||
}
|
||||
|
||||
// Handle lookup types by name pattern before class-based checks
|
||||
// Lookup types like PezspRuntimeMultiAddress may not be properly registered as children of GenericMultiAddress
|
||||
if (type.includes('MultiAddress') || type.endsWith('RuntimeMultiAddress')) {
|
||||
possibleTypes.push('AccountId', 'AccountIndex', 'Address', 'LookupSource', 'string', 'Uint8Array');
|
||||
|
||||
return possibleTypes;
|
||||
} else if (type.includes('AccountId32') || type.endsWith('CryptoAccountId32')) {
|
||||
possibleTypes.push('string', 'Uint8Array');
|
||||
|
||||
return possibleTypes;
|
||||
}
|
||||
|
||||
const Clazz = registry.createClass(type);
|
||||
|
||||
if (isChildClass(Vec, Clazz)) {
|
||||
@@ -68,6 +80,10 @@ export function getSimilarTypes (registry: Registry, definitions: Record<string,
|
||||
throw new Error(`Unhandled subtype in Vec, ${stringify(subDef)}`);
|
||||
}
|
||||
}
|
||||
} else if (isChildClass(GenericMultiAddress, Clazz)) {
|
||||
// MultiAddress can accept string addresses, Uint8Array, or various address variants
|
||||
// Check before Enum since GenericMultiAddress extends Enum
|
||||
possibleTypes.push('AccountId', 'AccountIndex', 'Address', 'LookupSource', 'string', 'Uint8Array');
|
||||
} else if (isChildClass(Enum, Clazz)) {
|
||||
const { defKeys, isBasic } = new (Clazz as CodecClass)(registry) as Enum;
|
||||
const keys = defKeys.filter((v) => !v.startsWith('__Unused'));
|
||||
|
||||
@@ -257,6 +257,12 @@ const formatters: Record<TypeDefInfo, (registry: Registry, typeDef: TypeDef, def
|
||||
const sub = (typeDef.sub as TypeDef);
|
||||
|
||||
if (sub.type === 'u8') {
|
||||
// Use lookupName if available (e.g., PezspCoreCryptoAccountId32) instead of generic U8aFixed
|
||||
if (typeDef.lookupName) {
|
||||
setImports(definitions, imports, [rebrandTypeName(typeDef.lookupName)]);
|
||||
|
||||
return rebrandTypeName(typeDef.lookupName);
|
||||
}
|
||||
setImports(definitions, imports, ['U8aFixed']);
|
||||
|
||||
return 'U8aFixed';
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Types generated augmentation",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -395,9 +395,9 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -135,10 +135,10 @@ export default {
|
||||
**/
|
||||
AssetHubDicleRuntimeDynamicParamsIssuanceParametersValue: {
|
||||
_enum: {
|
||||
MinInflation: 'Perquintill',
|
||||
MaxInflation: 'Perquintill',
|
||||
IdealStake: 'Perquintill',
|
||||
Falloff: 'Perquintill'
|
||||
MinInflation: 'u64',
|
||||
MaxInflation: 'u64',
|
||||
IdealStake: 'u64',
|
||||
Falloff: 'u64'
|
||||
}
|
||||
},
|
||||
/**
|
||||
@@ -146,14 +146,14 @@ export default {
|
||||
**/
|
||||
AssetHubDicleRuntimeDynamicParamsTreasuryParametersValue: {
|
||||
_enum: {
|
||||
BurnPortion: 'Permill',
|
||||
BurnPortion: 'u32',
|
||||
BurnDestination: 'AssetHubDicleRuntimeTreasuryBurnDestinationAccount'
|
||||
}
|
||||
},
|
||||
/**
|
||||
* Lookup72: asset_hub_kusama_runtime::treasury::BurnDestinationAccount
|
||||
**/
|
||||
AssetHubDicleRuntimeTreasuryBurnDestinationAccount: 'Option<AccountId32>',
|
||||
AssetHubDicleRuntimeTreasuryBurnDestinationAccount: 'Option<PezspCoreCryptoAccountId32>',
|
||||
/**
|
||||
* Lookup74: asset_hub_kusama_runtime::dynamic_params::staking_election::ParametersValue
|
||||
**/
|
||||
@@ -213,10 +213,10 @@ export default {
|
||||
**/
|
||||
AssetHubDicleRuntimeDynamicParamsIssuanceParameters: {
|
||||
_enum: {
|
||||
MinInflation: '(AssetHubDicleRuntimeDynamicParamsIssuanceMinInflation,Option<Perquintill>)',
|
||||
MaxInflation: '(AssetHubDicleRuntimeDynamicParamsIssuanceMaxInflation,Option<Perquintill>)',
|
||||
IdealStake: '(AssetHubDicleRuntimeDynamicParamsIssuanceIdealStake,Option<Perquintill>)',
|
||||
Falloff: '(AssetHubDicleRuntimeDynamicParamsIssuanceFalloff,Option<Perquintill>)'
|
||||
MinInflation: '(AssetHubDicleRuntimeDynamicParamsIssuanceMinInflation,Option<u64>)',
|
||||
MaxInflation: '(AssetHubDicleRuntimeDynamicParamsIssuanceMaxInflation,Option<u64>)',
|
||||
IdealStake: '(AssetHubDicleRuntimeDynamicParamsIssuanceIdealStake,Option<u64>)',
|
||||
Falloff: '(AssetHubDicleRuntimeDynamicParamsIssuanceFalloff,Option<u64>)'
|
||||
}
|
||||
},
|
||||
/**
|
||||
@@ -224,7 +224,7 @@ export default {
|
||||
**/
|
||||
AssetHubDicleRuntimeDynamicParamsTreasuryParameters: {
|
||||
_enum: {
|
||||
BurnPortion: '(AssetHubDicleRuntimeDynamicParamsTreasuryBurnPortion,Option<Permill>)',
|
||||
BurnPortion: '(AssetHubDicleRuntimeDynamicParamsTreasuryBurnPortion,Option<u32>)',
|
||||
BurnDestination: '(AssetHubDicleRuntimeDynamicParamsTreasuryBurnDestination,Option<AssetHubDicleRuntimeTreasuryBurnDestinationAccount>)'
|
||||
}
|
||||
},
|
||||
@@ -383,7 +383,7 @@ export default {
|
||||
PezpalletRemoteProxyCall: {
|
||||
_enum: {
|
||||
remote_proxy: {
|
||||
real: 'MultiAddress',
|
||||
real: 'PezspRuntimeMultiAddress',
|
||||
forceProxyType: 'Option<AssetHubDicleRuntimeProxyType>',
|
||||
call: 'RuntimeCall',
|
||||
proof: 'PezpalletRemoteProxyRemoteProxyProof',
|
||||
@@ -392,7 +392,7 @@ export default {
|
||||
proof: 'PezpalletRemoteProxyRemoteProxyProof',
|
||||
},
|
||||
remote_proxy_with_registered_proof: {
|
||||
real: 'MultiAddress',
|
||||
real: 'PezspRuntimeMultiAddress',
|
||||
forceProxyType: 'Option<AssetHubDicleRuntimeProxyType>',
|
||||
call: 'RuntimeCall'
|
||||
}
|
||||
@@ -414,35 +414,35 @@ export default {
|
||||
**/
|
||||
AssetHubDicleRuntimeStakingNposCompactSolution24: {
|
||||
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<PerU16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>',
|
||||
votes17: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);16],Compact<u16>)>',
|
||||
votes18: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);17],Compact<u16>)>',
|
||||
votes19: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);18],Compact<u16>)>',
|
||||
votes20: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);19],Compact<u16>)>',
|
||||
votes21: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);20],Compact<u16>)>',
|
||||
votes22: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);21],Compact<u16>)>',
|
||||
votes23: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);22],Compact<u16>)>',
|
||||
votes24: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);23],Compact<u16>)>'
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<u16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);15],Compact<u16>)>',
|
||||
votes17: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);16],Compact<u16>)>',
|
||||
votes18: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);17],Compact<u16>)>',
|
||||
votes19: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);18],Compact<u16>)>',
|
||||
votes20: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);19],Compact<u16>)>',
|
||||
votes21: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);20],Compact<u16>)>',
|
||||
votes22: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);21],Compact<u16>)>',
|
||||
votes23: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);22],Compact<u16>)>',
|
||||
votes24: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);23],Compact<u16>)>'
|
||||
},
|
||||
/**
|
||||
* Lookup598: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, kusama_runtime_constants::proxy::ProxyType, BlockNumber>
|
||||
**/
|
||||
PezpalletProxyProxyDefinitionDicleRuntimeConstantsProxyProxyType: {
|
||||
delegate: 'AccountId32',
|
||||
delegate: 'PezspCoreCryptoAccountId32',
|
||||
proxyType: 'DicleRuntimeConstantsProxyProxyType',
|
||||
delay: 'u32'
|
||||
},
|
||||
@@ -502,9 +502,9 @@ export default {
|
||||
**/
|
||||
PezpalletRcMigratorRecoveryPortableRecoveryMessage: {
|
||||
_enum: {
|
||||
Recoverable: '(AccountId32,PezpalletRcMigratorRecoveryPortableRecoveryConfig)',
|
||||
ActiveRecoveries: '(AccountId32,AccountId32,PezpalletRcMigratorRecoveryPortableActiveRecovery)',
|
||||
Proxy: '(AccountId32,AccountId32)'
|
||||
Recoverable: '(PezspCoreCryptoAccountId32,PezpalletRcMigratorRecoveryPortableRecoveryConfig)',
|
||||
ActiveRecoveries: '(PezspCoreCryptoAccountId32,PezspCoreCryptoAccountId32,PezpalletRcMigratorRecoveryPortableActiveRecovery)',
|
||||
Proxy: '(PezspCoreCryptoAccountId32,PezspCoreCryptoAccountId32)'
|
||||
}
|
||||
},
|
||||
/**
|
||||
@@ -520,7 +520,7 @@ export default {
|
||||
* Lookup749: pallet_rc_migrator::recovery::PortableRecoveryFriends
|
||||
**/
|
||||
PezpalletRcMigratorRecoveryPortableRecoveryFriends: {
|
||||
friends: 'Vec<AccountId32>'
|
||||
friends: 'Vec<PezspCoreCryptoAccountId32>'
|
||||
},
|
||||
/**
|
||||
* Lookup752: pallet_rc_migrator::recovery::PortableActiveRecovery
|
||||
@@ -536,14 +536,14 @@ export default {
|
||||
PezpalletRcMigratorSocietyPortableSocietyMessage: {
|
||||
_enum: {
|
||||
Values: 'PezpalletRcMigratorSocietySocietyValues',
|
||||
Member: '(AccountId32,PezpalletRcMigratorSocietyPortableMemberRecord)',
|
||||
Payout: '(AccountId32,PezpalletRcMigratorSocietyPortablePayoutRecord)',
|
||||
MemberByIndex: '(u32,AccountId32)',
|
||||
SuspendedMembers: '(AccountId32,PezpalletRcMigratorSocietyPortableMemberRecord)',
|
||||
Candidates: '(AccountId32,PezpalletRcMigratorSocietyPortableCandidacy)',
|
||||
Votes: '(AccountId32,AccountId32,PezpalletRcMigratorSocietyPortableVote)',
|
||||
VoteClearCursor: '(AccountId32,Bytes)',
|
||||
DefenderVotes: '(u32,AccountId32,PezpalletRcMigratorSocietyPortableVote)'
|
||||
Member: '(PezspCoreCryptoAccountId32,PezpalletRcMigratorSocietyPortableMemberRecord)',
|
||||
Payout: '(PezspCoreCryptoAccountId32,PezpalletRcMigratorSocietyPortablePayoutRecord)',
|
||||
MemberByIndex: '(u32,PezspCoreCryptoAccountId32)',
|
||||
SuspendedMembers: '(PezspCoreCryptoAccountId32,PezpalletRcMigratorSocietyPortableMemberRecord)',
|
||||
Candidates: '(PezspCoreCryptoAccountId32,PezpalletRcMigratorSocietyPortableCandidacy)',
|
||||
Votes: '(PezspCoreCryptoAccountId32,PezspCoreCryptoAccountId32,PezpalletRcMigratorSocietyPortableVote)',
|
||||
VoteClearCursor: '(PezspCoreCryptoAccountId32,Bytes)',
|
||||
DefenderVotes: '(u32,PezspCoreCryptoAccountId32,PezpalletRcMigratorSocietyPortableVote)'
|
||||
}
|
||||
},
|
||||
/**
|
||||
@@ -552,16 +552,16 @@ export default {
|
||||
PezpalletRcMigratorSocietySocietyValues: {
|
||||
parameters: 'Option<PezpalletRcMigratorSocietyPortableGroupParams>',
|
||||
pot: 'Option<u128>',
|
||||
founder: 'Option<AccountId32>',
|
||||
head: 'Option<AccountId32>',
|
||||
founder: 'Option<PezspCoreCryptoAccountId32>',
|
||||
head: 'Option<PezspCoreCryptoAccountId32>',
|
||||
rules: 'Option<H256>',
|
||||
memberCount: 'Option<u32>',
|
||||
roundCount: 'Option<u32>',
|
||||
bids: 'Option<Vec<PezpalletRcMigratorSocietyPortableBid>>',
|
||||
sceptic: 'Option<AccountId32>',
|
||||
sceptic: 'Option<PezspCoreCryptoAccountId32>',
|
||||
nextHead: 'Option<PezpalletRcMigratorSocietyPortableIntakeRecord>',
|
||||
challengeRoundCount: 'Option<u32>',
|
||||
defending: 'Option<(AccountId32,AccountId32,PezpalletRcMigratorSocietyPortableTally)>',
|
||||
defending: 'Option<(PezspCoreCryptoAccountId32,PezspCoreCryptoAccountId32,PezpalletRcMigratorSocietyPortableTally)>',
|
||||
nextIntakeAt: 'Option<u32>',
|
||||
nextChallengeAt: 'Option<u32>'
|
||||
},
|
||||
@@ -578,7 +578,7 @@ export default {
|
||||
* Lookup761: pallet_rc_migrator::society::PortableBid
|
||||
**/
|
||||
PezpalletRcMigratorSocietyPortableBid: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
kind: 'PezpalletRcMigratorSocietyPortableBidKind',
|
||||
value: 'u128'
|
||||
},
|
||||
@@ -588,14 +588,14 @@ export default {
|
||||
PezpalletRcMigratorSocietyPortableBidKind: {
|
||||
_enum: {
|
||||
Deposit: 'u128',
|
||||
Vouch: '(AccountId32,u128)'
|
||||
Vouch: '(PezspCoreCryptoAccountId32,u128)'
|
||||
}
|
||||
},
|
||||
/**
|
||||
* Lookup764: pallet_rc_migrator::society::PortableIntakeRecord
|
||||
**/
|
||||
PezpalletRcMigratorSocietyPortableIntakeRecord: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
bid: 'u128',
|
||||
round: 'u32'
|
||||
},
|
||||
@@ -834,7 +834,7 @@ export default {
|
||||
* Lookup939: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, asset_hub_kusama_runtime::ProxyType, BlockNumber>
|
||||
**/
|
||||
PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType: {
|
||||
delegate: 'AccountId32',
|
||||
delegate: 'PezspCoreCryptoAccountId32',
|
||||
proxyType: 'AssetHubDicleRuntimeProxyType',
|
||||
delay: 'u32'
|
||||
},
|
||||
@@ -848,7 +848,7 @@ export default {
|
||||
* Lookup1023: pallet_revive::vm::CodeInfo<T>
|
||||
**/
|
||||
PezpalletReviveVmCodeInfo: {
|
||||
owner: 'AccountId32',
|
||||
owner: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'Compact<u128>',
|
||||
refcount: 'Compact<u64>',
|
||||
codeLen: 'u32',
|
||||
|
||||
@@ -150,13 +150,13 @@ export default {
|
||||
PezpalletCollatorSelectionEvent: {
|
||||
_enum: {
|
||||
NewInvulnerables: {
|
||||
invulnerables: 'Vec<AccountId32>',
|
||||
invulnerables: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
InvulnerableAdded: {
|
||||
accountId: 'AccountId32',
|
||||
accountId: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
InvulnerableRemoved: {
|
||||
accountId: 'AccountId32',
|
||||
accountId: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
NewDesiredCandidates: {
|
||||
desiredCandidates: 'u32',
|
||||
@@ -165,26 +165,26 @@ export default {
|
||||
bondAmount: 'u128',
|
||||
},
|
||||
CandidateAdded: {
|
||||
accountId: 'AccountId32',
|
||||
accountId: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128',
|
||||
},
|
||||
CandidateBondUpdated: {
|
||||
accountId: 'AccountId32',
|
||||
accountId: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128',
|
||||
},
|
||||
CandidateRemoved: {
|
||||
accountId: 'AccountId32',
|
||||
accountId: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
CandidateReplaced: {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
old: 'AccountId32',
|
||||
new_: 'AccountId32',
|
||||
old: 'PezspCoreCryptoAccountId32',
|
||||
new_: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128',
|
||||
},
|
||||
InvalidInvulnerableSkipped: {
|
||||
accountId: 'AccountId32'
|
||||
accountId: 'PezspCoreCryptoAccountId32'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -386,7 +386,7 @@ export default {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
new_: 'Vec<AccountId32>',
|
||||
new_: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
set_desired_candidates: {
|
||||
max: 'u32',
|
||||
@@ -397,17 +397,17 @@ export default {
|
||||
register_as_candidate: 'Null',
|
||||
leave_intent: 'Null',
|
||||
add_invulnerable: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
remove_invulnerable: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
update_bond: {
|
||||
newDeposit: 'u128',
|
||||
},
|
||||
take_candidate_slot: {
|
||||
deposit: 'u128',
|
||||
target: 'AccountId32'
|
||||
target: 'PezspCoreCryptoAccountId32'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -663,21 +663,21 @@ export default {
|
||||
**/
|
||||
AssetHubPezkuwiRuntimeStakingNposCompactSolution16: {
|
||||
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<PerU16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>'
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<u16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);15],Compact<u16>)>'
|
||||
},
|
||||
/**
|
||||
* Lookup468: pallet_election_provider_multi_block::signed::pallet::Call<T>
|
||||
@@ -697,7 +697,7 @@ export default {
|
||||
witnessPages: 'u32',
|
||||
},
|
||||
set_invulnerables: {
|
||||
inv: 'Vec<AccountId32>'
|
||||
inv: 'Vec<PezspCoreCryptoAccountId32>'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -723,7 +723,7 @@ export default {
|
||||
prefs: 'PezpalletStakingAsyncValidatorPrefs',
|
||||
},
|
||||
nominate: {
|
||||
targets: 'Vec<MultiAddress>',
|
||||
targets: 'Vec<PezspRuntimeMultiAddress>',
|
||||
},
|
||||
chill: 'Null',
|
||||
set_payee: {
|
||||
@@ -740,35 +740,35 @@ export default {
|
||||
additional: 'Compact<u32>',
|
||||
},
|
||||
scale_validator_count: {
|
||||
factor: 'Percent',
|
||||
factor: 'u8',
|
||||
},
|
||||
force_no_eras: 'Null',
|
||||
force_new_era: 'Null',
|
||||
set_invulnerables: {
|
||||
invulnerables: 'Vec<AccountId32>',
|
||||
invulnerables: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
force_unstake: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
numSlashingSpans: 'u32',
|
||||
},
|
||||
force_new_era_always: 'Null',
|
||||
cancel_deferred_slash: {
|
||||
era: 'u32',
|
||||
validatorSlashes: 'Vec<(AccountId32,Perbill)>',
|
||||
validatorSlashes: 'Vec<(PezspCoreCryptoAccountId32,u32)>',
|
||||
},
|
||||
payout_stakers: {
|
||||
validatorStash: 'AccountId32',
|
||||
validatorStash: 'PezspCoreCryptoAccountId32',
|
||||
era: 'u32',
|
||||
},
|
||||
rebond: {
|
||||
value: 'Compact<u128>',
|
||||
},
|
||||
reap_stash: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
numSlashingSpans: 'u32',
|
||||
},
|
||||
kick: {
|
||||
who: 'Vec<MultiAddress>',
|
||||
who: 'Vec<PezspRuntimeMultiAddress>',
|
||||
},
|
||||
set_staking_configs: {
|
||||
minNominatorBond: 'PezpalletStakingAsyncPezpalletConfigOpU128',
|
||||
@@ -780,40 +780,40 @@ export default {
|
||||
maxStakedRewards: 'PezpalletStakingAsyncPezpalletConfigOpPercent',
|
||||
},
|
||||
chill_other: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
force_apply_min_commission: {
|
||||
validatorStash: 'AccountId32',
|
||||
validatorStash: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
set_min_commission: {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
new_: 'Perbill',
|
||||
new_: 'u32',
|
||||
},
|
||||
payout_stakers_by_page: {
|
||||
validatorStash: 'AccountId32',
|
||||
validatorStash: 'PezspCoreCryptoAccountId32',
|
||||
era: 'u32',
|
||||
page: 'u32',
|
||||
},
|
||||
update_payee: {
|
||||
controller: 'AccountId32',
|
||||
controller: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
deprecate_controller_batch: {
|
||||
controllers: 'Vec<AccountId32>',
|
||||
controllers: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
restore_ledger: {
|
||||
stash: 'AccountId32',
|
||||
maybeController: 'Option<AccountId32>',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
maybeController: 'Option<PezspCoreCryptoAccountId32>',
|
||||
maybeTotal: 'Option<u128>',
|
||||
maybeUnlocking: 'Option<Vec<PezpalletStakingAsyncLedgerUnlockChunk>>',
|
||||
},
|
||||
migrate_currency: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
apply_slash: {
|
||||
slashEra: 'u32',
|
||||
slashKey: '(AccountId32,Perbill,u32)',
|
||||
slashKey: '(PezspCoreCryptoAccountId32,u32,u32)',
|
||||
},
|
||||
prune_era_step: {
|
||||
era: 'u32'
|
||||
@@ -828,7 +828,7 @@ export default {
|
||||
Staked: 'Null',
|
||||
Stash: 'Null',
|
||||
Controller: 'Null',
|
||||
Account: 'AccountId32',
|
||||
Account: 'PezspCoreCryptoAccountId32',
|
||||
None: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -836,7 +836,7 @@ export default {
|
||||
* Lookup472: pallet_staking_async::ValidatorPrefs
|
||||
**/
|
||||
PezpalletStakingAsyncValidatorPrefs: {
|
||||
commission: 'Compact<Perbill>',
|
||||
commission: 'Compact<u32>',
|
||||
blocked: 'bool'
|
||||
},
|
||||
/**
|
||||
@@ -865,7 +865,7 @@ export default {
|
||||
PezpalletStakingAsyncPezpalletConfigOpPercent: {
|
||||
_enum: {
|
||||
Noop: 'Null',
|
||||
Set: 'Percent',
|
||||
Set: 'u8',
|
||||
Remove: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -875,7 +875,7 @@ export default {
|
||||
PezpalletStakingAsyncPezpalletConfigOpPerbill: {
|
||||
_enum: {
|
||||
Noop: 'Null',
|
||||
Set: 'Perbill',
|
||||
Set: 'u32',
|
||||
Remove: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -893,17 +893,17 @@ export default {
|
||||
_enum: {
|
||||
unreserve_lease_deposit: {
|
||||
block: 'u32',
|
||||
depositor: 'Option<AccountId32>',
|
||||
depositor: 'Option<PezspCoreCryptoAccountId32>',
|
||||
paraId: 'u32',
|
||||
},
|
||||
withdraw_crowdloan_contribution: {
|
||||
block: 'u32',
|
||||
depositor: 'Option<AccountId32>',
|
||||
depositor: 'Option<PezspCoreCryptoAccountId32>',
|
||||
paraId: 'u32',
|
||||
},
|
||||
unreserve_crowdloan_reserve: {
|
||||
block: 'u32',
|
||||
depositor: 'Option<AccountId32>',
|
||||
depositor: 'Option<PezspCoreCryptoAccountId32>',
|
||||
paraId: 'u32',
|
||||
},
|
||||
transfer_to_post_migration_treasury: {
|
||||
@@ -1080,7 +1080,7 @@ export default {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
new_: 'Option<AccountId32>',
|
||||
new_: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
__Unused104: 'Null',
|
||||
__Unused105: 'Null',
|
||||
@@ -1102,7 +1102,7 @@ export default {
|
||||
* Lookup491: pallet_rc_migrator::accounts::Account<sp_core::crypto::AccountId32, Balance, pallet_rc_migrator::types::PortableHoldReason, pallet_rc_migrator::types::PortableFreezeReason>
|
||||
**/
|
||||
PezpalletRcMigratorAccountsAccount: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
free: 'u128',
|
||||
reserved: 'u128',
|
||||
frozen: 'u128',
|
||||
@@ -1152,14 +1152,14 @@ export default {
|
||||
* Lookup512: pallet_rc_migrator::multisig::RcMultisig<sp_core::crypto::AccountId32, Balance>
|
||||
**/
|
||||
PezpalletRcMigratorMultisigRcMultisig: {
|
||||
creator: 'AccountId32',
|
||||
creator: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128'
|
||||
},
|
||||
/**
|
||||
* Lookup514: pallet_rc_migrator::proxy::RcProxy<sp_core::crypto::AccountId32, Balance, polkadot_runtime_constants::proxy::ProxyType, BlockNumber>
|
||||
**/
|
||||
PezpalletRcMigratorProxyRcProxy: {
|
||||
delegator: 'AccountId32',
|
||||
delegator: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128',
|
||||
proxies: 'Vec<PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType>'
|
||||
},
|
||||
@@ -1167,7 +1167,7 @@ export default {
|
||||
* Lookup517: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, polkadot_runtime_constants::proxy::ProxyType, BlockNumber>
|
||||
**/
|
||||
PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType: {
|
||||
delegate: 'AccountId32',
|
||||
delegate: 'PezspCoreCryptoAccountId32',
|
||||
proxyType: 'PezkuwiRuntimeConstantsProxyProxyType',
|
||||
delay: 'u32'
|
||||
},
|
||||
@@ -1175,7 +1175,7 @@ export default {
|
||||
* Lookup519: pallet_rc_migrator::proxy::RcProxyAnnouncement<sp_core::crypto::AccountId32, Balance>
|
||||
**/
|
||||
PezpalletRcMigratorProxyRcProxyAnnouncement: {
|
||||
depositor: 'AccountId32',
|
||||
depositor: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128'
|
||||
},
|
||||
/**
|
||||
@@ -1203,11 +1203,11 @@ export default {
|
||||
PezpalletRcMigratorPreimageRequestStatusPortableRequestStatusInner: {
|
||||
_enum: {
|
||||
Unrequested: {
|
||||
ticket: '(AccountId32,Bytes)',
|
||||
ticket: '(PezspCoreCryptoAccountId32,Bytes)',
|
||||
len: 'u32',
|
||||
},
|
||||
Requested: {
|
||||
maybeTicket: 'Option<(AccountId32,Bytes)>',
|
||||
maybeTicket: 'Option<(PezspCoreCryptoAccountId32,Bytes)>',
|
||||
count: 'u32',
|
||||
maybeLen: 'Option<u32>'
|
||||
}
|
||||
@@ -1221,7 +1221,7 @@ export default {
|
||||
hash_: 'hash'
|
||||
},
|
||||
hash_: 'H256',
|
||||
depositor: 'AccountId32',
|
||||
depositor: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128'
|
||||
},
|
||||
/**
|
||||
@@ -1233,7 +1233,7 @@ export default {
|
||||
values: 'PezpalletRcMigratorStakingNomPoolsNomPoolsStorageValues',
|
||||
},
|
||||
PoolMembers: {
|
||||
member: '(AccountId32,PezpalletNominationPoolsPoolMember)',
|
||||
member: '(PezspCoreCryptoAccountId32,PezpalletNominationPoolsPoolMember)',
|
||||
},
|
||||
BondedPools: {
|
||||
pool: '(u32,PezpalletNominationPoolsBondedPoolInner)',
|
||||
@@ -1248,10 +1248,10 @@ export default {
|
||||
meta: '(u32,Bytes)',
|
||||
},
|
||||
ReversePoolIdLookup: {
|
||||
lookups: '(AccountId32,u32)',
|
||||
lookups: '(PezspCoreCryptoAccountId32,u32)',
|
||||
},
|
||||
ClaimPermissions: {
|
||||
perms: '(AccountId32,PezpalletNominationPoolsClaimPermission)'
|
||||
perms: '(PezspCoreCryptoAccountId32,PezpalletNominationPoolsClaimPermission)'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1265,7 +1265,7 @@ export default {
|
||||
maxPools: 'Option<u32>',
|
||||
maxPoolMembers: 'Option<u32>',
|
||||
maxPoolMembersPerPool: 'Option<u32>',
|
||||
globalMaxCommission: 'Option<Perbill>',
|
||||
globalMaxCommission: 'Option<u32>',
|
||||
lastPoolId: 'Option<u32>'
|
||||
},
|
||||
/**
|
||||
@@ -1296,7 +1296,7 @@ export default {
|
||||
* Lookup558: pallet_rc_migrator::vesting::RcVestingSchedule<T>
|
||||
**/
|
||||
PezpalletRcMigratorVestingRcVestingSchedule: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
schedules: 'Vec<PezpalletVestingVestingInfo>'
|
||||
},
|
||||
/**
|
||||
@@ -1380,7 +1380,7 @@ export default {
|
||||
schedule: '(u128,u128,u32)',
|
||||
},
|
||||
Signing: '(PezkuwiRuntimeCommonClaimsEthereumAddress,PezkuwiRuntimeCommonClaimsStatementKind)',
|
||||
Preclaims: '(AccountId32,PezkuwiRuntimeCommonClaimsEthereumAddress)'
|
||||
Preclaims: '(PezspCoreCryptoAccountId32,PezkuwiRuntimeCommonClaimsEthereumAddress)'
|
||||
}
|
||||
},
|
||||
/**
|
||||
@@ -1389,7 +1389,7 @@ export default {
|
||||
PezpalletRcMigratorStakingBagsListPortableBagsListMessage: {
|
||||
_enum: {
|
||||
Node: {
|
||||
id: 'AccountId32',
|
||||
id: 'PezspCoreCryptoAccountId32',
|
||||
node: 'PezpalletRcMigratorStakingBagsListPortableNode',
|
||||
},
|
||||
Bag: {
|
||||
@@ -1402,9 +1402,9 @@ export default {
|
||||
* Lookup586: pallet_rc_migrator::staking::bags_list::PortableNode
|
||||
**/
|
||||
PezpalletRcMigratorStakingBagsListPortableNode: {
|
||||
id: 'AccountId32',
|
||||
prev: 'Option<AccountId32>',
|
||||
next: 'Option<AccountId32>',
|
||||
id: 'PezspCoreCryptoAccountId32',
|
||||
prev: 'Option<PezspCoreCryptoAccountId32>',
|
||||
next: 'Option<PezspCoreCryptoAccountId32>',
|
||||
bagUpper: 'u64',
|
||||
score: 'u64'
|
||||
},
|
||||
@@ -1412,8 +1412,8 @@ export default {
|
||||
* Lookup587: pallet_rc_migrator::staking::bags_list::PortableBag
|
||||
**/
|
||||
PezpalletRcMigratorStakingBagsListPortableBag: {
|
||||
head: 'Option<AccountId32>',
|
||||
tail: 'Option<AccountId32>',
|
||||
head: 'Option<PezspCoreCryptoAccountId32>',
|
||||
tail: 'Option<PezspCoreCryptoAccountId32>',
|
||||
bagUpper: 'u64'
|
||||
},
|
||||
/**
|
||||
@@ -1431,7 +1431,7 @@ export default {
|
||||
**/
|
||||
PezpalletRcMigratorIndicesRcIndicesIndex: {
|
||||
index: 'u32',
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128',
|
||||
frozen: 'bool'
|
||||
},
|
||||
@@ -1440,8 +1440,8 @@ export default {
|
||||
**/
|
||||
PezpalletRcMigratorConvictionVotingRcConvictionVotingMessage: {
|
||||
_enum: {
|
||||
VotingFor: '(AccountId32,u16,PezpalletConvictionVotingVoteVoting)',
|
||||
ClassLocksFor: '(AccountId32,Vec<(u16,u128)>)'
|
||||
VotingFor: '(PezspCoreCryptoAccountId32,u16,PezpalletConvictionVotingVoteVoting)',
|
||||
ClassLocksFor: '(PezspCoreCryptoAccountId32,Vec<(u16,u128)>)'
|
||||
}
|
||||
},
|
||||
/**
|
||||
@@ -1459,7 +1459,7 @@ export default {
|
||||
* Lookup611: pallet_rc_migrator::bounties::alias::Bounty<sp_core::crypto::AccountId32, Balance, BlockNumber>
|
||||
**/
|
||||
PezpalletRcMigratorBountiesAliasBounty: {
|
||||
proposer: 'AccountId32',
|
||||
proposer: 'PezspCoreCryptoAccountId32',
|
||||
value: 'u128',
|
||||
fee: 'u128',
|
||||
curatorDeposit: 'u128',
|
||||
@@ -1473,20 +1473,20 @@ export default {
|
||||
_enum: {
|
||||
LeaseReserve: {
|
||||
unreserveBlock: 'u32',
|
||||
account: 'AccountId32',
|
||||
account: 'PezspCoreCryptoAccountId32',
|
||||
paraId: 'u32',
|
||||
amount: 'u128',
|
||||
},
|
||||
CrowdloanContribution: {
|
||||
withdrawBlock: 'u32',
|
||||
contributor: 'AccountId32',
|
||||
contributor: 'PezspCoreCryptoAccountId32',
|
||||
paraId: 'u32',
|
||||
amount: 'u128',
|
||||
crowdloanAccount: 'AccountId32',
|
||||
crowdloanAccount: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
CrowdloanReserve: {
|
||||
unreserveBlock: 'u32',
|
||||
depositor: 'AccountId32',
|
||||
depositor: 'PezspCoreCryptoAccountId32',
|
||||
paraId: 'u32',
|
||||
amount: 'u128'
|
||||
}
|
||||
@@ -1555,13 +1555,13 @@ export default {
|
||||
PezpalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage: {
|
||||
_enum: {
|
||||
Delegators: {
|
||||
delegator: 'AccountId32',
|
||||
agent: 'AccountId32',
|
||||
delegator: 'PezspCoreCryptoAccountId32',
|
||||
agent: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
Agents: {
|
||||
agent: 'AccountId32',
|
||||
payee: 'AccountId32',
|
||||
agent: 'PezspCoreCryptoAccountId32',
|
||||
payee: 'PezspCoreCryptoAccountId32',
|
||||
totalDelegated: 'u128',
|
||||
unclaimedWithdrawals: 'u128',
|
||||
pendingSlash: 'u128'
|
||||
@@ -1614,14 +1614,14 @@ export default {
|
||||
_enum: {
|
||||
Added: 'Null',
|
||||
CuratorProposed: {
|
||||
curator: 'AccountId32',
|
||||
curator: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
Active: {
|
||||
curator: 'AccountId32',
|
||||
curator: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
PendingPayout: {
|
||||
curator: 'AccountId32',
|
||||
beneficiary: 'AccountId32',
|
||||
curator: 'PezspCoreCryptoAccountId32',
|
||||
beneficiary: 'PezspCoreCryptoAccountId32',
|
||||
unlockAt: 'u32'
|
||||
}
|
||||
}
|
||||
@@ -1632,47 +1632,47 @@ export default {
|
||||
PezpalletRcMigratorStakingMessagePortableStakingMessage: {
|
||||
_enum: {
|
||||
Values: 'PezpalletRcMigratorStakingMessageStakingValues',
|
||||
Invulnerables: 'Vec<AccountId32>',
|
||||
Invulnerables: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
Bonded: {
|
||||
stash: 'AccountId32',
|
||||
controller: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
controller: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
Ledger: {
|
||||
controller: 'AccountId32',
|
||||
controller: 'PezspCoreCryptoAccountId32',
|
||||
ledger: 'PezpalletRcMigratorStakingMessagePortableStakingLedger',
|
||||
},
|
||||
Payee: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
payment: 'PezpalletRcMigratorStakingMessagePortableRewardDestination',
|
||||
},
|
||||
Validators: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
validators: 'PezpalletRcMigratorStakingMessagePortableValidatorPrefs',
|
||||
},
|
||||
Nominators: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
nominations: 'PezpalletRcMigratorStakingMessagePortableNominations',
|
||||
},
|
||||
VirtualStakers: 'AccountId32',
|
||||
VirtualStakers: 'PezspCoreCryptoAccountId32',
|
||||
ErasStakersOverview: {
|
||||
era: 'u32',
|
||||
validator: 'AccountId32',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
exposure: 'PezpalletRcMigratorStakingMessagePortablePagedExposureMetadata',
|
||||
},
|
||||
ErasStakersPaged: {
|
||||
era: 'u32',
|
||||
validator: 'AccountId32',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
page: 'u32',
|
||||
exposure: 'PezpalletRcMigratorStakingMessagePortableExposurePage',
|
||||
},
|
||||
ClaimedRewards: {
|
||||
era: 'u32',
|
||||
validator: 'AccountId32',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
rewards: 'Vec<u32>',
|
||||
},
|
||||
ErasValidatorPrefs: {
|
||||
era: 'u32',
|
||||
validator: 'AccountId32',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
prefs: 'PezpalletRcMigratorStakingMessagePortableValidatorPrefs',
|
||||
},
|
||||
ErasValidatorReward: {
|
||||
@@ -1694,8 +1694,8 @@ export default {
|
||||
BondedEras: 'Vec<(u32,u32)>',
|
||||
ValidatorSlashInEra: {
|
||||
era: 'u32',
|
||||
validator: 'AccountId32',
|
||||
slash: '(Perbill,u128)'
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
slash: '(u32,u128)'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1708,17 +1708,17 @@ export default {
|
||||
minNominatorBond: 'Option<u128>',
|
||||
minValidatorBond: 'Option<u128>',
|
||||
minActiveStake: 'Option<u128>',
|
||||
minCommission: 'Option<Perbill>',
|
||||
minCommission: 'Option<u32>',
|
||||
maxValidatorsCount: 'Option<u32>',
|
||||
maxNominatorsCount: 'Option<u32>',
|
||||
currentEra: 'Option<u32>',
|
||||
activeEra: 'Option<PezpalletRcMigratorStakingMessagePortableActiveEraInfo>',
|
||||
forceEra: 'Option<PezpalletRcMigratorStakingMessagePortableForcing>',
|
||||
maxStakedRewards: 'Option<Percent>',
|
||||
slashRewardFraction: 'Option<Perbill>',
|
||||
maxStakedRewards: 'Option<u8>',
|
||||
slashRewardFraction: 'Option<u32>',
|
||||
canceledSlashPayout: 'Option<u128>',
|
||||
currentPlannedSession: 'Option<u32>',
|
||||
chillThreshold: 'Option<Percent>'
|
||||
chillThreshold: 'Option<u8>'
|
||||
},
|
||||
/**
|
||||
* Lookup641: pallet_rc_migrator::staking::message::PortableActiveEraInfo
|
||||
@@ -1737,7 +1737,7 @@ export default {
|
||||
* Lookup645: pallet_rc_migrator::staking::message::PortableStakingLedger
|
||||
**/
|
||||
PezpalletRcMigratorStakingMessagePortableStakingLedger: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
total: 'u128',
|
||||
active: 'u128',
|
||||
unlocking: 'Vec<PezpalletRcMigratorStakingMessagePortableUnlockChunk>'
|
||||
@@ -1757,7 +1757,7 @@ export default {
|
||||
Staked: 'Null',
|
||||
Stash: 'Null',
|
||||
Controller: 'Null',
|
||||
Account: 'AccountId32',
|
||||
Account: 'PezspCoreCryptoAccountId32',
|
||||
None: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -1765,14 +1765,14 @@ export default {
|
||||
* Lookup650: pallet_rc_migrator::staking::message::PortableValidatorPrefs
|
||||
**/
|
||||
PezpalletRcMigratorStakingMessagePortableValidatorPrefs: {
|
||||
commission: 'Perbill',
|
||||
commission: 'u32',
|
||||
blocked: 'bool'
|
||||
},
|
||||
/**
|
||||
* Lookup651: pallet_rc_migrator::staking::message::PortableNominations
|
||||
**/
|
||||
PezpalletRcMigratorStakingMessagePortableNominations: {
|
||||
targets: 'Vec<AccountId32>',
|
||||
targets: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
submittedIn: 'u32',
|
||||
suppressed: 'bool'
|
||||
},
|
||||
@@ -1796,7 +1796,7 @@ export default {
|
||||
* Lookup656: pallet_rc_migrator::staking::message::PortableIndividualExposure
|
||||
**/
|
||||
PezpalletRcMigratorStakingMessagePortableIndividualExposure: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
value: 'u128'
|
||||
},
|
||||
/**
|
||||
@@ -1804,16 +1804,16 @@ export default {
|
||||
**/
|
||||
PezpalletRcMigratorStakingMessagePortableEraRewardPoints: {
|
||||
total: 'u32',
|
||||
individual: 'Vec<(AccountId32,u32)>'
|
||||
individual: 'Vec<(PezspCoreCryptoAccountId32,u32)>'
|
||||
},
|
||||
/**
|
||||
* Lookup660: pallet_rc_migrator::staking::message::PortableUnappliedSlash
|
||||
**/
|
||||
PezpalletRcMigratorStakingMessagePortableUnappliedSlash: {
|
||||
validator: 'AccountId32',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
own: 'u128',
|
||||
others: 'Vec<(AccountId32,u128)>',
|
||||
reporters: 'Vec<AccountId32>',
|
||||
others: 'Vec<(PezspCoreCryptoAccountId32,u128)>',
|
||||
reporters: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
payout: 'u128'
|
||||
},
|
||||
/**
|
||||
@@ -1911,13 +1911,13 @@ export default {
|
||||
**/
|
||||
PezpalletElectionProviderMultiBlockSignedPezpalletEvent: {
|
||||
_enum: {
|
||||
Registered: '(u32,AccountId32,PezspNposElectionsElectionScore)',
|
||||
Stored: '(u32,AccountId32,u32)',
|
||||
Rewarded: '(u32,AccountId32,u128)',
|
||||
Slashed: '(u32,AccountId32,u128)',
|
||||
Ejected: '(u32,AccountId32)',
|
||||
Discarded: '(u32,AccountId32)',
|
||||
Bailed: '(u32,AccountId32)'
|
||||
Registered: '(u32,PezspCoreCryptoAccountId32,PezspNposElectionsElectionScore)',
|
||||
Stored: '(u32,PezspCoreCryptoAccountId32,u32)',
|
||||
Rewarded: '(u32,PezspCoreCryptoAccountId32,u128)',
|
||||
Slashed: '(u32,PezspCoreCryptoAccountId32,u128)',
|
||||
Ejected: '(u32,PezspCoreCryptoAccountId32)',
|
||||
Discarded: '(u32,PezspCoreCryptoAccountId32)',
|
||||
Bailed: '(u32,PezspCoreCryptoAccountId32)'
|
||||
}
|
||||
},
|
||||
/**
|
||||
@@ -1931,47 +1931,47 @@ export default {
|
||||
remainder: 'u128',
|
||||
},
|
||||
Rewarded: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
dest: 'PezpalletStakingAsyncRewardDestination',
|
||||
amount: 'u128',
|
||||
},
|
||||
Slashed: {
|
||||
staker: 'AccountId32',
|
||||
staker: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
OldSlashingReportDiscarded: {
|
||||
sessionIndex: 'u32',
|
||||
},
|
||||
Bonded: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
Unbonded: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
Withdrawn: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
StakerRemoved: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
Kicked: {
|
||||
nominator: 'AccountId32',
|
||||
stash: 'AccountId32',
|
||||
nominator: 'PezspCoreCryptoAccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
Chilled: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
PayoutStarted: {
|
||||
eraIndex: 'u32',
|
||||
validatorStash: 'AccountId32',
|
||||
validatorStash: 'PezspCoreCryptoAccountId32',
|
||||
page: 'u32',
|
||||
next: 'Option<u32>',
|
||||
},
|
||||
ValidatorPrefsSet: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
prefs: 'PezpalletStakingAsyncValidatorPrefs',
|
||||
},
|
||||
SnapshotVotersSizeExceeded: {
|
||||
@@ -1993,7 +1993,7 @@ export default {
|
||||
failures: 'u32',
|
||||
},
|
||||
CurrencyMigrated: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
forceWithdraw: 'u128',
|
||||
},
|
||||
PagedElectionProceeded: {
|
||||
@@ -2002,18 +2002,18 @@ export default {
|
||||
},
|
||||
OffenceReported: {
|
||||
offenceEra: 'u32',
|
||||
validator: 'AccountId32',
|
||||
fraction: 'Perbill',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
fraction: 'u32',
|
||||
},
|
||||
SlashComputed: {
|
||||
offenceEra: 'u32',
|
||||
slashEra: 'u32',
|
||||
offender: 'AccountId32',
|
||||
offender: 'PezspCoreCryptoAccountId32',
|
||||
page: 'u32',
|
||||
},
|
||||
SlashCancelled: {
|
||||
slashEra: 'u32',
|
||||
validator: 'AccountId32',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
SessionRotated: {
|
||||
startingSession: 'u32',
|
||||
@@ -2023,8 +2023,8 @@ export default {
|
||||
Unexpected: 'PezpalletStakingAsyncPezpalletUnexpectedKind',
|
||||
OffenceTooOld: {
|
||||
offenceEra: 'u32',
|
||||
validator: 'AccountId32',
|
||||
fraction: 'Perbill',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
fraction: 'u32',
|
||||
},
|
||||
EraPruned: {
|
||||
index: 'u32'
|
||||
@@ -2049,19 +2049,19 @@ export default {
|
||||
PezpalletAhOpsEvent: {
|
||||
_enum: {
|
||||
LeaseUnreserveRemaining: {
|
||||
depositor: 'AccountId32',
|
||||
depositor: 'PezspCoreCryptoAccountId32',
|
||||
paraId: 'u32',
|
||||
remaining: 'u128',
|
||||
},
|
||||
CrowdloanUnreserveRemaining: {
|
||||
depositor: 'AccountId32',
|
||||
depositor: 'PezspCoreCryptoAccountId32',
|
||||
paraId: 'u32',
|
||||
remaining: 'u128',
|
||||
},
|
||||
SovereignMigrated: {
|
||||
paraId: 'u32',
|
||||
from: 'AccountId32',
|
||||
to: 'AccountId32',
|
||||
from: 'PezspCoreCryptoAccountId32',
|
||||
to: 'PezspCoreCryptoAccountId32',
|
||||
derivationIndex: 'Option<u16>'
|
||||
}
|
||||
}
|
||||
@@ -2116,16 +2116,16 @@ export default {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
old: 'Option<AccountId32>',
|
||||
new_: 'Option<AccountId32>',
|
||||
old: 'Option<PezspCoreCryptoAccountId32>',
|
||||
new_: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
AccountTranslatedParachainSovereign: {
|
||||
from: 'AccountId32',
|
||||
to: 'AccountId32',
|
||||
from: 'PezspCoreCryptoAccountId32',
|
||||
to: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
AccountTranslatedParachainSovereignDerived: {
|
||||
from: 'AccountId32',
|
||||
to: 'AccountId32',
|
||||
from: 'PezspCoreCryptoAccountId32',
|
||||
to: 'PezspCoreCryptoAccountId32',
|
||||
derivationIndex: 'u16',
|
||||
},
|
||||
XcmSent: {
|
||||
@@ -2137,12 +2137,12 @@ export default {
|
||||
FailedToUnreserveMultisigDeposit: {
|
||||
expectedAmount: 'u128',
|
||||
missingAmount: 'u128',
|
||||
account: 'AccountId32',
|
||||
account: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
FailedToUnreservePreimageDeposit: {
|
||||
expectedAmount: 'u128',
|
||||
missingAmount: 'u128',
|
||||
account: 'AccountId32'
|
||||
account: 'PezspCoreCryptoAccountId32'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -2439,7 +2439,7 @@ export default {
|
||||
* Lookup776: pallet_collator_selection::pallet::CandidateInfo<sp_core::crypto::AccountId32, Balance>
|
||||
**/
|
||||
PezpalletCollatorSelectionCandidateInfo: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128'
|
||||
},
|
||||
/**
|
||||
@@ -2495,7 +2495,7 @@ export default {
|
||||
* Lookup847: pallet_proxy::ProxyDefinition<sp_core::crypto::AccountId32, asset_hub_polkadot_runtime::ProxyType, BlockNumber>
|
||||
**/
|
||||
PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType: {
|
||||
delegate: 'AccountId32',
|
||||
delegate: 'PezspCoreCryptoAccountId32',
|
||||
proxyType: 'AssetHubPezkuwiRuntimeProxyType',
|
||||
delay: 'u32'
|
||||
},
|
||||
@@ -2576,7 +2576,7 @@ export default {
|
||||
* Lookup974: pallet_staking_async::ledger::StakingLedger<T>
|
||||
**/
|
||||
PezpalletStakingAsyncLedgerStakingLedger: {
|
||||
stash: 'AccountId32',
|
||||
stash: 'PezspCoreCryptoAccountId32',
|
||||
total: 'Compact<u128>',
|
||||
active: 'Compact<u128>',
|
||||
unlocking: 'Vec<PezpalletStakingAsyncLedgerUnlockChunk>'
|
||||
@@ -2585,7 +2585,7 @@ export default {
|
||||
* Lookup975: pallet_staking_async::Nominations<T>
|
||||
**/
|
||||
PezpalletStakingAsyncNominations: {
|
||||
targets: 'Vec<AccountId32>',
|
||||
targets: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
submittedIn: 'u32',
|
||||
suppressed: 'bool'
|
||||
},
|
||||
@@ -2605,26 +2605,26 @@ export default {
|
||||
**/
|
||||
PezpalletStakingAsyncEraRewardPoints: {
|
||||
total: 'u32',
|
||||
individual: 'BTreeMap<AccountId32, u32>'
|
||||
individual: 'BTreeMap<PezspCoreCryptoAccountId32, u32>'
|
||||
},
|
||||
/**
|
||||
* Lookup987: pallet_staking_async::slashing::OffenceRecord<sp_core::crypto::AccountId32>
|
||||
**/
|
||||
PezpalletStakingAsyncSlashingOffenceRecord: {
|
||||
reporter: 'Option<AccountId32>',
|
||||
reporter: 'Option<PezspCoreCryptoAccountId32>',
|
||||
reportedEra: 'u32',
|
||||
exposurePage: 'u32',
|
||||
slashFraction: 'Perbill',
|
||||
priorSlashFraction: 'Perbill'
|
||||
slashFraction: 'u32',
|
||||
priorSlashFraction: 'u32'
|
||||
},
|
||||
/**
|
||||
* Lookup991: pallet_staking_async::UnappliedSlash<T>
|
||||
**/
|
||||
PezpalletStakingAsyncUnappliedSlash: {
|
||||
validator: 'AccountId32',
|
||||
validator: 'PezspCoreCryptoAccountId32',
|
||||
own: 'u128',
|
||||
others: 'Vec<(AccountId32,u128)>',
|
||||
reporter: 'Option<AccountId32>',
|
||||
others: 'Vec<(PezspCoreCryptoAccountId32,u128)>',
|
||||
reporter: 'Option<PezspCoreCryptoAccountId32>',
|
||||
payout: 'u128'
|
||||
},
|
||||
/**
|
||||
@@ -2632,7 +2632,7 @@ export default {
|
||||
**/
|
||||
PezpalletStakingAsyncSnapshotStatus: {
|
||||
_enum: {
|
||||
Ongoing: 'AccountId32',
|
||||
Ongoing: 'PezspCoreCryptoAccountId32',
|
||||
Consumed: 'Null',
|
||||
Waiting: 'Null'
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -142,10 +142,10 @@ export default {
|
||||
**/
|
||||
StagingDicleRuntimeDynamicParamsInflationParameters: {
|
||||
_enum: {
|
||||
MinInflation: '(StagingDicleRuntimeDynamicParamsInflationMinInflation,Option<Perquintill>)',
|
||||
MaxInflation: '(StagingDicleRuntimeDynamicParamsInflationMaxInflation,Option<Perquintill>)',
|
||||
IdealStake: '(StagingDicleRuntimeDynamicParamsInflationIdealStake,Option<Perquintill>)',
|
||||
Falloff: '(StagingDicleRuntimeDynamicParamsInflationFalloff,Option<Perquintill>)',
|
||||
MinInflation: '(StagingDicleRuntimeDynamicParamsInflationMinInflation,Option<u64>)',
|
||||
MaxInflation: '(StagingDicleRuntimeDynamicParamsInflationMaxInflation,Option<u64>)',
|
||||
IdealStake: '(StagingDicleRuntimeDynamicParamsInflationIdealStake,Option<u64>)',
|
||||
Falloff: '(StagingDicleRuntimeDynamicParamsInflationFalloff,Option<u64>)',
|
||||
UseAuctionSlots: '(StagingDicleRuntimeDynamicParamsInflationUseAuctionSlots,Option<bool>)'
|
||||
}
|
||||
},
|
||||
@@ -174,7 +174,7 @@ export default {
|
||||
**/
|
||||
StagingDicleRuntimeDynamicParamsTreasuryParameters: {
|
||||
_enum: {
|
||||
BurnPortion: '(StagingDicleRuntimeDynamicParamsTreasuryBurnPortion,Option<Permill>)',
|
||||
BurnPortion: '(StagingDicleRuntimeDynamicParamsTreasuryBurnPortion,Option<u32>)',
|
||||
BurnDestination: '(StagingDicleRuntimeDynamicParamsTreasuryBurnDestination,Option<StagingDicleRuntimeBurnDestinationAccount>)'
|
||||
}
|
||||
},
|
||||
@@ -189,7 +189,7 @@ export default {
|
||||
/**
|
||||
* Lookup188: staging_kusama_runtime::BurnDestinationAccount
|
||||
**/
|
||||
StagingDicleRuntimeBurnDestinationAccount: 'Option<AccountId32>',
|
||||
StagingDicleRuntimeBurnDestinationAccount: 'Option<PezspCoreCryptoAccountId32>',
|
||||
/**
|
||||
* Lookup209: kusama_runtime_constants::proxy::ProxyType
|
||||
**/
|
||||
@@ -201,38 +201,38 @@ export default {
|
||||
**/
|
||||
StagingDicleRuntimeNposCompactSolution24: {
|
||||
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<PerU16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>',
|
||||
votes17: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);16],Compact<u16>)>',
|
||||
votes18: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);17],Compact<u16>)>',
|
||||
votes19: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);18],Compact<u16>)>',
|
||||
votes20: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);19],Compact<u16>)>',
|
||||
votes21: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);20],Compact<u16>)>',
|
||||
votes22: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);21],Compact<u16>)>',
|
||||
votes23: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);22],Compact<u16>)>',
|
||||
votes24: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);23],Compact<u16>)>'
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<u16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);15],Compact<u16>)>',
|
||||
votes17: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);16],Compact<u16>)>',
|
||||
votes18: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);17],Compact<u16>)>',
|
||||
votes19: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);18],Compact<u16>)>',
|
||||
votes20: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);19],Compact<u16>)>',
|
||||
votes21: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);20],Compact<u16>)>',
|
||||
votes22: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);21],Compact<u16>)>',
|
||||
votes23: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);22],Compact<u16>)>',
|
||||
votes24: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);23],Compact<u16>)>'
|
||||
},
|
||||
/**
|
||||
* Lookup539: pallet_rc_migrator::recovery::RecoveryStage
|
||||
**/
|
||||
PezpalletRcMigratorRecoveryRecoveryStage: {
|
||||
_enum: {
|
||||
Recoverable: 'Option<AccountId32>',
|
||||
ActiveRecoveries: 'Option<(AccountId32,AccountId32)>',
|
||||
Proxy: 'Option<AccountId32>',
|
||||
Recoverable: 'Option<PezspCoreCryptoAccountId32>',
|
||||
ActiveRecoveries: 'Option<(PezspCoreCryptoAccountId32,PezspCoreCryptoAccountId32)>',
|
||||
Proxy: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -242,14 +242,14 @@ export default {
|
||||
PezpalletRcMigratorSocietySocietyStage: {
|
||||
_enum: {
|
||||
Values: 'Null',
|
||||
Members: 'Option<AccountId32>',
|
||||
Payouts: 'Option<AccountId32>',
|
||||
Members: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Payouts: 'Option<PezspCoreCryptoAccountId32>',
|
||||
MemberByIndex: 'Option<u32>',
|
||||
SuspendedMembers: 'Option<AccountId32>',
|
||||
Candidates: 'Option<AccountId32>',
|
||||
Votes: 'Option<(AccountId32,AccountId32)>',
|
||||
VoteClearCursor: 'Option<AccountId32>',
|
||||
DefenderVotes: 'Option<(u32,AccountId32)>',
|
||||
SuspendedMembers: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Candidates: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Votes: 'Option<(PezspCoreCryptoAccountId32,PezspCoreCryptoAccountId32)>',
|
||||
VoteClearCursor: 'Option<PezspCoreCryptoAccountId32>',
|
||||
DefenderVotes: 'Option<(u32,PezspCoreCryptoAccountId32)>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -288,10 +288,10 @@ export default {
|
||||
**/
|
||||
StagingDicleRuntimeDynamicParamsInflationParametersValue: {
|
||||
_enum: {
|
||||
MinInflation: 'Perquintill',
|
||||
MaxInflation: 'Perquintill',
|
||||
IdealStake: 'Perquintill',
|
||||
Falloff: 'Perquintill',
|
||||
MinInflation: 'u64',
|
||||
MaxInflation: 'u64',
|
||||
IdealStake: 'u64',
|
||||
Falloff: 'u64',
|
||||
UseAuctionSlots: 'bool'
|
||||
}
|
||||
},
|
||||
@@ -300,7 +300,7 @@ export default {
|
||||
**/
|
||||
StagingDicleRuntimeDynamicParamsTreasuryParametersValue: {
|
||||
_enum: {
|
||||
BurnPortion: 'Permill',
|
||||
BurnPortion: 'u32',
|
||||
BurnDestination: 'StagingDicleRuntimeBurnDestinationAccount'
|
||||
}
|
||||
},
|
||||
@@ -310,7 +310,7 @@ export default {
|
||||
PezpalletRecoveryDepositKind: {
|
||||
_enum: {
|
||||
RecoveryConfig: 'Null',
|
||||
ActiveRecoveryFor: 'AccountId32'
|
||||
ActiveRecoveryFor: 'PezspCoreCryptoAccountId32'
|
||||
}
|
||||
},
|
||||
/**
|
||||
|
||||
@@ -504,7 +504,7 @@ export default {
|
||||
PezkuwiRuntimeCommonClaimsPezpalletCall: {
|
||||
_enum: {
|
||||
claim: {
|
||||
dest: 'AccountId32',
|
||||
dest: 'PezspCoreCryptoAccountId32',
|
||||
ethereumSignature: 'PezkuwiRuntimeCommonClaimsEcdsaSignature',
|
||||
},
|
||||
mint_claim: {
|
||||
@@ -514,7 +514,7 @@ export default {
|
||||
statement: 'Option<PezkuwiRuntimeCommonClaimsStatementKind>',
|
||||
},
|
||||
claim_attest: {
|
||||
dest: 'AccountId32',
|
||||
dest: 'PezspCoreCryptoAccountId32',
|
||||
ethereumSignature: 'PezkuwiRuntimeCommonClaimsEcdsaSignature',
|
||||
statement: 'Bytes',
|
||||
},
|
||||
@@ -527,7 +527,7 @@ export default {
|
||||
},
|
||||
old: 'PezkuwiRuntimeCommonClaimsEthereumAddress',
|
||||
new_: 'PezkuwiRuntimeCommonClaimsEthereumAddress',
|
||||
maybePreclaim: 'Option<AccountId32>'
|
||||
maybePreclaim: 'Option<PezspCoreCryptoAccountId32>'
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -556,21 +556,21 @@ export default {
|
||||
**/
|
||||
PezkuwiRuntimeNposCompactSolution16: {
|
||||
votes1: 'Vec<(Compact<u32>,Compact<u16>)>',
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<PerU16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<PerU16>);15],Compact<u16>)>'
|
||||
votes2: 'Vec<(Compact<u32>,(Compact<u16>,Compact<u16>),Compact<u16>)>',
|
||||
votes3: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);2],Compact<u16>)>',
|
||||
votes4: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);3],Compact<u16>)>',
|
||||
votes5: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);4],Compact<u16>)>',
|
||||
votes6: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);5],Compact<u16>)>',
|
||||
votes7: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);6],Compact<u16>)>',
|
||||
votes8: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);7],Compact<u16>)>',
|
||||
votes9: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);8],Compact<u16>)>',
|
||||
votes10: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);9],Compact<u16>)>',
|
||||
votes11: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);10],Compact<u16>)>',
|
||||
votes12: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);11],Compact<u16>)>',
|
||||
votes13: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);12],Compact<u16>)>',
|
||||
votes14: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);13],Compact<u16>)>',
|
||||
votes15: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);14],Compact<u16>)>',
|
||||
votes16: 'Vec<(Compact<u32>,[(Compact<u16>,Compact<u16>);15],Compact<u16>)>'
|
||||
},
|
||||
/**
|
||||
* Lookup274: pallet_staking_async_ah_client::pallet::Call<T>
|
||||
@@ -590,7 +590,7 @@ export default {
|
||||
* Lookup275: pallet_staking_async_rc_client::ValidatorSetReport<sp_core::crypto::AccountId32>
|
||||
**/
|
||||
PezpalletStakingAsyncRcClientValidatorSetReport: {
|
||||
newValidatorSet: 'Vec<AccountId32>',
|
||||
newValidatorSet: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
id: 'u32',
|
||||
pruneUpTo: 'Option<u32>',
|
||||
leftover: 'bool'
|
||||
@@ -853,7 +853,7 @@ export default {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
new_: 'Perbill',
|
||||
new_: 'u32',
|
||||
},
|
||||
set_on_demand_queue_max_size: {
|
||||
_alias: {
|
||||
@@ -865,7 +865,7 @@ export default {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
new_: 'Perbill',
|
||||
new_: 'u32',
|
||||
},
|
||||
__Unused51: 'Null',
|
||||
set_minimum_backing_votes: {
|
||||
@@ -947,8 +947,8 @@ export default {
|
||||
numCores: 'u32',
|
||||
maxAvailabilityTimeouts: 'u32',
|
||||
onDemandQueueMaxSize: 'u32',
|
||||
onDemandTargetQueueUtilization: 'Perbill',
|
||||
onDemandFeeVariability: 'Perbill',
|
||||
onDemandTargetQueueUtilization: 'u32',
|
||||
onDemandFeeVariability: 'u32',
|
||||
onDemandBaseFee: 'u128',
|
||||
ttl: 'u32'
|
||||
},
|
||||
@@ -1288,7 +1288,7 @@ export default {
|
||||
validationCode: 'Bytes',
|
||||
},
|
||||
force_register: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128',
|
||||
id: 'u32',
|
||||
genesisHead: 'Bytes',
|
||||
@@ -1325,7 +1325,7 @@ export default {
|
||||
_enum: {
|
||||
force_lease: {
|
||||
para: 'u32',
|
||||
leaser: 'AccountId32',
|
||||
leaser: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
periodBegin: 'u32',
|
||||
periodCount: 'u32',
|
||||
@@ -1376,7 +1376,7 @@ export default {
|
||||
signature: 'Option<PezspRuntimeMultiSignature>',
|
||||
},
|
||||
withdraw: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
index: 'Compact<u32>',
|
||||
},
|
||||
refund: {
|
||||
@@ -1429,7 +1429,7 @@ export default {
|
||||
when: 'u32',
|
||||
},
|
||||
credit_account: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
assign_core: {
|
||||
@@ -2524,20 +2524,20 @@ export default {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
new_: 'Option<AccountId32>',
|
||||
new_: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
send_xcm_message: {
|
||||
dest: 'XcmVersionedLocation',
|
||||
message: 'XcmVersionedXcm',
|
||||
},
|
||||
preserve_accounts: {
|
||||
accounts: 'Vec<AccountId32>',
|
||||
accounts: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
set_canceller: {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
new_: 'Option<AccountId32>',
|
||||
new_: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
pause_migration: 'Null',
|
||||
cancel_migration: 'Null',
|
||||
@@ -2568,12 +2568,12 @@ export default {
|
||||
PureProxyCandidatesMigrationInit: 'Null',
|
||||
AccountsMigrationInit: 'Null',
|
||||
AccountsMigrationOngoing: {
|
||||
lastKey: 'Option<AccountId32>',
|
||||
lastKey: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
AccountsMigrationDone: 'Null',
|
||||
MultisigMigrationInit: 'Null',
|
||||
MultisigMigrationOngoing: {
|
||||
lastKey: 'Option<(AccountId32,[u8;32])>',
|
||||
lastKey: 'Option<(PezspCoreCryptoAccountId32,[u8;32])>',
|
||||
},
|
||||
MultisigMigrationDone: 'Null',
|
||||
ClaimsMigrationInit: 'Null',
|
||||
@@ -2583,10 +2583,10 @@ export default {
|
||||
ClaimsMigrationDone: 'Null',
|
||||
ProxyMigrationInit: 'Null',
|
||||
ProxyMigrationProxies: {
|
||||
lastKey: 'Option<AccountId32>',
|
||||
lastKey: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
ProxyMigrationAnnouncements: {
|
||||
lastKey: 'Option<AccountId32>',
|
||||
lastKey: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
ProxyMigrationDone: 'Null',
|
||||
PreimageMigrationInit: 'Null',
|
||||
@@ -2611,7 +2611,7 @@ export default {
|
||||
NomPoolsMigrationDone: 'Null',
|
||||
VestingMigrationInit: 'Null',
|
||||
VestingMigrationOngoing: {
|
||||
nextKey: 'Option<AccountId32>',
|
||||
nextKey: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
VestingMigrationDone: 'Null',
|
||||
DelegatedStakingMigrationInit: 'Null',
|
||||
@@ -2693,7 +2693,7 @@ export default {
|
||||
Claims: 'Option<PezkuwiRuntimeCommonClaimsEthereumAddress>',
|
||||
Vesting: 'Option<PezkuwiRuntimeCommonClaimsEthereumAddress>',
|
||||
Signing: 'Option<PezkuwiRuntimeCommonClaimsEthereumAddress>',
|
||||
Preclaims: 'Option<AccountId32>',
|
||||
Preclaims: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -2703,13 +2703,13 @@ export default {
|
||||
PezpalletRcMigratorStakingNomPoolsNomPoolsStage: {
|
||||
_enum: {
|
||||
StorageValues: 'Null',
|
||||
PoolMembers: 'Option<AccountId32>',
|
||||
PoolMembers: 'Option<PezspCoreCryptoAccountId32>',
|
||||
BondedPools: 'Option<u32>',
|
||||
RewardPools: 'Option<u32>',
|
||||
SubPoolsStorage: 'Option<u32>',
|
||||
Metadata: 'Option<u32>',
|
||||
ReversePoolIdLookup: 'Option<AccountId32>',
|
||||
ClaimPermissions: 'Option<AccountId32>',
|
||||
ReversePoolIdLookup: 'Option<PezspCoreCryptoAccountId32>',
|
||||
ClaimPermissions: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -2718,8 +2718,8 @@ export default {
|
||||
**/
|
||||
PezpalletRcMigratorStakingDelegatedStakingDelegatedStakingStage: {
|
||||
_enum: {
|
||||
Delegators: 'Option<AccountId32>',
|
||||
Agents: 'Option<AccountId32>',
|
||||
Delegators: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Agents: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -2738,7 +2738,7 @@ export default {
|
||||
**/
|
||||
PezpalletRcMigratorStakingBagsListBagsListStage: {
|
||||
_enum: {
|
||||
ListNodes: 'Option<AccountId32>',
|
||||
ListNodes: 'Option<PezspCoreCryptoAccountId32>',
|
||||
ListBags: 'Option<u64>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
@@ -2759,8 +2759,8 @@ export default {
|
||||
**/
|
||||
PezpalletRcMigratorConvictionVotingConvictionVotingStage: {
|
||||
_enum: {
|
||||
VotingFor: 'Option<(AccountId32,u16)>',
|
||||
ClassLocksFor: 'Option<AccountId32>',
|
||||
VotingFor: 'Option<(PezspCoreCryptoAccountId32,u16)>',
|
||||
ClassLocksFor: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -2845,25 +2845,25 @@ export default {
|
||||
_enum: {
|
||||
Values: 'Null',
|
||||
Invulnerables: 'Null',
|
||||
Bonded: 'Option<AccountId32>',
|
||||
Ledger: 'Option<AccountId32>',
|
||||
Payee: 'Option<AccountId32>',
|
||||
Validators: 'Option<AccountId32>',
|
||||
Nominators: 'Option<AccountId32>',
|
||||
VirtualStakers: 'Option<AccountId32>',
|
||||
ErasStakersOverview: 'Option<(u32,AccountId32)>',
|
||||
ErasStakersPaged: 'Option<(u32,AccountId32,u32)>',
|
||||
ClaimedRewards: 'Option<(u32,AccountId32)>',
|
||||
ErasValidatorPrefs: 'Option<(u32,AccountId32)>',
|
||||
Bonded: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Ledger: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Payee: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Validators: 'Option<PezspCoreCryptoAccountId32>',
|
||||
Nominators: 'Option<PezspCoreCryptoAccountId32>',
|
||||
VirtualStakers: 'Option<PezspCoreCryptoAccountId32>',
|
||||
ErasStakersOverview: 'Option<(u32,PezspCoreCryptoAccountId32)>',
|
||||
ErasStakersPaged: 'Option<(u32,PezspCoreCryptoAccountId32,u32)>',
|
||||
ClaimedRewards: 'Option<(u32,PezspCoreCryptoAccountId32)>',
|
||||
ErasValidatorPrefs: 'Option<(u32,PezspCoreCryptoAccountId32)>',
|
||||
ErasValidatorReward: 'Option<u32>',
|
||||
ErasRewardPoints: 'Option<u32>',
|
||||
ErasTotalStake: 'Option<u32>',
|
||||
UnappliedSlashes: 'Option<u32>',
|
||||
BondedEras: 'Null',
|
||||
ValidatorSlashInEra: 'Option<(u32,AccountId32)>',
|
||||
NominatorSlashInEra: 'Option<(u32,AccountId32)>',
|
||||
SlashingSpans: 'Option<AccountId32>',
|
||||
SpanSlash: 'Option<(AccountId32,u32)>',
|
||||
ValidatorSlashInEra: 'Option<(u32,PezspCoreCryptoAccountId32)>',
|
||||
NominatorSlashInEra: 'Option<(u32,PezspCoreCryptoAccountId32)>',
|
||||
SlashingSpans: 'Option<PezspCoreCryptoAccountId32>',
|
||||
SpanSlash: 'Option<(PezspCoreCryptoAccountId32,u32)>',
|
||||
Finished: 'Null'
|
||||
}
|
||||
},
|
||||
@@ -2898,7 +2898,7 @@ export default {
|
||||
PezkuwiRuntimeCommonClaimsPezpalletEvent: {
|
||||
_enum: {
|
||||
Claimed: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
ethereumAddress: 'PezkuwiRuntimeCommonClaimsEthereumAddress',
|
||||
amount: 'u128'
|
||||
}
|
||||
@@ -3041,13 +3041,13 @@ export default {
|
||||
OnDemandOrderPlaced: {
|
||||
paraId: 'u32',
|
||||
spotPrice: 'u128',
|
||||
orderedBy: 'AccountId32',
|
||||
orderedBy: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
SpotPriceSet: {
|
||||
spotPrice: 'u128',
|
||||
},
|
||||
AccountCredited: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128'
|
||||
}
|
||||
}
|
||||
@@ -3059,14 +3059,14 @@ export default {
|
||||
_enum: {
|
||||
Registered: {
|
||||
paraId: 'u32',
|
||||
manager: 'AccountId32',
|
||||
manager: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
Deregistered: {
|
||||
paraId: 'u32',
|
||||
},
|
||||
Reserved: {
|
||||
paraId: 'u32',
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
},
|
||||
Swapped: {
|
||||
paraId: 'u32',
|
||||
@@ -3084,7 +3084,7 @@ export default {
|
||||
},
|
||||
Leased: {
|
||||
paraId: 'u32',
|
||||
leaser: 'AccountId32',
|
||||
leaser: 'PezspCoreCryptoAccountId32',
|
||||
periodBegin: 'u32',
|
||||
periodCount: 'u32',
|
||||
extraReserved: 'u128',
|
||||
@@ -3106,21 +3106,21 @@ export default {
|
||||
auctionIndex: 'u32',
|
||||
},
|
||||
Reserved: {
|
||||
bidder: 'AccountId32',
|
||||
bidder: 'PezspCoreCryptoAccountId32',
|
||||
extraReserved: 'u128',
|
||||
totalAmount: 'u128',
|
||||
},
|
||||
Unreserved: {
|
||||
bidder: 'AccountId32',
|
||||
bidder: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
ReserveConfiscated: {
|
||||
paraId: 'u32',
|
||||
leaser: 'AccountId32',
|
||||
leaser: 'PezspCoreCryptoAccountId32',
|
||||
amount: 'u128',
|
||||
},
|
||||
BidAccepted: {
|
||||
bidder: 'AccountId32',
|
||||
bidder: 'PezspCoreCryptoAccountId32',
|
||||
paraId: 'u32',
|
||||
amount: 'u128',
|
||||
firstSlot: 'u32',
|
||||
@@ -3141,12 +3141,12 @@ export default {
|
||||
paraId: 'u32',
|
||||
},
|
||||
Contributed: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
fundIndex: 'u32',
|
||||
amount: 'u128',
|
||||
},
|
||||
Withdrew: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
fundIndex: 'u32',
|
||||
amount: 'u128',
|
||||
},
|
||||
@@ -3167,7 +3167,7 @@ export default {
|
||||
paraId: 'u32',
|
||||
},
|
||||
MemoUpdated: {
|
||||
who: 'AccountId32',
|
||||
who: 'PezspCoreCryptoAccountId32',
|
||||
paraId: 'u32',
|
||||
memo: 'Bytes',
|
||||
},
|
||||
@@ -3418,8 +3418,8 @@ export default {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
old: 'Option<AccountId32>',
|
||||
new_: 'Option<AccountId32>',
|
||||
old: 'Option<PezspCoreCryptoAccountId32>',
|
||||
new_: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
XcmSent: {
|
||||
origin: 'StagingXcmV5Location',
|
||||
@@ -3429,14 +3429,14 @@ export default {
|
||||
},
|
||||
StakingElectionsPaused: 'Null',
|
||||
AccountsPreserved: {
|
||||
accounts: 'Vec<AccountId32>',
|
||||
accounts: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
CancellerSet: {
|
||||
_alias: {
|
||||
new_: 'new',
|
||||
},
|
||||
old: 'Option<AccountId32>',
|
||||
new_: 'Option<AccountId32>',
|
||||
old: 'Option<PezspCoreCryptoAccountId32>',
|
||||
new_: 'Option<PezspCoreCryptoAccountId32>',
|
||||
},
|
||||
MigrationPaused: {
|
||||
pauseStage: 'PezpalletRcMigratorMigrationStage',
|
||||
@@ -3664,20 +3664,20 @@ export default {
|
||||
/**
|
||||
* Lookup738: frame_election_provider_support::BoundedSupports<sp_core::crypto::AccountId32, BOuter, BInner>
|
||||
**/
|
||||
PezframeElectionProviderSupportBoundedSupports: 'Vec<(AccountId32,PezframeElectionProviderSupportBoundedSupport)>',
|
||||
PezframeElectionProviderSupportBoundedSupports: 'Vec<(PezspCoreCryptoAccountId32,PezframeElectionProviderSupportBoundedSupport)>',
|
||||
/**
|
||||
* Lookup741: frame_election_provider_support::BoundedSupport<sp_core::crypto::AccountId32, Bound>
|
||||
**/
|
||||
PezframeElectionProviderSupportBoundedSupport: {
|
||||
total: 'u128',
|
||||
voters: 'Vec<(AccountId32,u128)>'
|
||||
voters: 'Vec<(PezspCoreCryptoAccountId32,u128)>'
|
||||
},
|
||||
/**
|
||||
* Lookup783: pallet_staking_async_rc_client::SessionReport<sp_core::crypto::AccountId32>
|
||||
**/
|
||||
PezpalletStakingAsyncRcClientSessionReport: {
|
||||
endIndex: 'u32',
|
||||
validatorPoints: 'Vec<(AccountId32,u32)>',
|
||||
validatorPoints: 'Vec<(PezspCoreCryptoAccountId32,u32)>',
|
||||
activationTimestamp: 'Option<(u64,u32)>',
|
||||
leftover: 'bool'
|
||||
},
|
||||
@@ -3685,9 +3685,9 @@ export default {
|
||||
* Lookup787: pallet_staking_async_rc_client::Offence<sp_core::crypto::AccountId32>
|
||||
**/
|
||||
PezpalletStakingAsyncRcClientOffence: {
|
||||
offender: 'AccountId32',
|
||||
reporters: 'Vec<AccountId32>',
|
||||
slashFraction: 'Perbill'
|
||||
offender: 'PezspCoreCryptoAccountId32',
|
||||
reporters: 'Vec<PezspCoreCryptoAccountId32>',
|
||||
slashFraction: 'u32'
|
||||
},
|
||||
/**
|
||||
* Lookup789: pallet_staking_async_ah_client::pallet::Error<T>
|
||||
@@ -4081,7 +4081,7 @@ export default {
|
||||
* Lookup887: polkadot_runtime_common::paras_registrar::ParaInfo<sp_core::crypto::AccountId32, Balance>
|
||||
**/
|
||||
PezkuwiRuntimeCommonParasRegistrarParaInfo: {
|
||||
manager: 'AccountId32',
|
||||
manager: 'PezspCoreCryptoAccountId32',
|
||||
deposit: 'u128',
|
||||
locked: 'Option<bool>'
|
||||
},
|
||||
@@ -4107,7 +4107,7 @@ export default {
|
||||
* Lookup897: polkadot_runtime_common::crowdloan::FundInfo<sp_core::crypto::AccountId32, Balance, BlockNumber, LeasePeriod>
|
||||
**/
|
||||
PezkuwiRuntimeCommonCrowdloanFundInfo: {
|
||||
depositor: 'AccountId32',
|
||||
depositor: 'PezspCoreCryptoAccountId32',
|
||||
verifier: 'Option<PezspRuntimeMultiSigner>',
|
||||
deposit: 'u128',
|
||||
raised: 'u128',
|
||||
@@ -4304,7 +4304,7 @@ export default {
|
||||
* Lookup958: relay_common::apis::InflationInfo
|
||||
**/
|
||||
RelayCommonApisInflationInfo: {
|
||||
inflation: 'Perquintill',
|
||||
inflation: 'u64',
|
||||
nextMint: '(u128,u128)'
|
||||
},
|
||||
/**
|
||||
|
||||
@@ -7,9 +7,15 @@ import '@pezkuwi/types/lookup';
|
||||
|
||||
import type { BTreeMap, Bytes, Compact, Enum, Null, Option, Struct, U256, U8aFixed, Vec, bool, u128, u16, u32, u64 } from '@pezkuwi/types-codec';
|
||||
import type { ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H160, H256, MultiAddress, PerU16, Permill, Perquintill, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AccountId32, H160, H256, MultiAddress, RuntimeCall } from '@pezkuwi/types/interfaces/runtime';
|
||||
|
||||
declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezspCoreCryptoAccountId32 (0) */
|
||||
interface PezspCoreCryptoAccountId32 extends AccountId32 {}
|
||||
|
||||
/** @name PezspRuntimeMultiAddress (1) */
|
||||
interface PezspRuntimeMultiAddress extends MultiAddress {}
|
||||
|
||||
/** @name AssetHubDicleRuntimeRuntimeTask (32) */
|
||||
type AssetHubDicleRuntimeRuntimeTask = Null;
|
||||
|
||||
@@ -139,27 +145,27 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name AssetHubDicleRuntimeDynamicParamsIssuanceParametersValue (68) */
|
||||
interface AssetHubDicleRuntimeDynamicParamsIssuanceParametersValue extends Enum {
|
||||
readonly isMinInflation: boolean;
|
||||
readonly asMinInflation: Perquintill;
|
||||
readonly asMinInflation: u64;
|
||||
readonly isMaxInflation: boolean;
|
||||
readonly asMaxInflation: Perquintill;
|
||||
readonly asMaxInflation: u64;
|
||||
readonly isIdealStake: boolean;
|
||||
readonly asIdealStake: Perquintill;
|
||||
readonly asIdealStake: u64;
|
||||
readonly isFalloff: boolean;
|
||||
readonly asFalloff: Perquintill;
|
||||
readonly asFalloff: u64;
|
||||
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff';
|
||||
}
|
||||
|
||||
/** @name AssetHubDicleRuntimeDynamicParamsTreasuryParametersValue (70) */
|
||||
interface AssetHubDicleRuntimeDynamicParamsTreasuryParametersValue extends Enum {
|
||||
readonly isBurnPortion: boolean;
|
||||
readonly asBurnPortion: Permill;
|
||||
readonly asBurnPortion: u32;
|
||||
readonly isBurnDestination: boolean;
|
||||
readonly asBurnDestination: AssetHubDicleRuntimeTreasuryBurnDestinationAccount;
|
||||
readonly type: 'BurnPortion' | 'BurnDestination';
|
||||
}
|
||||
|
||||
/** @name AssetHubDicleRuntimeTreasuryBurnDestinationAccount (72) */
|
||||
interface AssetHubDicleRuntimeTreasuryBurnDestinationAccount extends Option<AccountId32> {}
|
||||
interface AssetHubDicleRuntimeTreasuryBurnDestinationAccount extends Option<PezspCoreCryptoAccountId32> {}
|
||||
|
||||
/** @name AssetHubDicleRuntimeDynamicParamsStakingElectionParametersValue (74) */
|
||||
interface AssetHubDicleRuntimeDynamicParamsStakingElectionParametersValue extends Enum {
|
||||
@@ -238,20 +244,20 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name AssetHubDicleRuntimeDynamicParamsIssuanceParameters (309) */
|
||||
interface AssetHubDicleRuntimeDynamicParamsIssuanceParameters extends Enum {
|
||||
readonly isMinInflation: boolean;
|
||||
readonly asMinInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMinInflation, Option<Perquintill>]>;
|
||||
readonly asMinInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMinInflation, Option<u64>]>;
|
||||
readonly isMaxInflation: boolean;
|
||||
readonly asMaxInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMaxInflation, Option<Perquintill>]>;
|
||||
readonly asMaxInflation: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceMaxInflation, Option<u64>]>;
|
||||
readonly isIdealStake: boolean;
|
||||
readonly asIdealStake: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceIdealStake, Option<Perquintill>]>;
|
||||
readonly asIdealStake: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceIdealStake, Option<u64>]>;
|
||||
readonly isFalloff: boolean;
|
||||
readonly asFalloff: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceFalloff, Option<Perquintill>]>;
|
||||
readonly asFalloff: ITuple<[AssetHubDicleRuntimeDynamicParamsIssuanceFalloff, Option<u64>]>;
|
||||
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff';
|
||||
}
|
||||
|
||||
/** @name AssetHubDicleRuntimeDynamicParamsTreasuryParameters (311) */
|
||||
interface AssetHubDicleRuntimeDynamicParamsTreasuryParameters extends Enum {
|
||||
readonly isBurnPortion: boolean;
|
||||
readonly asBurnPortion: ITuple<[AssetHubDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<Permill>]>;
|
||||
readonly asBurnPortion: ITuple<[AssetHubDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<u32>]>;
|
||||
readonly isBurnDestination: boolean;
|
||||
readonly asBurnDestination: ITuple<[AssetHubDicleRuntimeDynamicParamsTreasuryBurnDestination, Option<AssetHubDicleRuntimeTreasuryBurnDestinationAccount>]>;
|
||||
readonly type: 'BurnPortion' | 'BurnDestination';
|
||||
@@ -352,7 +358,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRemoteProxyCall extends Enum {
|
||||
readonly isRemoteProxy: boolean;
|
||||
readonly asRemoteProxy: {
|
||||
readonly real: MultiAddress;
|
||||
readonly real: PezspRuntimeMultiAddress;
|
||||
readonly forceProxyType: Option<AssetHubDicleRuntimeProxyType>;
|
||||
readonly call: RuntimeCall;
|
||||
readonly proof: PezpalletRemoteProxyRemoteProxyProof;
|
||||
@@ -363,7 +369,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isRemoteProxyWithRegisteredProof: boolean;
|
||||
readonly asRemoteProxyWithRegisteredProof: {
|
||||
readonly real: MultiAddress;
|
||||
readonly real: PezspRuntimeMultiAddress;
|
||||
readonly forceProxyType: Option<AssetHubDicleRuntimeProxyType>;
|
||||
readonly call: RuntimeCall;
|
||||
} & Struct;
|
||||
@@ -383,34 +389,34 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name AssetHubDicleRuntimeStakingNposCompactSolution24 (466) */
|
||||
interface AssetHubDicleRuntimeStakingNposCompactSolution24 extends Struct {
|
||||
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
}
|
||||
|
||||
/** @name PezpalletProxyProxyDefinitionDicleRuntimeConstantsProxyProxyType (598) */
|
||||
interface PezpalletProxyProxyDefinitionDicleRuntimeConstantsProxyProxyType extends Struct {
|
||||
readonly delegate: AccountId32;
|
||||
readonly delegate: PezspCoreCryptoAccountId32;
|
||||
readonly proxyType: DicleRuntimeConstantsProxyProxyType;
|
||||
readonly delay: u32;
|
||||
}
|
||||
@@ -427,11 +433,11 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletRcMigratorRecoveryPortableRecoveryMessage (746) */
|
||||
interface PezpalletRcMigratorRecoveryPortableRecoveryMessage extends Enum {
|
||||
readonly isRecoverable: boolean;
|
||||
readonly asRecoverable: ITuple<[AccountId32, PezpalletRcMigratorRecoveryPortableRecoveryConfig]>;
|
||||
readonly asRecoverable: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorRecoveryPortableRecoveryConfig]>;
|
||||
readonly isActiveRecoveries: boolean;
|
||||
readonly asActiveRecoveries: ITuple<[AccountId32, AccountId32, PezpalletRcMigratorRecoveryPortableActiveRecovery]>;
|
||||
readonly asActiveRecoveries: ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32, PezpalletRcMigratorRecoveryPortableActiveRecovery]>;
|
||||
readonly isProxy: boolean;
|
||||
readonly asProxy: ITuple<[AccountId32, AccountId32]>;
|
||||
readonly asProxy: ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>;
|
||||
readonly type: 'Recoverable' | 'ActiveRecoveries' | 'Proxy';
|
||||
}
|
||||
|
||||
@@ -445,7 +451,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorRecoveryPortableRecoveryFriends (749) */
|
||||
interface PezpalletRcMigratorRecoveryPortableRecoveryFriends extends Struct {
|
||||
readonly friends: Vec<AccountId32>;
|
||||
readonly friends: Vec<PezspCoreCryptoAccountId32>;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorRecoveryPortableActiveRecovery (752) */
|
||||
@@ -460,21 +466,21 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isValues: boolean;
|
||||
readonly asValues: PezpalletRcMigratorSocietySocietyValues;
|
||||
readonly isMember: boolean;
|
||||
readonly asMember: ITuple<[AccountId32, PezpalletRcMigratorSocietyPortableMemberRecord]>;
|
||||
readonly asMember: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableMemberRecord]>;
|
||||
readonly isPayout: boolean;
|
||||
readonly asPayout: ITuple<[AccountId32, PezpalletRcMigratorSocietyPortablePayoutRecord]>;
|
||||
readonly asPayout: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortablePayoutRecord]>;
|
||||
readonly isMemberByIndex: boolean;
|
||||
readonly asMemberByIndex: ITuple<[u32, AccountId32]>;
|
||||
readonly asMemberByIndex: ITuple<[u32, PezspCoreCryptoAccountId32]>;
|
||||
readonly isSuspendedMembers: boolean;
|
||||
readonly asSuspendedMembers: ITuple<[AccountId32, PezpalletRcMigratorSocietyPortableMemberRecord]>;
|
||||
readonly asSuspendedMembers: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableMemberRecord]>;
|
||||
readonly isCandidates: boolean;
|
||||
readonly asCandidates: ITuple<[AccountId32, PezpalletRcMigratorSocietyPortableCandidacy]>;
|
||||
readonly asCandidates: ITuple<[PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableCandidacy]>;
|
||||
readonly isVotes: boolean;
|
||||
readonly asVotes: ITuple<[AccountId32, AccountId32, PezpalletRcMigratorSocietyPortableVote]>;
|
||||
readonly asVotes: ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableVote]>;
|
||||
readonly isVoteClearCursor: boolean;
|
||||
readonly asVoteClearCursor: ITuple<[AccountId32, Bytes]>;
|
||||
readonly asVoteClearCursor: ITuple<[PezspCoreCryptoAccountId32, Bytes]>;
|
||||
readonly isDefenderVotes: boolean;
|
||||
readonly asDefenderVotes: ITuple<[u32, AccountId32, PezpalletRcMigratorSocietyPortableVote]>;
|
||||
readonly asDefenderVotes: ITuple<[u32, PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableVote]>;
|
||||
readonly type: 'Values' | 'Member' | 'Payout' | 'MemberByIndex' | 'SuspendedMembers' | 'Candidates' | 'Votes' | 'VoteClearCursor' | 'DefenderVotes';
|
||||
}
|
||||
|
||||
@@ -482,16 +488,16 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRcMigratorSocietySocietyValues extends Struct {
|
||||
readonly parameters: Option<PezpalletRcMigratorSocietyPortableGroupParams>;
|
||||
readonly pot: Option<u128>;
|
||||
readonly founder: Option<AccountId32>;
|
||||
readonly head: Option<AccountId32>;
|
||||
readonly founder: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly head: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly rules: Option<H256>;
|
||||
readonly memberCount: Option<u32>;
|
||||
readonly roundCount: Option<u32>;
|
||||
readonly bids: Option<Vec<PezpalletRcMigratorSocietyPortableBid>>;
|
||||
readonly sceptic: Option<AccountId32>;
|
||||
readonly sceptic: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly nextHead: Option<PezpalletRcMigratorSocietyPortableIntakeRecord>;
|
||||
readonly challengeRoundCount: Option<u32>;
|
||||
readonly defending: Option<ITuple<[AccountId32, AccountId32, PezpalletRcMigratorSocietyPortableTally]>>;
|
||||
readonly defending: Option<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32, PezpalletRcMigratorSocietyPortableTally]>>;
|
||||
readonly nextIntakeAt: Option<u32>;
|
||||
readonly nextChallengeAt: Option<u32>;
|
||||
}
|
||||
@@ -506,7 +512,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorSocietyPortableBid (761) */
|
||||
interface PezpalletRcMigratorSocietyPortableBid extends Struct {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly kind: PezpalletRcMigratorSocietyPortableBidKind;
|
||||
readonly value: u128;
|
||||
}
|
||||
@@ -516,13 +522,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isDeposit: boolean;
|
||||
readonly asDeposit: u128;
|
||||
readonly isVouch: boolean;
|
||||
readonly asVouch: ITuple<[AccountId32, u128]>;
|
||||
readonly asVouch: ITuple<[PezspCoreCryptoAccountId32, u128]>;
|
||||
readonly type: 'Deposit' | 'Vouch';
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorSocietyPortableIntakeRecord (764) */
|
||||
interface PezpalletRcMigratorSocietyPortableIntakeRecord extends Struct {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly bid: u128;
|
||||
readonly round: u32;
|
||||
}
|
||||
@@ -601,7 +607,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType (939) */
|
||||
interface PezpalletProxyProxyDefinitionAssetHubDicleRuntimeProxyType extends Struct {
|
||||
readonly delegate: AccountId32;
|
||||
readonly delegate: PezspCoreCryptoAccountId32;
|
||||
readonly proxyType: AssetHubDicleRuntimeProxyType;
|
||||
readonly delay: u32;
|
||||
}
|
||||
@@ -620,7 +626,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletReviveVmCodeInfo (1023) */
|
||||
interface PezpalletReviveVmCodeInfo extends Struct {
|
||||
readonly owner: AccountId32;
|
||||
readonly owner: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: Compact<u128>;
|
||||
readonly refcount: Compact<u64>;
|
||||
readonly codeLen: u32;
|
||||
|
||||
@@ -7,9 +7,15 @@ import '@pezkuwi/types/lookup';
|
||||
|
||||
import type { BTreeMap, BTreeSet, Bytes, Compact, Enum, Null, Option, Result, Struct, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, MultiAddress, PerU16, Perbill, Percent } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AccountId32, H256, MultiAddress } from '@pezkuwi/types/interfaces/runtime';
|
||||
|
||||
declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezspCoreCryptoAccountId32 (0) */
|
||||
interface PezspCoreCryptoAccountId32 extends AccountId32 {}
|
||||
|
||||
/** @name PezspRuntimeMultiAddress (1) */
|
||||
interface PezspRuntimeMultiAddress extends MultiAddress {}
|
||||
|
||||
/** @name AssetHubPezkuwiRuntimeRuntimeTask (32) */
|
||||
type AssetHubPezkuwiRuntimeRuntimeTask = Null;
|
||||
|
||||
@@ -159,15 +165,15 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletCollatorSelectionEvent extends Enum {
|
||||
readonly isNewInvulnerables: boolean;
|
||||
readonly asNewInvulnerables: {
|
||||
readonly invulnerables: Vec<AccountId32>;
|
||||
readonly invulnerables: Vec<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isInvulnerableAdded: boolean;
|
||||
readonly asInvulnerableAdded: {
|
||||
readonly accountId: AccountId32;
|
||||
readonly accountId: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isInvulnerableRemoved: boolean;
|
||||
readonly asInvulnerableRemoved: {
|
||||
readonly accountId: AccountId32;
|
||||
readonly accountId: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isNewDesiredCandidates: boolean;
|
||||
readonly asNewDesiredCandidates: {
|
||||
@@ -179,27 +185,27 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isCandidateAdded: boolean;
|
||||
readonly asCandidateAdded: {
|
||||
readonly accountId: AccountId32;
|
||||
readonly accountId: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
} & Struct;
|
||||
readonly isCandidateBondUpdated: boolean;
|
||||
readonly asCandidateBondUpdated: {
|
||||
readonly accountId: AccountId32;
|
||||
readonly accountId: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
} & Struct;
|
||||
readonly isCandidateRemoved: boolean;
|
||||
readonly asCandidateRemoved: {
|
||||
readonly accountId: AccountId32;
|
||||
readonly accountId: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isCandidateReplaced: boolean;
|
||||
readonly asCandidateReplaced: {
|
||||
readonly old: AccountId32;
|
||||
readonly new_: AccountId32;
|
||||
readonly old: PezspCoreCryptoAccountId32;
|
||||
readonly new_: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
} & Struct;
|
||||
readonly isInvalidInvulnerableSkipped: boolean;
|
||||
readonly asInvalidInvulnerableSkipped: {
|
||||
readonly accountId: AccountId32;
|
||||
readonly accountId: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly type: 'NewInvulnerables' | 'InvulnerableAdded' | 'InvulnerableRemoved' | 'NewDesiredCandidates' | 'NewCandidacyBond' | 'CandidateAdded' | 'CandidateBondUpdated' | 'CandidateRemoved' | 'CandidateReplaced' | 'InvalidInvulnerableSkipped';
|
||||
}
|
||||
@@ -404,7 +410,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletCollatorSelectionCall extends Enum {
|
||||
readonly isSetInvulnerables: boolean;
|
||||
readonly asSetInvulnerables: {
|
||||
readonly new_: Vec<AccountId32>;
|
||||
readonly new_: Vec<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isSetDesiredCandidates: boolean;
|
||||
readonly asSetDesiredCandidates: {
|
||||
@@ -418,11 +424,11 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isLeaveIntent: boolean;
|
||||
readonly isAddInvulnerable: boolean;
|
||||
readonly asAddInvulnerable: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isRemoveInvulnerable: boolean;
|
||||
readonly asRemoveInvulnerable: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isUpdateBond: boolean;
|
||||
readonly asUpdateBond: {
|
||||
@@ -431,7 +437,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isTakeCandidateSlot: boolean;
|
||||
readonly asTakeCandidateSlot: {
|
||||
readonly deposit: u128;
|
||||
readonly target: AccountId32;
|
||||
readonly target: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly type: 'SetInvulnerables' | 'SetDesiredCandidates' | 'SetCandidacyBond' | 'RegisterAsCandidate' | 'LeaveIntent' | 'AddInvulnerable' | 'RemoveInvulnerable' | 'UpdateBond' | 'TakeCandidateSlot';
|
||||
}
|
||||
@@ -628,21 +634,21 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name AssetHubPezkuwiRuntimeStakingNposCompactSolution16 (417) */
|
||||
interface AssetHubPezkuwiRuntimeStakingNposCompactSolution16 extends Struct {
|
||||
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
}
|
||||
|
||||
/** @name PezpalletElectionProviderMultiBlockSignedPezpalletCall (468) */
|
||||
@@ -664,7 +670,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isSetInvulnerables: boolean;
|
||||
readonly asSetInvulnerables: {
|
||||
readonly inv: Vec<AccountId32>;
|
||||
readonly inv: Vec<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly type: 'Register' | 'SubmitPage' | 'Bail' | 'ClearOldRoundData' | 'SetInvulnerables';
|
||||
}
|
||||
@@ -694,7 +700,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isNominate: boolean;
|
||||
readonly asNominate: {
|
||||
readonly targets: Vec<MultiAddress>;
|
||||
readonly targets: Vec<PezspRuntimeMultiAddress>;
|
||||
} & Struct;
|
||||
readonly isChill: boolean;
|
||||
readonly isSetPayee: boolean;
|
||||
@@ -712,28 +718,28 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isScaleValidatorCount: boolean;
|
||||
readonly asScaleValidatorCount: {
|
||||
readonly factor: Percent;
|
||||
readonly factor: u8;
|
||||
} & Struct;
|
||||
readonly isForceNoEras: boolean;
|
||||
readonly isForceNewEra: boolean;
|
||||
readonly isSetInvulnerables: boolean;
|
||||
readonly asSetInvulnerables: {
|
||||
readonly invulnerables: Vec<AccountId32>;
|
||||
readonly invulnerables: Vec<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isForceUnstake: boolean;
|
||||
readonly asForceUnstake: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly numSlashingSpans: u32;
|
||||
} & Struct;
|
||||
readonly isForceNewEraAlways: boolean;
|
||||
readonly isCancelDeferredSlash: boolean;
|
||||
readonly asCancelDeferredSlash: {
|
||||
readonly era: u32;
|
||||
readonly validatorSlashes: Vec<ITuple<[AccountId32, Perbill]>>;
|
||||
readonly validatorSlashes: Vec<ITuple<[PezspCoreCryptoAccountId32, u32]>>;
|
||||
} & Struct;
|
||||
readonly isPayoutStakers: boolean;
|
||||
readonly asPayoutStakers: {
|
||||
readonly validatorStash: AccountId32;
|
||||
readonly validatorStash: PezspCoreCryptoAccountId32;
|
||||
readonly era: u32;
|
||||
} & Struct;
|
||||
readonly isRebond: boolean;
|
||||
@@ -742,12 +748,12 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isReapStash: boolean;
|
||||
readonly asReapStash: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly numSlashingSpans: u32;
|
||||
} & Struct;
|
||||
readonly isKick: boolean;
|
||||
readonly asKick: {
|
||||
readonly who: Vec<MultiAddress>;
|
||||
readonly who: Vec<PezspRuntimeMultiAddress>;
|
||||
} & Struct;
|
||||
readonly isSetStakingConfigs: boolean;
|
||||
readonly asSetStakingConfigs: {
|
||||
@@ -761,45 +767,45 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isChillOther: boolean;
|
||||
readonly asChillOther: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isForceApplyMinCommission: boolean;
|
||||
readonly asForceApplyMinCommission: {
|
||||
readonly validatorStash: AccountId32;
|
||||
readonly validatorStash: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isSetMinCommission: boolean;
|
||||
readonly asSetMinCommission: {
|
||||
readonly new_: Perbill;
|
||||
readonly new_: u32;
|
||||
} & Struct;
|
||||
readonly isPayoutStakersByPage: boolean;
|
||||
readonly asPayoutStakersByPage: {
|
||||
readonly validatorStash: AccountId32;
|
||||
readonly validatorStash: PezspCoreCryptoAccountId32;
|
||||
readonly era: u32;
|
||||
readonly page: u32;
|
||||
} & Struct;
|
||||
readonly isUpdatePayee: boolean;
|
||||
readonly asUpdatePayee: {
|
||||
readonly controller: AccountId32;
|
||||
readonly controller: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isDeprecateControllerBatch: boolean;
|
||||
readonly asDeprecateControllerBatch: {
|
||||
readonly controllers: Vec<AccountId32>;
|
||||
readonly controllers: Vec<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isRestoreLedger: boolean;
|
||||
readonly asRestoreLedger: {
|
||||
readonly stash: AccountId32;
|
||||
readonly maybeController: Option<AccountId32>;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly maybeController: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly maybeTotal: Option<u128>;
|
||||
readonly maybeUnlocking: Option<Vec<PezpalletStakingAsyncLedgerUnlockChunk>>;
|
||||
} & Struct;
|
||||
readonly isMigrateCurrency: boolean;
|
||||
readonly asMigrateCurrency: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isApplySlash: boolean;
|
||||
readonly asApplySlash: {
|
||||
readonly slashEra: u32;
|
||||
readonly slashKey: ITuple<[AccountId32, Perbill, u32]>;
|
||||
readonly slashKey: ITuple<[PezspCoreCryptoAccountId32, u32, u32]>;
|
||||
} & Struct;
|
||||
readonly isPruneEraStep: boolean;
|
||||
readonly asPruneEraStep: {
|
||||
@@ -814,14 +820,14 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isStash: boolean;
|
||||
readonly isController: boolean;
|
||||
readonly isAccount: boolean;
|
||||
readonly asAccount: AccountId32;
|
||||
readonly asAccount: PezspCoreCryptoAccountId32;
|
||||
readonly isNone: boolean;
|
||||
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncValidatorPrefs (472) */
|
||||
interface PezpalletStakingAsyncValidatorPrefs extends Struct {
|
||||
readonly commission: Compact<Perbill>;
|
||||
readonly commission: Compact<u32>;
|
||||
readonly blocked: bool;
|
||||
}
|
||||
|
||||
@@ -847,7 +853,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletStakingAsyncPezpalletConfigOpPercent extends Enum {
|
||||
readonly isNoop: boolean;
|
||||
readonly isSet: boolean;
|
||||
readonly asSet: Percent;
|
||||
readonly asSet: u8;
|
||||
readonly isRemove: boolean;
|
||||
readonly type: 'Noop' | 'Set' | 'Remove';
|
||||
}
|
||||
@@ -856,7 +862,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletStakingAsyncPezpalletConfigOpPerbill extends Enum {
|
||||
readonly isNoop: boolean;
|
||||
readonly isSet: boolean;
|
||||
readonly asSet: Perbill;
|
||||
readonly asSet: u32;
|
||||
readonly isRemove: boolean;
|
||||
readonly type: 'Noop' | 'Set' | 'Remove';
|
||||
}
|
||||
@@ -872,19 +878,19 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isUnreserveLeaseDeposit: boolean;
|
||||
readonly asUnreserveLeaseDeposit: {
|
||||
readonly block: u32;
|
||||
readonly depositor: Option<AccountId32>;
|
||||
readonly depositor: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly paraId: u32;
|
||||
} & Struct;
|
||||
readonly isWithdrawCrowdloanContribution: boolean;
|
||||
readonly asWithdrawCrowdloanContribution: {
|
||||
readonly block: u32;
|
||||
readonly depositor: Option<AccountId32>;
|
||||
readonly depositor: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly paraId: u32;
|
||||
} & Struct;
|
||||
readonly isUnreserveCrowdloanReserve: boolean;
|
||||
readonly asUnreserveCrowdloanReserve: {
|
||||
readonly block: u32;
|
||||
readonly depositor: Option<AccountId32>;
|
||||
readonly depositor: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly paraId: u32;
|
||||
} & Struct;
|
||||
readonly isTransferToPostMigrationTreasury: boolean;
|
||||
@@ -1007,7 +1013,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isSetManager: boolean;
|
||||
readonly asSetManager: {
|
||||
readonly new_: Option<AccountId32>;
|
||||
readonly new_: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isFinishMigration: boolean;
|
||||
readonly asFinishMigration: {
|
||||
@@ -1024,7 +1030,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorAccountsAccount (491) */
|
||||
interface PezpalletRcMigratorAccountsAccount extends Struct {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly free: u128;
|
||||
readonly reserved: u128;
|
||||
readonly frozen: u128;
|
||||
@@ -1074,27 +1080,27 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorMultisigRcMultisig (512) */
|
||||
interface PezpalletRcMigratorMultisigRcMultisig extends Struct {
|
||||
readonly creator: AccountId32;
|
||||
readonly creator: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorProxyRcProxy (514) */
|
||||
interface PezpalletRcMigratorProxyRcProxy extends Struct {
|
||||
readonly delegator: AccountId32;
|
||||
readonly delegator: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
readonly proxies: Vec<PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType>;
|
||||
}
|
||||
|
||||
/** @name PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType (517) */
|
||||
interface PezpalletProxyProxyDefinitionPezkuwiRuntimeConstantsProxyProxyType extends Struct {
|
||||
readonly delegate: AccountId32;
|
||||
readonly delegate: PezspCoreCryptoAccountId32;
|
||||
readonly proxyType: PezkuwiRuntimeConstantsProxyProxyType;
|
||||
readonly delay: u32;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorProxyRcProxyAnnouncement (519) */
|
||||
interface PezpalletRcMigratorProxyRcProxyAnnouncement extends Struct {
|
||||
readonly depositor: AccountId32;
|
||||
readonly depositor: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
}
|
||||
|
||||
@@ -1116,12 +1122,12 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRcMigratorPreimageRequestStatusPortableRequestStatusInner extends Enum {
|
||||
readonly isUnrequested: boolean;
|
||||
readonly asUnrequested: {
|
||||
readonly ticket: ITuple<[AccountId32, Bytes]>;
|
||||
readonly ticket: ITuple<[PezspCoreCryptoAccountId32, Bytes]>;
|
||||
readonly len: u32;
|
||||
} & Struct;
|
||||
readonly isRequested: boolean;
|
||||
readonly asRequested: {
|
||||
readonly maybeTicket: Option<ITuple<[AccountId32, Bytes]>>;
|
||||
readonly maybeTicket: Option<ITuple<[PezspCoreCryptoAccountId32, Bytes]>>;
|
||||
readonly count: u32;
|
||||
readonly maybeLen: Option<u32>;
|
||||
} & Struct;
|
||||
@@ -1131,7 +1137,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus (530) */
|
||||
interface PezpalletRcMigratorPreimageLegacyRequestStatusRcPreimageLegacyStatus extends Struct {
|
||||
readonly hash_: H256;
|
||||
readonly depositor: AccountId32;
|
||||
readonly depositor: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
}
|
||||
|
||||
@@ -1143,7 +1149,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isPoolMembers: boolean;
|
||||
readonly asPoolMembers: {
|
||||
readonly member: ITuple<[AccountId32, PezpalletNominationPoolsPoolMember]>;
|
||||
readonly member: ITuple<[PezspCoreCryptoAccountId32, PezpalletNominationPoolsPoolMember]>;
|
||||
} & Struct;
|
||||
readonly isBondedPools: boolean;
|
||||
readonly asBondedPools: {
|
||||
@@ -1163,11 +1169,11 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isReversePoolIdLookup: boolean;
|
||||
readonly asReversePoolIdLookup: {
|
||||
readonly lookups: ITuple<[AccountId32, u32]>;
|
||||
readonly lookups: ITuple<[PezspCoreCryptoAccountId32, u32]>;
|
||||
} & Struct;
|
||||
readonly isClaimPermissions: boolean;
|
||||
readonly asClaimPermissions: {
|
||||
readonly perms: ITuple<[AccountId32, PezpalletNominationPoolsClaimPermission]>;
|
||||
readonly perms: ITuple<[PezspCoreCryptoAccountId32, PezpalletNominationPoolsClaimPermission]>;
|
||||
} & Struct;
|
||||
readonly type: 'StorageValues' | 'PoolMembers' | 'BondedPools' | 'RewardPools' | 'SubPoolsStorage' | 'Metadata' | 'ReversePoolIdLookup' | 'ClaimPermissions';
|
||||
}
|
||||
@@ -1180,7 +1186,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly maxPools: Option<u32>;
|
||||
readonly maxPoolMembers: Option<u32>;
|
||||
readonly maxPoolMembersPerPool: Option<u32>;
|
||||
readonly globalMaxCommission: Option<Perbill>;
|
||||
readonly globalMaxCommission: Option<u32>;
|
||||
readonly lastPoolId: Option<u32>;
|
||||
}
|
||||
|
||||
@@ -1207,7 +1213,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorVestingRcVestingSchedule (558) */
|
||||
interface PezpalletRcMigratorVestingRcVestingSchedule extends Struct {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly schedules: Vec<PezpalletVestingVestingInfo>;
|
||||
}
|
||||
|
||||
@@ -1275,7 +1281,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isSigning: boolean;
|
||||
readonly asSigning: ITuple<[PezkuwiRuntimeCommonClaimsEthereumAddress, PezkuwiRuntimeCommonClaimsStatementKind]>;
|
||||
readonly isPreclaims: boolean;
|
||||
readonly asPreclaims: ITuple<[AccountId32, PezkuwiRuntimeCommonClaimsEthereumAddress]>;
|
||||
readonly asPreclaims: ITuple<[PezspCoreCryptoAccountId32, PezkuwiRuntimeCommonClaimsEthereumAddress]>;
|
||||
readonly type: 'StorageValues' | 'Claims' | 'Vesting' | 'Signing' | 'Preclaims';
|
||||
}
|
||||
|
||||
@@ -1283,7 +1289,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRcMigratorStakingBagsListPortableBagsListMessage extends Enum {
|
||||
readonly isNode: boolean;
|
||||
readonly asNode: {
|
||||
readonly id: AccountId32;
|
||||
readonly id: PezspCoreCryptoAccountId32;
|
||||
readonly node: PezpalletRcMigratorStakingBagsListPortableNode;
|
||||
} & Struct;
|
||||
readonly isBag: boolean;
|
||||
@@ -1296,17 +1302,17 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorStakingBagsListPortableNode (586) */
|
||||
interface PezpalletRcMigratorStakingBagsListPortableNode extends Struct {
|
||||
readonly id: AccountId32;
|
||||
readonly prev: Option<AccountId32>;
|
||||
readonly next: Option<AccountId32>;
|
||||
readonly id: PezspCoreCryptoAccountId32;
|
||||
readonly prev: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly next: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly bagUpper: u64;
|
||||
readonly score: u64;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorStakingBagsListPortableBag (587) */
|
||||
interface PezpalletRcMigratorStakingBagsListPortableBag extends Struct {
|
||||
readonly head: Option<AccountId32>;
|
||||
readonly tail: Option<AccountId32>;
|
||||
readonly head: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly tail: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly bagUpper: u64;
|
||||
}
|
||||
|
||||
@@ -1324,7 +1330,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletRcMigratorIndicesRcIndicesIndex (594) */
|
||||
interface PezpalletRcMigratorIndicesRcIndicesIndex extends Struct {
|
||||
readonly index: u32;
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
readonly frozen: bool;
|
||||
}
|
||||
@@ -1332,9 +1338,9 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletRcMigratorConvictionVotingRcConvictionVotingMessage (596) */
|
||||
interface PezpalletRcMigratorConvictionVotingRcConvictionVotingMessage extends Enum {
|
||||
readonly isVotingFor: boolean;
|
||||
readonly asVotingFor: ITuple<[AccountId32, u16, PezpalletConvictionVotingVoteVoting]>;
|
||||
readonly asVotingFor: ITuple<[PezspCoreCryptoAccountId32, u16, PezpalletConvictionVotingVoteVoting]>;
|
||||
readonly isClassLocksFor: boolean;
|
||||
readonly asClassLocksFor: ITuple<[AccountId32, Vec<ITuple<[u16, u128]>>]>;
|
||||
readonly asClassLocksFor: ITuple<[PezspCoreCryptoAccountId32, Vec<ITuple<[u16, u128]>>]>;
|
||||
readonly type: 'VotingFor' | 'ClassLocksFor';
|
||||
}
|
||||
|
||||
@@ -1353,7 +1359,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorBountiesAliasBounty (611) */
|
||||
interface PezpalletRcMigratorBountiesAliasBounty extends Struct {
|
||||
readonly proposer: AccountId32;
|
||||
readonly proposer: PezspCoreCryptoAccountId32;
|
||||
readonly value: u128;
|
||||
readonly fee: u128;
|
||||
readonly curatorDeposit: u128;
|
||||
@@ -1366,22 +1372,22 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isLeaseReserve: boolean;
|
||||
readonly asLeaseReserve: {
|
||||
readonly unreserveBlock: u32;
|
||||
readonly account: AccountId32;
|
||||
readonly account: PezspCoreCryptoAccountId32;
|
||||
readonly paraId: u32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isCrowdloanContribution: boolean;
|
||||
readonly asCrowdloanContribution: {
|
||||
readonly withdrawBlock: u32;
|
||||
readonly contributor: AccountId32;
|
||||
readonly contributor: PezspCoreCryptoAccountId32;
|
||||
readonly paraId: u32;
|
||||
readonly amount: u128;
|
||||
readonly crowdloanAccount: AccountId32;
|
||||
readonly crowdloanAccount: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isCrowdloanReserve: boolean;
|
||||
readonly asCrowdloanReserve: {
|
||||
readonly unreserveBlock: u32;
|
||||
readonly depositor: AccountId32;
|
||||
readonly depositor: PezspCoreCryptoAccountId32;
|
||||
readonly paraId: u32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
@@ -1449,14 +1455,14 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRcMigratorStakingDelegatedStakingPortableDelegatedStakingMessage extends Enum {
|
||||
readonly isDelegators: boolean;
|
||||
readonly asDelegators: {
|
||||
readonly delegator: AccountId32;
|
||||
readonly agent: AccountId32;
|
||||
readonly delegator: PezspCoreCryptoAccountId32;
|
||||
readonly agent: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isAgents: boolean;
|
||||
readonly asAgents: {
|
||||
readonly agent: AccountId32;
|
||||
readonly payee: AccountId32;
|
||||
readonly agent: PezspCoreCryptoAccountId32;
|
||||
readonly payee: PezspCoreCryptoAccountId32;
|
||||
readonly totalDelegated: u128;
|
||||
readonly unclaimedWithdrawals: u128;
|
||||
readonly pendingSlash: u128;
|
||||
@@ -1512,16 +1518,16 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isAdded: boolean;
|
||||
readonly isCuratorProposed: boolean;
|
||||
readonly asCuratorProposed: {
|
||||
readonly curator: AccountId32;
|
||||
readonly curator: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isActive: boolean;
|
||||
readonly asActive: {
|
||||
readonly curator: AccountId32;
|
||||
readonly curator: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isPendingPayout: boolean;
|
||||
readonly asPendingPayout: {
|
||||
readonly curator: AccountId32;
|
||||
readonly beneficiary: AccountId32;
|
||||
readonly curator: PezspCoreCryptoAccountId32;
|
||||
readonly beneficiary: PezspCoreCryptoAccountId32;
|
||||
readonly unlockAt: u32;
|
||||
} & Struct;
|
||||
readonly type: 'Added' | 'CuratorProposed' | 'Active' | 'PendingPayout';
|
||||
@@ -1532,57 +1538,57 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isValues: boolean;
|
||||
readonly asValues: PezpalletRcMigratorStakingMessageStakingValues;
|
||||
readonly isInvulnerables: boolean;
|
||||
readonly asInvulnerables: Vec<AccountId32>;
|
||||
readonly asInvulnerables: Vec<PezspCoreCryptoAccountId32>;
|
||||
readonly isBonded: boolean;
|
||||
readonly asBonded: {
|
||||
readonly stash: AccountId32;
|
||||
readonly controller: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly controller: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isLedger: boolean;
|
||||
readonly asLedger: {
|
||||
readonly controller: AccountId32;
|
||||
readonly controller: PezspCoreCryptoAccountId32;
|
||||
readonly ledger: PezpalletRcMigratorStakingMessagePortableStakingLedger;
|
||||
} & Struct;
|
||||
readonly isPayee: boolean;
|
||||
readonly asPayee: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly payment: PezpalletRcMigratorStakingMessagePortableRewardDestination;
|
||||
} & Struct;
|
||||
readonly isValidators: boolean;
|
||||
readonly asValidators: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly validators: PezpalletRcMigratorStakingMessagePortableValidatorPrefs;
|
||||
} & Struct;
|
||||
readonly isNominators: boolean;
|
||||
readonly asNominators: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly nominations: PezpalletRcMigratorStakingMessagePortableNominations;
|
||||
} & Struct;
|
||||
readonly isVirtualStakers: boolean;
|
||||
readonly asVirtualStakers: AccountId32;
|
||||
readonly asVirtualStakers: PezspCoreCryptoAccountId32;
|
||||
readonly isErasStakersOverview: boolean;
|
||||
readonly asErasStakersOverview: {
|
||||
readonly era: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly exposure: PezpalletRcMigratorStakingMessagePortablePagedExposureMetadata;
|
||||
} & Struct;
|
||||
readonly isErasStakersPaged: boolean;
|
||||
readonly asErasStakersPaged: {
|
||||
readonly era: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly page: u32;
|
||||
readonly exposure: PezpalletRcMigratorStakingMessagePortableExposurePage;
|
||||
} & Struct;
|
||||
readonly isClaimedRewards: boolean;
|
||||
readonly asClaimedRewards: {
|
||||
readonly era: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly rewards: Vec<u32>;
|
||||
} & Struct;
|
||||
readonly isErasValidatorPrefs: boolean;
|
||||
readonly asErasValidatorPrefs: {
|
||||
readonly era: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly prefs: PezpalletRcMigratorStakingMessagePortableValidatorPrefs;
|
||||
} & Struct;
|
||||
readonly isErasValidatorReward: boolean;
|
||||
@@ -1610,8 +1616,8 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isValidatorSlashInEra: boolean;
|
||||
readonly asValidatorSlashInEra: {
|
||||
readonly era: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly slash: ITuple<[Perbill, u128]>;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly slash: ITuple<[u32, u128]>;
|
||||
} & Struct;
|
||||
readonly type: 'Values' | 'Invulnerables' | 'Bonded' | 'Ledger' | 'Payee' | 'Validators' | 'Nominators' | 'VirtualStakers' | 'ErasStakersOverview' | 'ErasStakersPaged' | 'ClaimedRewards' | 'ErasValidatorPrefs' | 'ErasValidatorReward' | 'ErasRewardPoints' | 'ErasTotalStake' | 'UnappliedSlashes' | 'BondedEras' | 'ValidatorSlashInEra';
|
||||
}
|
||||
@@ -1623,17 +1629,17 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly minNominatorBond: Option<u128>;
|
||||
readonly minValidatorBond: Option<u128>;
|
||||
readonly minActiveStake: Option<u128>;
|
||||
readonly minCommission: Option<Perbill>;
|
||||
readonly minCommission: Option<u32>;
|
||||
readonly maxValidatorsCount: Option<u32>;
|
||||
readonly maxNominatorsCount: Option<u32>;
|
||||
readonly currentEra: Option<u32>;
|
||||
readonly activeEra: Option<PezpalletRcMigratorStakingMessagePortableActiveEraInfo>;
|
||||
readonly forceEra: Option<PezpalletRcMigratorStakingMessagePortableForcing>;
|
||||
readonly maxStakedRewards: Option<Percent>;
|
||||
readonly slashRewardFraction: Option<Perbill>;
|
||||
readonly maxStakedRewards: Option<u8>;
|
||||
readonly slashRewardFraction: Option<u32>;
|
||||
readonly canceledSlashPayout: Option<u128>;
|
||||
readonly currentPlannedSession: Option<u32>;
|
||||
readonly chillThreshold: Option<Percent>;
|
||||
readonly chillThreshold: Option<u8>;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorStakingMessagePortableActiveEraInfo (641) */
|
||||
@@ -1653,7 +1659,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorStakingMessagePortableStakingLedger (645) */
|
||||
interface PezpalletRcMigratorStakingMessagePortableStakingLedger extends Struct {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly total: u128;
|
||||
readonly active: u128;
|
||||
readonly unlocking: Vec<PezpalletRcMigratorStakingMessagePortableUnlockChunk>;
|
||||
@@ -1671,20 +1677,20 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isStash: boolean;
|
||||
readonly isController: boolean;
|
||||
readonly isAccount: boolean;
|
||||
readonly asAccount: AccountId32;
|
||||
readonly asAccount: PezspCoreCryptoAccountId32;
|
||||
readonly isNone: boolean;
|
||||
readonly type: 'Staked' | 'Stash' | 'Controller' | 'Account' | 'None';
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorStakingMessagePortableValidatorPrefs (650) */
|
||||
interface PezpalletRcMigratorStakingMessagePortableValidatorPrefs extends Struct {
|
||||
readonly commission: Perbill;
|
||||
readonly commission: u32;
|
||||
readonly blocked: bool;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorStakingMessagePortableNominations (651) */
|
||||
interface PezpalletRcMigratorStakingMessagePortableNominations extends Struct {
|
||||
readonly targets: Vec<AccountId32>;
|
||||
readonly targets: Vec<PezspCoreCryptoAccountId32>;
|
||||
readonly submittedIn: u32;
|
||||
readonly suppressed: bool;
|
||||
}
|
||||
@@ -1705,22 +1711,22 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletRcMigratorStakingMessagePortableIndividualExposure (656) */
|
||||
interface PezpalletRcMigratorStakingMessagePortableIndividualExposure extends Struct {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly value: u128;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorStakingMessagePortableEraRewardPoints (658) */
|
||||
interface PezpalletRcMigratorStakingMessagePortableEraRewardPoints extends Struct {
|
||||
readonly total: u32;
|
||||
readonly individual: Vec<ITuple<[AccountId32, u32]>>;
|
||||
readonly individual: Vec<ITuple<[PezspCoreCryptoAccountId32, u32]>>;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorStakingMessagePortableUnappliedSlash (660) */
|
||||
interface PezpalletRcMigratorStakingMessagePortableUnappliedSlash extends Struct {
|
||||
readonly validator: AccountId32;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly own: u128;
|
||||
readonly others: Vec<ITuple<[AccountId32, u128]>>;
|
||||
readonly reporters: Vec<AccountId32>;
|
||||
readonly others: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
||||
readonly reporters: Vec<PezspCoreCryptoAccountId32>;
|
||||
readonly payout: u128;
|
||||
}
|
||||
|
||||
@@ -1829,19 +1835,19 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletElectionProviderMultiBlockSignedPezpalletEvent (690) */
|
||||
interface PezpalletElectionProviderMultiBlockSignedPezpalletEvent extends Enum {
|
||||
readonly isRegistered: boolean;
|
||||
readonly asRegistered: ITuple<[u32, AccountId32, PezspNposElectionsElectionScore]>;
|
||||
readonly asRegistered: ITuple<[u32, PezspCoreCryptoAccountId32, PezspNposElectionsElectionScore]>;
|
||||
readonly isStored: boolean;
|
||||
readonly asStored: ITuple<[u32, AccountId32, u32]>;
|
||||
readonly asStored: ITuple<[u32, PezspCoreCryptoAccountId32, u32]>;
|
||||
readonly isRewarded: boolean;
|
||||
readonly asRewarded: ITuple<[u32, AccountId32, u128]>;
|
||||
readonly asRewarded: ITuple<[u32, PezspCoreCryptoAccountId32, u128]>;
|
||||
readonly isSlashed: boolean;
|
||||
readonly asSlashed: ITuple<[u32, AccountId32, u128]>;
|
||||
readonly asSlashed: ITuple<[u32, PezspCoreCryptoAccountId32, u128]>;
|
||||
readonly isEjected: boolean;
|
||||
readonly asEjected: ITuple<[u32, AccountId32]>;
|
||||
readonly asEjected: ITuple<[u32, PezspCoreCryptoAccountId32]>;
|
||||
readonly isDiscarded: boolean;
|
||||
readonly asDiscarded: ITuple<[u32, AccountId32]>;
|
||||
readonly asDiscarded: ITuple<[u32, PezspCoreCryptoAccountId32]>;
|
||||
readonly isBailed: boolean;
|
||||
readonly asBailed: ITuple<[u32, AccountId32]>;
|
||||
readonly asBailed: ITuple<[u32, PezspCoreCryptoAccountId32]>;
|
||||
readonly type: 'Registered' | 'Stored' | 'Rewarded' | 'Slashed' | 'Ejected' | 'Discarded' | 'Bailed';
|
||||
}
|
||||
|
||||
@@ -1855,13 +1861,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isRewarded: boolean;
|
||||
readonly asRewarded: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly dest: PezpalletStakingAsyncRewardDestination;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isSlashed: boolean;
|
||||
readonly asSlashed: {
|
||||
readonly staker: AccountId32;
|
||||
readonly staker: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isOldSlashingReportDiscarded: boolean;
|
||||
@@ -1870,42 +1876,42 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isBonded: boolean;
|
||||
readonly asBonded: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isUnbonded: boolean;
|
||||
readonly asUnbonded: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isWithdrawn: boolean;
|
||||
readonly asWithdrawn: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isStakerRemoved: boolean;
|
||||
readonly asStakerRemoved: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isKicked: boolean;
|
||||
readonly asKicked: {
|
||||
readonly nominator: AccountId32;
|
||||
readonly stash: AccountId32;
|
||||
readonly nominator: PezspCoreCryptoAccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isChilled: boolean;
|
||||
readonly asChilled: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isPayoutStarted: boolean;
|
||||
readonly asPayoutStarted: {
|
||||
readonly eraIndex: u32;
|
||||
readonly validatorStash: AccountId32;
|
||||
readonly validatorStash: PezspCoreCryptoAccountId32;
|
||||
readonly page: u32;
|
||||
readonly next: Option<u32>;
|
||||
} & Struct;
|
||||
readonly isValidatorPrefsSet: boolean;
|
||||
readonly asValidatorPrefsSet: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly prefs: PezpalletStakingAsyncValidatorPrefs;
|
||||
} & Struct;
|
||||
readonly isSnapshotVotersSizeExceeded: boolean;
|
||||
@@ -1926,7 +1932,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isCurrencyMigrated: boolean;
|
||||
readonly asCurrencyMigrated: {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly forceWithdraw: u128;
|
||||
} & Struct;
|
||||
readonly isPagedElectionProceeded: boolean;
|
||||
@@ -1937,20 +1943,20 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isOffenceReported: boolean;
|
||||
readonly asOffenceReported: {
|
||||
readonly offenceEra: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly fraction: Perbill;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly fraction: u32;
|
||||
} & Struct;
|
||||
readonly isSlashComputed: boolean;
|
||||
readonly asSlashComputed: {
|
||||
readonly offenceEra: u32;
|
||||
readonly slashEra: u32;
|
||||
readonly offender: AccountId32;
|
||||
readonly offender: PezspCoreCryptoAccountId32;
|
||||
readonly page: u32;
|
||||
} & Struct;
|
||||
readonly isSlashCancelled: boolean;
|
||||
readonly asSlashCancelled: {
|
||||
readonly slashEra: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isSessionRotated: boolean;
|
||||
readonly asSessionRotated: {
|
||||
@@ -1963,8 +1969,8 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isOffenceTooOld: boolean;
|
||||
readonly asOffenceTooOld: {
|
||||
readonly offenceEra: u32;
|
||||
readonly validator: AccountId32;
|
||||
readonly fraction: Perbill;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly fraction: u32;
|
||||
} & Struct;
|
||||
readonly isEraPruned: boolean;
|
||||
readonly asEraPruned: {
|
||||
@@ -1993,21 +1999,21 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletAhOpsEvent extends Enum {
|
||||
readonly isLeaseUnreserveRemaining: boolean;
|
||||
readonly asLeaseUnreserveRemaining: {
|
||||
readonly depositor: AccountId32;
|
||||
readonly depositor: PezspCoreCryptoAccountId32;
|
||||
readonly paraId: u32;
|
||||
readonly remaining: u128;
|
||||
} & Struct;
|
||||
readonly isCrowdloanUnreserveRemaining: boolean;
|
||||
readonly asCrowdloanUnreserveRemaining: {
|
||||
readonly depositor: AccountId32;
|
||||
readonly depositor: PezspCoreCryptoAccountId32;
|
||||
readonly paraId: u32;
|
||||
readonly remaining: u128;
|
||||
} & Struct;
|
||||
readonly isSovereignMigrated: boolean;
|
||||
readonly asSovereignMigrated: {
|
||||
readonly paraId: u32;
|
||||
readonly from: AccountId32;
|
||||
readonly to: AccountId32;
|
||||
readonly from: PezspCoreCryptoAccountId32;
|
||||
readonly to: PezspCoreCryptoAccountId32;
|
||||
readonly derivationIndex: Option<u16>;
|
||||
} & Struct;
|
||||
readonly type: 'LeaseUnreserveRemaining' | 'CrowdloanUnreserveRemaining' | 'SovereignMigrated';
|
||||
@@ -2060,18 +2066,18 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isManagerSet: boolean;
|
||||
readonly asManagerSet: {
|
||||
readonly old: Option<AccountId32>;
|
||||
readonly new_: Option<AccountId32>;
|
||||
readonly old: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly new_: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isAccountTranslatedParachainSovereign: boolean;
|
||||
readonly asAccountTranslatedParachainSovereign: {
|
||||
readonly from: AccountId32;
|
||||
readonly to: AccountId32;
|
||||
readonly from: PezspCoreCryptoAccountId32;
|
||||
readonly to: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isAccountTranslatedParachainSovereignDerived: boolean;
|
||||
readonly asAccountTranslatedParachainSovereignDerived: {
|
||||
readonly from: AccountId32;
|
||||
readonly to: AccountId32;
|
||||
readonly from: PezspCoreCryptoAccountId32;
|
||||
readonly to: PezspCoreCryptoAccountId32;
|
||||
readonly derivationIndex: u16;
|
||||
} & Struct;
|
||||
readonly isXcmSent: boolean;
|
||||
@@ -2085,13 +2091,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly asFailedToUnreserveMultisigDeposit: {
|
||||
readonly expectedAmount: u128;
|
||||
readonly missingAmount: u128;
|
||||
readonly account: AccountId32;
|
||||
readonly account: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isFailedToUnreservePreimageDeposit: boolean;
|
||||
readonly asFailedToUnreservePreimageDeposit: {
|
||||
readonly expectedAmount: u128;
|
||||
readonly missingAmount: u128;
|
||||
readonly account: AccountId32;
|
||||
readonly account: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly type: 'StageTransition' | 'BatchReceived' | 'BatchProcessed' | 'AssetHubMigrationStarted' | 'AssetHubMigrationFinished' | 'DmpQueuePrioritySet' | 'DmpQueuePriorityConfigSet' | 'BalancesBeforeRecordSet' | 'BalancesBeforeRecordConsumed' | 'ReferendumCanceled' | 'ManagerSet' | 'AccountTranslatedParachainSovereign' | 'AccountTranslatedParachainSovereignDerived' | 'XcmSent' | 'FailedToUnreserveMultisigDeposit' | 'FailedToUnreservePreimageDeposit';
|
||||
}
|
||||
@@ -2250,7 +2256,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletCollatorSelectionCandidateInfo (776) */
|
||||
interface PezpalletCollatorSelectionCandidateInfo extends Struct {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
}
|
||||
|
||||
@@ -2335,7 +2341,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType (847) */
|
||||
interface PezpalletProxyProxyDefinitionAssetHubPezkuwiRuntimeProxyType extends Struct {
|
||||
readonly delegate: AccountId32;
|
||||
readonly delegate: PezspCoreCryptoAccountId32;
|
||||
readonly proxyType: AssetHubPezkuwiRuntimeProxyType;
|
||||
readonly delay: u32;
|
||||
}
|
||||
@@ -2426,7 +2432,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletStakingAsyncLedgerStakingLedger (974) */
|
||||
interface PezpalletStakingAsyncLedgerStakingLedger extends Struct {
|
||||
readonly stash: AccountId32;
|
||||
readonly stash: PezspCoreCryptoAccountId32;
|
||||
readonly total: Compact<u128>;
|
||||
readonly active: Compact<u128>;
|
||||
readonly unlocking: Vec<PezpalletStakingAsyncLedgerUnlockChunk>;
|
||||
@@ -2434,7 +2440,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletStakingAsyncNominations (975) */
|
||||
interface PezpalletStakingAsyncNominations extends Struct {
|
||||
readonly targets: Vec<AccountId32>;
|
||||
readonly targets: Vec<PezspCoreCryptoAccountId32>;
|
||||
readonly submittedIn: u32;
|
||||
readonly suppressed: bool;
|
||||
}
|
||||
@@ -2451,31 +2457,31 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletStakingAsyncEraRewardPoints (984) */
|
||||
interface PezpalletStakingAsyncEraRewardPoints extends Struct {
|
||||
readonly total: u32;
|
||||
readonly individual: BTreeMap<AccountId32, u32>;
|
||||
readonly individual: BTreeMap<PezspCoreCryptoAccountId32, u32>;
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncSlashingOffenceRecord (987) */
|
||||
interface PezpalletStakingAsyncSlashingOffenceRecord extends Struct {
|
||||
readonly reporter: Option<AccountId32>;
|
||||
readonly reporter: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly reportedEra: u32;
|
||||
readonly exposurePage: u32;
|
||||
readonly slashFraction: Perbill;
|
||||
readonly priorSlashFraction: Perbill;
|
||||
readonly slashFraction: u32;
|
||||
readonly priorSlashFraction: u32;
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncUnappliedSlash (991) */
|
||||
interface PezpalletStakingAsyncUnappliedSlash extends Struct {
|
||||
readonly validator: AccountId32;
|
||||
readonly validator: PezspCoreCryptoAccountId32;
|
||||
readonly own: u128;
|
||||
readonly others: Vec<ITuple<[AccountId32, u128]>>;
|
||||
readonly reporter: Option<AccountId32>;
|
||||
readonly others: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
||||
readonly reporter: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly payout: u128;
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncSnapshotStatus (994) */
|
||||
interface PezpalletStakingAsyncSnapshotStatus extends Enum {
|
||||
readonly isOngoing: boolean;
|
||||
readonly asOngoing: AccountId32;
|
||||
readonly asOngoing: PezspCoreCryptoAccountId32;
|
||||
readonly isConsumed: boolean;
|
||||
readonly isWaiting: boolean;
|
||||
readonly type: 'Ongoing' | 'Consumed' | 'Waiting';
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,11 +5,17 @@
|
||||
// this is required to allow for ambient/previous definitions
|
||||
import '@pezkuwi/types/lookup';
|
||||
|
||||
import type { Compact, Enum, Null, Option, Struct, Vec, bool, u16, u32 } from '@pezkuwi/types-codec';
|
||||
import type { Compact, Enum, Null, Option, Struct, Vec, bool, u16, u32, u64 } from '@pezkuwi/types-codec';
|
||||
import type { ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, PerU16, Permill, Perquintill } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AccountId32, MultiAddress } from '@pezkuwi/types/interfaces/runtime';
|
||||
|
||||
declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezspCoreCryptoAccountId32 (0) */
|
||||
interface PezspCoreCryptoAccountId32 extends AccountId32 {}
|
||||
|
||||
/** @name PezspRuntimeMultiAddress (1) */
|
||||
interface PezspRuntimeMultiAddress extends MultiAddress {}
|
||||
|
||||
/** @name StagingDicleRuntimeSessionKeys (138) */
|
||||
interface StagingDicleRuntimeSessionKeys extends Struct {
|
||||
readonly grandpa: PezspConsensusGrandpaAppPublic;
|
||||
@@ -78,13 +84,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name StagingDicleRuntimeDynamicParamsInflationParameters (173) */
|
||||
interface StagingDicleRuntimeDynamicParamsInflationParameters extends Enum {
|
||||
readonly isMinInflation: boolean;
|
||||
readonly asMinInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMinInflation, Option<Perquintill>]>;
|
||||
readonly asMinInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMinInflation, Option<u64>]>;
|
||||
readonly isMaxInflation: boolean;
|
||||
readonly asMaxInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMaxInflation, Option<Perquintill>]>;
|
||||
readonly asMaxInflation: ITuple<[StagingDicleRuntimeDynamicParamsInflationMaxInflation, Option<u64>]>;
|
||||
readonly isIdealStake: boolean;
|
||||
readonly asIdealStake: ITuple<[StagingDicleRuntimeDynamicParamsInflationIdealStake, Option<Perquintill>]>;
|
||||
readonly asIdealStake: ITuple<[StagingDicleRuntimeDynamicParamsInflationIdealStake, Option<u64>]>;
|
||||
readonly isFalloff: boolean;
|
||||
readonly asFalloff: ITuple<[StagingDicleRuntimeDynamicParamsInflationFalloff, Option<Perquintill>]>;
|
||||
readonly asFalloff: ITuple<[StagingDicleRuntimeDynamicParamsInflationFalloff, Option<u64>]>;
|
||||
readonly isUseAuctionSlots: boolean;
|
||||
readonly asUseAuctionSlots: ITuple<[StagingDicleRuntimeDynamicParamsInflationUseAuctionSlots, Option<bool>]>;
|
||||
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff' | 'UseAuctionSlots';
|
||||
@@ -108,7 +114,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name StagingDicleRuntimeDynamicParamsTreasuryParameters (182) */
|
||||
interface StagingDicleRuntimeDynamicParamsTreasuryParameters extends Enum {
|
||||
readonly isBurnPortion: boolean;
|
||||
readonly asBurnPortion: ITuple<[StagingDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<Permill>]>;
|
||||
readonly asBurnPortion: ITuple<[StagingDicleRuntimeDynamicParamsTreasuryBurnPortion, Option<u32>]>;
|
||||
readonly isBurnDestination: boolean;
|
||||
readonly asBurnDestination: ITuple<[StagingDicleRuntimeDynamicParamsTreasuryBurnDestination, Option<StagingDicleRuntimeBurnDestinationAccount>]>;
|
||||
readonly type: 'BurnPortion' | 'BurnDestination';
|
||||
@@ -121,7 +127,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
type StagingDicleRuntimeDynamicParamsTreasuryBurnDestination = Null;
|
||||
|
||||
/** @name StagingDicleRuntimeBurnDestinationAccount (188) */
|
||||
interface StagingDicleRuntimeBurnDestinationAccount extends Option<AccountId32> {}
|
||||
interface StagingDicleRuntimeBurnDestinationAccount extends Option<PezspCoreCryptoAccountId32> {}
|
||||
|
||||
/** @name DicleRuntimeConstantsProxyProxyType (209) */
|
||||
interface DicleRuntimeConstantsProxyProxyType extends Enum {
|
||||
@@ -141,39 +147,39 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name StagingDicleRuntimeNposCompactSolution24 (219) */
|
||||
interface StagingDicleRuntimeNposCompactSolution24 extends Struct {
|
||||
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes17: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes18: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes19: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes20: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes21: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes22: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes23: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes24: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
}
|
||||
|
||||
/** @name PezpalletRcMigratorRecoveryRecoveryStage (539) */
|
||||
interface PezpalletRcMigratorRecoveryRecoveryStage extends Enum {
|
||||
readonly isRecoverable: boolean;
|
||||
readonly asRecoverable: Option<AccountId32>;
|
||||
readonly asRecoverable: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isActiveRecoveries: boolean;
|
||||
readonly asActiveRecoveries: Option<ITuple<[AccountId32, AccountId32]>>;
|
||||
readonly asActiveRecoveries: Option<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isProxy: boolean;
|
||||
readonly asProxy: Option<AccountId32>;
|
||||
readonly asProxy: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isFinished: boolean;
|
||||
readonly type: 'Recoverable' | 'ActiveRecoveries' | 'Proxy' | 'Finished';
|
||||
}
|
||||
@@ -182,21 +188,21 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRcMigratorSocietySocietyStage extends Enum {
|
||||
readonly isValues: boolean;
|
||||
readonly isMembers: boolean;
|
||||
readonly asMembers: Option<AccountId32>;
|
||||
readonly asMembers: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isPayouts: boolean;
|
||||
readonly asPayouts: Option<AccountId32>;
|
||||
readonly asPayouts: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isMemberByIndex: boolean;
|
||||
readonly asMemberByIndex: Option<u32>;
|
||||
readonly isSuspendedMembers: boolean;
|
||||
readonly asSuspendedMembers: Option<AccountId32>;
|
||||
readonly asSuspendedMembers: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isCandidates: boolean;
|
||||
readonly asCandidates: Option<AccountId32>;
|
||||
readonly asCandidates: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isVotes: boolean;
|
||||
readonly asVotes: Option<ITuple<[AccountId32, AccountId32]>>;
|
||||
readonly asVotes: Option<ITuple<[PezspCoreCryptoAccountId32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isVoteClearCursor: boolean;
|
||||
readonly asVoteClearCursor: Option<AccountId32>;
|
||||
readonly asVoteClearCursor: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isDefenderVotes: boolean;
|
||||
readonly asDefenderVotes: Option<ITuple<[u32, AccountId32]>>;
|
||||
readonly asDefenderVotes: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isFinished: boolean;
|
||||
readonly type: 'Values' | 'Members' | 'Payouts' | 'MemberByIndex' | 'SuspendedMembers' | 'Candidates' | 'Votes' | 'VoteClearCursor' | 'DefenderVotes' | 'Finished';
|
||||
}
|
||||
@@ -239,13 +245,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name StagingDicleRuntimeDynamicParamsInflationParametersValue (571) */
|
||||
interface StagingDicleRuntimeDynamicParamsInflationParametersValue extends Enum {
|
||||
readonly isMinInflation: boolean;
|
||||
readonly asMinInflation: Perquintill;
|
||||
readonly asMinInflation: u64;
|
||||
readonly isMaxInflation: boolean;
|
||||
readonly asMaxInflation: Perquintill;
|
||||
readonly asMaxInflation: u64;
|
||||
readonly isIdealStake: boolean;
|
||||
readonly asIdealStake: Perquintill;
|
||||
readonly asIdealStake: u64;
|
||||
readonly isFalloff: boolean;
|
||||
readonly asFalloff: Perquintill;
|
||||
readonly asFalloff: u64;
|
||||
readonly isUseAuctionSlots: boolean;
|
||||
readonly asUseAuctionSlots: bool;
|
||||
readonly type: 'MinInflation' | 'MaxInflation' | 'IdealStake' | 'Falloff' | 'UseAuctionSlots';
|
||||
@@ -254,7 +260,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name StagingDicleRuntimeDynamicParamsTreasuryParametersValue (572) */
|
||||
interface StagingDicleRuntimeDynamicParamsTreasuryParametersValue extends Enum {
|
||||
readonly isBurnPortion: boolean;
|
||||
readonly asBurnPortion: Permill;
|
||||
readonly asBurnPortion: u32;
|
||||
readonly isBurnDestination: boolean;
|
||||
readonly asBurnDestination: StagingDicleRuntimeBurnDestinationAccount;
|
||||
readonly type: 'BurnPortion' | 'BurnDestination';
|
||||
@@ -264,7 +270,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRecoveryDepositKind extends Enum {
|
||||
readonly isRecoveryConfig: boolean;
|
||||
readonly isActiveRecoveryFor: boolean;
|
||||
readonly asActiveRecoveryFor: AccountId32;
|
||||
readonly asActiveRecoveryFor: PezspCoreCryptoAccountId32;
|
||||
readonly type: 'RecoveryConfig' | 'ActiveRecoveryFor';
|
||||
}
|
||||
|
||||
|
||||
@@ -7,9 +7,15 @@ import '@pezkuwi/types/lookup';
|
||||
|
||||
import type { BTreeMap, BTreeSet, BitVec, Bytes, Compact, Enum, Null, Option, Result, Struct, U8aFixed, Vec, bool, u128, u16, u32, u64, u8 } from '@pezkuwi/types-codec';
|
||||
import type { ITuple } from '@pezkuwi/types-codec/types';
|
||||
import type { AccountId32, H256, PerU16, Perbill, Perquintill, RuntimeCall, RuntimeEvent } from '@pezkuwi/types/interfaces/runtime';
|
||||
import type { AccountId32, H256, MultiAddress, RuntimeCall, RuntimeEvent } from '@pezkuwi/types/interfaces/runtime';
|
||||
|
||||
declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezspCoreCryptoAccountId32 (0) */
|
||||
interface PezspCoreCryptoAccountId32 extends AccountId32 {}
|
||||
|
||||
/** @name PezspRuntimeMultiAddress (1) */
|
||||
interface PezspRuntimeMultiAddress extends MultiAddress {}
|
||||
|
||||
/** @name PezpalletBalancesUnexpectedKind (41) */
|
||||
interface PezpalletBalancesUnexpectedKind extends Enum {
|
||||
readonly isBalanceUpdated: boolean;
|
||||
@@ -457,7 +463,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezkuwiRuntimeCommonClaimsPezpalletCall extends Enum {
|
||||
readonly isClaim: boolean;
|
||||
readonly asClaim: {
|
||||
readonly dest: AccountId32;
|
||||
readonly dest: PezspCoreCryptoAccountId32;
|
||||
readonly ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature;
|
||||
} & Struct;
|
||||
readonly isMintClaim: boolean;
|
||||
@@ -469,7 +475,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isClaimAttest: boolean;
|
||||
readonly asClaimAttest: {
|
||||
readonly dest: AccountId32;
|
||||
readonly dest: PezspCoreCryptoAccountId32;
|
||||
readonly ethereumSignature: PezkuwiRuntimeCommonClaimsEcdsaSignature;
|
||||
readonly statement: Bytes;
|
||||
} & Struct;
|
||||
@@ -481,7 +487,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly asMoveClaim: {
|
||||
readonly old: PezkuwiRuntimeCommonClaimsEthereumAddress;
|
||||
readonly new_: PezkuwiRuntimeCommonClaimsEthereumAddress;
|
||||
readonly maybePreclaim: Option<AccountId32>;
|
||||
readonly maybePreclaim: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly type: 'Claim' | 'MintClaim' | 'ClaimAttest' | 'Attest' | 'MoveClaim';
|
||||
}
|
||||
@@ -515,21 +521,21 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezkuwiRuntimeNposCompactSolution16 (200) */
|
||||
interface PezkuwiRuntimeNposCompactSolution16 extends Struct {
|
||||
readonly votes1: Vec<ITuple<[Compact<u32>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<PerU16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<PerU16>]>>, Compact<u16>]>>;
|
||||
readonly votes2: Vec<ITuple<[Compact<u32>, ITuple<[Compact<u16>, Compact<u16>]>, Compact<u16>]>>;
|
||||
readonly votes3: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes4: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes5: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes6: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes7: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes8: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes9: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes10: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes11: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes12: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes13: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes14: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes15: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
readonly votes16: Vec<ITuple<[Compact<u32>, Vec<ITuple<[Compact<u16>, Compact<u16>]>>, Compact<u16>]>>;
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncAhClientCall (274) */
|
||||
@@ -548,7 +554,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezpalletStakingAsyncRcClientValidatorSetReport (275) */
|
||||
interface PezpalletStakingAsyncRcClientValidatorSetReport extends Struct {
|
||||
readonly newValidatorSet: Vec<AccountId32>;
|
||||
readonly newValidatorSet: Vec<PezspCoreCryptoAccountId32>;
|
||||
readonly id: u32;
|
||||
readonly pruneUpTo: Option<u32>;
|
||||
readonly leftover: bool;
|
||||
@@ -722,7 +728,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isSetOnDemandFeeVariability: boolean;
|
||||
readonly asSetOnDemandFeeVariability: {
|
||||
readonly new_: Perbill;
|
||||
readonly new_: u32;
|
||||
} & Struct;
|
||||
readonly isSetOnDemandQueueMaxSize: boolean;
|
||||
readonly asSetOnDemandQueueMaxSize: {
|
||||
@@ -730,7 +736,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isSetOnDemandTargetQueueUtilization: boolean;
|
||||
readonly asSetOnDemandTargetQueueUtilization: {
|
||||
readonly new_: Perbill;
|
||||
readonly new_: u32;
|
||||
} & Struct;
|
||||
readonly isSetMinimumBackingVotes: boolean;
|
||||
readonly asSetMinimumBackingVotes: {
|
||||
@@ -807,8 +813,8 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly numCores: u32;
|
||||
readonly maxAvailabilityTimeouts: u32;
|
||||
readonly onDemandQueueMaxSize: u32;
|
||||
readonly onDemandTargetQueueUtilization: Perbill;
|
||||
readonly onDemandFeeVariability: Perbill;
|
||||
readonly onDemandTargetQueueUtilization: u32;
|
||||
readonly onDemandFeeVariability: u32;
|
||||
readonly onDemandBaseFee: u128;
|
||||
readonly ttl: u32;
|
||||
}
|
||||
@@ -1151,7 +1157,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isForceRegister: boolean;
|
||||
readonly asForceRegister: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
readonly id: u32;
|
||||
readonly genesisHead: Bytes;
|
||||
@@ -1193,7 +1199,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isForceLease: boolean;
|
||||
readonly asForceLease: {
|
||||
readonly para: u32;
|
||||
readonly leaser: AccountId32;
|
||||
readonly leaser: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
readonly periodBegin: u32;
|
||||
readonly periodCount: u32;
|
||||
@@ -1247,7 +1253,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isWithdraw: boolean;
|
||||
readonly asWithdraw: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly index: Compact<u32>;
|
||||
} & Struct;
|
||||
readonly isRefund: boolean;
|
||||
@@ -1307,7 +1313,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isCreditAccount: boolean;
|
||||
readonly asCreditAccount: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isAssignCore: boolean;
|
||||
@@ -2538,7 +2544,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isSetManager: boolean;
|
||||
readonly asSetManager: {
|
||||
readonly new_: Option<AccountId32>;
|
||||
readonly new_: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isSendXcmMessage: boolean;
|
||||
readonly asSendXcmMessage: {
|
||||
@@ -2547,11 +2553,11 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isPreserveAccounts: boolean;
|
||||
readonly asPreserveAccounts: {
|
||||
readonly accounts: Vec<AccountId32>;
|
||||
readonly accounts: Vec<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isSetCanceller: boolean;
|
||||
readonly asSetCanceller: {
|
||||
readonly new_: Option<AccountId32>;
|
||||
readonly new_: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isPauseMigration: boolean;
|
||||
readonly isCancelMigration: boolean;
|
||||
@@ -2585,13 +2591,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isAccountsMigrationInit: boolean;
|
||||
readonly isAccountsMigrationOngoing: boolean;
|
||||
readonly asAccountsMigrationOngoing: {
|
||||
readonly lastKey: Option<AccountId32>;
|
||||
readonly lastKey: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isAccountsMigrationDone: boolean;
|
||||
readonly isMultisigMigrationInit: boolean;
|
||||
readonly isMultisigMigrationOngoing: boolean;
|
||||
readonly asMultisigMigrationOngoing: {
|
||||
readonly lastKey: Option<ITuple<[AccountId32, U8aFixed]>>;
|
||||
readonly lastKey: Option<ITuple<[PezspCoreCryptoAccountId32, U8aFixed]>>;
|
||||
} & Struct;
|
||||
readonly isMultisigMigrationDone: boolean;
|
||||
readonly isClaimsMigrationInit: boolean;
|
||||
@@ -2603,11 +2609,11 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isProxyMigrationInit: boolean;
|
||||
readonly isProxyMigrationProxies: boolean;
|
||||
readonly asProxyMigrationProxies: {
|
||||
readonly lastKey: Option<AccountId32>;
|
||||
readonly lastKey: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isProxyMigrationAnnouncements: boolean;
|
||||
readonly asProxyMigrationAnnouncements: {
|
||||
readonly lastKey: Option<AccountId32>;
|
||||
readonly lastKey: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isProxyMigrationDone: boolean;
|
||||
readonly isPreimageMigrationInit: boolean;
|
||||
@@ -2637,7 +2643,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isVestingMigrationInit: boolean;
|
||||
readonly isVestingMigrationOngoing: boolean;
|
||||
readonly asVestingMigrationOngoing: {
|
||||
readonly nextKey: Option<AccountId32>;
|
||||
readonly nextKey: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isVestingMigrationDone: boolean;
|
||||
readonly isDelegatedStakingMigrationInit: boolean;
|
||||
@@ -2735,7 +2741,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isSigning: boolean;
|
||||
readonly asSigning: Option<PezkuwiRuntimeCommonClaimsEthereumAddress>;
|
||||
readonly isPreclaims: boolean;
|
||||
readonly asPreclaims: Option<AccountId32>;
|
||||
readonly asPreclaims: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isFinished: boolean;
|
||||
readonly type: 'StorageValues' | 'Claims' | 'Vesting' | 'Signing' | 'Preclaims' | 'Finished';
|
||||
}
|
||||
@@ -2744,7 +2750,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezpalletRcMigratorStakingNomPoolsNomPoolsStage extends Enum {
|
||||
readonly isStorageValues: boolean;
|
||||
readonly isPoolMembers: boolean;
|
||||
readonly asPoolMembers: Option<AccountId32>;
|
||||
readonly asPoolMembers: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isBondedPools: boolean;
|
||||
readonly asBondedPools: Option<u32>;
|
||||
readonly isRewardPools: boolean;
|
||||
@@ -2754,9 +2760,9 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isMetadata: boolean;
|
||||
readonly asMetadata: Option<u32>;
|
||||
readonly isReversePoolIdLookup: boolean;
|
||||
readonly asReversePoolIdLookup: Option<AccountId32>;
|
||||
readonly asReversePoolIdLookup: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isClaimPermissions: boolean;
|
||||
readonly asClaimPermissions: Option<AccountId32>;
|
||||
readonly asClaimPermissions: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isFinished: boolean;
|
||||
readonly type: 'StorageValues' | 'PoolMembers' | 'BondedPools' | 'RewardPools' | 'SubPoolsStorage' | 'Metadata' | 'ReversePoolIdLookup' | 'ClaimPermissions' | 'Finished';
|
||||
}
|
||||
@@ -2764,9 +2770,9 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletRcMigratorStakingDelegatedStakingDelegatedStakingStage (478) */
|
||||
interface PezpalletRcMigratorStakingDelegatedStakingDelegatedStakingStage extends Enum {
|
||||
readonly isDelegators: boolean;
|
||||
readonly asDelegators: Option<AccountId32>;
|
||||
readonly asDelegators: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isAgents: boolean;
|
||||
readonly asAgents: Option<AccountId32>;
|
||||
readonly asAgents: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isFinished: boolean;
|
||||
readonly type: 'Delegators' | 'Agents' | 'Finished';
|
||||
}
|
||||
@@ -2784,7 +2790,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletRcMigratorStakingBagsListBagsListStage (483) */
|
||||
interface PezpalletRcMigratorStakingBagsListBagsListStage extends Enum {
|
||||
readonly isListNodes: boolean;
|
||||
readonly asListNodes: Option<AccountId32>;
|
||||
readonly asListNodes: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isListBags: boolean;
|
||||
readonly asListBags: Option<u64>;
|
||||
readonly isFinished: boolean;
|
||||
@@ -2805,9 +2811,9 @@ declare module '@pezkuwi/types/lookup' {
|
||||
/** @name PezpalletRcMigratorConvictionVotingConvictionVotingStage (487) */
|
||||
interface PezpalletRcMigratorConvictionVotingConvictionVotingStage extends Enum {
|
||||
readonly isVotingFor: boolean;
|
||||
readonly asVotingFor: Option<ITuple<[AccountId32, u16]>>;
|
||||
readonly asVotingFor: Option<ITuple<[PezspCoreCryptoAccountId32, u16]>>;
|
||||
readonly isClassLocksFor: boolean;
|
||||
readonly asClassLocksFor: Option<AccountId32>;
|
||||
readonly asClassLocksFor: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isFinished: boolean;
|
||||
readonly type: 'VotingFor' | 'ClassLocksFor' | 'Finished';
|
||||
}
|
||||
@@ -2895,25 +2901,25 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isValues: boolean;
|
||||
readonly isInvulnerables: boolean;
|
||||
readonly isBonded: boolean;
|
||||
readonly asBonded: Option<AccountId32>;
|
||||
readonly asBonded: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isLedger: boolean;
|
||||
readonly asLedger: Option<AccountId32>;
|
||||
readonly asLedger: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isPayee: boolean;
|
||||
readonly asPayee: Option<AccountId32>;
|
||||
readonly asPayee: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isValidators: boolean;
|
||||
readonly asValidators: Option<AccountId32>;
|
||||
readonly asValidators: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isNominators: boolean;
|
||||
readonly asNominators: Option<AccountId32>;
|
||||
readonly asNominators: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isVirtualStakers: boolean;
|
||||
readonly asVirtualStakers: Option<AccountId32>;
|
||||
readonly asVirtualStakers: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isErasStakersOverview: boolean;
|
||||
readonly asErasStakersOverview: Option<ITuple<[u32, AccountId32]>>;
|
||||
readonly asErasStakersOverview: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isErasStakersPaged: boolean;
|
||||
readonly asErasStakersPaged: Option<ITuple<[u32, AccountId32, u32]>>;
|
||||
readonly asErasStakersPaged: Option<ITuple<[u32, PezspCoreCryptoAccountId32, u32]>>;
|
||||
readonly isClaimedRewards: boolean;
|
||||
readonly asClaimedRewards: Option<ITuple<[u32, AccountId32]>>;
|
||||
readonly asClaimedRewards: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isErasValidatorPrefs: boolean;
|
||||
readonly asErasValidatorPrefs: Option<ITuple<[u32, AccountId32]>>;
|
||||
readonly asErasValidatorPrefs: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isErasValidatorReward: boolean;
|
||||
readonly asErasValidatorReward: Option<u32>;
|
||||
readonly isErasRewardPoints: boolean;
|
||||
@@ -2924,13 +2930,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly asUnappliedSlashes: Option<u32>;
|
||||
readonly isBondedEras: boolean;
|
||||
readonly isValidatorSlashInEra: boolean;
|
||||
readonly asValidatorSlashInEra: Option<ITuple<[u32, AccountId32]>>;
|
||||
readonly asValidatorSlashInEra: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isNominatorSlashInEra: boolean;
|
||||
readonly asNominatorSlashInEra: Option<ITuple<[u32, AccountId32]>>;
|
||||
readonly asNominatorSlashInEra: Option<ITuple<[u32, PezspCoreCryptoAccountId32]>>;
|
||||
readonly isSlashingSpans: boolean;
|
||||
readonly asSlashingSpans: Option<AccountId32>;
|
||||
readonly asSlashingSpans: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly isSpanSlash: boolean;
|
||||
readonly asSpanSlash: Option<ITuple<[AccountId32, u32]>>;
|
||||
readonly asSpanSlash: Option<ITuple<[PezspCoreCryptoAccountId32, u32]>>;
|
||||
readonly isFinished: boolean;
|
||||
readonly type: 'Values' | 'Invulnerables' | 'Bonded' | 'Ledger' | 'Payee' | 'Validators' | 'Nominators' | 'VirtualStakers' | 'ErasStakersOverview' | 'ErasStakersPaged' | 'ClaimedRewards' | 'ErasValidatorPrefs' | 'ErasValidatorReward' | 'ErasRewardPoints' | 'ErasTotalStake' | 'UnappliedSlashes' | 'BondedEras' | 'ValidatorSlashInEra' | 'NominatorSlashInEra' | 'SlashingSpans' | 'SpanSlash' | 'Finished';
|
||||
}
|
||||
@@ -2961,7 +2967,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
interface PezkuwiRuntimeCommonClaimsPezpalletEvent extends Enum {
|
||||
readonly isClaimed: boolean;
|
||||
readonly asClaimed: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly ethereumAddress: PezkuwiRuntimeCommonClaimsEthereumAddress;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
@@ -3125,7 +3131,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly asOnDemandOrderPlaced: {
|
||||
readonly paraId: u32;
|
||||
readonly spotPrice: u128;
|
||||
readonly orderedBy: AccountId32;
|
||||
readonly orderedBy: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isSpotPriceSet: boolean;
|
||||
readonly asSpotPriceSet: {
|
||||
@@ -3133,7 +3139,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isAccountCredited: boolean;
|
||||
readonly asAccountCredited: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly type: 'OnDemandOrderPlaced' | 'SpotPriceSet' | 'AccountCredited';
|
||||
@@ -3144,7 +3150,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isRegistered: boolean;
|
||||
readonly asRegistered: {
|
||||
readonly paraId: u32;
|
||||
readonly manager: AccountId32;
|
||||
readonly manager: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isDeregistered: boolean;
|
||||
readonly asDeregistered: {
|
||||
@@ -3153,7 +3159,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isReserved: boolean;
|
||||
readonly asReserved: {
|
||||
readonly paraId: u32;
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
} & Struct;
|
||||
readonly isSwapped: boolean;
|
||||
readonly asSwapped: {
|
||||
@@ -3172,7 +3178,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isLeased: boolean;
|
||||
readonly asLeased: {
|
||||
readonly paraId: u32;
|
||||
readonly leaser: AccountId32;
|
||||
readonly leaser: PezspCoreCryptoAccountId32;
|
||||
readonly periodBegin: u32;
|
||||
readonly periodCount: u32;
|
||||
readonly extraReserved: u128;
|
||||
@@ -3195,24 +3201,24 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isReserved: boolean;
|
||||
readonly asReserved: {
|
||||
readonly bidder: AccountId32;
|
||||
readonly bidder: PezspCoreCryptoAccountId32;
|
||||
readonly extraReserved: u128;
|
||||
readonly totalAmount: u128;
|
||||
} & Struct;
|
||||
readonly isUnreserved: boolean;
|
||||
readonly asUnreserved: {
|
||||
readonly bidder: AccountId32;
|
||||
readonly bidder: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isReserveConfiscated: boolean;
|
||||
readonly asReserveConfiscated: {
|
||||
readonly paraId: u32;
|
||||
readonly leaser: AccountId32;
|
||||
readonly leaser: PezspCoreCryptoAccountId32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isBidAccepted: boolean;
|
||||
readonly asBidAccepted: {
|
||||
readonly bidder: AccountId32;
|
||||
readonly bidder: PezspCoreCryptoAccountId32;
|
||||
readonly paraId: u32;
|
||||
readonly amount: u128;
|
||||
readonly firstSlot: u32;
|
||||
@@ -3234,13 +3240,13 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isContributed: boolean;
|
||||
readonly asContributed: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly fundIndex: u32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
readonly isWithdrew: boolean;
|
||||
readonly asWithdrew: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly fundIndex: u32;
|
||||
readonly amount: u128;
|
||||
} & Struct;
|
||||
@@ -3267,7 +3273,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isMemoUpdated: boolean;
|
||||
readonly asMemoUpdated: {
|
||||
readonly who: AccountId32;
|
||||
readonly who: PezspCoreCryptoAccountId32;
|
||||
readonly paraId: u32;
|
||||
readonly memo: Bytes;
|
||||
} & Struct;
|
||||
@@ -3541,8 +3547,8 @@ declare module '@pezkuwi/types/lookup' {
|
||||
} & Struct;
|
||||
readonly isManagerSet: boolean;
|
||||
readonly asManagerSet: {
|
||||
readonly old: Option<AccountId32>;
|
||||
readonly new_: Option<AccountId32>;
|
||||
readonly old: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly new_: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isXcmSent: boolean;
|
||||
readonly asXcmSent: {
|
||||
@@ -3554,12 +3560,12 @@ declare module '@pezkuwi/types/lookup' {
|
||||
readonly isStakingElectionsPaused: boolean;
|
||||
readonly isAccountsPreserved: boolean;
|
||||
readonly asAccountsPreserved: {
|
||||
readonly accounts: Vec<AccountId32>;
|
||||
readonly accounts: Vec<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isCancellerSet: boolean;
|
||||
readonly asCancellerSet: {
|
||||
readonly old: Option<AccountId32>;
|
||||
readonly new_: Option<AccountId32>;
|
||||
readonly old: Option<PezspCoreCryptoAccountId32>;
|
||||
readonly new_: Option<PezspCoreCryptoAccountId32>;
|
||||
} & Struct;
|
||||
readonly isMigrationPaused: boolean;
|
||||
readonly asMigrationPaused: {
|
||||
@@ -3666,27 +3672,27 @@ declare module '@pezkuwi/types/lookup' {
|
||||
}
|
||||
|
||||
/** @name PezframeElectionProviderSupportBoundedSupports (738) */
|
||||
interface PezframeElectionProviderSupportBoundedSupports extends Vec<ITuple<[AccountId32, PezframeElectionProviderSupportBoundedSupport]>> {}
|
||||
interface PezframeElectionProviderSupportBoundedSupports extends Vec<ITuple<[PezspCoreCryptoAccountId32, PezframeElectionProviderSupportBoundedSupport]>> {}
|
||||
|
||||
/** @name PezframeElectionProviderSupportBoundedSupport (741) */
|
||||
interface PezframeElectionProviderSupportBoundedSupport extends Struct {
|
||||
readonly total: u128;
|
||||
readonly voters: Vec<ITuple<[AccountId32, u128]>>;
|
||||
readonly voters: Vec<ITuple<[PezspCoreCryptoAccountId32, u128]>>;
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncRcClientSessionReport (783) */
|
||||
interface PezpalletStakingAsyncRcClientSessionReport extends Struct {
|
||||
readonly endIndex: u32;
|
||||
readonly validatorPoints: Vec<ITuple<[AccountId32, u32]>>;
|
||||
readonly validatorPoints: Vec<ITuple<[PezspCoreCryptoAccountId32, u32]>>;
|
||||
readonly activationTimestamp: Option<ITuple<[u64, u32]>>;
|
||||
readonly leftover: bool;
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncRcClientOffence (787) */
|
||||
interface PezpalletStakingAsyncRcClientOffence extends Struct {
|
||||
readonly offender: AccountId32;
|
||||
readonly reporters: Vec<AccountId32>;
|
||||
readonly slashFraction: Perbill;
|
||||
readonly offender: PezspCoreCryptoAccountId32;
|
||||
readonly reporters: Vec<PezspCoreCryptoAccountId32>;
|
||||
readonly slashFraction: u32;
|
||||
}
|
||||
|
||||
/** @name PezpalletStakingAsyncAhClientError (789) */
|
||||
@@ -4120,7 +4126,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezkuwiRuntimeCommonParasRegistrarParaInfo (887) */
|
||||
interface PezkuwiRuntimeCommonParasRegistrarParaInfo extends Struct {
|
||||
readonly manager: AccountId32;
|
||||
readonly manager: PezspCoreCryptoAccountId32;
|
||||
readonly deposit: u128;
|
||||
readonly locked: Option<bool>;
|
||||
}
|
||||
@@ -4165,7 +4171,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name PezkuwiRuntimeCommonCrowdloanFundInfo (897) */
|
||||
interface PezkuwiRuntimeCommonCrowdloanFundInfo extends Struct {
|
||||
readonly depositor: AccountId32;
|
||||
readonly depositor: PezspCoreCryptoAccountId32;
|
||||
readonly verifier: Option<PezspRuntimeMultiSigner>;
|
||||
readonly deposit: u128;
|
||||
readonly raised: u128;
|
||||
@@ -4429,7 +4435,7 @@ declare module '@pezkuwi/types/lookup' {
|
||||
|
||||
/** @name RelayCommonApisInflationInfo (958) */
|
||||
interface RelayCommonApisInflationInfo extends Struct {
|
||||
readonly inflation: Perquintill;
|
||||
readonly inflation: u64;
|
||||
readonly nextMint: ITuple<[u128, u128]>;
|
||||
}
|
||||
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/types-augment', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/types-augment', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Implementation of the SCALE codec",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -1142,12 +1142,12 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-augment": "16.5.22",
|
||||
"@pezkuwi/types-support": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util-crypto": "14.0.13",
|
||||
"@pezkuwi/x-bigint": "14.0.13",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-augment": "16.5.34",
|
||||
"@pezkuwi/types-support": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"@pezkuwi/util-crypto": "14.0.23",
|
||||
"@pezkuwi/x-bigint": "14.0.22",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/types-codec', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/types-codec', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Type creator helpers",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -283,9 +283,9 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/types-create', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/types-create', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Known type definitions",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -437,11 +437,11 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/networks": "14.0.13",
|
||||
"@pezkuwi/types": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/types-create": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/networks": "14.0.23",
|
||||
"@pezkuwi/types": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/types-create": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"tslib": "^2.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/types-known', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/types-known', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Supporting files for types, mostly for testing",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./cjs/index.js",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
@@ -705,7 +705,7 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/types-support', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/types-support', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"author": "Jaco Greeff <jacogr@gmail.com>",
|
||||
"author": "PezkuwiChain <dev@pezkuwichain.io>",
|
||||
"bugs": "https://github.com/pezkuwichain/pezkuwi-api/issues",
|
||||
"description": "Implementation of the Parity codec",
|
||||
"engines": {
|
||||
@@ -19,7 +19,7 @@
|
||||
],
|
||||
"type": "module",
|
||||
"types": "./build/index.d.ts",
|
||||
"version": "16.5.22",
|
||||
"version": "16.5.34",
|
||||
"main": "./build/cjs/index.js",
|
||||
"module": "./build/index.js",
|
||||
"exports": {
|
||||
@@ -5926,13 +5926,13 @@
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@pezkuwi/keyring": "14.0.13",
|
||||
"@pezkuwi/types-augment": "16.5.22",
|
||||
"@pezkuwi/types-codec": "16.5.22",
|
||||
"@pezkuwi/types-create": "16.5.22",
|
||||
"@pezkuwi/types-support": "16.5.22",
|
||||
"@pezkuwi/util": "14.0.13",
|
||||
"@pezkuwi/util-crypto": "14.0.13",
|
||||
"@pezkuwi/keyring": "14.0.23",
|
||||
"@pezkuwi/types-augment": "16.5.34",
|
||||
"@pezkuwi/types-codec": "16.5.34",
|
||||
"@pezkuwi/types-create": "16.5.34",
|
||||
"@pezkuwi/types-support": "16.5.34",
|
||||
"@pezkuwi/util": "14.0.23",
|
||||
"@pezkuwi/util-crypto": "14.0.23",
|
||||
"rxjs": "^7.8.1",
|
||||
"tslib": "^2.8.1"
|
||||
}
|
||||
|
||||
@@ -31,6 +31,7 @@ const ChargeTransactionPayment: ExtInfo = {
|
||||
};
|
||||
|
||||
export const bizinikiwi: ExtDef = {
|
||||
AuthorizeCall: emptyCheck,
|
||||
ChargeTransactionPayment,
|
||||
CheckBlockGasLimit: emptyCheck,
|
||||
CheckEra: CheckMortality,
|
||||
|
||||
@@ -6,10 +6,12 @@ import type { ExtDef } from './types.js';
|
||||
import { emptyCheck } from './emptyCheck.js';
|
||||
|
||||
export const pezkuwi: ExtDef = {
|
||||
AuthorizeCall: emptyCheck,
|
||||
LimitParathreadCommits: emptyCheck,
|
||||
OnlyStakingAndClaims: emptyCheck,
|
||||
PrevalidateAttests: emptyCheck,
|
||||
RestrictFunctionality: emptyCheck,
|
||||
TransactionCallFilter: emptyCheck,
|
||||
ValidateDoubleVoteReports: emptyCheck
|
||||
ValidateDoubleVoteReports: emptyCheck,
|
||||
WeightReclaim: emptyCheck
|
||||
};
|
||||
|
||||
@@ -54,11 +54,8 @@ const PATHS_ALIAS = splitNamespace([
|
||||
// full matching on exact names...
|
||||
// these are well-known types with additional encoding
|
||||
'pezsp_core::crypto::AccountId32',
|
||||
'sp_core::crypto::AccountId32', // upstream compatibility
|
||||
'pezsp_runtime::generic::era::Era',
|
||||
'sp_runtime::generic::era::Era', // upstream compatibility
|
||||
'pezsp_runtime::multiaddress::MultiAddress',
|
||||
'sp_runtime::multiaddress::MultiAddress', // upstream compatibility
|
||||
// ethereum overrides (Frontier, Moonbeam, Pezkuwi claims)
|
||||
'fp_account::AccountId20',
|
||||
'account::AccountId20',
|
||||
@@ -66,9 +63,7 @@ const PATHS_ALIAS = splitNamespace([
|
||||
// weights 2 is a structure, however for 1.5. with a single field it
|
||||
// should be flatenned (can appear in Compact<Weight> extrinsics)
|
||||
'pezframe_support::weights::weight_v2::Weight',
|
||||
'frame_support::weights::weight_v2::Weight', // upstream compatibility
|
||||
'pezsp_weights::weight_v2::Weight',
|
||||
'sp_weights::weight_v2::Weight', // upstream compatibility
|
||||
// wildcard matching in place...
|
||||
// these have a specific encoding or logic, use a wildcard for {pallet, darwinia}_democracy
|
||||
'*_democracy::vote::Vote',
|
||||
@@ -76,15 +71,11 @@ const PATHS_ALIAS = splitNamespace([
|
||||
'*_identity::types::Data',
|
||||
// these are opaque Vec<u8> wrappers
|
||||
'pezsp_core::OpaqueMetadata',
|
||||
'sp_core::OpaqueMetadata', // upstream compatibility
|
||||
'pezsp_core::OpaquePeerId',
|
||||
'sp_core::OpaquePeerId', // upstream compatibility
|
||||
'pezsp_core::offchain::OpaqueMultiaddr',
|
||||
'sp_core::offchain::OpaqueMultiaddr', // upstream compatibility
|
||||
// shorten some well-known types
|
||||
'primitive_types::*',
|
||||
'pezsp_arithmetic::per_things::*',
|
||||
'sp_arithmetic::per_things::*', // upstream compatibility
|
||||
// runtime
|
||||
'*_runtime::RuntimeCall',
|
||||
'*_runtime::RuntimeEvent',
|
||||
@@ -182,7 +173,7 @@ function matchParts (first: string[], second: (string | Text)[]): boolean {
|
||||
function getAliasPath ({ def, path }: SiType): string | null {
|
||||
// specific logic for weights - we override when non-complex struct
|
||||
// (as applied in Weight 1.5 where we also have `Compact<{ refTime: u64 }>)
|
||||
if (['pezframe_support::weights::weight_v2::Weight', 'frame_support::weights::weight_v2::Weight', 'pezsp_weights::weight_v2::Weight', 'sp_weights::weight_v2::Weight'].includes(path.join('::'))) {
|
||||
if (['pezframe_support::weights::weight_v2::Weight', 'pezsp_weights::weight_v2::Weight'].includes(path.join('::'))) {
|
||||
return !def.isComposite || def.asComposite.fields.length === 1
|
||||
? 'WeightV1'
|
||||
: null;
|
||||
@@ -228,8 +219,8 @@ function extractNameFlat (portable: PortableType[], lookupIndex: number, params:
|
||||
|
||||
// Remove ::{generic, misc, pallet, traits, types}::
|
||||
if (i !== 1 || !PATH_RM_INDEX_1.includes(l)) {
|
||||
// sp_runtime::generic::digest::Digest -> sp_runtime::generic::Digest
|
||||
// sp_runtime::multiaddress::MultiAddress -> sp_runtime::MultiAddress
|
||||
// pezsp_runtime::generic::digest::Digest -> pezsp_runtime::generic::Digest
|
||||
// pezsp_runtime::multiaddress::MultiAddress -> pezsp_runtime::MultiAddress
|
||||
if (l !== lowers[i + 1]) {
|
||||
name += camels[i];
|
||||
}
|
||||
@@ -428,7 +419,7 @@ function registerTypes (lookup: PortableRegistry, lookups: Record<string, string
|
||||
const siSignature = lookup.getSiType(sigParam.type.unwrap());
|
||||
const nsSignature = siSignature.path.join('::');
|
||||
let nsAccountId = siAddress.path.join('::');
|
||||
const isMultiAddress = nsAccountId === 'pezsp_runtime::multiaddress::MultiAddress' || nsAccountId === 'sp_runtime::multiaddress::MultiAddress';
|
||||
const isMultiAddress = nsAccountId === 'pezsp_runtime::multiaddress::MultiAddress';
|
||||
|
||||
// With multiaddress, we check the first type param again
|
||||
if (isMultiAddress) {
|
||||
@@ -446,7 +437,7 @@ function registerTypes (lookup: PortableRegistry, lookups: Record<string, string
|
||||
Address: isMultiAddress
|
||||
? 'MultiAddress'
|
||||
: 'AccountId',
|
||||
ExtrinsicSignature: ['pezsp_runtime::MultiSignature', 'sp_runtime::MultiSignature'].includes(nsSignature)
|
||||
ExtrinsicSignature: nsSignature === 'pezsp_runtime::MultiSignature'
|
||||
? 'MultiSignature'
|
||||
: names[sigParam.type.unwrap().toNumber()] || 'MultiSignature'
|
||||
});
|
||||
@@ -467,7 +458,7 @@ function extractAliases (params: TypeInfoParams, isContract?: boolean): Record<n
|
||||
|
||||
alias[type.unwrap().toNumber()] = 'Call';
|
||||
} else if (hasParams && !isContract) {
|
||||
l.warn('Unable to determine runtime Call type, cannot inspect sp_runtime::generic::unchecked_extrinsic::UncheckedExtrinsic');
|
||||
l.warn('Unable to determine runtime Call type, cannot inspect pezsp_runtime::generic::unchecked_extrinsic::UncheckedExtrinsic');
|
||||
}
|
||||
|
||||
if (params.PezframeSystemEventRecord) {
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
|
||||
// Do not edit, auto-generated by @pezkuwi/dev
|
||||
|
||||
export const packageInfo = { name: '@pezkuwi/types', path: 'auto', type: 'auto', version: '16.5.18' };
|
||||
export const packageInfo = { name: '@pezkuwi/types', path: 'auto', type: 'auto', version: '16.5.34' };
|
||||
|
||||
@@ -0,0 +1,83 @@
|
||||
// Test: 10 HEZ transfer using @pezkuwi/api
|
||||
import { ApiPromise, WsProvider, Keyring } from './packages/api/build/index.js';
|
||||
|
||||
const SENDER_SEED = 'crucial surge north silly divert throw habit fury zebra fabric tank output';
|
||||
const RECEIVER = '5D26fJAsbFnaarz85Kv51Eau52nsTBs3L4sYQDbLMtWHhuLU';
|
||||
const RPC_ENDPOINT = 'ws://62.146.235.186:9944'; // VPS2
|
||||
|
||||
const main = async () => {
|
||||
console.log('Connecting to PezkuwiChain Mainnet...');
|
||||
|
||||
const provider = new WsProvider(RPC_ENDPOINT);
|
||||
const api = await ApiPromise.create({
|
||||
provider,
|
||||
signedExtensions: {
|
||||
AuthorizeCall: {
|
||||
extrinsic: {},
|
||||
payload: {}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
console.log('Connected! Chain:', (await api.rpc.system.chain()).toString());
|
||||
console.log('Block:', (await api.rpc.chain.getHeader()).number.toString());
|
||||
|
||||
// Setup keyring and sender
|
||||
const keyring = new Keyring({ type: 'sr25519' });
|
||||
const sender = keyring.addFromUri(SENDER_SEED);
|
||||
|
||||
console.log('\nSender address:', sender.address);
|
||||
console.log('Receiver address:', RECEIVER);
|
||||
|
||||
// Check sender balance before
|
||||
const balanceBefore = await api.query.balances.account(sender.address);
|
||||
console.log('\nSender balance before:', (BigInt(balanceBefore.free.toString()) / 10n**18n).toString(), 'HEZ');
|
||||
|
||||
// 10 HEZ = 10 * 10^18 TYR (smallest unit)
|
||||
const amount = 10n * 10n**18n;
|
||||
console.log('\nTransferring 10 HEZ...');
|
||||
|
||||
// Create and send transaction
|
||||
const tx = api.tx.balances.transferAllowDeath(RECEIVER, amount);
|
||||
|
||||
const hash = await new Promise((resolve, reject) => {
|
||||
tx.signAndSend(sender, ({ status, dispatchError }) => {
|
||||
console.log('Status:', status.type);
|
||||
|
||||
if (status.isInBlock) {
|
||||
console.log('Included in block:', status.asInBlock.toHex());
|
||||
}
|
||||
|
||||
if (status.isFinalized) {
|
||||
if (dispatchError) {
|
||||
if (dispatchError.isModule) {
|
||||
const decoded = api.registry.findMetaError(dispatchError.asModule);
|
||||
reject(new Error(`${decoded.section}.${decoded.name}: ${decoded.docs.join(' ')}`));
|
||||
} else {
|
||||
reject(new Error(dispatchError.toString()));
|
||||
}
|
||||
} else {
|
||||
console.log('Finalized in block:', status.asFinalized.toHex());
|
||||
resolve(status.asFinalized.toHex());
|
||||
}
|
||||
}
|
||||
}).catch(reject);
|
||||
});
|
||||
|
||||
// Check balances after
|
||||
const senderBalanceAfter = await api.query.balances.account(sender.address);
|
||||
const receiverBalanceAfter = await api.query.balances.account(RECEIVER);
|
||||
|
||||
console.log('\n--- RESULT ---');
|
||||
console.log('Transaction hash:', hash);
|
||||
console.log('Sender balance after:', (BigInt(senderBalanceAfter.free.toString()) / 10n**18n).toString(), 'HEZ');
|
||||
console.log('Receiver balance after:', (BigInt(receiverBalanceAfter.free.toString()) / 10n**18n).toString(), 'HEZ');
|
||||
|
||||
await api.disconnect();
|
||||
console.log('\nTest completed successfully!');
|
||||
};
|
||||
|
||||
main().catch((err) => {
|
||||
console.error('Error:', err.message || err);
|
||||
process.exit(1);
|
||||
});
|
||||
+2
-1
@@ -2,7 +2,8 @@
|
||||
"extends": "@pezkuwi/dev/config/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedLocals": false,
|
||||
"skipLibCheck": true,
|
||||
"paths": {
|
||||
"@pezkuwi/api": ["api/src/index.ts"],
|
||||
"@pezkuwi/api/base": ["api/src/base/index.ts"],
|
||||
|
||||
+2
-1
@@ -1,7 +1,8 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"composite": true,
|
||||
"noUnusedLocals": true
|
||||
"noUnusedLocals": false,
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"files": [],
|
||||
"references": [
|
||||
|
||||
Reference in New Issue
Block a user