git.delta.rocks / unique-network / refs/commits / 7fa45b56518f

difftreelog

source

tests/src/interfaces/augment-api-events.ts57.2 KiBsourcehistory
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/api-base/types/events';78import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, u16, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportPreimagesBounded, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletDemocracyMetadataOwner, PalletDemocracyVoteAccountVote, PalletDemocracyVoteThreshold, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletStateTrieMigrationError, PalletStateTrieMigrationMigrationCompute, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';1314export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1516declare module '@polkadot/api-base/types/events' {17  interface AugmentedEvents<ApiType extends ApiTypes> {18    appPromotion: {19      /**20       * The admin was set21       * 22       * # Arguments23       * * AccountId: account address of the admin24       **/25      SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;26      /**27       * Staking was performed28       * 29       * # Arguments30       * * AccountId: account of the staker31       * * Balance : staking amount32       **/33      Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;34      /**35       * Staking recalculation was performed36       * 37       * # Arguments38       * * AccountId: account of the staker.39       * * Balance : recalculation base40       * * Balance : total income41       **/42      StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;43      /**44       * Unstaking was performed45       * 46       * # Arguments47       * * AccountId: account of the staker48       * * Balance : unstaking amount49       **/50      Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;51      /**52       * Generic event53       **/54      [key: string]: AugmentedEvent<ApiType>;55    };56    balances: {57      /**58       * A balance was set by root.59       **/60      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { who: AccountId32, free: u128 }>;61      /**62       * Some amount was burned from an account.63       **/64      Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;65      /**66       * Some amount was deposited (e.g. for transaction fees).67       **/68      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;69      /**70       * An account was removed whose balance was non-zero but below ExistentialDeposit,71       * resulting in an outright loss.72       **/73      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;74      /**75       * An account was created with some free balance.76       **/77      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;78      /**79       * Some balance was frozen.80       **/81      Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;82      /**83       * Total issuance was increased by `amount`, creating a credit to be balanced.84       **/85      Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;86      /**87       * Some balance was locked.88       **/89      Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;90      /**91       * Some amount was minted into an account.92       **/93      Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;94      /**95       * Total issuance was decreased by `amount`, creating a debt to be balanced.96       **/97      Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;98      /**99       * Some balance was reserved (moved from free to reserved).100       **/101      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;102      /**103       * Some balance was moved from the reserve of the first account to the second account.104       * Final argument indicates the destination balance type.105       **/106      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;107      /**108       * Some amount was restored into an account.109       **/110      Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;111      /**112       * Some amount was removed from the account (e.g. for misbehavior).113       **/114      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;115      /**116       * Some amount was suspended from an account (it can be restored later).117       **/118      Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;119      /**120       * Some balance was thawed.121       **/122      Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;123      /**124       * Transfer succeeded.125       **/126      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;127      /**128       * Some balance was unlocked.129       **/130      Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;131      /**132       * Some balance was unreserved (moved from reserved to free).133       **/134      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;135      /**136       * An account was upgraded.137       **/138      Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;139      /**140       * Some amount was withdrawn from the account (e.g. for transaction fees).141       **/142      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;143      /**144       * Generic event145       **/146      [key: string]: AugmentedEvent<ApiType>;147    };148    collatorSelection: {149      CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;150      CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;151      InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;152      InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;153      LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;154      LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;155      /**156       * Generic event157       **/158      [key: string]: AugmentedEvent<ApiType>;159    };160    common: {161      /**162       * Address was added to the allow list.163       **/164      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;165      /**166       * Address was removed from the allow list.167       **/168      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;169      /**170       * Amount pieces of token owned by `sender` was approved for `spender`.171       **/172      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;173      /**174       * A `sender` approves operations on all owned tokens for `spender`.175       **/176      ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;177      /**178       * Collection admin was added.179       **/180      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;181      /**182       * Collection admin was removed.183       **/184      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;185      /**186       * New collection was created187       **/188      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;189      /**190       * New collection was destroyed191       **/192      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;193      /**194       * Collection limits were set.195       **/196      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;197      /**198       * Collection owned was changed.199       **/200      CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;201      /**202       * Collection permissions were set.203       **/204      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;205      /**206       * The property has been deleted.207       **/208      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;209      /**210       * The colletion property has been added or edited.211       **/212      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;213      /**214       * Collection sponsor was removed.215       **/216      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;217      /**218       * Collection sponsor was set.219       **/220      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;221      /**222       * New item was created.223       **/224      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;225      /**226       * Collection item was burned.227       **/228      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;229      /**230       * The token property permission of a collection has been set.231       **/232      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;233      /**234       * New sponsor was confirm.235       **/236      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;237      /**238       * The token property has been deleted.239       **/240      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;241      /**242       * The token property has been added or edited.243       **/244      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;245      /**246       * Item was transferred247       **/248      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;249      /**250       * Generic event251       **/252      [key: string]: AugmentedEvent<ApiType>;253    };254    configuration: {255      NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;256      NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;257      NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;258      /**259       * Generic event260       **/261      [key: string]: AugmentedEvent<ApiType>;262    };263    council: {264      /**265       * A motion was approved by the required threshold.266       **/267      Approved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;268      /**269       * A proposal was closed because its threshold was reached or after its duration was up.270       **/271      Closed: AugmentedEvent<ApiType, [proposalHash: H256, yes: u32, no: u32], { proposalHash: H256, yes: u32, no: u32 }>;272      /**273       * A motion was not approved by the required threshold.274       **/275      Disapproved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;276      /**277       * A motion was executed; result will be `Ok` if it returned without error.278       **/279      Executed: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;280      /**281       * A single member did some action; result will be `Ok` if it returned without error.282       **/283      MemberExecuted: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;284      /**285       * A motion (given hash) has been proposed (by given account) with a threshold (given286       * `MemberCount`).287       **/288      Proposed: AugmentedEvent<ApiType, [account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32], { account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32 }>;289      /**290       * A motion (given hash) has been voted on by given account, leaving291       * a tally (yes votes and no votes given respectively as `MemberCount`).292       **/293      Voted: AugmentedEvent<ApiType, [account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32], { account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32 }>;294      /**295       * Generic event296       **/297      [key: string]: AugmentedEvent<ApiType>;298    };299    councilMembership: {300      /**301       * Phantom member, never used.302       **/303      Dummy: AugmentedEvent<ApiType, []>;304      /**305       * One of the members' keys changed.306       **/307      KeyChanged: AugmentedEvent<ApiType, []>;308      /**309       * The given member was added; see the transaction for who.310       **/311      MemberAdded: AugmentedEvent<ApiType, []>;312      /**313       * The given member was removed; see the transaction for who.314       **/315      MemberRemoved: AugmentedEvent<ApiType, []>;316      /**317       * The membership was reset; see the transaction for who the new set is.318       **/319      MembersReset: AugmentedEvent<ApiType, []>;320      /**321       * Two members were swapped; see the transaction for who.322       **/323      MembersSwapped: AugmentedEvent<ApiType, []>;324      /**325       * Generic event326       **/327      [key: string]: AugmentedEvent<ApiType>;328    };329    cumulusXcm: {330      /**331       * Downward message executed with the given outcome.332       * \[ id, outcome \]333       **/334      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV3TraitsOutcome]>;335      /**336       * Downward message is invalid XCM.337       * \[ id \]338       **/339      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;340      /**341       * Downward message is unsupported version of XCM.342       * \[ id \]343       **/344      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;345      /**346       * Generic event347       **/348      [key: string]: AugmentedEvent<ApiType>;349    };350    democracy: {351      /**352       * A proposal_hash has been blacklisted permanently.353       **/354      Blacklisted: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;355      /**356       * A referendum has been cancelled.357       **/358      Cancelled: AugmentedEvent<ApiType, [refIndex: u32], { refIndex: u32 }>;359      /**360       * An account has delegated their vote to another account.361       **/362      Delegated: AugmentedEvent<ApiType, [who: AccountId32, target: AccountId32], { who: AccountId32, target: AccountId32 }>;363      /**364       * An external proposal has been tabled.365       **/366      ExternalTabled: AugmentedEvent<ApiType, []>;367      /**368       * Metadata for a proposal or a referendum has been cleared.369       **/370      MetadataCleared: AugmentedEvent<ApiType, [owner: PalletDemocracyMetadataOwner, hash_: H256], { owner: PalletDemocracyMetadataOwner, hash_: H256 }>;371      /**372       * Metadata for a proposal or a referendum has been set.373       **/374      MetadataSet: AugmentedEvent<ApiType, [owner: PalletDemocracyMetadataOwner, hash_: H256], { owner: PalletDemocracyMetadataOwner, hash_: H256 }>;375      /**376       * Metadata has been transferred to new owner.377       **/378      MetadataTransferred: AugmentedEvent<ApiType, [prevOwner: PalletDemocracyMetadataOwner, owner: PalletDemocracyMetadataOwner, hash_: H256], { prevOwner: PalletDemocracyMetadataOwner, owner: PalletDemocracyMetadataOwner, hash_: H256 }>;379      /**380       * A proposal has been rejected by referendum.381       **/382      NotPassed: AugmentedEvent<ApiType, [refIndex: u32], { refIndex: u32 }>;383      /**384       * A proposal has been approved by referendum.385       **/386      Passed: AugmentedEvent<ApiType, [refIndex: u32], { refIndex: u32 }>;387      /**388       * A proposal got canceled.389       **/390      ProposalCanceled: AugmentedEvent<ApiType, [propIndex: u32], { propIndex: u32 }>;391      /**392       * A motion has been proposed by a public account.393       **/394      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32, deposit: u128], { proposalIndex: u32, deposit: u128 }>;395      /**396       * An account has secconded a proposal397       **/398      Seconded: AugmentedEvent<ApiType, [seconder: AccountId32, propIndex: u32], { seconder: AccountId32, propIndex: u32 }>;399      /**400       * A referendum has begun.401       **/402      Started: AugmentedEvent<ApiType, [refIndex: u32, threshold: PalletDemocracyVoteThreshold], { refIndex: u32, threshold: PalletDemocracyVoteThreshold }>;403      /**404       * A public proposal has been tabled for referendum vote.405       **/406      Tabled: AugmentedEvent<ApiType, [proposalIndex: u32, deposit: u128], { proposalIndex: u32, deposit: u128 }>;407      /**408       * An account has cancelled a previous delegation operation.409       **/410      Undelegated: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;411      /**412       * An external proposal has been vetoed.413       **/414      Vetoed: AugmentedEvent<ApiType, [who: AccountId32, proposalHash: H256, until: u32], { who: AccountId32, proposalHash: H256, until: u32 }>;415      /**416       * An account has voted in a referendum417       **/418      Voted: AugmentedEvent<ApiType, [voter: AccountId32, refIndex: u32, vote: PalletDemocracyVoteAccountVote], { voter: AccountId32, refIndex: u32, vote: PalletDemocracyVoteAccountVote }>;419      /**420       * Generic event421       **/422      [key: string]: AugmentedEvent<ApiType>;423    };424    dmpQueue: {425      /**426       * Downward message executed with the given outcome.427       **/428      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { messageId: U8aFixed, outcome: XcmV3TraitsOutcome }>;429      /**430       * Downward message is invalid XCM.431       **/432      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;433      /**434       * The maximum number of downward messages was.435       **/436      MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;437      /**438       * Downward message is overweight and was placed in the overweight queue.439       **/440      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;441      /**442       * Downward message from the overweight queue was executed.443       **/444      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;445      /**446       * Downward message is unsupported version of XCM.447       **/448      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;449      /**450       * The weight limit for handling downward messages was reached.451       **/452      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;453      /**454       * Generic event455       **/456      [key: string]: AugmentedEvent<ApiType>;457    };458    ethereum: {459      /**460       * An ethereum transaction was successfully executed.461       **/462      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes }>;463      /**464       * Generic event465       **/466      [key: string]: AugmentedEvent<ApiType>;467    };468    evm: {469      /**470       * A contract has been created at given address.471       **/472      Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;473      /**474       * A contract was attempted to be created, but the execution failed.475       **/476      CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;477      /**478       * A contract has been executed successfully with states applied.479       **/480      Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;481      /**482       * A contract has been executed with errors. States are reverted with only gas fees applied.483       **/484      ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;485      /**486       * Ethereum events from contracts.487       **/488      Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;489      /**490       * Generic event491       **/492      [key: string]: AugmentedEvent<ApiType>;493    };494    evmContractHelpers: {495      /**496       * Collection sponsor was removed.497       **/498      ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;499      /**500       * Contract sponsor was set.501       **/502      ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;503      /**504       * New sponsor was confirm.505       **/506      ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;507      /**508       * Generic event509       **/510      [key: string]: AugmentedEvent<ApiType>;511    };512    evmMigration: {513      /**514       * This event is used in benchmarking and can be used for tests515       **/516      TestEvent: AugmentedEvent<ApiType, []>;517      /**518       * Generic event519       **/520      [key: string]: AugmentedEvent<ApiType>;521    };522    fellowshipCollective: {523      /**524       * A member `who` has been added.525       **/526      MemberAdded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;527      /**528       * The member `who` of given `rank` has been removed from the collective.529       **/530      MemberRemoved: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], { who: AccountId32, rank: u16 }>;531      /**532       * The member `who`se rank has been changed to the given `rank`.533       **/534      RankChanged: AugmentedEvent<ApiType, [who: AccountId32, rank: u16], { who: AccountId32, rank: u16 }>;535      /**536       * The member `who` has voted for the `poll` with the given `vote` leading to an updated537       * `tally`.538       **/539      Voted: AugmentedEvent<ApiType, [who: AccountId32, poll: u32, vote: PalletRankedCollectiveVoteRecord, tally: PalletRankedCollectiveTally], { who: AccountId32, poll: u32, vote: PalletRankedCollectiveVoteRecord, tally: PalletRankedCollectiveTally }>;540      /**541       * Generic event542       **/543      [key: string]: AugmentedEvent<ApiType>;544    };545    fellowshipReferenda: {546      /**547       * A referendum has been approved and its proposal has been scheduled.548       **/549      Approved: AugmentedEvent<ApiType, [index: u32], { index: u32 }>;550      /**551       * A referendum has been cancelled.552       **/553      Cancelled: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;554      ConfirmAborted: AugmentedEvent<ApiType, [index: u32], { index: u32 }>;555      /**556       * A referendum has ended its confirmation phase and is ready for approval.557       **/558      Confirmed: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;559      ConfirmStarted: AugmentedEvent<ApiType, [index: u32], { index: u32 }>;560      /**561       * The decision deposit has been placed.562       **/563      DecisionDepositPlaced: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;564      /**565       * The decision deposit has been refunded.566       **/567      DecisionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;568      /**569       * A referendum has moved into the deciding phase.570       **/571      DecisionStarted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded, tally: PalletRankedCollectiveTally], { index: u32, track: u16, proposal: FrameSupportPreimagesBounded, tally: PalletRankedCollectiveTally }>;572      /**573       * A deposit has been slashaed.574       **/575      DepositSlashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;576      /**577       * A referendum has been killed.578       **/579      Killed: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;580      /**581       * Metadata for a referendum has been cleared.582       **/583      MetadataCleared: AugmentedEvent<ApiType, [index: u32, hash_: H256], { index: u32, hash_: H256 }>;584      /**585       * Metadata for a referendum has been set.586       **/587      MetadataSet: AugmentedEvent<ApiType, [index: u32, hash_: H256], { index: u32, hash_: H256 }>;588      /**589       * A proposal has been rejected by referendum.590       **/591      Rejected: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;592      /**593       * The submission deposit has been refunded.594       **/595      SubmissionDepositRefunded: AugmentedEvent<ApiType, [index: u32, who: AccountId32, amount: u128], { index: u32, who: AccountId32, amount: u128 }>;596      /**597       * A referendum has been submitted.598       **/599      Submitted: AugmentedEvent<ApiType, [index: u32, track: u16, proposal: FrameSupportPreimagesBounded], { index: u32, track: u16, proposal: FrameSupportPreimagesBounded }>;600      /**601       * A referendum has been timed out without being decided.602       **/603      TimedOut: AugmentedEvent<ApiType, [index: u32, tally: PalletRankedCollectiveTally], { index: u32, tally: PalletRankedCollectiveTally }>;604      /**605       * Generic event606       **/607      [key: string]: AugmentedEvent<ApiType>;608    };609    foreignAssets: {610      /**611       * The asset registered.612       **/613      AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;614      /**615       * The asset updated.616       **/617      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;618      /**619       * The foreign asset registered.620       **/621      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;622      /**623       * The foreign asset updated.624       **/625      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;626      /**627       * Generic event628       **/629      [key: string]: AugmentedEvent<ApiType>;630    };631    identity: {632      /**633       * A number of identities and associated info were forcibly inserted.634       **/635      IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;636      /**637       * A number of identities and all associated info were forcibly removed.638       **/639      IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;640      /**641       * A name was cleared, and the given balance returned.642       **/643      IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;644      /**645       * A name was removed and the given balance slashed.646       **/647      IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;648      /**649       * A name was set or reset (which will remove all judgements).650       **/651      IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;652      /**653       * A judgement was given by a registrar.654       **/655      JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;656      /**657       * A judgement was asked from a registrar.658       **/659      JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;660      /**661       * A judgement request was retracted.662       **/663      JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;664      /**665       * A registrar was added.666       **/667      RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;668      /**669       * A number of identities were forcibly updated with new sub-identities.670       **/671      SubIdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;672      /**673       * A sub-identity was added to an identity and the deposit paid.674       **/675      SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;676      /**677       * A sub-identity was removed from an identity and the deposit freed.678       **/679      SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;680      /**681       * A sub-identity was cleared, and the given deposit repatriated from the682       * main identity account to the sub-identity account.683       **/684      SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;685      /**686       * Generic event687       **/688      [key: string]: AugmentedEvent<ApiType>;689    };690    maintenance: {691      MaintenanceDisabled: AugmentedEvent<ApiType, []>;692      MaintenanceEnabled: AugmentedEvent<ApiType, []>;693      /**694       * Generic event695       **/696      [key: string]: AugmentedEvent<ApiType>;697    };698    parachainSystem: {699      /**700       * Downward messages were processed using the given weight.701       **/702      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;703      /**704       * Some downward messages have been received and will be processed.705       **/706      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;707      /**708       * An upgrade has been authorized.709       **/710      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;711      /**712       * An upward message was sent to the relay chain.713       **/714      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;715      /**716       * The validation function was applied as of the contained relay chain block number.717       **/718      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;719      /**720       * The relay-chain aborted the upgrade process.721       **/722      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;723      /**724       * The validation function has been scheduled to apply.725       **/726      ValidationFunctionStored: AugmentedEvent<ApiType, []>;727      /**728       * Generic event729       **/730      [key: string]: AugmentedEvent<ApiType>;731    };732    polkadotXcm: {733      /**734       * Some assets have been claimed from an asset trap735       * 736       * \[ hash, origin, assets \]737       **/738      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;739      /**740       * Some assets have been placed in an asset trap.741       * 742       * \[ hash, origin, assets \]743       **/744      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;745      /**746       * Execution of an XCM message was attempted.747       * 748       * \[ outcome \]749       **/750      Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>;751      /**752       * Fees were paid from a location for an operation (often for using `SendXcm`).753       * 754       * \[ paying location, fees \]755       **/756      FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;757      /**758       * Expected query response has been received but the querier location of the response does759       * not match the expected. The query remains registered for a later, valid, response to760       * be received and acted upon.761       * 762       * \[ origin location, id, expected querier, maybe actual querier \]763       **/764      InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;765      /**766       * Expected query response has been received but the expected querier location placed in767       * storage by this runtime previously cannot be decoded. The query remains registered.768       * 769       * This is unexpected (since a location placed in storage in a previously executing770       * runtime should be readable prior to query timeout) and dangerous since the possibly771       * valid response will be dropped. Manual governance intervention is probably going to be772       * needed.773       * 774       * \[ origin location, id \]775       **/776      InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;777      /**778       * Expected query response has been received but the origin location of the response does779       * not match that expected. The query remains registered for a later, valid, response to780       * be received and acted upon.781       * 782       * \[ origin location, id, expected location \]783       **/784      InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;785      /**786       * Expected query response has been received but the expected origin location placed in787       * storage by this runtime previously cannot be decoded. The query remains registered.788       * 789       * This is unexpected (since a location placed in storage in a previously executing790       * runtime should be readable prior to query timeout) and dangerous since the possibly791       * valid response will be dropped. Manual governance intervention is probably going to be792       * needed.793       * 794       * \[ origin location, id \]795       **/796      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;797      /**798       * Query response has been received and query is removed. The registered notification has799       * been dispatched and executed successfully.800       * 801       * \[ id, pallet index, call index \]802       **/803      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;804      /**805       * Query response has been received and query is removed. The dispatch was unable to be806       * decoded into a `Call`; this might be due to dispatch function having a signature which807       * is not `(origin, QueryId, Response)`.808       * 809       * \[ id, pallet index, call index \]810       **/811      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;812      /**813       * Query response has been received and query is removed. There was a general error with814       * dispatching the notification call.815       * 816       * \[ id, pallet index, call index \]817       **/818      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;819      /**820       * Query response has been received and query is removed. The registered notification could821       * not be dispatched because the dispatch weight is greater than the maximum weight822       * originally budgeted by this runtime for the query result.823       * 824       * \[ id, pallet index, call index, actual weight, max budgeted weight \]825       **/826      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;827      /**828       * A given location which had a version change subscription was dropped owing to an error829       * migrating the location to our new XCM format.830       * 831       * \[ location, query ID \]832       **/833      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;834      /**835       * A given location which had a version change subscription was dropped owing to an error836       * sending the notification to it.837       * 838       * \[ location, query ID, error \]839       **/840      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>;841      /**842       * Query response has been received and is ready for taking with `take_response`. There is843       * no registered notification call.844       * 845       * \[ id, response \]846       **/847      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>;848      /**849       * Received query response has been read and removed.850       * 851       * \[ id \]852       **/853      ResponseTaken: AugmentedEvent<ApiType, [u64]>;854      /**855       * A XCM message was sent.856       * 857       * \[ origin, destination, message \]858       **/859      Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;860      /**861       * The supported version of a location has been changed. This might be through an862       * automatic notification or a manual intervention.863       * 864       * \[ location, XCM version \]865       **/866      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>;867      /**868       * Query response received which does not match a registered query. This may be because a869       * matching query was never registered, it may be because it is a duplicate response, or870       * because the query timed out.871       * 872       * \[ origin location, id \]873       **/874      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;875      /**876       * An XCM version change notification message has been attempted to be sent.877       * 878       * The cost of sending it (borne by the chain) is included.879       * 880       * \[ destination, result, cost \]881       **/882      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;883      /**884       * We have requested that a remote chain sends us XCM version change notifications.885       * 886       * \[ destination location, cost \]887       **/888      VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;889      /**890       * A remote has requested XCM version change notification from us and we have honored it.891       * A version information message is sent to them and its cost is included.892       * 893       * \[ destination location, cost \]894       **/895      VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;896      /**897       * We have requested that a remote chain stops sending us XCM version change notifications.898       * 899       * \[ destination location, cost \]900       **/901      VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;902      /**903       * Generic event904       **/905      [key: string]: AugmentedEvent<ApiType>;906    };907    preimage: {908      /**909       * A preimage has ben cleared.910       **/911      Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;912      /**913       * A preimage has been noted.914       **/915      Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;916      /**917       * A preimage has been requested.918       **/919      Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;920      /**921       * Generic event922       **/923      [key: string]: AugmentedEvent<ApiType>;924    };925    scheduler: {926      /**927       * The call for the provided hash was not found so the task has been aborted.928       **/929      CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;930      /**931       * Canceled some task.932       **/933      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;934      /**935       * Dispatched some task.936       **/937      Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;938      /**939       * The given task was unable to be renewed since the agenda is full at that block.940       **/941      PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;942      /**943       * The given task can never be executed since it is overweight.944       **/945      PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;946      /**947       * Scheduled some task.948       **/949      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;950      /**951       * Generic event952       **/953      [key: string]: AugmentedEvent<ApiType>;954    };955    session: {956      /**957       * New session has happened. Note that the argument is the session index, not the958       * block number as the type might suggest.959       **/960      NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;961      /**962       * Generic event963       **/964      [key: string]: AugmentedEvent<ApiType>;965    };966    stateTrieMigration: {967      /**968       * The auto migration task finished.969       **/970      AutoMigrationFinished: AugmentedEvent<ApiType, []>;971      /**972       * Migration got halted due to an error or miss-configuration.973       **/974      Halted: AugmentedEvent<ApiType, [error: PalletStateTrieMigrationError], { error: PalletStateTrieMigrationError }>;975      /**976       * Given number of `(top, child)` keys were migrated respectively, with the given977       * `compute`.978       **/979      Migrated: AugmentedEvent<ApiType, [top: u32, child: u32, compute: PalletStateTrieMigrationMigrationCompute], { top: u32, child: u32, compute: PalletStateTrieMigrationMigrationCompute }>;980      /**981       * Some account got slashed by the given amount.982       **/983      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;984      /**985       * Generic event986       **/987      [key: string]: AugmentedEvent<ApiType>;988    };989    structure: {990      /**991       * Executed call on behalf of the token.992       **/993      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;994      /**995       * Generic event996       **/997      [key: string]: AugmentedEvent<ApiType>;998    };999    sudo: {1000      /**1001       * The \[sudoer\] just switched identity; the old key is supplied if one existed.1002       **/1003      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;1004      /**1005       * A sudo just took place. \[result\]1006       **/1007      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;1008      /**1009       * A sudo just took place. \[result\]1010       **/1011      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;1012      /**1013       * Generic event1014       **/1015      [key: string]: AugmentedEvent<ApiType>;1016    };1017    system: {1018      /**1019       * `:code` was updated.1020       **/1021      CodeUpdated: AugmentedEvent<ApiType, []>;1022      /**1023       * An extrinsic failed.1024       **/1025      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;1026      /**1027       * An extrinsic completed successfully.1028       **/1029      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;1030      /**1031       * An account was reaped.1032       **/1033      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;1034      /**1035       * A new account was created.1036       **/1037      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;1038      /**1039       * On on-chain remark happened.1040       **/1041      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;1042      /**1043       * Generic event1044       **/1045      [key: string]: AugmentedEvent<ApiType>;1046    };1047    technicalCommittee: {1048      /**1049       * A motion was approved by the required threshold.1050       **/1051      Approved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;1052      /**1053       * A proposal was closed because its threshold was reached or after its duration was up.1054       **/1055      Closed: AugmentedEvent<ApiType, [proposalHash: H256, yes: u32, no: u32], { proposalHash: H256, yes: u32, no: u32 }>;1056      /**1057       * A motion was not approved by the required threshold.1058       **/1059      Disapproved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;1060      /**1061       * A motion was executed; result will be `Ok` if it returned without error.1062       **/1063      Executed: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;1064      /**1065       * A single member did some action; result will be `Ok` if it returned without error.1066       **/1067      MemberExecuted: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;1068      /**1069       * A motion (given hash) has been proposed (by given account) with a threshold (given1070       * `MemberCount`).1071       **/1072      Proposed: AugmentedEvent<ApiType, [account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32], { account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32 }>;1073      /**1074       * A motion (given hash) has been voted on by given account, leaving1075       * a tally (yes votes and no votes given respectively as `MemberCount`).1076       **/1077      Voted: AugmentedEvent<ApiType, [account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32], { account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32 }>;1078      /**1079       * Generic event1080       **/1081      [key: string]: AugmentedEvent<ApiType>;1082    };1083    technicalCommitteeMembership: {1084      /**1085       * Phantom member, never used.1086       **/1087      Dummy: AugmentedEvent<ApiType, []>;1088      /**1089       * One of the members' keys changed.1090       **/1091      KeyChanged: AugmentedEvent<ApiType, []>;1092      /**1093       * The given member was added; see the transaction for who.1094       **/1095      MemberAdded: AugmentedEvent<ApiType, []>;1096      /**1097       * The given member was removed; see the transaction for who.1098       **/1099      MemberRemoved: AugmentedEvent<ApiType, []>;1100      /**1101       * The membership was reset; see the transaction for who the new set is.1102       **/1103      MembersReset: AugmentedEvent<ApiType, []>;1104      /**1105       * Two members were swapped; see the transaction for who.1106       **/1107      MembersSwapped: AugmentedEvent<ApiType, []>;1108      /**1109       * Generic event1110       **/1111      [key: string]: AugmentedEvent<ApiType>;1112    };1113    testUtils: {1114      BatchCompleted: AugmentedEvent<ApiType, []>;1115      ShouldRollback: AugmentedEvent<ApiType, []>;1116      ValueIsSet: AugmentedEvent<ApiType, []>;1117      /**1118       * Generic event1119       **/1120      [key: string]: AugmentedEvent<ApiType>;1121    };1122    tokens: {1123      /**1124       * A balance was set by root.1125       **/1126      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;1127      /**1128       * Deposited some balance into an account1129       **/1130      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1131      /**1132       * An account was removed whose balance was non-zero but below1133       * ExistentialDeposit, resulting in an outright loss.1134       **/1135      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1136      /**1137       * An account was created with some free balance.1138       **/1139      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1140      /**1141       * Some free balance was locked.1142       **/1143      Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1144      /**1145       * Some locked funds were unlocked1146       **/1147      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;1148      /**1149       * Some funds are locked1150       **/1151      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1152      /**1153       * Some balance was reserved (moved from free to reserved).1154       **/1155      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1156      /**1157       * Some reserved balance was repatriated (moved from reserved to1158       * another account).1159       **/1160      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;1161      /**1162       * Some balances were slashed (e.g. due to mis-behavior)1163       **/1164      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;1165      /**1166       * The total issuance of an currency has been set1167       **/1168      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;1169      /**1170       * Transfer succeeded.1171       **/1172      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;1173      /**1174       * Some locked balance was freed.1175       **/1176      Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1177      /**1178       * Some balance was unreserved (moved from reserved to free).1179       **/1180      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1181      /**1182       * Some balances were withdrawn (e.g. pay for transaction fee)1183       **/1184      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;1185      /**1186       * Generic event1187       **/1188      [key: string]: AugmentedEvent<ApiType>;1189    };1190    transactionPayment: {1191      /**1192       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,1193       * has been paid by `who`.1194       **/1195      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;1196      /**1197       * Generic event1198       **/1199      [key: string]: AugmentedEvent<ApiType>;1200    };1201    treasury: {1202      /**1203       * Some funds have been allocated.1204       **/1205      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;1206      /**1207       * Some of our funds have been burnt.1208       **/1209      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;1210      /**1211       * Some funds have been deposited.1212       **/1213      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;1214      /**1215       * New proposal.1216       **/1217      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;1218      /**1219       * A proposal was rejected; funds were slashed.1220       **/1221      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;1222      /**1223       * Spending has finished; this is the amount that rolls over until next spend.1224       **/1225      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;1226      /**1227       * A new spend proposal has been approved.1228       **/1229      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;1230      /**1231       * We have ended a spend period and will now allocate funds.1232       **/1233      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;1234      /**1235       * The inactive funds of the pallet have been updated.1236       **/1237      UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;1238      /**1239       * Generic event1240       **/1241      [key: string]: AugmentedEvent<ApiType>;1242    };1243    vesting: {1244      /**1245       * Claimed vesting.1246       **/1247      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;1248      /**1249       * Added new vesting schedule.1250       **/1251      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;1252      /**1253       * Updated vesting schedules.1254       **/1255      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;1256      /**1257       * Generic event1258       **/1259      [key: string]: AugmentedEvent<ApiType>;1260    };1261    xcmpQueue: {1262      /**1263       * Bad XCM format used.1264       **/1265      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;1266      /**1267       * Bad XCM version used.1268       **/1269      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;1270      /**1271       * Some XCM failed.1272       **/1273      Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;1274      /**1275       * An XCM exceeded the individual message weight budget.1276       **/1277      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;1278      /**1279       * An XCM from the overweight queue was executed with the given actual weight used.1280       **/1281      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;1282      /**1283       * Some XCM was executed ok.1284       **/1285      Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight }>;1286      /**1287       * An HRMP message was sent to a sibling parachain.1288       **/1289      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;1290      /**1291       * Generic event1292       **/1293      [key: string]: AugmentedEvent<ApiType>;1294    };1295    xTokens: {1296      /**1297       * Transferred `MultiAsset` with fee.1298       **/1299      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation], { sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation }>;1300      /**1301       * Generic event1302       **/1303      [key: string]: AugmentedEvent<ApiType>;1304    };1305  } // AugmentedEvents1306} // declare module