git.delta.rocks / unique-network / refs/commits / 5811ea85a5fa

difftreelog

source

tests/src/interfaces/augment-api-events.ts36.8 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 { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportDispatchDispatchInfo, FrameSupportTokensMiscBalanceStatus, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, PalletForeignAssetsAssetIds, PalletForeignAssetsModuleAssetMetadata, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';1314export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1516declare module '@polkadot/api-base/types/events' {17  interface AugmentedEvents<ApiType extends ApiTypes> {18    appPromotion: {19      /**20       * The admin was set21       * 22       * # Arguments23       * * AccountId: account address of the admin24       **/25      SetAdmin: AugmentedEvent<ApiType, [AccountId32]>;26      /**27       * Staking was performed28       * 29       * # Arguments30       * * AccountId: account of the staker31       * * Balance : staking amount32       **/33      Stake: AugmentedEvent<ApiType, [AccountId32, u128]>;34      /**35       * Staking recalculation was performed36       * 37       * # Arguments38       * * AccountId: account of the staker.39       * * Balance : recalculation base40       * * Balance : total income41       **/42      StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;43      /**44       * Unstaking was performed45       * 46       * # Arguments47       * * AccountId: account of the staker48       * * Balance : unstaking amount49       **/50      Unstake: AugmentedEvent<ApiType, [AccountId32, u128]>;51      /**52       * Generic event53       **/54      [key: string]: AugmentedEvent<ApiType>;55    };56    balances: {57      /**58       * A balance was set by root.59       **/60      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;61      /**62       * Some amount was deposited (e.g. for transaction fees).63       **/64      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;65      /**66       * An account was removed whose balance was non-zero but below ExistentialDeposit,67       * resulting in an outright loss.68       **/69      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;70      /**71       * An account was created with some free balance.72       **/73      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;74      /**75       * Some balance was reserved (moved from free to reserved).76       **/77      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;78      /**79       * Some balance was moved from the reserve of the first account to the second account.80       * Final argument indicates the destination balance type.81       **/82      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;83      /**84       * Some amount was removed from the account (e.g. for misbehavior).85       **/86      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;87      /**88       * Transfer succeeded.89       **/90      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;91      /**92       * Some balance was unreserved (moved from reserved to free).93       **/94      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;95      /**96       * Some amount was withdrawn from the account (e.g. for transaction fees).97       **/98      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;99      /**100       * Generic event101       **/102      [key: string]: AugmentedEvent<ApiType>;103    };104    common: {105      /**106       * Amount pieces of token owned by `sender` was approved for `spender`.107       **/108      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;109      /**110       * A `sender` approves operations on all owned tokens for `spender`.111       **/112      ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;113      /**114       * New collection was created115       **/116      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;117      /**118       * New collection was destroyed119       **/120      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;121      /**122       * The property has been deleted.123       **/124      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;125      /**126       * The colletion property has been added or edited.127       **/128      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;129      /**130       * New item was created.131       **/132      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;133      /**134       * Collection item was burned.135       **/136      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;137      /**138       * The token property permission of a collection has been set.139       **/140      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;141      /**142       * The token property has been deleted.143       **/144      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;145      /**146       * The token property has been added or edited.147       **/148      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;149      /**150       * Item was transferred151       **/152      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;153      /**154       * Generic event155       **/156      [key: string]: AugmentedEvent<ApiType>;157    };158    cumulusXcm: {159      /**160       * Downward message executed with the given outcome.161       * \[ id, outcome \]162       **/163      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;164      /**165       * Downward message is invalid XCM.166       * \[ id \]167       **/168      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;169      /**170       * Downward message is unsupported version of XCM.171       * \[ id \]172       **/173      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;174      /**175       * Generic event176       **/177      [key: string]: AugmentedEvent<ApiType>;178    };179    dmpQueue: {180      /**181       * Downward message executed with the given outcome.182       **/183      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;184      /**185       * Downward message is invalid XCM.186       **/187      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;188      /**189       * Downward message is overweight and was placed in the overweight queue.190       **/191      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;192      /**193       * Downward message from the overweight queue was executed.194       **/195      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;196      /**197       * Downward message is unsupported version of XCM.198       **/199      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;200      /**201       * The weight limit for handling downward messages was reached.202       **/203      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;204      /**205       * Generic event206       **/207      [key: string]: AugmentedEvent<ApiType>;208    };209    ethereum: {210      /**211       * An ethereum transaction was successfully executed.212       **/213      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;214      /**215       * Generic event216       **/217      [key: string]: AugmentedEvent<ApiType>;218    };219    evm: {220      /**221       * A contract has been created at given address.222       **/223      Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;224      /**225       * A contract was attempted to be created, but the execution failed.226       **/227      CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;228      /**229       * A contract has been executed successfully with states applied.230       **/231      Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;232      /**233       * A contract has been executed with errors. States are reverted with only gas fees applied.234       **/235      ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;236      /**237       * Ethereum events from contracts.238       **/239      Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;240      /**241       * Generic event242       **/243      [key: string]: AugmentedEvent<ApiType>;244    };245    evmContractHelpers: {246      /**247       * Collection sponsor was removed.248       **/249      ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;250      /**251       * Contract sponsor was set.252       **/253      ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;254      /**255       * New sponsor was confirm.256       **/257      ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;258      /**259       * Generic event260       **/261      [key: string]: AugmentedEvent<ApiType>;262    };263    evmMigration: {264      /**265       * This event is used in benchmarking and can be used for tests266       **/267      TestEvent: AugmentedEvent<ApiType, []>;268      /**269       * Generic event270       **/271      [key: string]: AugmentedEvent<ApiType>;272    };273    foreignAssets: {274      /**275       * The asset registered.276       **/277      AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;278      /**279       * The asset updated.280       **/281      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;282      /**283       * The foreign asset registered.284       **/285      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;286      /**287       * The foreign asset updated.288       **/289      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;290      /**291       * Generic event292       **/293      [key: string]: AugmentedEvent<ApiType>;294    };295    maintenance: {296      MaintenanceDisabled: AugmentedEvent<ApiType, []>;297      MaintenanceEnabled: AugmentedEvent<ApiType, []>;298      /**299       * Generic event300       **/301      [key: string]: AugmentedEvent<ApiType>;302    };303    parachainSystem: {304      /**305       * Downward messages were processed using the given weight.306       **/307      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;308      /**309       * Some downward messages have been received and will be processed.310       **/311      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;312      /**313       * An upgrade has been authorized.314       **/315      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;316      /**317       * The validation function was applied as of the contained relay chain block number.318       **/319      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;320      /**321       * The relay-chain aborted the upgrade process.322       **/323      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;324      /**325       * The validation function has been scheduled to apply.326       **/327      ValidationFunctionStored: AugmentedEvent<ApiType, []>;328      /**329       * Generic event330       **/331      [key: string]: AugmentedEvent<ApiType>;332    };333    polkadotXcm: {334      /**335       * Some assets have been claimed from an asset trap336       * 337       * \[ hash, origin, assets \]338       **/339      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;340      /**341       * Some assets have been placed in an asset trap.342       * 343       * \[ hash, origin, assets \]344       **/345      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;346      /**347       * Execution of an XCM message was attempted.348       * 349       * \[ outcome \]350       **/351      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;352      /**353       * Expected query response has been received but the origin location of the response does354       * not match that expected. The query remains registered for a later, valid, response to355       * be received and acted upon.356       * 357       * \[ origin location, id, expected location \]358       **/359      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;360      /**361       * Expected query response has been received but the expected origin location placed in362       * storage by this runtime previously cannot be decoded. The query remains registered.363       * 364       * This is unexpected (since a location placed in storage in a previously executing365       * runtime should be readable prior to query timeout) and dangerous since the possibly366       * valid response will be dropped. Manual governance intervention is probably going to be367       * needed.368       * 369       * \[ origin location, id \]370       **/371      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;372      /**373       * Query response has been received and query is removed. The registered notification has374       * been dispatched and executed successfully.375       * 376       * \[ id, pallet index, call index \]377       **/378      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;379      /**380       * Query response has been received and query is removed. The dispatch was unable to be381       * decoded into a `Call`; this might be due to dispatch function having a signature which382       * is not `(origin, QueryId, Response)`.383       * 384       * \[ id, pallet index, call index \]385       **/386      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;387      /**388       * Query response has been received and query is removed. There was a general error with389       * dispatching the notification call.390       * 391       * \[ id, pallet index, call index \]392       **/393      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;394      /**395       * Query response has been received and query is removed. The registered notification could396       * not be dispatched because the dispatch weight is greater than the maximum weight397       * originally budgeted by this runtime for the query result.398       * 399       * \[ id, pallet index, call index, actual weight, max budgeted weight \]400       **/401      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;402      /**403       * A given location which had a version change subscription was dropped owing to an error404       * migrating the location to our new XCM format.405       * 406       * \[ location, query ID \]407       **/408      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;409      /**410       * A given location which had a version change subscription was dropped owing to an error411       * sending the notification to it.412       * 413       * \[ location, query ID, error \]414       **/415      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;416      /**417       * Query response has been received and is ready for taking with `take_response`. There is418       * no registered notification call.419       * 420       * \[ id, response \]421       **/422      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;423      /**424       * Received query response has been read and removed.425       * 426       * \[ id \]427       **/428      ResponseTaken: AugmentedEvent<ApiType, [u64]>;429      /**430       * A XCM message was sent.431       * 432       * \[ origin, destination, message \]433       **/434      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;435      /**436       * The supported version of a location has been changed. This might be through an437       * automatic notification or a manual intervention.438       * 439       * \[ location, XCM version \]440       **/441      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;442      /**443       * Query response received which does not match a registered query. This may be because a444       * matching query was never registered, it may be because it is a duplicate response, or445       * because the query timed out.446       * 447       * \[ origin location, id \]448       **/449      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;450      /**451       * An XCM version change notification message has been attempted to be sent.452       * 453       * \[ destination, result \]454       **/455      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;456      /**457       * Generic event458       **/459      [key: string]: AugmentedEvent<ApiType>;460    };461    rmrkCore: {462      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;463      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;464      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;465      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;466      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;467      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;468      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;469      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;470      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;471      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;472      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;473      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;474      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;475      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;476      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;477      /**478       * Generic event479       **/480      [key: string]: AugmentedEvent<ApiType>;481    };482    rmrkEquip: {483      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;484      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;485      /**486       * Generic event487       **/488      [key: string]: AugmentedEvent<ApiType>;489    };490    scheduler: {491      /**492       * The call for the provided hash was not found so the task has been aborted.493       **/494      CallUnavailable: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;495      /**496       * Canceled some task.497       **/498      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;499      /**500       * Dispatched some task.501       **/502      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> }>;503      /**504       * The given task can never be executed since it is overweight.505       **/506      PermanentlyOverweight: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed> }>;507      /**508       * Scheduled task's priority has changed509       **/510      PriorityChanged: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, priority: u8], { task: ITuple<[u32, u32]>, priority: u8 }>;511      /**512       * Scheduled some task.513       **/514      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;515      /**516       * Generic event517       **/518      [key: string]: AugmentedEvent<ApiType>;519    };520    structure: {521      /**522       * Executed call on behalf of the token.523       **/524      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;525      /**526       * Generic event527       **/528      [key: string]: AugmentedEvent<ApiType>;529    };530    sudo: {531      /**532       * The \[sudoer\] just switched identity; the old key is supplied if one existed.533       **/534      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;535      /**536       * A sudo just took place. \[result\]537       **/538      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;539      /**540       * A sudo just took place. \[result\]541       **/542      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;543      /**544       * Generic event545       **/546      [key: string]: AugmentedEvent<ApiType>;547    };548    system: {549      /**550       * `:code` was updated.551       **/552      CodeUpdated: AugmentedEvent<ApiType, []>;553      /**554       * An extrinsic failed.555       **/556      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;557      /**558       * An extrinsic completed successfully.559       **/560      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;561      /**562       * An account was reaped.563       **/564      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;565      /**566       * A new account was created.567       **/568      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;569      /**570       * On on-chain remark happened.571       **/572      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;573      /**574       * Generic event575       **/576      [key: string]: AugmentedEvent<ApiType>;577    };578    testUtils: {579      BatchCompleted: AugmentedEvent<ApiType, []>;580      ShouldRollback: AugmentedEvent<ApiType, []>;581      ValueIsSet: AugmentedEvent<ApiType, []>;582      /**583       * Generic event584       **/585      [key: string]: AugmentedEvent<ApiType>;586    };587    tokens: {588      /**589       * A balance was set by root.590       **/591      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;592      /**593       * Deposited some balance into an account594       **/595      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;596      /**597       * An account was removed whose balance was non-zero but below598       * ExistentialDeposit, resulting in an outright loss.599       **/600      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;601      /**602       * An account was created with some free balance.603       **/604      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;605      /**606       * Some locked funds were unlocked607       **/608      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;609      /**610       * Some funds are locked611       **/612      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;613      /**614       * Some balance was reserved (moved from free to reserved).615       **/616      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;617      /**618       * Some reserved balance was repatriated (moved from reserved to619       * another account).620       **/621      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;622      /**623       * Some balances were slashed (e.g. due to mis-behavior)624       **/625      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;626      /**627       * The total issuance of an currency has been set628       **/629      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;630      /**631       * Transfer succeeded.632       **/633      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;634      /**635       * Some balance was unreserved (moved from reserved to free).636       **/637      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;638      /**639       * Some balances were withdrawn (e.g. pay for transaction fee)640       **/641      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;642      /**643       * Generic event644       **/645      [key: string]: AugmentedEvent<ApiType>;646    };647    transactionPayment: {648      /**649       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,650       * has been paid by `who`.651       **/652      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;653      /**654       * Generic event655       **/656      [key: string]: AugmentedEvent<ApiType>;657    };658    treasury: {659      /**660       * Some funds have been allocated.661       **/662      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;663      /**664       * Some of our funds have been burnt.665       **/666      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;667      /**668       * Some funds have been deposited.669       **/670      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;671      /**672       * New proposal.673       **/674      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;675      /**676       * A proposal was rejected; funds were slashed.677       **/678      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;679      /**680       * Spending has finished; this is the amount that rolls over until next spend.681       **/682      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;683      /**684       * A new spend proposal has been approved.685       **/686      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;687      /**688       * We have ended a spend period and will now allocate funds.689       **/690      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;691      /**692       * Generic event693       **/694      [key: string]: AugmentedEvent<ApiType>;695    };696    unique: {697      /**698       * Address was added to the allow list699       * 700       * # Arguments701       * * collection_id: ID of the affected collection.702       * * user: Address of the added account.703       **/704      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;705      /**706       * Address was removed from the allow list707       * 708       * # Arguments709       * * collection_id: ID of the affected collection.710       * * user: Address of the removed account.711       **/712      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;713      /**714       * Collection admin was added715       * 716       * # Arguments717       * * collection_id: ID of the affected collection.718       * * admin: Admin address.719       **/720      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;721      /**722       * Collection admin was removed723       * 724       * # Arguments725       * * collection_id: ID of the affected collection.726       * * admin: Removed admin address.727       **/728      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;729      /**730       * Collection limits were set731       * 732       * # Arguments733       * * collection_id: ID of the affected collection.734       **/735      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;736      /**737       * Collection owned was changed738       * 739       * # Arguments740       * * collection_id: ID of the affected collection.741       * * owner: New owner address.742       **/743      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;744      /**745       * Collection permissions were set746       * 747       * # Arguments748       * * collection_id: ID of the affected collection.749       **/750      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;751      /**752       * Collection sponsor was removed753       * 754       * # Arguments755       * * collection_id: ID of the affected collection.756       **/757      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;758      /**759       * Collection sponsor was set760       * 761       * # Arguments762       * * collection_id: ID of the affected collection.763       * * owner: New sponsor address.764       **/765      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;766      /**767       * New sponsor was confirm768       * 769       * # Arguments770       * * collection_id: ID of the affected collection.771       * * sponsor: New sponsor address.772       **/773      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;774      /**775       * Generic event776       **/777      [key: string]: AugmentedEvent<ApiType>;778    };779    vesting: {780      /**781       * Claimed vesting.782       **/783      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;784      /**785       * Added new vesting schedule.786       **/787      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;788      /**789       * Updated vesting schedules.790       **/791      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;792      /**793       * Generic event794       **/795      [key: string]: AugmentedEvent<ApiType>;796    };797    xcmpQueue: {798      /**799       * Bad XCM format used.800       **/801      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;802      /**803       * Bad XCM version used.804       **/805      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;806      /**807       * Some XCM failed.808       **/809      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;810      /**811       * An XCM exceeded the individual message weight budget.812       **/813      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;814      /**815       * An XCM from the overweight queue was executed with the given actual weight used.816       **/817      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;818      /**819       * Some XCM was executed ok.820       **/821      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;822      /**823       * An upward message was sent to the relay chain.824       **/825      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;826      /**827       * An HRMP message was sent to a sibling parachain.828       **/829      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;830      /**831       * Generic event832       **/833      [key: string]: AugmentedEvent<ApiType>;834    };835    xTokens: {836      /**837       * Transferred `MultiAsset` with fee.838       **/839      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;840      /**841       * Generic event842       **/843      [key: string]: AugmentedEvent<ApiType>;844    };845  } // AugmentedEvents846} // declare module