git.delta.rocks / unique-network / refs/commits / 3aa44993a093

difftreelog

source

tests/src/interfaces/augment-api-events.ts34.5 KiBsourcehistory
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit2/* eslint-disable */34// import type lookup before we augment - in some environments5// this is required to allow for ambient/previous definitions6import '@polkadot/api-base/types/events';78import type { ApiTypes, AugmentedEvent } from '@polkadot/api-base/types';9import type { Bytes, Null, Option, Result, U8aFixed, bool, u128, 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, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, SpWeightsWeightV2Weight, XcmV1MultiAsset, XcmV1MultiLocation, XcmV1MultiassetMultiAssets, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, 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    common: {104      /**105       * Address was added to the allow list.106       **/107      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;108      /**109       * Address was removed from the allow list.110       **/111      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;112      /**113       * Amount pieces of token owned by `sender` was approved for `spender`.114       **/115      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;116      /**117       * A `sender` approves operations on all owned tokens for `spender`.118       **/119      ApprovedForAll: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, bool]>;120      /**121       * Collection admin was added.122       **/123      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;124      /**125       * Collection admin was removed.126       **/127      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;128      /**129       * New collection was created130       **/131      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;132      /**133       * New collection was destroyed134       **/135      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;136      /**137       * Collection limits were set.138       **/139      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;140      /**141       * Collection owned was changed.142       **/143      CollectionOwnerChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;144      /**145       * Collection permissions were set.146       **/147      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;148      /**149       * The property has been deleted.150       **/151      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;152      /**153       * The colletion property has been added or edited.154       **/155      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;156      /**157       * Collection sponsor was removed.158       **/159      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;160      /**161       * Collection sponsor was set.162       **/163      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;164      /**165       * New item was created.166       **/167      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;168      /**169       * Collection item was burned.170       **/171      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;172      /**173       * The token property permission of a collection has been set.174       **/175      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;176      /**177       * New sponsor was confirm.178       **/179      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;180      /**181       * The token property has been deleted.182       **/183      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;184      /**185       * The token property has been added or edited.186       **/187      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;188      /**189       * Item was transferred190       **/191      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;192      /**193       * Generic event194       **/195      [key: string]: AugmentedEvent<ApiType>;196    };197    configuration: {198      NewCollatorKickThreshold: AugmentedEvent<ApiType, [lengthInBlocks: Option<u32>], { lengthInBlocks: Option<u32> }>;199      NewCollatorLicenseBond: AugmentedEvent<ApiType, [bondCost: Option<u128>], { bondCost: Option<u128> }>;200      NewDesiredCollators: AugmentedEvent<ApiType, [desiredCollators: Option<u32>], { desiredCollators: Option<u32> }>;201      /**202       * Generic event203       **/204      [key: string]: AugmentedEvent<ApiType>;205    };206    cumulusXcm: {207      /**208       * Downward message executed with the given outcome.209       * \[ id, outcome \]210       **/211      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;212      /**213       * Downward message is invalid XCM.214       * \[ id \]215       **/216      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;217      /**218       * Downward message is unsupported version of XCM.219       * \[ id \]220       **/221      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;222      /**223       * Generic event224       **/225      [key: string]: AugmentedEvent<ApiType>;226    };227    dmpQueue: {228      /**229       * Downward message executed with the given outcome.230       **/231      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;232      /**233       * Downward message is invalid XCM.234       **/235      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;236      /**237       * Downward message is overweight and was placed in the overweight queue.238       **/239      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;240      /**241       * Downward message from the overweight queue was executed.242       **/243      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;244      /**245       * Downward message is unsupported version of XCM.246       **/247      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;248      /**249       * The weight limit for handling downward messages was reached.250       **/251      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;252      /**253       * Generic event254       **/255      [key: string]: AugmentedEvent<ApiType>;256    };257    ethereum: {258      /**259       * An ethereum transaction was successfully executed.260       **/261      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;262      /**263       * Generic event264       **/265      [key: string]: AugmentedEvent<ApiType>;266    };267    evm: {268      /**269       * A contract has been created at given address.270       **/271      Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;272      /**273       * A contract was attempted to be created, but the execution failed.274       **/275      CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;276      /**277       * A contract has been executed successfully with states applied.278       **/279      Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;280      /**281       * A contract has been executed with errors. States are reverted with only gas fees applied.282       **/283      ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;284      /**285       * Ethereum events from contracts.286       **/287      Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;288      /**289       * Generic event290       **/291      [key: string]: AugmentedEvent<ApiType>;292    };293    evmContractHelpers: {294      /**295       * Collection sponsor was removed.296       **/297      ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;298      /**299       * Contract sponsor was set.300       **/301      ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;302      /**303       * New sponsor was confirm.304       **/305      ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;306      /**307       * Generic event308       **/309      [key: string]: AugmentedEvent<ApiType>;310    };311    evmMigration: {312      /**313       * This event is used in benchmarking and can be used for tests314       **/315      TestEvent: AugmentedEvent<ApiType, []>;316      /**317       * Generic event318       **/319      [key: string]: AugmentedEvent<ApiType>;320    };321    foreignAssets: {322      /**323       * The asset registered.324       **/325      AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;326      /**327       * The asset updated.328       **/329      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;330      /**331       * The foreign asset registered.332       **/333      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;334      /**335       * The foreign asset updated.336       **/337      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;338      /**339       * Generic event340       **/341      [key: string]: AugmentedEvent<ApiType>;342    };343    maintenance: {344      MaintenanceDisabled: AugmentedEvent<ApiType, []>;345      MaintenanceEnabled: AugmentedEvent<ApiType, []>;346      /**347       * Generic event348       **/349      [key: string]: AugmentedEvent<ApiType>;350    };351    parachainSystem: {352      /**353       * Downward messages were processed using the given weight.354       **/355      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;356      /**357       * Some downward messages have been received and will be processed.358       **/359      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;360      /**361       * An upgrade has been authorized.362       **/363      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;364      /**365       * The validation function was applied as of the contained relay chain block number.366       **/367      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;368      /**369       * The relay-chain aborted the upgrade process.370       **/371      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;372      /**373       * The validation function has been scheduled to apply.374       **/375      ValidationFunctionStored: AugmentedEvent<ApiType, []>;376      /**377       * Generic event378       **/379      [key: string]: AugmentedEvent<ApiType>;380    };381    polkadotXcm: {382      /**383       * Some assets have been claimed from an asset trap384       * 385       * \[ hash, origin, assets \]386       **/387      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;388      /**389       * Some assets have been placed in an asset trap.390       * 391       * \[ hash, origin, assets \]392       **/393      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;394      /**395       * Execution of an XCM message was attempted.396       * 397       * \[ outcome \]398       **/399      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;400      /**401       * Expected query response has been received but the origin location of the response does402       * not match that expected. The query remains registered for a later, valid, response to403       * be received and acted upon.404       * 405       * \[ origin location, id, expected location \]406       **/407      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;408      /**409       * Expected query response has been received but the expected origin location placed in410       * storage by this runtime previously cannot be decoded. The query remains registered.411       * 412       * This is unexpected (since a location placed in storage in a previously executing413       * runtime should be readable prior to query timeout) and dangerous since the possibly414       * valid response will be dropped. Manual governance intervention is probably going to be415       * needed.416       * 417       * \[ origin location, id \]418       **/419      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;420      /**421       * Query response has been received and query is removed. The registered notification has422       * been dispatched and executed successfully.423       * 424       * \[ id, pallet index, call index \]425       **/426      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;427      /**428       * Query response has been received and query is removed. The dispatch was unable to be429       * decoded into a `Call`; this might be due to dispatch function having a signature which430       * is not `(origin, QueryId, Response)`.431       * 432       * \[ id, pallet index, call index \]433       **/434      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;435      /**436       * Query response has been received and query is removed. There was a general error with437       * dispatching the notification call.438       * 439       * \[ id, pallet index, call index \]440       **/441      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;442      /**443       * Query response has been received and query is removed. The registered notification could444       * not be dispatched because the dispatch weight is greater than the maximum weight445       * originally budgeted by this runtime for the query result.446       * 447       * \[ id, pallet index, call index, actual weight, max budgeted weight \]448       **/449      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;450      /**451       * A given location which had a version change subscription was dropped owing to an error452       * migrating the location to our new XCM format.453       * 454       * \[ location, query ID \]455       **/456      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;457      /**458       * A given location which had a version change subscription was dropped owing to an error459       * sending the notification to it.460       * 461       * \[ location, query ID, error \]462       **/463      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;464      /**465       * Query response has been received and is ready for taking with `take_response`. There is466       * no registered notification call.467       * 468       * \[ id, response \]469       **/470      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;471      /**472       * Received query response has been read and removed.473       * 474       * \[ id \]475       **/476      ResponseTaken: AugmentedEvent<ApiType, [u64]>;477      /**478       * A XCM message was sent.479       * 480       * \[ origin, destination, message \]481       **/482      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;483      /**484       * The supported version of a location has been changed. This might be through an485       * automatic notification or a manual intervention.486       * 487       * \[ location, XCM version \]488       **/489      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;490      /**491       * Query response received which does not match a registered query. This may be because a492       * matching query was never registered, it may be because it is a duplicate response, or493       * because the query timed out.494       * 495       * \[ origin location, id \]496       **/497      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;498      /**499       * An XCM version change notification message has been attempted to be sent.500       * 501       * \[ destination, result \]502       **/503      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;504      /**505       * Generic event506       **/507      [key: string]: AugmentedEvent<ApiType>;508    };509    rmrkCore: {510      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;511      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;512      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;513      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;514      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;515      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;516      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;517      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;518      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;519      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;520      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;521      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;522      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;523      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;524      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;525      /**526       * Generic event527       **/528      [key: string]: AugmentedEvent<ApiType>;529    };530    rmrkEquip: {531      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;532      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;533      /**534       * Generic event535       **/536      [key: string]: AugmentedEvent<ApiType>;537    };538    structure: {539      /**540       * Executed call on behalf of the token.541       **/542      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;543      /**544       * Generic event545       **/546      [key: string]: AugmentedEvent<ApiType>;547    };548    sudo: {549      /**550       * The \[sudoer\] just switched identity; the old key is supplied if one existed.551       **/552      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;553      /**554       * A sudo just took place. \[result\]555       **/556      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;557      /**558       * A sudo just took place. \[result\]559       **/560      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;561      /**562       * Generic event563       **/564      [key: string]: AugmentedEvent<ApiType>;565    };566    system: {567      /**568       * `:code` was updated.569       **/570      CodeUpdated: AugmentedEvent<ApiType, []>;571      /**572       * An extrinsic failed.573       **/574      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;575      /**576       * An extrinsic completed successfully.577       **/578      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;579      /**580       * An account was reaped.581       **/582      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;583      /**584       * A new account was created.585       **/586      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;587      /**588       * On on-chain remark happened.589       **/590      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;591      /**592       * Generic event593       **/594      [key: string]: AugmentedEvent<ApiType>;595    };596    testUtils: {597      BatchCompleted: AugmentedEvent<ApiType, []>;598      ShouldRollback: AugmentedEvent<ApiType, []>;599      ValueIsSet: AugmentedEvent<ApiType, []>;600      /**601       * Generic event602       **/603      [key: string]: AugmentedEvent<ApiType>;604    };605    tokens: {606      /**607       * A balance was set by root.608       **/609      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;610      /**611       * Deposited some balance into an account612       **/613      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;614      /**615       * An account was removed whose balance was non-zero but below616       * ExistentialDeposit, resulting in an outright loss.617       **/618      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;619      /**620       * An account was created with some free balance.621       **/622      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;623      /**624       * Some locked funds were unlocked625       **/626      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;627      /**628       * Some funds are locked629       **/630      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;631      /**632       * Some balance was reserved (moved from free to reserved).633       **/634      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;635      /**636       * Some reserved balance was repatriated (moved from reserved to637       * another account).638       **/639      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;640      /**641       * Some balances were slashed (e.g. due to mis-behavior)642       **/643      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;644      /**645       * The total issuance of an currency has been set646       **/647      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;648      /**649       * Transfer succeeded.650       **/651      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;652      /**653       * Some balance was unreserved (moved from reserved to free).654       **/655      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;656      /**657       * Some balances were withdrawn (e.g. pay for transaction fee)658       **/659      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;660      /**661       * Generic event662       **/663      [key: string]: AugmentedEvent<ApiType>;664    };665    transactionPayment: {666      /**667       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,668       * has been paid by `who`.669       **/670      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;671      /**672       * Generic event673       **/674      [key: string]: AugmentedEvent<ApiType>;675    };676    treasury: {677      /**678       * Some funds have been allocated.679       **/680      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;681      /**682       * Some of our funds have been burnt.683       **/684      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;685      /**686       * Some funds have been deposited.687       **/688      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;689      /**690       * New proposal.691       **/692      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;693      /**694       * A proposal was rejected; funds were slashed.695       **/696      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;697      /**698       * Spending has finished; this is the amount that rolls over until next spend.699       **/700      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;701      /**702       * A new spend proposal has been approved.703       **/704      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;705      /**706       * We have ended a spend period and will now allocate funds.707       **/708      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;709      /**710       * Generic event711       **/712      [key: string]: AugmentedEvent<ApiType>;713    };714    vesting: {715      /**716       * Claimed vesting.717       **/718      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;719      /**720       * Added new vesting schedule.721       **/722      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;723      /**724       * Updated vesting schedules.725       **/726      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;727      /**728       * Generic event729       **/730      [key: string]: AugmentedEvent<ApiType>;731    };732    xcmpQueue: {733      /**734       * Bad XCM format used.735       **/736      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;737      /**738       * Bad XCM version used.739       **/740      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;741      /**742       * Some XCM failed.743       **/744      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;745      /**746       * An XCM exceeded the individual message weight budget.747       **/748      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;749      /**750       * An XCM from the overweight queue was executed with the given actual weight used.751       **/752      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;753      /**754       * Some XCM was executed ok.755       **/756      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;757      /**758       * An upward message was sent to the relay chain.759       **/760      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;761      /**762       * An HRMP message was sent to a sibling parachain.763       **/764      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;765      /**766       * Generic event767       **/768      [key: string]: AugmentedEvent<ApiType>;769    };770    xTokens: {771      /**772       * Transferred `MultiAsset` with fee.773       **/774      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;775      /**776       * Generic event777       **/778      [key: string]: AugmentedEvent<ApiType>;779    };780  } // AugmentedEvents781} // declare module