git.delta.rocks / unique-network / refs/commits / 8d05c70ee567

difftreelog

source

tests/src/interfaces/augment-api-events.ts41.3 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, u32, u64, u8 } from '@polkadot/types-codec';10import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';11import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV3MultiAsset, XcmV3MultiLocation, XcmV3MultiassetMultiAssets, XcmV3Response, XcmV3TraitsError, XcmV3TraitsOutcome, XcmV3Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';1213export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1415declare module '@polkadot/api-base/types/events' {16  interface AugmentedEvents<ApiType extends ApiTypes> {17    appPromotion: {18      /**19       * The admin was set20       * 21       * # Arguments22       * * AccountId: account address of the admin23       **/24      SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;25      /**26       * Staking was performed27       * 28       * # Arguments29       * * AccountId: account of the staker30       * * Balance : staking amount31       **/32      Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;33      /**34       * Staking recalculation was performed35       * 36       * # Arguments37       * * AccountId: account of the staker.38       * * Balance : recalculation base39       * * Balance : total income40       **/41      StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;42      /**43       * Unstaking was performed44       * 45       * # Arguments46       * * AccountId: account of the staker47       * * Balance : unstaking amount48       **/49      Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;50      /**51       * Generic event52       **/53      [key: string]: AugmentedEvent<ApiType>;54    };55    balances: {56      /**57       * A balance was set by root.58       **/59      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128], { who: AccountId32, free: u128 }>;60      /**61       * Some amount was burned from an account.62       **/63      Burned: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;64      /**65       * Some amount was deposited (e.g. for transaction fees).66       **/67      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;68      /**69       * An account was removed whose balance was non-zero but below ExistentialDeposit,70       * resulting in an outright loss.71       **/72      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;73      /**74       * An account was created with some free balance.75       **/76      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;77      /**78       * Some balance was frozen.79       **/80      Frozen: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;81      /**82       * Total issuance was increased by `amount`, creating a credit to be balanced.83       **/84      Issued: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;85      /**86       * Some balance was locked.87       **/88      Locked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;89      /**90       * Some amount was minted into an account.91       **/92      Minted: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;93      /**94       * Total issuance was decreased by `amount`, creating a debt to be balanced.95       **/96      Rescinded: AugmentedEvent<ApiType, [amount: u128], { amount: u128 }>;97      /**98       * Some balance was reserved (moved from free to reserved).99       **/100      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;101      /**102       * Some balance was moved from the reserve of the first account to the second account.103       * Final argument indicates the destination balance type.104       **/105      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;106      /**107       * Some amount was restored into an account.108       **/109      Restored: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;110      /**111       * Some amount was removed from the account (e.g. for misbehavior).112       **/113      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;114      /**115       * Some amount was suspended from an account (it can be restored later).116       **/117      Suspended: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;118      /**119       * Some balance was thawed.120       **/121      Thawed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;122      /**123       * Transfer succeeded.124       **/125      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;126      /**127       * Some balance was unlocked.128       **/129      Unlocked: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;130      /**131       * Some balance was unreserved (moved from reserved to free).132       **/133      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;134      /**135       * An account was upgraded.136       **/137      Upgraded: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;138      /**139       * Some amount was withdrawn from the account (e.g. for transaction fees).140       **/141      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;142      /**143       * Generic event144       **/145      [key: string]: AugmentedEvent<ApiType>;146    };147    collatorSelection: {148      CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;149      CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;150      InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;151      InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;152      LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;153      LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;154      /**155       * Generic event156       **/157      [key: string]: AugmentedEvent<ApiType>;158    };159    common: {160      /**161       * Address was added to the allow list.162       **/163      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;164      /**165       * Address was removed from the allow list.166       **/167      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;168      /**169       * Amount pieces of token owned by `sender` was approved for `spender`.170       **/171      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;172      /**173       * A `sender` approves operations on all owned tokens for `spender`.174       **/175      ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;176      /**177       * Collection admin was added.178       **/179      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;180      /**181       * Collection admin was removed.182       **/183      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;184      /**185       * New collection was created186       **/187      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;188      /**189       * New collection was destroyed190       **/191      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;192      /**193       * Collection limits were set.194       **/195      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;196      /**197       * Collection owned was changed.198       **/199      CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;200      /**201       * Collection permissions were set.202       **/203      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;204      /**205       * The property has been deleted.206       **/207      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;208      /**209       * The colletion property has been added or edited.210       **/211      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;212      /**213       * Collection sponsor was removed.214       **/215      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;216      /**217       * Collection sponsor was set.218       **/219      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;220      /**221       * New item was created.222       **/223      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;224      /**225       * Collection item was burned.226       **/227      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;228      /**229       * The token property permission of a collection has been set.230       **/231      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;232      /**233       * New sponsor was confirm.234       **/235      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;236      /**237       * The token property has been deleted.238       **/239      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;240      /**241       * The token property has been added or edited.242       **/243      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;244      /**245       * Item was transferred246       **/247      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;248      /**249       * Generic event250       **/251      [key: string]: AugmentedEvent<ApiType>;252    };253    configuration: {254      NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;255      NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;256      NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;257      /**258       * Generic event259       **/260      [key: string]: AugmentedEvent<ApiType>;261    };262    cumulusXcm: {263      /**264       * Downward message executed with the given outcome.265       * \[ id, outcome \]266       **/267      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV3TraitsOutcome]>;268      /**269       * Downward message is invalid XCM.270       * \[ id \]271       **/272      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;273      /**274       * Downward message is unsupported version of XCM.275       * \[ id \]276       **/277      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;278      /**279       * Generic event280       **/281      [key: string]: AugmentedEvent<ApiType>;282    };283    dmpQueue: {284      /**285       * Downward message executed with the given outcome.286       **/287      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { messageId: U8aFixed, outcome: XcmV3TraitsOutcome }>;288      /**289       * Downward message is invalid XCM.290       **/291      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;292      /**293       * The maximum number of downward messages was.294       **/295      MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;296      /**297       * Downward message is overweight and was placed in the overweight queue.298       **/299      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;300      /**301       * Downward message from the overweight queue was executed.302       **/303      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;304      /**305       * Downward message is unsupported version of XCM.306       **/307      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;308      /**309       * The weight limit for handling downward messages was reached.310       **/311      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;312      /**313       * Generic event314       **/315      [key: string]: AugmentedEvent<ApiType>;316    };317    ethereum: {318      /**319       * An ethereum transaction was successfully executed.320       **/321      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason, extraData: Bytes }>;322      /**323       * Generic event324       **/325      [key: string]: AugmentedEvent<ApiType>;326    };327    evm: {328      /**329       * A contract has been created at given address.330       **/331      Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;332      /**333       * A contract was attempted to be created, but the execution failed.334       **/335      CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;336      /**337       * A contract has been executed successfully with states applied.338       **/339      Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;340      /**341       * A contract has been executed with errors. States are reverted with only gas fees applied.342       **/343      ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;344      /**345       * Ethereum events from contracts.346       **/347      Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;348      /**349       * Generic event350       **/351      [key: string]: AugmentedEvent<ApiType>;352    };353    evmContractHelpers: {354      /**355       * Collection sponsor was removed.356       **/357      ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;358      /**359       * Contract sponsor was set.360       **/361      ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;362      /**363       * New sponsor was confirm.364       **/365      ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;366      /**367       * Generic event368       **/369      [key: string]: AugmentedEvent<ApiType>;370    };371    evmMigration: {372      /**373       * This event is used in benchmarking and can be used for tests374       **/375      TestEvent: AugmentedEvent<ApiType, []>;376      /**377       * Generic event378       **/379      [key: string]: AugmentedEvent<ApiType>;380    };381    foreignAssets: {382      /**383       * The asset registered.384       **/385      AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;386      /**387       * The asset updated.388       **/389      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;390      /**391       * The foreign asset registered.392       **/393      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;394      /**395       * The foreign asset updated.396       **/397      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;398      /**399       * Generic event400       **/401      [key: string]: AugmentedEvent<ApiType>;402    };403    identity: {404      /**405       * A number of identities and associated info were forcibly inserted.406       **/407      IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;408      /**409       * A number of identities and all associated info were forcibly removed.410       **/411      IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;412      /**413       * A name was cleared, and the given balance returned.414       **/415      IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;416      /**417       * A name was removed and the given balance slashed.418       **/419      IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;420      /**421       * A name was set or reset (which will remove all judgements).422       **/423      IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;424      /**425       * A judgement was given by a registrar.426       **/427      JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;428      /**429       * A judgement was asked from a registrar.430       **/431      JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;432      /**433       * A judgement request was retracted.434       **/435      JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;436      /**437       * A registrar was added.438       **/439      RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;440      /**441       * A number of identities were forcibly updated with new sub-identities.442       **/443      SubIdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;444      /**445       * A sub-identity was added to an identity and the deposit paid.446       **/447      SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;448      /**449       * A sub-identity was removed from an identity and the deposit freed.450       **/451      SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;452      /**453       * A sub-identity was cleared, and the given deposit repatriated from the454       * main identity account to the sub-identity account.455       **/456      SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;457      /**458       * Generic event459       **/460      [key: string]: AugmentedEvent<ApiType>;461    };462    maintenance: {463      MaintenanceDisabled: AugmentedEvent<ApiType, []>;464      MaintenanceEnabled: AugmentedEvent<ApiType, []>;465      /**466       * Generic event467       **/468      [key: string]: AugmentedEvent<ApiType>;469    };470    parachainSystem: {471      /**472       * Downward messages were processed using the given weight.473       **/474      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;475      /**476       * Some downward messages have been received and will be processed.477       **/478      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;479      /**480       * An upgrade has been authorized.481       **/482      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;483      /**484       * An upward message was sent to the relay chain.485       **/486      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;487      /**488       * The validation function was applied as of the contained relay chain block number.489       **/490      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;491      /**492       * The relay-chain aborted the upgrade process.493       **/494      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;495      /**496       * The validation function has been scheduled to apply.497       **/498      ValidationFunctionStored: AugmentedEvent<ApiType, []>;499      /**500       * Generic event501       **/502      [key: string]: AugmentedEvent<ApiType>;503    };504    polkadotXcm: {505      /**506       * Some assets have been claimed from an asset trap507       * 508       * \[ hash, origin, assets \]509       **/510      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;511      /**512       * Some assets have been placed in an asset trap.513       * 514       * \[ hash, origin, assets \]515       **/516      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;517      /**518       * Execution of an XCM message was attempted.519       * 520       * \[ outcome \]521       **/522      Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>;523      /**524       * Fees were paid from a location for an operation (often for using `SendXcm`).525       * 526       * \[ paying location, fees \]527       **/528      FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;529      /**530       * Expected query response has been received but the querier location of the response does531       * not match the expected. The query remains registered for a later, valid, response to532       * be received and acted upon.533       * 534       * \[ origin location, id, expected querier, maybe actual querier \]535       **/536      InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;537      /**538       * Expected query response has been received but the expected querier location placed in539       * storage by this runtime previously cannot be decoded. The query remains registered.540       * 541       * This is unexpected (since a location placed in storage in a previously executing542       * runtime should be readable prior to query timeout) and dangerous since the possibly543       * valid response will be dropped. Manual governance intervention is probably going to be544       * needed.545       * 546       * \[ origin location, id \]547       **/548      InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;549      /**550       * Expected query response has been received but the origin location of the response does551       * not match that expected. The query remains registered for a later, valid, response to552       * be received and acted upon.553       * 554       * \[ origin location, id, expected location \]555       **/556      InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;557      /**558       * Expected query response has been received but the expected origin location placed in559       * storage by this runtime previously cannot be decoded. The query remains registered.560       * 561       * This is unexpected (since a location placed in storage in a previously executing562       * runtime should be readable prior to query timeout) and dangerous since the possibly563       * valid response will be dropped. Manual governance intervention is probably going to be564       * needed.565       * 566       * \[ origin location, id \]567       **/568      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;569      /**570       * Query response has been received and query is removed. The registered notification has571       * been dispatched and executed successfully.572       * 573       * \[ id, pallet index, call index \]574       **/575      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;576      /**577       * Query response has been received and query is removed. The dispatch was unable to be578       * decoded into a `Call`; this might be due to dispatch function having a signature which579       * is not `(origin, QueryId, Response)`.580       * 581       * \[ id, pallet index, call index \]582       **/583      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;584      /**585       * Query response has been received and query is removed. There was a general error with586       * dispatching the notification call.587       * 588       * \[ id, pallet index, call index \]589       **/590      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;591      /**592       * Query response has been received and query is removed. The registered notification could593       * not be dispatched because the dispatch weight is greater than the maximum weight594       * originally budgeted by this runtime for the query result.595       * 596       * \[ id, pallet index, call index, actual weight, max budgeted weight \]597       **/598      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;599      /**600       * A given location which had a version change subscription was dropped owing to an error601       * migrating the location to our new XCM format.602       * 603       * \[ location, query ID \]604       **/605      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;606      /**607       * A given location which had a version change subscription was dropped owing to an error608       * sending the notification to it.609       * 610       * \[ location, query ID, error \]611       **/612      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>;613      /**614       * Query response has been received and is ready for taking with `take_response`. There is615       * no registered notification call.616       * 617       * \[ id, response \]618       **/619      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>;620      /**621       * Received query response has been read and removed.622       * 623       * \[ id \]624       **/625      ResponseTaken: AugmentedEvent<ApiType, [u64]>;626      /**627       * A XCM message was sent.628       * 629       * \[ origin, destination, message \]630       **/631      Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;632      /**633       * The supported version of a location has been changed. This might be through an634       * automatic notification or a manual intervention.635       * 636       * \[ location, XCM version \]637       **/638      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>;639      /**640       * Query response received which does not match a registered query. This may be because a641       * matching query was never registered, it may be because it is a duplicate response, or642       * because the query timed out.643       * 644       * \[ origin location, id \]645       **/646      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;647      /**648       * An XCM version change notification message has been attempted to be sent.649       * 650       * The cost of sending it (borne by the chain) is included.651       * 652       * \[ destination, result, cost \]653       **/654      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;655      /**656       * We have requested that a remote chain sends us XCM version change notifications.657       * 658       * \[ destination location, cost \]659       **/660      VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;661      /**662       * A remote has requested XCM version change notification from us and we have honored it.663       * A version information message is sent to them and its cost is included.664       * 665       * \[ destination location, cost \]666       **/667      VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;668      /**669       * We have requested that a remote chain stops sending us XCM version change notifications.670       * 671       * \[ destination location, cost \]672       **/673      VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;674      /**675       * Generic event676       **/677      [key: string]: AugmentedEvent<ApiType>;678    };679    preimage: {680      /**681       * A preimage has ben cleared.682       **/683      Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;684      /**685       * A preimage has been noted.686       **/687      Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;688      /**689       * A preimage has been requested.690       **/691      Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;692      /**693       * Generic event694       **/695      [key: string]: AugmentedEvent<ApiType>;696    };697    session: {698      /**699       * New session has happened. Note that the argument is the session index, not the700       * block number as the type might suggest.701       **/702      NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;703      /**704       * Generic event705       **/706      [key: string]: AugmentedEvent<ApiType>;707    };708    structure: {709      /**710       * Executed call on behalf of the token.711       **/712      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;713      /**714       * Generic event715       **/716      [key: string]: AugmentedEvent<ApiType>;717    };718    sudo: {719      /**720       * The \[sudoer\] just switched identity; the old key is supplied if one existed.721       **/722      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;723      /**724       * A sudo just took place. \[result\]725       **/726      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;727      /**728       * A sudo just took place. \[result\]729       **/730      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;731      /**732       * Generic event733       **/734      [key: string]: AugmentedEvent<ApiType>;735    };736    system: {737      /**738       * `:code` was updated.739       **/740      CodeUpdated: AugmentedEvent<ApiType, []>;741      /**742       * An extrinsic failed.743       **/744      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;745      /**746       * An extrinsic completed successfully.747       **/748      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;749      /**750       * An account was reaped.751       **/752      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;753      /**754       * A new account was created.755       **/756      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;757      /**758       * On on-chain remark happened.759       **/760      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;761      /**762       * Generic event763       **/764      [key: string]: AugmentedEvent<ApiType>;765    };766    testUtils: {767      BatchCompleted: AugmentedEvent<ApiType, []>;768      ShouldRollback: AugmentedEvent<ApiType, []>;769      ValueIsSet: AugmentedEvent<ApiType, []>;770      /**771       * Generic event772       **/773      [key: string]: AugmentedEvent<ApiType>;774    };775    tokens: {776      /**777       * A balance was set by root.778       **/779      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;780      /**781       * Deposited some balance into an account782       **/783      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;784      /**785       * An account was removed whose balance was non-zero but below786       * ExistentialDeposit, resulting in an outright loss.787       **/788      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;789      /**790       * An account was created with some free balance.791       **/792      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;793      /**794       * Some free balance was locked.795       **/796      Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;797      /**798       * Some locked funds were unlocked799       **/800      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;801      /**802       * Some funds are locked803       **/804      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;805      /**806       * Some balance was reserved (moved from free to reserved).807       **/808      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;809      /**810       * Some reserved balance was repatriated (moved from reserved to811       * another account).812       **/813      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;814      /**815       * Some balances were slashed (e.g. due to mis-behavior)816       **/817      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;818      /**819       * The total issuance of an currency has been set820       **/821      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;822      /**823       * Transfer succeeded.824       **/825      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;826      /**827       * Some locked balance was freed.828       **/829      Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;830      /**831       * Some balance was unreserved (moved from reserved to free).832       **/833      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;834      /**835       * Some balances were withdrawn (e.g. pay for transaction fee)836       **/837      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;838      /**839       * Generic event840       **/841      [key: string]: AugmentedEvent<ApiType>;842    };843    transactionPayment: {844      /**845       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,846       * has been paid by `who`.847       **/848      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;849      /**850       * Generic event851       **/852      [key: string]: AugmentedEvent<ApiType>;853    };854    treasury: {855      /**856       * Some funds have been allocated.857       **/858      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;859      /**860       * Some of our funds have been burnt.861       **/862      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;863      /**864       * Some funds have been deposited.865       **/866      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;867      /**868       * New proposal.869       **/870      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;871      /**872       * A proposal was rejected; funds were slashed.873       **/874      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;875      /**876       * Spending has finished; this is the amount that rolls over until next spend.877       **/878      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;879      /**880       * A new spend proposal has been approved.881       **/882      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;883      /**884       * We have ended a spend period and will now allocate funds.885       **/886      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;887      /**888       * The inactive funds of the pallet have been updated.889       **/890      UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;891      /**892       * Generic event893       **/894      [key: string]: AugmentedEvent<ApiType>;895    };896    vesting: {897      /**898       * Claimed vesting.899       **/900      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;901      /**902       * Added new vesting schedule.903       **/904      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;905      /**906       * Updated vesting schedules.907       **/908      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;909      /**910       * Generic event911       **/912      [key: string]: AugmentedEvent<ApiType>;913    };914    xcmpQueue: {915      /**916       * Bad XCM format used.917       **/918      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;919      /**920       * Bad XCM version used.921       **/922      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;923      /**924       * Some XCM failed.925       **/926      Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;927      /**928       * An XCM exceeded the individual message weight budget.929       **/930      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;931      /**932       * An XCM from the overweight queue was executed with the given actual weight used.933       **/934      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;935      /**936       * Some XCM was executed ok.937       **/938      Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight }>;939      /**940       * An HRMP message was sent to a sibling parachain.941       **/942      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;943      /**944       * Generic event945       **/946      [key: string]: AugmentedEvent<ApiType>;947    };948    xTokens: {949      /**950       * Transferred `MultiAsset` with fee.951       **/952      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation], { sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation }>;953      /**954       * Generic event955       **/956      [key: string]: AugmentedEvent<ApiType>;957    };958  } // AugmentedEvents959} // declare module