git.delta.rocks / unique-network / refs/commits / 896d7c692dac

difftreelog

source

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