@@ -10,7 +10,7 @@ import type { Bytes, Null, Option, Result, U8aFixed, Vec, bool, u128, u16, u32,
1010import type { ITuple } from '@polkadot/types-codec/types' ;
1111import type { EthereumAddress } from '@polkadot/types/interfaces/eth' ;
1212import type { AccountId32 , H256 , Perbill , Perquintill } from '@polkadot/types/interfaces/runtime' ;
13- import type { FrameSupportDispatchDispatchInfo , FrameSupportDispatchPostDispatchInfo , FrameSupportPreimagesBounded , FrameSupportTokensMiscBalanceStatus , KusamaRuntimeProxyType , PalletConvictionVotingTally , PalletDemocracyVoteAccountVote , PalletDemocracyVoteThreshold , PalletElectionProviderMultiPhaseElectionCompute , PalletElectionProviderMultiPhasePhase , PalletImOnlineSr25519AppSr25519Public , PalletMultisigTimepoint , PalletNominationPoolsPoolState , PalletRankedCollectiveTally , PalletRankedCollectiveVoteRecord , PalletStakingExposure , PalletStakingForcing , PalletStakingValidatorPrefs , PolkadotParachainPrimitivesHrmpChannelId , PolkadotPrimitivesV2CandidateReceipt , PolkadotRuntimeParachainsDisputesDisputeLocation , PolkadotRuntimeParachainsDisputesDisputeResult , SpFinalityGrandpaAppPublic , SpNposElectionsElectionScore , SpRuntimeDispatchError , SpRuntimeDispatchErrorWithPostInfo , SpWeightsWeightV2Weight , XcmV3MultiLocation , XcmV3MultiassetMultiAssets , XcmV3Response , XcmV3TraitsError , XcmV3TraitsOutcome , XcmV3Xcm , XcmVersionedMultiAssets , XcmVersionedMultiLocation } from '@polkadot/types/lookup' ;
13+ import type { FrameSupportDispatchDispatchInfo , FrameSupportDispatchPostDispatchInfo , FrameSupportPreimagesBounded , FrameSupportTokensMiscBalanceStatus , KusamaRuntimeProxyType , PalletConvictionVotingTally , PalletDemocracyMetadataOwner , PalletDemocracyVoteAccountVote , PalletDemocracyVoteThreshold , PalletElectionProviderMultiPhaseElectionCompute , PalletElectionProviderMultiPhasePhase , PalletImOnlineSr25519AppSr25519Public , PalletMultisigTimepoint , PalletNominationPoolsPoolState , PalletRankedCollectiveTally , PalletRankedCollectiveVoteRecord , PalletStakingExposure , PalletStakingForcing , PalletStakingValidatorPrefs , PolkadotParachainPrimitivesHrmpChannelId , PolkadotPrimitivesV2CandidateReceipt , PolkadotRuntimeParachainsDisputesDisputeLocation , PolkadotRuntimeParachainsDisputesDisputeResult , SpFinalityGrandpaAppPublic , SpNposElectionsElectionScore , SpRuntimeDispatchError , SpRuntimeDispatchErrorWithPostInfo , SpWeightsWeightV2Weight , XcmV3MultiLocation , XcmV3MultiassetMultiAssets , XcmV3Response , XcmV3TraitsError , XcmV3TraitsOutcome , XcmV3Xcm , XcmVersionedMultiAssets , XcmVersionedMultiLocation } from '@polkadot/types/lookup' ;
1414
1515export type __AugmentedEvent < ApiType extends ApiTypes > = AugmentedEvent < ApiType > ;
1616
@@ -281,6 +281,18 @@ declare module '@polkadot/api-base/types/events' {
281281 * An external proposal has been tabled.
282282 **/
283283 ExternalTabled : AugmentedEvent < ApiType , [ ] > ;
284+ /**
285+ * Metadata for a proposal or a referendum has been cleared.
286+ **/
287+ MetadataCleared : AugmentedEvent < ApiType , [ owner : PalletDemocracyMetadataOwner , hash_ : H256 ] , { owner : PalletDemocracyMetadataOwner , hash_ : H256 } > ;
288+ /**
289+ * Metadata for a proposal or a referendum has been set.
290+ **/
291+ MetadataSet : AugmentedEvent < ApiType , [ owner : PalletDemocracyMetadataOwner , hash_ : H256 ] , { owner : PalletDemocracyMetadataOwner , hash_ : H256 } > ;
292+ /**
293+ * Metadata has been transferred to new owner.
294+ **/
295+ MetadataTransferred : AugmentedEvent < ApiType , [ prevOwner : PalletDemocracyMetadataOwner , owner : PalletDemocracyMetadataOwner , hash_ : H256 ] , { prevOwner : PalletDemocracyMetadataOwner , owner : PalletDemocracyMetadataOwner , hash_ : H256 } > ;
284296 /**
285297 * A proposal has been rejected by referendum.
286298 **/
@@ -451,6 +463,14 @@ declare module '@polkadot/api-base/types/events' {
451463 * A referendum has been killed.
452464 **/
453465 Killed : AugmentedEvent < ApiType , [ index : u32 , tally : PalletRankedCollectiveTally ] , { index : u32 , tally : PalletRankedCollectiveTally } > ;
466+ /**
467+ * Metadata for a referendum has been cleared.
468+ **/
469+ MetadataCleared : AugmentedEvent < ApiType , [ index : u32 , hash_ : H256 ] , { index : u32 , hash_ : H256 } > ;
470+ /**
471+ * Metadata for a referendum has been set.
472+ **/
473+ MetadataSet : AugmentedEvent < ApiType , [ index : u32 , hash_ : H256 ] , { index : u32 , hash_ : H256 } > ;
454474 /**
455475 * A proposal has been rejected by referendum.
456476 **/
@@ -1025,6 +1045,14 @@ declare module '@polkadot/api-base/types/events' {
10251045 * A referendum has been killed.
10261046 **/
10271047 Killed : AugmentedEvent < ApiType , [ index : u32 , tally : PalletConvictionVotingTally ] , { index : u32 , tally : PalletConvictionVotingTally } > ;
1048+ /**
1049+ * Metadata for a referendum has been cleared.
1050+ **/
1051+ MetadataCleared : AugmentedEvent < ApiType , [ index : u32 , hash_ : H256 ] , { index : u32 , hash_ : H256 } > ;
1052+ /**
1053+ * Metadata for a referendum has been set.
1054+ **/
1055+ MetadataSet : AugmentedEvent < ApiType , [ index : u32 , hash_ : H256 ] , { index : u32 , hash_ : H256 } > ;
10281056 /**
10291057 * A proposal has been rejected by referendum.
10301058 **/
@@ -1155,6 +1183,10 @@ declare module '@polkadot/api-base/types/events' {
11551183 * A new \[max\] member count has been set
11561184 **/
11571185 NewMaxMembers : AugmentedEvent < ApiType , [ max : u32 ] , { max : u32 } > ;
1186+ /**
1187+ * A group of members has been choosen as Skeptics
1188+ **/
1189+ SkepticsChosen : AugmentedEvent < ApiType , [ skeptics : Vec < AccountId32 > ] , { skeptics : Vec < AccountId32 > } > ;
11581190 /**
11591191 * A suspended member has been judged.
11601192 **/
0 commit comments