git.delta.rocks / unique-network / refs/commits / 951758d6f537

difftreelog

source

tests/src/interfaces/augment-api-events.ts60.5 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, PalletForeignAssetsAssetId, PalletForeignAssetsModuleAssetMetadata, PalletRankedCollectiveTally, PalletRankedCollectiveVoteRecord, PalletStateTrieMigrationError, PalletStateTrieMigrationMigrationCompute, SpRuntimeDispatchError, SpWeightsWeightV2Weight, StagingXcmV3MultiAsset, StagingXcmV3MultiLocation, StagingXcmV3MultiassetMultiAssets, StagingXcmV3Response, StagingXcmV3TraitsError, StagingXcmV3TraitsOutcome, StagingXcmV3Xcm, StagingXcmVersionedMultiAssets, StagingXcmVersionedMultiLocation } 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, StagingXcmV3TraitsOutcome]>;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, [messageHash: U8aFixed, messageId: U8aFixed, outcome: StagingXcmV3TraitsOutcome], { messageHash: U8aFixed, messageId: U8aFixed, outcome: StagingXcmV3TraitsOutcome }>;429      /**430       * Downward message is invalid XCM.431       **/432      InvalidFormat: AugmentedEvent<ApiType, [messageHash: U8aFixed], { messageHash: U8aFixed }>;433      /**434       * The maximum number of downward messages was reached.435       **/436      MaxMessagesExhausted: AugmentedEvent<ApiType, [messageHash: U8aFixed], { messageHash: U8aFixed }>;437      /**438       * Downward message is overweight and was placed in the overweight queue.439       **/440      OverweightEnqueued: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageHash: U8aFixed, 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, [messageHash: U8aFixed], { messageHash: U8aFixed }>;449      /**450       * The weight limit for handling downward messages was reached.451       **/452      WeightExhausted: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageHash: U8aFixed, 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: PalletForeignAssetsAssetId, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetId, metadata: PalletForeignAssetsModuleAssetMetadata }>;614      /**615       * The asset updated.616       **/617      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetId, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetId, metadata: PalletForeignAssetsModuleAssetMetadata }>;618      /**619       * The foreign asset registered.620       **/621      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: StagingXcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: StagingXcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;622      /**623       * The foreign asset updated.624       **/625      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: StagingXcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: StagingXcmV3MultiLocation, 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      AssetsClaimed: AugmentedEvent<ApiType, [hash_: H256, origin: StagingXcmV3MultiLocation, assets: StagingXcmVersionedMultiAssets], { hash_: H256, origin: StagingXcmV3MultiLocation, assets: StagingXcmVersionedMultiAssets }>;737      /**738       * Some assets have been placed in an asset trap.739       **/740      AssetsTrapped: AugmentedEvent<ApiType, [hash_: H256, origin: StagingXcmV3MultiLocation, assets: StagingXcmVersionedMultiAssets], { hash_: H256, origin: StagingXcmV3MultiLocation, assets: StagingXcmVersionedMultiAssets }>;741      /**742       * Execution of an XCM message was attempted.743       **/744      Attempted: AugmentedEvent<ApiType, [outcome: StagingXcmV3TraitsOutcome], { outcome: StagingXcmV3TraitsOutcome }>;745      /**746       * Fees were paid from a location for an operation (often for using `SendXcm`).747       **/748      FeesPaid: AugmentedEvent<ApiType, [paying: StagingXcmV3MultiLocation, fees: StagingXcmV3MultiassetMultiAssets], { paying: StagingXcmV3MultiLocation, fees: StagingXcmV3MultiassetMultiAssets }>;749      /**750       * Expected query response has been received but the querier location of the response does751       * not match the expected. The query remains registered for a later, valid, response to752       * be received and acted upon.753       **/754      InvalidQuerier: AugmentedEvent<ApiType, [origin: StagingXcmV3MultiLocation, queryId: u64, expectedQuerier: StagingXcmV3MultiLocation, maybeActualQuerier: Option<StagingXcmV3MultiLocation>], { origin: StagingXcmV3MultiLocation, queryId: u64, expectedQuerier: StagingXcmV3MultiLocation, maybeActualQuerier: Option<StagingXcmV3MultiLocation> }>;755      /**756       * Expected query response has been received but the expected querier location placed in757       * storage by this runtime previously cannot be decoded. The query remains registered.758       * 759       * This is unexpected (since a location placed in storage in a previously executing760       * runtime should be readable prior to query timeout) and dangerous since the possibly761       * valid response will be dropped. Manual governance intervention is probably going to be762       * needed.763       **/764      InvalidQuerierVersion: AugmentedEvent<ApiType, [origin: StagingXcmV3MultiLocation, queryId: u64], { origin: StagingXcmV3MultiLocation, queryId: u64 }>;765      /**766       * Expected query response has been received but the origin location of the response does767       * not match that expected. The query remains registered for a later, valid, response to768       * be received and acted upon.769       **/770      InvalidResponder: AugmentedEvent<ApiType, [origin: StagingXcmV3MultiLocation, queryId: u64, expectedLocation: Option<StagingXcmV3MultiLocation>], { origin: StagingXcmV3MultiLocation, queryId: u64, expectedLocation: Option<StagingXcmV3MultiLocation> }>;771      /**772       * Expected query response has been received but the expected origin location placed in773       * storage by this runtime previously cannot be decoded. The query remains registered.774       * 775       * This is unexpected (since a location placed in storage in a previously executing776       * runtime should be readable prior to query timeout) and dangerous since the possibly777       * valid response will be dropped. Manual governance intervention is probably going to be778       * needed.779       **/780      InvalidResponderVersion: AugmentedEvent<ApiType, [origin: StagingXcmV3MultiLocation, queryId: u64], { origin: StagingXcmV3MultiLocation, queryId: u64 }>;781      /**782       * Query response has been received and query is removed. The registered notification has783       * been dispatched and executed successfully.784       **/785      Notified: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], { queryId: u64, palletIndex: u8, callIndex: u8 }>;786      /**787       * Query response has been received and query is removed. The dispatch was unable to be788       * decoded into a `Call`; this might be due to dispatch function having a signature which789       * is not `(origin, QueryId, Response)`.790       **/791      NotifyDecodeFailed: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], { queryId: u64, palletIndex: u8, callIndex: u8 }>;792      /**793       * Query response has been received and query is removed. There was a general error with794       * dispatching the notification call.795       **/796      NotifyDispatchError: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8], { queryId: u64, palletIndex: u8, callIndex: u8 }>;797      /**798       * Query response has been received and query is removed. The registered notification799       * could not be dispatched because the dispatch weight is greater than the maximum weight800       * originally budgeted by this runtime for the query result.801       **/802      NotifyOverweight: AugmentedEvent<ApiType, [queryId: u64, palletIndex: u8, callIndex: u8, actualWeight: SpWeightsWeightV2Weight, maxBudgetedWeight: SpWeightsWeightV2Weight], { queryId: u64, palletIndex: u8, callIndex: u8, actualWeight: SpWeightsWeightV2Weight, maxBudgetedWeight: SpWeightsWeightV2Weight }>;803      /**804       * A given location which had a version change subscription was dropped owing to an error805       * migrating the location to our new XCM format.806       **/807      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [location: StagingXcmVersionedMultiLocation, queryId: u64], { location: StagingXcmVersionedMultiLocation, queryId: u64 }>;808      /**809       * A given location which had a version change subscription was dropped owing to an error810       * sending the notification to it.811       **/812      NotifyTargetSendFail: AugmentedEvent<ApiType, [location: StagingXcmV3MultiLocation, queryId: u64, error: StagingXcmV3TraitsError], { location: StagingXcmV3MultiLocation, queryId: u64, error: StagingXcmV3TraitsError }>;813      /**814       * Query response has been received and is ready for taking with `take_response`. There is815       * no registered notification call.816       **/817      ResponseReady: AugmentedEvent<ApiType, [queryId: u64, response: StagingXcmV3Response], { queryId: u64, response: StagingXcmV3Response }>;818      /**819       * Received query response has been read and removed.820       **/821      ResponseTaken: AugmentedEvent<ApiType, [queryId: u64], { queryId: u64 }>;822      /**823       * A XCM message was sent.824       **/825      Sent: AugmentedEvent<ApiType, [origin: StagingXcmV3MultiLocation, destination: StagingXcmV3MultiLocation, message: StagingXcmV3Xcm, messageId: U8aFixed], { origin: StagingXcmV3MultiLocation, destination: StagingXcmV3MultiLocation, message: StagingXcmV3Xcm, messageId: U8aFixed }>;826      /**827       * The supported version of a location has been changed. This might be through an828       * automatic notification or a manual intervention.829       **/830      SupportedVersionChanged: AugmentedEvent<ApiType, [location: StagingXcmV3MultiLocation, version: u32], { location: StagingXcmV3MultiLocation, version: u32 }>;831      /**832       * Query response received which does not match a registered query. This may be because a833       * matching query was never registered, it may be because it is a duplicate response, or834       * because the query timed out.835       **/836      UnexpectedResponse: AugmentedEvent<ApiType, [origin: StagingXcmV3MultiLocation, queryId: u64], { origin: StagingXcmV3MultiLocation, queryId: u64 }>;837      /**838       * An XCM version change notification message has been attempted to be sent.839       * 840       * The cost of sending it (borne by the chain) is included.841       **/842      VersionChangeNotified: AugmentedEvent<ApiType, [destination: StagingXcmV3MultiLocation, result: u32, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed], { destination: StagingXcmV3MultiLocation, result: u32, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed }>;843      /**844       * We have requested that a remote chain send us XCM version change notifications.845       **/846      VersionNotifyRequested: AugmentedEvent<ApiType, [destination: StagingXcmV3MultiLocation, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed], { destination: StagingXcmV3MultiLocation, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed }>;847      /**848       * A remote has requested XCM version change notification from us and we have honored it.849       * A version information message is sent to them and its cost is included.850       **/851      VersionNotifyStarted: AugmentedEvent<ApiType, [destination: StagingXcmV3MultiLocation, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed], { destination: StagingXcmV3MultiLocation, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed }>;852      /**853       * We have requested that a remote chain stops sending us XCM version change854       * notifications.855       **/856      VersionNotifyUnrequested: AugmentedEvent<ApiType, [destination: StagingXcmV3MultiLocation, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed], { destination: StagingXcmV3MultiLocation, cost: StagingXcmV3MultiassetMultiAssets, messageId: U8aFixed }>;857      /**858       * Generic event859       **/860      [key: string]: AugmentedEvent<ApiType>;861    };862    preimage: {863      /**864       * A preimage has ben cleared.865       **/866      Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;867      /**868       * A preimage has been noted.869       **/870      Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;871      /**872       * A preimage has been requested.873       **/874      Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;875      /**876       * Generic event877       **/878      [key: string]: AugmentedEvent<ApiType>;879    };880    scheduler: {881      /**882       * The call for the provided hash was not found so the task has been aborted.883       **/884      CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;885      /**886       * Canceled some task.887       **/888      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;889      /**890       * Dispatched some task.891       **/892      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> }>;893      /**894       * The given task was unable to be renewed since the agenda is full at that block.895       **/896      PeriodicFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;897      /**898       * The given task can never be executed since it is overweight.899       **/900      PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;901      /**902       * Scheduled some task.903       **/904      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;905      /**906       * Generic event907       **/908      [key: string]: AugmentedEvent<ApiType>;909    };910    session: {911      /**912       * New session has happened. Note that the argument is the session index, not the913       * block number as the type might suggest.914       **/915      NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;916      /**917       * Generic event918       **/919      [key: string]: AugmentedEvent<ApiType>;920    };921    stateTrieMigration: {922      /**923       * The auto migration task finished.924       **/925      AutoMigrationFinished: AugmentedEvent<ApiType, []>;926      /**927       * Migration got halted due to an error or miss-configuration.928       **/929      Halted: AugmentedEvent<ApiType, [error: PalletStateTrieMigrationError], { error: PalletStateTrieMigrationError }>;930      /**931       * Given number of `(top, child)` keys were migrated respectively, with the given932       * `compute`.933       **/934      Migrated: AugmentedEvent<ApiType, [top: u32, child: u32, compute: PalletStateTrieMigrationMigrationCompute], { top: u32, child: u32, compute: PalletStateTrieMigrationMigrationCompute }>;935      /**936       * Some account got slashed by the given amount.937       **/938      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;939      /**940       * Generic event941       **/942      [key: string]: AugmentedEvent<ApiType>;943    };944    structure: {945      /**946       * Executed call on behalf of the token.947       **/948      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;949      /**950       * Generic event951       **/952      [key: string]: AugmentedEvent<ApiType>;953    };954    sudo: {955      /**956       * The \[sudoer\] just switched identity; the old key is supplied if one existed.957       **/958      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;959      /**960       * A sudo just took place. \[result\]961       **/962      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;963      /**964       * A sudo just took place. \[result\]965       **/966      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;967      /**968       * Generic event969       **/970      [key: string]: AugmentedEvent<ApiType>;971    };972    system: {973      /**974       * `:code` was updated.975       **/976      CodeUpdated: AugmentedEvent<ApiType, []>;977      /**978       * An extrinsic failed.979       **/980      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;981      /**982       * An extrinsic completed successfully.983       **/984      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;985      /**986       * An account was reaped.987       **/988      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;989      /**990       * A new account was created.991       **/992      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;993      /**994       * On on-chain remark happened.995       **/996      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;997      /**998       * Generic event999       **/1000      [key: string]: AugmentedEvent<ApiType>;1001    };1002    technicalCommittee: {1003      /**1004       * A motion was approved by the required threshold.1005       **/1006      Approved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;1007      /**1008       * A proposal was closed because its threshold was reached or after its duration was up.1009       **/1010      Closed: AugmentedEvent<ApiType, [proposalHash: H256, yes: u32, no: u32], { proposalHash: H256, yes: u32, no: u32 }>;1011      /**1012       * A motion was not approved by the required threshold.1013       **/1014      Disapproved: AugmentedEvent<ApiType, [proposalHash: H256], { proposalHash: H256 }>;1015      /**1016       * A motion was executed; result will be `Ok` if it returned without error.1017       **/1018      Executed: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;1019      /**1020       * A single member did some action; result will be `Ok` if it returned without error.1021       **/1022      MemberExecuted: AugmentedEvent<ApiType, [proposalHash: H256, result: Result<Null, SpRuntimeDispatchError>], { proposalHash: H256, result: Result<Null, SpRuntimeDispatchError> }>;1023      /**1024       * A motion (given hash) has been proposed (by given account) with a threshold (given1025       * `MemberCount`).1026       **/1027      Proposed: AugmentedEvent<ApiType, [account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32], { account: AccountId32, proposalIndex: u32, proposalHash: H256, threshold: u32 }>;1028      /**1029       * A motion (given hash) has been voted on by given account, leaving1030       * a tally (yes votes and no votes given respectively as `MemberCount`).1031       **/1032      Voted: AugmentedEvent<ApiType, [account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32], { account: AccountId32, proposalHash: H256, voted: bool, yes: u32, no: u32 }>;1033      /**1034       * Generic event1035       **/1036      [key: string]: AugmentedEvent<ApiType>;1037    };1038    technicalCommitteeMembership: {1039      /**1040       * Phantom member, never used.1041       **/1042      Dummy: AugmentedEvent<ApiType, []>;1043      /**1044       * One of the members' keys changed.1045       **/1046      KeyChanged: AugmentedEvent<ApiType, []>;1047      /**1048       * The given member was added; see the transaction for who.1049       **/1050      MemberAdded: AugmentedEvent<ApiType, []>;1051      /**1052       * The given member was removed; see the transaction for who.1053       **/1054      MemberRemoved: AugmentedEvent<ApiType, []>;1055      /**1056       * The membership was reset; see the transaction for who the new set is.1057       **/1058      MembersReset: AugmentedEvent<ApiType, []>;1059      /**1060       * Two members were swapped; see the transaction for who.1061       **/1062      MembersSwapped: AugmentedEvent<ApiType, []>;1063      /**1064       * Generic event1065       **/1066      [key: string]: AugmentedEvent<ApiType>;1067    };1068    testUtils: {1069      BatchCompleted: AugmentedEvent<ApiType, []>;1070      ShouldRollback: AugmentedEvent<ApiType, []>;1071      ValueIsSet: AugmentedEvent<ApiType, []>;1072      /**1073       * Generic event1074       **/1075      [key: string]: AugmentedEvent<ApiType>;1076    };1077    tokens: {1078      /**1079       * A balance was set by root.1080       **/1081      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, free: u128, reserved: u128 }>;1082      /**1083       * Deposited some balance into an account1084       **/1085      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1086      /**1087       * An account was removed whose balance was non-zero but below1088       * ExistentialDeposit, resulting in an outright loss.1089       **/1090      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1091      /**1092       * An account was created with some free balance.1093       **/1094      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1095      Issued: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, amount: u128], { currencyId: PalletForeignAssetsAssetId, amount: u128 }>;1096      /**1097       * Some free balance was locked.1098       **/1099      Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1100      /**1101       * Some locked funds were unlocked1102       **/1103      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetId, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetId, who: AccountId32 }>;1104      /**1105       * Some funds are locked1106       **/1107      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1108      Rescinded: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, amount: u128], { currencyId: PalletForeignAssetsAssetId, amount: u128 }>;1109      /**1110       * Some balance was reserved (moved from free to reserved).1111       **/1112      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1113      /**1114       * Some reserved balance was repatriated (moved from reserved to1115       * another account).1116       **/1117      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetId, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;1118      /**1119       * Some balances were slashed (e.g. due to mis-behavior)1120       **/1121      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;1122      /**1123       * The total issuance of an currency has been set1124       **/1125      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, amount: u128], { currencyId: PalletForeignAssetsAssetId, amount: u128 }>;1126      /**1127       * Transfer succeeded.1128       **/1129      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, from: AccountId32, to: AccountId32, amount: u128 }>;1130      /**1131       * Some locked balance was freed.1132       **/1133      Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1134      /**1135       * Some balance was unreserved (moved from reserved to free).1136       **/1137      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1138      /**1139       * Some balances were withdrawn (e.g. pay for transaction fee)1140       **/1141      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetId, who: AccountId32, amount: u128 }>;1142      /**1143       * Generic event1144       **/1145      [key: string]: AugmentedEvent<ApiType>;1146    };1147    transactionPayment: {1148      /**1149       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,1150       * has been paid by `who`.1151       **/1152      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;1153      /**1154       * Generic event1155       **/1156      [key: string]: AugmentedEvent<ApiType>;1157    };1158    treasury: {1159      /**1160       * Some funds have been allocated.1161       **/1162      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;1163      /**1164       * Some of our funds have been burnt.1165       **/1166      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;1167      /**1168       * Some funds have been deposited.1169       **/1170      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;1171      /**1172       * New proposal.1173       **/1174      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;1175      /**1176       * A proposal was rejected; funds were slashed.1177       **/1178      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;1179      /**1180       * Spending has finished; this is the amount that rolls over until next spend.1181       **/1182      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;1183      /**1184       * A new spend proposal has been approved.1185       **/1186      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;1187      /**1188       * We have ended a spend period and will now allocate funds.1189       **/1190      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;1191      /**1192       * The inactive funds of the pallet have been updated.1193       **/1194      UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;1195      /**1196       * Generic event1197       **/1198      [key: string]: AugmentedEvent<ApiType>;1199    };1200    utility: {1201      /**1202       * Batch of dispatches completed fully with no error.1203       **/1204      BatchCompleted: AugmentedEvent<ApiType, []>;1205      /**1206       * Batch of dispatches completed but has errors.1207       **/1208      BatchCompletedWithErrors: AugmentedEvent<ApiType, []>;1209      /**1210       * Batch of dispatches did not complete fully. Index of first failing dispatch given, as1211       * well as the error.1212       **/1213      BatchInterrupted: AugmentedEvent<ApiType, [index: u32, error: SpRuntimeDispatchError], { index: u32, error: SpRuntimeDispatchError }>;1214      /**1215       * A call was dispatched.1216       **/1217      DispatchedAs: AugmentedEvent<ApiType, [result: Result<Null, SpRuntimeDispatchError>], { result: Result<Null, SpRuntimeDispatchError> }>;1218      /**1219       * A single item within a Batch of dispatches has completed with no error.1220       **/1221      ItemCompleted: AugmentedEvent<ApiType, []>;1222      /**1223       * A single item within a Batch of dispatches has completed with error.1224       **/1225      ItemFailed: AugmentedEvent<ApiType, [error: SpRuntimeDispatchError], { error: SpRuntimeDispatchError }>;1226      /**1227       * Generic event1228       **/1229      [key: string]: AugmentedEvent<ApiType>;1230    };1231    vesting: {1232      /**1233       * Claimed vesting.1234       **/1235      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;1236      /**1237       * Added new vesting schedule.1238       **/1239      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;1240      /**1241       * Updated vesting schedules.1242       **/1243      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;1244      /**1245       * Generic event1246       **/1247      [key: string]: AugmentedEvent<ApiType>;1248    };1249    xcmpQueue: {1250      /**1251       * Bad XCM format used.1252       **/1253      BadFormat: AugmentedEvent<ApiType, [messageHash: U8aFixed], { messageHash: U8aFixed }>;1254      /**1255       * Bad XCM version used.1256       **/1257      BadVersion: AugmentedEvent<ApiType, [messageHash: U8aFixed], { messageHash: U8aFixed }>;1258      /**1259       * Some XCM failed.1260       **/1261      Fail: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, error: StagingXcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: U8aFixed, messageId: U8aFixed, error: StagingXcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;1262      /**1263       * An XCM exceeded the individual message weight budget.1264       **/1265      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;1266      /**1267       * An XCM from the overweight queue was executed with the given actual weight used.1268       **/1269      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;1270      /**1271       * Some XCM was executed ok.1272       **/1273      Success: AugmentedEvent<ApiType, [messageHash: U8aFixed, messageId: U8aFixed, weight: SpWeightsWeightV2Weight], { messageHash: U8aFixed, messageId: U8aFixed, weight: SpWeightsWeightV2Weight }>;1274      /**1275       * An HRMP message was sent to a sibling parachain.1276       **/1277      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: U8aFixed], { messageHash: U8aFixed }>;1278      /**1279       * Generic event1280       **/1281      [key: string]: AugmentedEvent<ApiType>;1282    };1283    xTokens: {1284      /**1285       * Transferred `MultiAsset` with fee.1286       **/1287      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: StagingXcmV3MultiassetMultiAssets, fee: StagingXcmV3MultiAsset, dest: StagingXcmV3MultiLocation], { sender: AccountId32, assets: StagingXcmV3MultiassetMultiAssets, fee: StagingXcmV3MultiAsset, dest: StagingXcmV3MultiLocation }>;1288      /**1289       * Generic event1290       **/1291      [key: string]: AugmentedEvent<ApiType>;1292    };1293  } // AugmentedEvents1294} // declare module