git.delta.rocks / unique-network / refs/commits / b46fe9de5725

difftreelog

source

tests/src/interfaces/augment-api-events.ts34.1 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    cumulusXcm: {198      /**199       * Downward message executed with the given outcome.200       * \[ id, outcome \]201       **/202      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;203      /**204       * Downward message is invalid XCM.205       * \[ id \]206       **/207      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;208      /**209       * Downward message is unsupported version of XCM.210       * \[ id \]211       **/212      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;213      /**214       * Generic event215       **/216      [key: string]: AugmentedEvent<ApiType>;217    };218    dmpQueue: {219      /**220       * Downward message executed with the given outcome.221       **/222      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;223      /**224       * Downward message is invalid XCM.225       **/226      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;227      /**228       * Downward message is overweight and was placed in the overweight queue.229       **/230      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: SpWeightsWeightV2Weight }>;231      /**232       * Downward message from the overweight queue was executed.233       **/234      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight], { overweightIndex: u64, weightUsed: SpWeightsWeightV2Weight }>;235      /**236       * Downward message is unsupported version of XCM.237       **/238      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;239      /**240       * The weight limit for handling downward messages was reached.241       **/242      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight], { messageId: U8aFixed, remainingWeight: SpWeightsWeightV2Weight, requiredWeight: SpWeightsWeightV2Weight }>;243      /**244       * Generic event245       **/246      [key: string]: AugmentedEvent<ApiType>;247    };248    ethereum: {249      /**250       * An ethereum transaction was successfully executed.251       **/252      Executed: AugmentedEvent<ApiType, [from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason], { from: H160, to: H160, transactionHash: H256, exitReason: EvmCoreErrorExitReason }>;253      /**254       * Generic event255       **/256      [key: string]: AugmentedEvent<ApiType>;257    };258    evm: {259      /**260       * A contract has been created at given address.261       **/262      Created: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;263      /**264       * A contract was attempted to be created, but the execution failed.265       **/266      CreatedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;267      /**268       * A contract has been executed successfully with states applied.269       **/270      Executed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;271      /**272       * A contract has been executed with errors. States are reverted with only gas fees applied.273       **/274      ExecutedFailed: AugmentedEvent<ApiType, [address: H160], { address: H160 }>;275      /**276       * Ethereum events from contracts.277       **/278      Log: AugmentedEvent<ApiType, [log: EthereumLog], { log: EthereumLog }>;279      /**280       * Generic event281       **/282      [key: string]: AugmentedEvent<ApiType>;283    };284    evmContractHelpers: {285      /**286       * Collection sponsor was removed.287       **/288      ContractSponsorRemoved: AugmentedEvent<ApiType, [H160]>;289      /**290       * Contract sponsor was set.291       **/292      ContractSponsorSet: AugmentedEvent<ApiType, [H160, AccountId32]>;293      /**294       * New sponsor was confirm.295       **/296      ContractSponsorshipConfirmed: AugmentedEvent<ApiType, [H160, AccountId32]>;297      /**298       * Generic event299       **/300      [key: string]: AugmentedEvent<ApiType>;301    };302    evmMigration: {303      /**304       * This event is used in benchmarking and can be used for tests305       **/306      TestEvent: AugmentedEvent<ApiType, []>;307      /**308       * Generic event309       **/310      [key: string]: AugmentedEvent<ApiType>;311    };312    foreignAssets: {313      /**314       * The asset registered.315       **/316      AssetRegistered: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;317      /**318       * The asset updated.319       **/320      AssetUpdated: AugmentedEvent<ApiType, [assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: PalletForeignAssetsAssetIds, metadata: PalletForeignAssetsModuleAssetMetadata }>;321      /**322       * The foreign asset registered.323       **/324      ForeignAssetRegistered: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;325      /**326       * The foreign asset updated.327       **/328      ForeignAssetUpdated: AugmentedEvent<ApiType, [assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata], { assetId: u32, assetAddress: XcmV1MultiLocation, metadata: PalletForeignAssetsModuleAssetMetadata }>;329      /**330       * Generic event331       **/332      [key: string]: AugmentedEvent<ApiType>;333    };334    maintenance: {335      MaintenanceDisabled: AugmentedEvent<ApiType, []>;336      MaintenanceEnabled: AugmentedEvent<ApiType, []>;337      /**338       * Generic event339       **/340      [key: string]: AugmentedEvent<ApiType>;341    };342    parachainSystem: {343      /**344       * Downward messages were processed using the given weight.345       **/346      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: SpWeightsWeightV2Weight, dmqHead: H256], { weightUsed: SpWeightsWeightV2Weight, dmqHead: H256 }>;347      /**348       * Some downward messages have been received and will be processed.349       **/350      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;351      /**352       * An upgrade has been authorized.353       **/354      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;355      /**356       * The validation function was applied as of the contained relay chain block number.357       **/358      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;359      /**360       * The relay-chain aborted the upgrade process.361       **/362      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;363      /**364       * The validation function has been scheduled to apply.365       **/366      ValidationFunctionStored: AugmentedEvent<ApiType, []>;367      /**368       * Generic event369       **/370      [key: string]: AugmentedEvent<ApiType>;371    };372    polkadotXcm: {373      /**374       * Some assets have been claimed from an asset trap375       * 376       * \[ hash, origin, assets \]377       **/378      AssetsClaimed: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;379      /**380       * Some assets have been placed in an asset trap.381       * 382       * \[ hash, origin, assets \]383       **/384      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;385      /**386       * Execution of an XCM message was attempted.387       * 388       * \[ outcome \]389       **/390      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;391      /**392       * Expected query response has been received but the origin location of the response does393       * not match that expected. The query remains registered for a later, valid, response to394       * be received and acted upon.395       * 396       * \[ origin location, id, expected location \]397       **/398      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;399      /**400       * Expected query response has been received but the expected origin location placed in401       * storage by this runtime previously cannot be decoded. The query remains registered.402       * 403       * This is unexpected (since a location placed in storage in a previously executing404       * runtime should be readable prior to query timeout) and dangerous since the possibly405       * valid response will be dropped. Manual governance intervention is probably going to be406       * needed.407       * 408       * \[ origin location, id \]409       **/410      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;411      /**412       * Query response has been received and query is removed. The registered notification has413       * been dispatched and executed successfully.414       * 415       * \[ id, pallet index, call index \]416       **/417      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;418      /**419       * Query response has been received and query is removed. The dispatch was unable to be420       * decoded into a `Call`; this might be due to dispatch function having a signature which421       * is not `(origin, QueryId, Response)`.422       * 423       * \[ id, pallet index, call index \]424       **/425      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;426      /**427       * Query response has been received and query is removed. There was a general error with428       * dispatching the notification call.429       * 430       * \[ id, pallet index, call index \]431       **/432      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;433      /**434       * Query response has been received and query is removed. The registered notification could435       * not be dispatched because the dispatch weight is greater than the maximum weight436       * originally budgeted by this runtime for the query result.437       * 438       * \[ id, pallet index, call index, actual weight, max budgeted weight \]439       **/440      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, SpWeightsWeightV2Weight, SpWeightsWeightV2Weight]>;441      /**442       * A given location which had a version change subscription was dropped owing to an error443       * migrating the location to our new XCM format.444       * 445       * \[ location, query ID \]446       **/447      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;448      /**449       * A given location which had a version change subscription was dropped owing to an error450       * sending the notification to it.451       * 452       * \[ location, query ID, error \]453       **/454      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;455      /**456       * Query response has been received and is ready for taking with `take_response`. There is457       * no registered notification call.458       * 459       * \[ id, response \]460       **/461      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;462      /**463       * Received query response has been read and removed.464       * 465       * \[ id \]466       **/467      ResponseTaken: AugmentedEvent<ApiType, [u64]>;468      /**469       * A XCM message was sent.470       * 471       * \[ origin, destination, message \]472       **/473      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;474      /**475       * The supported version of a location has been changed. This might be through an476       * automatic notification or a manual intervention.477       * 478       * \[ location, XCM version \]479       **/480      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;481      /**482       * Query response received which does not match a registered query. This may be because a483       * matching query was never registered, it may be because it is a duplicate response, or484       * because the query timed out.485       * 486       * \[ origin location, id \]487       **/488      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;489      /**490       * An XCM version change notification message has been attempted to be sent.491       * 492       * \[ destination, result \]493       **/494      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;495      /**496       * Generic event497       **/498      [key: string]: AugmentedEvent<ApiType>;499    };500    rmrkCore: {501      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;502      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;503      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;504      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;505      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;506      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;507      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;508      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;509      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;510      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;511      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;512      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;513      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;514      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;515      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;516      /**517       * Generic event518       **/519      [key: string]: AugmentedEvent<ApiType>;520    };521    rmrkEquip: {522      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;523      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;524      /**525       * Generic event526       **/527      [key: string]: AugmentedEvent<ApiType>;528    };529    structure: {530      /**531       * Executed call on behalf of the token.532       **/533      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;534      /**535       * Generic event536       **/537      [key: string]: AugmentedEvent<ApiType>;538    };539    sudo: {540      /**541       * The \[sudoer\] just switched identity; the old key is supplied if one existed.542       **/543      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;544      /**545       * A sudo just took place. \[result\]546       **/547      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;548      /**549       * A sudo just took place. \[result\]550       **/551      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;552      /**553       * Generic event554       **/555      [key: string]: AugmentedEvent<ApiType>;556    };557    system: {558      /**559       * `:code` was updated.560       **/561      CodeUpdated: AugmentedEvent<ApiType, []>;562      /**563       * An extrinsic failed.564       **/565      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportDispatchDispatchInfo }>;566      /**567       * An extrinsic completed successfully.568       **/569      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportDispatchDispatchInfo], { dispatchInfo: FrameSupportDispatchDispatchInfo }>;570      /**571       * An account was reaped.572       **/573      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;574      /**575       * A new account was created.576       **/577      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;578      /**579       * On on-chain remark happened.580       **/581      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;582      /**583       * Generic event584       **/585      [key: string]: AugmentedEvent<ApiType>;586    };587    testUtils: {588      BatchCompleted: AugmentedEvent<ApiType, []>;589      ShouldRollback: AugmentedEvent<ApiType, []>;590      ValueIsSet: AugmentedEvent<ApiType, []>;591      /**592       * Generic event593       **/594      [key: string]: AugmentedEvent<ApiType>;595    };596    tokens: {597      /**598       * A balance was set by root.599       **/600      BalanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, free: u128, reserved: u128 }>;601      /**602       * Deposited some balance into an account603       **/604      Deposited: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;605      /**606       * An account was removed whose balance was non-zero but below607       * ExistentialDeposit, resulting in an outright loss.608       **/609      DustLost: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;610      /**611       * An account was created with some free balance.612       **/613      Endowed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;614      /**615       * Some locked funds were unlocked616       **/617      LockRemoved: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32 }>;618      /**619       * Some funds are locked620       **/621      LockSet: AugmentedEvent<ApiType, [lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { lockId: U8aFixed, currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;622      /**623       * Some balance was reserved (moved from free to reserved).624       **/625      Reserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;626      /**627       * Some reserved balance was repatriated (moved from reserved to628       * another account).629       **/630      ReserveRepatriated: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128, status: FrameSupportTokensMiscBalanceStatus }>;631      /**632       * Some balances were slashed (e.g. due to mis-behavior)633       **/634      Slashed: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, freeAmount: u128, reservedAmount: u128 }>;635      /**636       * The total issuance of an currency has been set637       **/638      TotalIssuanceSet: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, amount: u128], { currencyId: PalletForeignAssetsAssetIds, amount: u128 }>;639      /**640       * Transfer succeeded.641       **/642      Transfer: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, from: AccountId32, to: AccountId32, amount: u128 }>;643      /**644       * Some balance was unreserved (moved from reserved to free).645       **/646      Unreserved: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;647      /**648       * Some balances were withdrawn (e.g. pay for transaction fee)649       **/650      Withdrawn: AugmentedEvent<ApiType, [currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128], { currencyId: PalletForeignAssetsAssetIds, who: AccountId32, amount: u128 }>;651      /**652       * Generic event653       **/654      [key: string]: AugmentedEvent<ApiType>;655    };656    transactionPayment: {657      /**658       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,659       * has been paid by `who`.660       **/661      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;662      /**663       * Generic event664       **/665      [key: string]: AugmentedEvent<ApiType>;666    };667    treasury: {668      /**669       * Some funds have been allocated.670       **/671      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;672      /**673       * Some of our funds have been burnt.674       **/675      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;676      /**677       * Some funds have been deposited.678       **/679      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;680      /**681       * New proposal.682       **/683      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;684      /**685       * A proposal was rejected; funds were slashed.686       **/687      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;688      /**689       * Spending has finished; this is the amount that rolls over until next spend.690       **/691      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;692      /**693       * A new spend proposal has been approved.694       **/695      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;696      /**697       * We have ended a spend period and will now allocate funds.698       **/699      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;700      /**701       * Generic event702       **/703      [key: string]: AugmentedEvent<ApiType>;704    };705    vesting: {706      /**707       * Claimed vesting.708       **/709      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;710      /**711       * Added new vesting schedule.712       **/713      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;714      /**715       * Updated vesting schedules.716       **/717      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;718      /**719       * Generic event720       **/721      [key: string]: AugmentedEvent<ApiType>;722    };723    xcmpQueue: {724      /**725       * Bad XCM format used.726       **/727      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;728      /**729       * Bad XCM version used.730       **/731      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;732      /**733       * Some XCM failed.734       **/735      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: SpWeightsWeightV2Weight }>;736      /**737       * An XCM exceeded the individual message weight budget.738       **/739      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight], { sender: u32, sentAt: u32, index: u64, required: SpWeightsWeightV2Weight }>;740      /**741       * An XCM from the overweight queue was executed with the given actual weight used.742       **/743      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: SpWeightsWeightV2Weight], { index: u64, used: SpWeightsWeightV2Weight }>;744      /**745       * Some XCM was executed ok.746       **/747      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: SpWeightsWeightV2Weight], { messageHash: Option<H256>, weight: SpWeightsWeightV2Weight }>;748      /**749       * An upward message was sent to the relay chain.750       **/751      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;752      /**753       * An HRMP message was sent to a sibling parachain.754       **/755      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;756      /**757       * Generic event758       **/759      [key: string]: AugmentedEvent<ApiType>;760    };761    xTokens: {762      /**763       * Transferred `MultiAsset` with fee.764       **/765      TransferredMultiAssets: AugmentedEvent<ApiType, [sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation], { sender: AccountId32, assets: XcmV1MultiassetMultiAssets, fee: XcmV1MultiAsset, dest: XcmV1MultiLocation }>;766      /**767       * Generic event768       **/769      [key: string]: AugmentedEvent<ApiType>;770    };771  } // AugmentedEvents772} // declare module