git.delta.rocks / unique-network / refs/commits / 81e4404a75c5

difftreelog

source

tests/src/interfaces/augment-api-events.ts39.4 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, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;60      /**61       * Some amount was deposited (e.g. for transaction fees).62       **/63      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;64      /**65       * An account was removed whose balance was non-zero but below ExistentialDeposit,66       * resulting in an outright loss.67       **/68      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;69      /**70       * An account was created with some free balance.71       **/72      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;73      /**74       * Some balance was reserved (moved from free to reserved).75       **/76      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;77      /**78       * Some balance was moved from the reserve of the first account to the second account.79       * Final argument indicates the destination balance type.80       **/81      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;82      /**83       * Some amount was removed from the account (e.g. for misbehavior).84       **/85      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;86      /**87       * Transfer succeeded.88       **/89      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;90      /**91       * Some balance was unreserved (moved from reserved to free).92       **/93      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;94      /**95       * Some amount was withdrawn from the account (e.g. for transaction fees).96       **/97      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;98      /**99       * Generic event100       **/101      [key: string]: AugmentedEvent<ApiType>;102    };103    collatorSelection: {104      CandidateAdded: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;105      CandidateRemoved: AugmentedEvent<ApiType, [accountId: AccountId32], { accountId: AccountId32 }>;106      InvulnerableAdded: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;107      InvulnerableRemoved: AugmentedEvent<ApiType, [invulnerable: AccountId32], { invulnerable: AccountId32 }>;108      LicenseObtained: AugmentedEvent<ApiType, [accountId: AccountId32, deposit: u128], { accountId: AccountId32, deposit: u128 }>;109      LicenseReleased: AugmentedEvent<ApiType, [accountId: AccountId32, depositReturned: u128], { accountId: AccountId32, depositReturned: u128 }>;110      /**111       * Generic event112       **/113      [key: string]: AugmentedEvent<ApiType>;114    };115    common: {116      /**117       * Address was added to the allow list.118       **/119      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;120      /**121       * Address was removed from the allow list.122       **/123      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;124      /**125       * Amount pieces of token owned by `sender` was approved for `spender`.126       **/127      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;128      /**129       * A `sender` approves operations on all owned tokens for `spender`.130       **/131      ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;132      /**133       * Collection admin was added.134       **/135      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;136      /**137       * Collection admin was removed.138       **/139      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;140      /**141       * New collection was created142       **/143      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;144      /**145       * New collection was destroyed146       **/147      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;148      /**149       * Collection limits were set.150       **/151      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;152      /**153       * Collection owned was changed.154       **/155      CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;156      /**157       * Collection permissions were set.158       **/159      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;160      /**161       * The property has been deleted.162       **/163      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;164      /**165       * The colletion property has been added or edited.166       **/167      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;168      /**169       * Collection sponsor was removed.170       **/171      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;172      /**173       * Collection sponsor was set.174       **/175      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;176      /**177       * New item was created.178       **/179      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;180      /**181       * Collection item was burned.182       **/183      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;184      /**185       * The token property permission of a collection has been set.186       **/187      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;188      /**189       * New sponsor was confirm.190       **/191      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;192      /**193       * The token property has been deleted.194       **/195      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;196      /**197       * The token property has been added or edited.198       **/199      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;200      /**201       * Item was transferred202       **/203      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;204      /**205       * Generic event206       **/207      [key: string]: AugmentedEvent<ApiType>;208    };209    configuration: {210      NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;211      NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;212      NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;213      /**214       * Generic event215       **/216      [key: string]: AugmentedEvent<ApiType>;217    };218    cumulusXcm: {219      /**220       * Downward message executed with the given outcome.221       * \[ id, outcome \]222       **/223      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV3TraitsOutcome]>;224      /**225       * Downward message is invalid XCM.226       * \[ id \]227       **/228      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;229      /**230       * Downward message is unsupported version of XCM.231       * \[ id \]232       **/233      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;234      /**235       * Generic event236       **/237      [key: string]: AugmentedEvent<ApiType>;238    };239    dmpQueue: {240      /**241       * Downward message executed with the given outcome.242       **/243      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV3TraitsOutcome], { messageId: U8aFixed, outcome: XcmV3TraitsOutcome }>;244      /**245       * Downward message is invalid XCM.246       **/247      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;248      /**249       * The maximum number of downward messages was.250       **/251      MaxMessagesExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;252      /**253       * Downward message is overweight and was placed in the overweight queue.254       **/255      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;256      /**257       * Downward message from the overweight queue was executed.258       **/259      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;260      /**261       * Downward message is unsupported version of XCM.262       **/263      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;264      /**265       * The weight limit for handling downward messages was reached.266       **/267      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;268      /**269       * Generic event270       **/271      [key: string]: AugmentedEvent<ApiType>;272    };273    ethereum: {274      /**275       * An ethereum transaction was successfully executed.276       **/277      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;278      /**279       * Generic event280       **/281      [key: string]: AugmentedEvent<ApiType>;282    };283    evm: {284      /**285       * A contract has been created at given address.286       **/287      Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;288      /**289       * A contract was attempted to be created, but the execution failed.290       **/291      CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;292      /**293       * A contract has been executed successfully with states applied.294       **/295      Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;296      /**297       * A contract has been executed with errors. States are reverted with only gas fees applied.298       **/299      ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;300      /**301       * Ethereum events from contracts.302       **/303      Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;304      /**305       * Generic event306       **/307      [key: string]: AugmentedEvent<ApiType>;308    };309    evmContractHelpers: {310      /**311       * Collection sponsor was removed.312       **/313      ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;314      /**315       * Contract sponsor was set.316       **/317      ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;318      /**319       * New sponsor was confirm.320       **/321      ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;322      /**323       * Generic event324       **/325      [key: string]: AugmentedEvent<ApiType>;326    };327    evmMigration: {328      /**329       * This event is used in benchmarking and can be used for tests330       **/331      TestEvent: AugmentedEvent<ApiType, []>;332      /**333       * Generic event334       **/335      [key: string]: AugmentedEvent<ApiType>;336    };337    foreignAssets: {338      /**339       * The asset registered.340       **/341      AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;342      /**343       * The asset updated.344       **/345      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;346      /**347       * The foreign asset registered.348       **/349      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;350      /**351       * The foreign asset updated.352       **/353      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV3MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;354      /**355       * Generic event356       **/357      [key: string]: AugmentedEvent<ApiType>;358    };359    identity: {360      /**361       * A number of identities and associated info were forcibly inserted.362       **/363      IdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;364      /**365       * A number of identities and all associated info were forcibly removed.366       **/367      IdentitiesRemoved: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;368      /**369       * A name was cleared, and the given balance returned.370       **/371      IdentityCleared: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;372      /**373       * A name was removed and the given balance slashed.374       **/375      IdentityKilled: AugmentedEvent<ApiType, [who: AccountId32, deposit: u128], { who: AccountId32, deposit: u128 }>;376      /**377       * A name was set or reset (which will remove all judgements).378       **/379      IdentitySet: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;380      /**381       * A judgement was given by a registrar.382       **/383      JudgementGiven: AugmentedEvent<ApiType, [target: AccountId32, registrarIndex: u32], { target: AccountId32, registrarIndex: u32 }>;384      /**385       * A judgement was asked from a registrar.386       **/387      JudgementRequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;388      /**389       * A judgement request was retracted.390       **/391      JudgementUnrequested: AugmentedEvent<ApiType, [who: AccountId32, registrarIndex: u32], { who: AccountId32, registrarIndex: u32 }>;392      /**393       * A registrar was added.394       **/395      RegistrarAdded: AugmentedEvent<ApiType, [registrarIndex: u32], { registrarIndex: u32 }>;396      /**397       * A number of identities were forcibly updated with new sub-identities.398       **/399      SubIdentitiesInserted: AugmentedEvent<ApiType, [amount: u32], { amount: u32 }>;400      /**401       * A sub-identity was added to an identity and the deposit paid.402       **/403      SubIdentityAdded: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;404      /**405       * A sub-identity was removed from an identity and the deposit freed.406       **/407      SubIdentityRemoved: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;408      /**409       * A sub-identity was cleared, and the given deposit repatriated from the410       * main identity account to the sub-identity account.411       **/412      SubIdentityRevoked: AugmentedEvent<ApiType, [sub: AccountId32, main: AccountId32, deposit: u128], { sub: AccountId32, main: AccountId32, deposit: u128 }>;413      /**414       * Generic event415       **/416      [key: string]: AugmentedEvent<ApiType>;417    };418    maintenance: {419      MaintenanceDisabled: AugmentedEvent<ApiType, []>;420      MaintenanceEnabled: AugmentedEvent<ApiType, []>;421      /**422       * Generic event423       **/424      [key: string]: AugmentedEvent<ApiType>;425    };426    parachainSystem: {427      /**428       * Downward messages were processed using the given weight.429       **/430      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;431      /**432       * Some downward messages have been received and will be processed.433       **/434      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;435      /**436       * An upgrade has been authorized.437       **/438      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;439      /**440       * An upward message was sent to the relay chain.441       **/442      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;443      /**444       * The validation function was applied as of the contained relay chain block number.445       **/446      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;447      /**448       * The relay-chain aborted the upgrade process.449       **/450      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;451      /**452       * The validation function has been scheduled to apply.453       **/454      ValidationFunctionStored: AugmentedEvent<ApiType, []>;455      /**456       * Generic event457       **/458      [key: string]: AugmentedEvent<ApiType>;459    };460    polkadotXcm: {461      /**462       * Some assets have been claimed from an asset trap463       * 464       * \[ hash, origin, assets \]465       **/466      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;467      /**468       * Some assets have been placed in an asset trap.469       * 470       * \[ hash, origin, assets \]471       **/472      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV3MultiLocation, XcmVersionedMultiAssets]>;473      /**474       * Execution of an XCM message was attempted.475       * 476       * \[ outcome \]477       **/478      Attempted: AugmentedEvent<ApiType, [XcmV3TraitsOutcome]>;479      /**480       * Fees were paid from a location for an operation (often for using `SendXcm`).481       * 482       * \[ paying location, fees \]483       **/484      FeesPaid: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;485      /**486       * Expected query response has been received but the querier location of the response does487       * not match the expected. The query remains registered for a later, valid, response to488       * be received and acted upon.489       * 490       * \[ origin location, id, expected querier, maybe actual querier \]491       **/492      InvalidQuerier: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3MultiLocation, Option<XcmV3MultiLocation>]>;493      /**494       * Expected query response has been received but the expected querier location placed in495       * storage by this runtime previously cannot be decoded. The query remains registered.496       * 497       * This is unexpected (since a location placed in storage in a previously executing498       * runtime should be readable prior to query timeout) and dangerous since the possibly499       * valid response will be dropped. Manual governance intervention is probably going to be500       * needed.501       * 502       * \[ origin location, id \]503       **/504      InvalidQuerierVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;505      /**506       * Expected query response has been received but the origin location of the response does507       * not match that expected. The query remains registered for a later, valid, response to508       * be received and acted upon.509       * 510       * \[ origin location, id, expected location \]511       **/512      InvalidResponder: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, Option<XcmV3MultiLocation>]>;513      /**514       * Expected query response has been received but the expected origin location placed in515       * storage by this runtime previously cannot be decoded. The query remains registered.516       * 517       * This is unexpected (since a location placed in storage in a previously executing518       * runtime should be readable prior to query timeout) and dangerous since the possibly519       * valid response will be dropped. Manual governance intervention is probably going to be520       * needed.521       * 522       * \[ origin location, id \]523       **/524      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;525      /**526       * Query response has been received and query is removed. The registered notification has527       * been dispatched and executed successfully.528       * 529       * \[ id, pallet index, call index \]530       **/531      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;532      /**533       * Query response has been received and query is removed. The dispatch was unable to be534       * decoded into a `Call`; this might be due to dispatch function having a signature which535       * is not `(origin, QueryId, Response)`.536       * 537       * \[ id, pallet index, call index \]538       **/539      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;540      /**541       * Query response has been received and query is removed. There was a general error with542       * dispatching the notification call.543       * 544       * \[ id, pallet index, call index \]545       **/546      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;547      /**548       * Query response has been received and query is removed. The registered notification could549       * not be dispatched because the dispatch weight is greater than the maximum weight550       * originally budgeted by this runtime for the query result.551       * 552       * \[ id, pallet index, call index, actual weight, max budgeted weight \]553       **/554      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;555      /**556       * A given location which had a version change subscription was dropped owing to an error557       * migrating the location to our new XCM format.558       * 559       * \[ location, query ID \]560       **/561      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;562      /**563       * A given location which had a version change subscription was dropped owing to an error564       * sending the notification to it.565       * 566       * \[ location, query ID, error \]567       **/568      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64, XcmV3TraitsError]>;569      /**570       * Query response has been received and is ready for taking with `take_response`. There is571       * no registered notification call.572       * 573       * \[ id, response \]574       **/575      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV3Response]>;576      /**577       * Received query response has been read and removed.578       * 579       * \[ id \]580       **/581      ResponseTaken: AugmentedEvent<ApiType, [u64]>;582      /**583       * A XCM message was sent.584       * 585       * \[ origin, destination, message \]586       **/587      Sent: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiLocation, XcmV3Xcm]>;588      /**589       * The supported version of a location has been changed. This might be through an590       * automatic notification or a manual intervention.591       * 592       * \[ location, XCM version \]593       **/594      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32]>;595      /**596       * Query response received which does not match a registered query. This may be because a597       * matching query was never registered, it may be because it is a duplicate response, or598       * because the query timed out.599       * 600       * \[ origin location, id \]601       **/602      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV3MultiLocation, u64]>;603      /**604       * An XCM version change notification message has been attempted to be sent.605       * 606       * The cost of sending it (borne by the chain) is included.607       * 608       * \[ destination, result, cost \]609       **/610      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV3MultiLocation, u32, XcmV3MultiassetMultiAssets]>;611      /**612       * We have requested that a remote chain sends us XCM version change notifications.613       * 614       * \[ destination location, cost \]615       **/616      VersionNotifyRequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;617      /**618       * A remote has requested XCM version change notification from us and we have honored it.619       * A version information message is sent to them and its cost is included.620       * 621       * \[ destination location, cost \]622       **/623      VersionNotifyStarted: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;624      /**625       * We have requested that a remote chain stops sending us XCM version change notifications.626       * 627       * \[ destination location, cost \]628       **/629      VersionNotifyUnrequested: AugmentedEvent<ApiType, [XcmV3MultiLocation, XcmV3MultiassetMultiAssets]>;630      /**631       * Generic event632       **/633      [key: string]: AugmentedEvent<ApiType>;634    };635    preimage: {636      /**637       * A preimage has ben cleared.638       **/639      Cleared: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;640      /**641       * A preimage has been noted.642       **/643      Noted: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;644      /**645       * A preimage has been requested.646       **/647      Requested: AugmentedEvent<ApiType, [hash_: H256], { hash_: H256 }>;648      /**649       * Generic event650       **/651      [key: string]: AugmentedEvent<ApiType>;652    };653    session: {654      /**655       * New session has happened. Note that the argument is the session index, not the656       * block number as the type might suggest.657       **/658      NewSession: AugmentedEvent<ApiType, [sessionIndex: u32], { sessionIndex: u32 }>;659      /**660       * Generic event661       **/662      [key: string]: AugmentedEvent<ApiType>;663    };664    structure: {665      /**666       * Executed call on behalf of the token.667       **/668      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;669      /**670       * Generic event671       **/672      [key: string]: AugmentedEvent<ApiType>;673    };674    sudo: {675      /**676       * The \[sudoer\] just switched identity; the old key is supplied if one existed.677       **/678      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;679      /**680       * A sudo just took place. \[result\]681       **/682      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;683      /**684       * A sudo just took place. \[result\]685       **/686      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;687      /**688       * Generic event689       **/690      [key: string]: AugmentedEvent<ApiType>;691    };692    system: {693      /**694       * `:code` was updated.695       **/696      CodeUpdated: AugmentedEvent<ApiType, []>;697      /**698       * An extrinsic failed.699       **/700      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;701      /**702       * An extrinsic completed successfully.703       **/704      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;705      /**706       * An account was reaped.707       **/708      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;709      /**710       * A new account was created.711       **/712      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;713      /**714       * On on-chain remark happened.715       **/716      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;717      /**718       * Generic event719       **/720      [key: string]: AugmentedEvent<ApiType>;721    };722    testUtils: {723      BatchCompleted: AugmentedEvent<ApiType, []>;724      ShouldRollback: AugmentedEvent<ApiType, []>;725      ValueIsSet: AugmentedEvent<ApiType, []>;726      /**727       * Generic event728       **/729      [key: string]: AugmentedEvent<ApiType>;730    };731    tokens: {732      /**733       * A balance was set by root.734       **/735      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;736      /**737       * Deposited some balance into an account738       **/739      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;740      /**741       * An account was removed whose balance was non-zero but below742       * ExistentialDeposit, resulting in an outright loss.743       **/744      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;745      /**746       * An account was created with some free balance.747       **/748      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;749      /**750       * Some free balance was locked.751       **/752      Locked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;753      /**754       * Some locked funds were unlocked755       **/756      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;757      /**758       * Some funds are locked759       **/760      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;761      /**762       * Some balance was reserved (moved from free to reserved).763       **/764      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;765      /**766       * Some reserved balance was repatriated (moved from reserved to767       * another account).768       **/769      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;770      /**771       * Some balances were slashed (e.g. due to mis-behavior)772       **/773      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;774      /**775       * The total issuance of an currency has been set776       **/777      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;778      /**779       * Transfer succeeded.780       **/781      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;782      /**783       * Some locked balance was freed.784       **/785      Unlocked: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;786      /**787       * Some balance was unreserved (moved from reserved to free).788       **/789      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;790      /**791       * Some balances were withdrawn (e.g. pay for transaction fee)792       **/793      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;794      /**795       * Generic event796       **/797      [key: string]: AugmentedEvent<ApiType>;798    };799    transactionPayment: {800      /**801       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,802       * has been paid by `who`.803       **/804      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;805      /**806       * Generic event807       **/808      [key: string]: AugmentedEvent<ApiType>;809    };810    treasury: {811      /**812       * Some funds have been allocated.813       **/814      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;815      /**816       * Some of our funds have been burnt.817       **/818      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;819      /**820       * Some funds have been deposited.821       **/822      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;823      /**824       * New proposal.825       **/826      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;827      /**828       * A proposal was rejected; funds were slashed.829       **/830      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;831      /**832       * Spending has finished; this is the amount that rolls over until next spend.833       **/834      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;835      /**836       * A new spend proposal has been approved.837       **/838      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;839      /**840       * We have ended a spend period and will now allocate funds.841       **/842      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;843      /**844       * The inactive funds of the pallet have been updated.845       **/846      UpdatedInactive: AugmentedEvent<ApiType, [reactivated: u128, deactivated: u128], { reactivated: u128, deactivated: u128 }>;847      /**848       * Generic event849       **/850      [key: string]: AugmentedEvent<ApiType>;851    };852    vesting: {853      /**854       * Claimed vesting.855       **/856      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;857      /**858       * Added new vesting schedule.859       **/860      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;861      /**862       * Updated vesting schedules.863       **/864      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;865      /**866       * Generic event867       **/868      [key: string]: AugmentedEvent<ApiType>;869    };870    xcmpQueue: {871      /**872       * Bad XCM format used.873       **/874      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;875      /**876       * Bad XCM version used.877       **/878      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;879      /**880       * Some XCM failed.881       **/882      Fail: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, error: XcmV3TraitsError, weight: SpWeightsWeightV2Weight }>;883      /**884       * An XCM exceeded the individual message weight budget.885       **/886      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;887      /**888       * An XCM from the overweight queue was executed with the given actual weight used.889       **/890      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;891      /**892       * Some XCM was executed ok.893       **/894      Success: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight], { messageHash: Option<U8aFixed>, weight: SpWeightsWeightV2Weight }>;895      /**896       * An HRMP message was sent to a sibling parachain.897       **/898      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<U8aFixed>], { messageHash: Option<U8aFixed> }>;899      /**900       * Generic event901       **/902      [key: string]: AugmentedEvent<ApiType>;903    };904    xTokens: {905      /**906       * Transferred `MultiAsset` with fee.907       **/908      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation], { sender: AccountId32, assets: XcmV3MultiassetMultiAssets, fee: XcmV3MultiAsset, dest: XcmV3MultiLocation }>;909      /**910       * Generic event911       **/912      [key: string]: AugmentedEvent<ApiType>;913    };914  } // AugmentedEvents915} // declare module