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

difftreelog

source

tests/src/interfaces/augment-api-events.ts23.6 KiBsourcehistory
1// Auto-generated via `yarn polkadot-types-from-chain`, do not edit2/* eslint-disable */34import type { ApiTypes } from '@polkadot/api-base/types';5import type { Bytes, Null, Option, Result, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';6import type { ITuple } from '@polkadot/types-codec/types';7import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';8import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';910declare module '@polkadot/api-base/types/events' {11  export interface AugmentedEvents<ApiType extends ApiTypes> {12    balances: {13      /**14       * A balance was set by root.15       **/16      BalanceSet: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;17      /**18       * Some amount was deposited (e.g. for transaction fees).19       **/20      Deposit: AugmentedEvent<ApiType, [AccountId32, u128]>;21      /**22       * An account was removed whose balance was non-zero but below ExistentialDeposit,23       * resulting in an outright loss.24       **/25      DustLost: AugmentedEvent<ApiType, [AccountId32, u128]>;26      /**27       * An account was created with some free balance.28       **/29      Endowed: AugmentedEvent<ApiType, [AccountId32, u128]>;30      /**31       * Some balance was reserved (moved from free to reserved).32       **/33      Reserved: AugmentedEvent<ApiType, [AccountId32, u128]>;34      /**35       * Some balance was moved from the reserve of the first account to the second account.36       * Final argument indicates the destination balance type.37       **/38      ReserveRepatriated: AugmentedEvent<ApiType, [AccountId32, AccountId32, u128, FrameSupportTokensMiscBalanceStatus]>;39      /**40       * Some amount was removed from the account (e.g. for misbehavior).41       **/42      Slashed: AugmentedEvent<ApiType, [AccountId32, u128]>;43      /**44       * Transfer succeeded.45       **/46      Transfer: AugmentedEvent<ApiType, [AccountId32, AccountId32, u128]>;47      /**48       * Some balance was unreserved (moved from reserved to free).49       **/50      Unreserved: AugmentedEvent<ApiType, [AccountId32, u128]>;51      /**52       * Some amount was withdrawn from the account (e.g. for transaction fees).53       **/54      Withdraw: AugmentedEvent<ApiType, [AccountId32, u128]>;55      /**56       * Generic event57       **/58      [key: string]: AugmentedEvent<ApiType>;59    };60    common: {61      /**62       * * collection_id63       * 64       * * item_id65       * 66       * * sender67       * 68       * * spender69       * 70       * * amount71       **/72      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;73      /**74       * New collection was created75       * 76       * # Arguments77       * 78       * * collection_id: Globally unique identifier of newly created collection.79       * 80       * * mode: [CollectionMode] converted into u8.81       * 82       * * account_id: Collection owner.83       **/84      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;85      /**86       * New collection was destroyed87       * 88       * # Arguments89       * 90       * * collection_id: Globally unique identifier of collection.91       **/92      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;93      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;94      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;95      /**96       * New item was created.97       * 98       * # Arguments99       * 100       * * collection_id: Id of the collection where item was created.101       * 102       * * item_id: Id of an item. Unique within the collection.103       * 104       * * recipient: Owner of newly created item105       * 106       * * amount: Always 1 for NFT107       **/108      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;109      /**110       * Collection item was burned.111       * 112       * # Arguments113       * 114       * * collection_id.115       * 116       * * item_id: Identifier of burned NFT.117       * 118       * * owner: which user has destroyed its tokens119       * 120       * * amount: Always 1 for NFT121       **/122      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;123      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;124      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;125      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;126      /**127       * Item was transferred128       * 129       * * collection_id: Id of collection to which item is belong130       * 131       * * item_id: Id of an item132       * 133       * * sender: Original owner of item134       * 135       * * recipient: New owner of item136       * 137       * * amount: Always 1 for NFT138       **/139      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;140      /**141       * Generic event142       **/143      [key: string]: AugmentedEvent<ApiType>;144    };145    cumulusXcm: {146      /**147       * Downward message executed with the given outcome.148       * \[ id, outcome \]149       **/150      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;151      /**152       * Downward message is invalid XCM.153       * \[ id \]154       **/155      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;156      /**157       * Downward message is unsupported version of XCM.158       * \[ id \]159       **/160      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;161      /**162       * Generic event163       **/164      [key: string]: AugmentedEvent<ApiType>;165    };166    dmpQueue: {167      /**168       * Downward message executed with the given outcome.169       * \[ id, outcome \]170       **/171      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;172      /**173       * Downward message is invalid XCM.174       * \[ id \]175       **/176      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;177      /**178       * Downward message is overweight and was placed in the overweight queue.179       * \[ id, index, required \]180       **/181      OverweightEnqueued: AugmentedEvent<ApiType, [U8aFixed, u64, u64]>;182      /**183       * Downward message from the overweight queue was executed.184       * \[ index, used \]185       **/186      OverweightServiced: AugmentedEvent<ApiType, [u64, u64]>;187      /**188       * Downward message is unsupported version of XCM.189       * \[ id \]190       **/191      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;192      /**193       * The weight limit for handling downward messages was reached.194       * \[ id, remaining, required \]195       **/196      WeightExhausted: AugmentedEvent<ApiType, [U8aFixed, u64, u64]>;197      /**198       * Generic event199       **/200      [key: string]: AugmentedEvent<ApiType>;201    };202    ethereum: {203      /**204       * An ethereum transaction was successfully executed. [from, to/contract_address, transaction_hash, exit_reason]205       **/206      Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;207      /**208       * Generic event209       **/210      [key: string]: AugmentedEvent<ApiType>;211    };212    evm: {213      /**214       * A deposit has been made at a given address. \[sender, address, value\]215       **/216      BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;217      /**218       * A withdrawal has been made from a given address. \[sender, address, value\]219       **/220      BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;221      /**222       * A contract has been created at given \[address\].223       **/224      Created: AugmentedEvent<ApiType, [H160]>;225      /**226       * A \[contract\] was attempted to be created, but the execution failed.227       **/228      CreatedFailed: AugmentedEvent<ApiType, [H160]>;229      /**230       * A \[contract\] has been executed successfully with states applied.231       **/232      Executed: AugmentedEvent<ApiType, [H160]>;233      /**234       * A \[contract\] has been executed with errors. States are reverted with only gas fees applied.235       **/236      ExecutedFailed: AugmentedEvent<ApiType, [H160]>;237      /**238       * Ethereum events from contracts.239       **/240      Log: AugmentedEvent<ApiType, [EthereumLog]>;241      /**242       * Generic event243       **/244      [key: string]: AugmentedEvent<ApiType>;245    };246    parachainSystem: {247      /**248       * Downward messages were processed using the given weight.249       * \[ weight_used, result_mqc_head \]250       **/251      DownwardMessagesProcessed: AugmentedEvent<ApiType, [u64, H256]>;252      /**253       * Some downward messages have been received and will be processed.254       * \[ count \]255       **/256      DownwardMessagesReceived: AugmentedEvent<ApiType, [u32]>;257      /**258       * An upgrade has been authorized.259       **/260      UpgradeAuthorized: AugmentedEvent<ApiType, [H256]>;261      /**262       * The validation function was applied as of the contained relay chain block number.263       **/264      ValidationFunctionApplied: AugmentedEvent<ApiType, [u32]>;265      /**266       * The relay-chain aborted the upgrade process.267       **/268      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;269      /**270       * The validation function has been scheduled to apply.271       **/272      ValidationFunctionStored: AugmentedEvent<ApiType, []>;273      /**274       * Generic event275       **/276      [key: string]: AugmentedEvent<ApiType>;277    };278    polkadotXcm: {279      /**280       * Some assets have been placed in an asset trap.281       * 282       * \[ hash, origin, assets \]283       **/284      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;285      /**286       * Execution of an XCM message was attempted.287       * 288       * \[ outcome \]289       **/290      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;291      /**292       * Expected query response has been received but the origin location of the response does293       * not match that expected. The query remains registered for a later, valid, response to294       * be received and acted upon.295       * 296       * \[ origin location, id, expected location \]297       **/298      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;299      /**300       * Expected query response has been received but the expected origin location placed in301       * storage by this runtime previously cannot be decoded. The query remains registered.302       * 303       * This is unexpected (since a location placed in storage in a previously executing304       * runtime should be readable prior to query timeout) and dangerous since the possibly305       * valid response will be dropped. Manual governance intervention is probably going to be306       * needed.307       * 308       * \[ origin location, id \]309       **/310      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;311      /**312       * Query response has been received and query is removed. The registered notification has313       * been dispatched and executed successfully.314       * 315       * \[ id, pallet index, call index \]316       **/317      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;318      /**319       * Query response has been received and query is removed. The dispatch was unable to be320       * decoded into a `Call`; this might be due to dispatch function having a signature which321       * is not `(origin, QueryId, Response)`.322       * 323       * \[ id, pallet index, call index \]324       **/325      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;326      /**327       * Query response has been received and query is removed. There was a general error with328       * dispatching the notification call.329       * 330       * \[ id, pallet index, call index \]331       **/332      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;333      /**334       * Query response has been received and query is removed. The registered notification could335       * not be dispatched because the dispatch weight is greater than the maximum weight336       * originally budgeted by this runtime for the query result.337       * 338       * \[ id, pallet index, call index, actual weight, max budgeted weight \]339       **/340      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;341      /**342       * A given location which had a version change subscription was dropped owing to an error343       * migrating the location to our new XCM format.344       * 345       * \[ location, query ID \]346       **/347      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;348      /**349       * A given location which had a version change subscription was dropped owing to an error350       * sending the notification to it.351       * 352       * \[ location, query ID, error \]353       **/354      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;355      /**356       * Query response has been received and is ready for taking with `take_response`. There is357       * no registered notification call.358       * 359       * \[ id, response \]360       **/361      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;362      /**363       * Received query response has been read and removed.364       * 365       * \[ id \]366       **/367      ResponseTaken: AugmentedEvent<ApiType, [u64]>;368      /**369       * A XCM message was sent.370       * 371       * \[ origin, destination, message \]372       **/373      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;374      /**375       * The supported version of a location has been changed. This might be through an376       * automatic notification or a manual intervention.377       * 378       * \[ location, XCM version \]379       **/380      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;381      /**382       * Query response received which does not match a registered query. This may be because a383       * matching query was never registered, it may be because it is a duplicate response, or384       * because the query timed out.385       * 386       * \[ origin location, id \]387       **/388      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;389      /**390       * An XCM version change notification message has been attempted to be sent.391       * 392       * \[ destination, result \]393       **/394      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;395      /**396       * Generic event397       **/398      [key: string]: AugmentedEvent<ApiType>;399    };400    rmrkCore: {401      CollectionCreated: AugmentedEvent<ApiType, [AccountId32, u32]>;402      CollectionDestroyed: AugmentedEvent<ApiType, [AccountId32, u32]>;403      CollectionLocked: AugmentedEvent<ApiType, [AccountId32, u32]>;404      IssuerChanged: AugmentedEvent<ApiType, [AccountId32, AccountId32, u32]>;405      NFTAccepted: AugmentedEvent<ApiType, [AccountId32, RmrkTraitsNftAccountIdOrCollectionNftTuple, u32, u32]>;406      NFTBurned: AugmentedEvent<ApiType, [AccountId32, u32]>;407      NftMinted: AugmentedEvent<ApiType, [AccountId32, u32, u32]>;408      NFTRejected: AugmentedEvent<ApiType, [AccountId32, u32, u32]>;409      NFTSent: AugmentedEvent<ApiType, [AccountId32, RmrkTraitsNftAccountIdOrCollectionNftTuple, u32, u32, bool]>;410      PrioritySet: AugmentedEvent<ApiType, [u32, u32]>;411      PropertySet: AugmentedEvent<ApiType, [u32, Option<u32>, Bytes, Bytes]>;412      ResourceAccepted: AugmentedEvent<ApiType, [u32, u32]>;413      ResourceAdded: AugmentedEvent<ApiType, [u32, u32]>;414      ResourceRemoval: AugmentedEvent<ApiType, [u32, u32]>;415      ResourceRemovalAccepted: AugmentedEvent<ApiType, [u32, u32]>;416      /**417       * Generic event418       **/419      [key: string]: AugmentedEvent<ApiType>;420    };421    rmrkEquip: {422      BaseCreated: AugmentedEvent<ApiType, [AccountId32, u32]>;423      /**424       * Generic event425       **/426      [key: string]: AugmentedEvent<ApiType>;427    };428    scheduler: {429      /**430       * The call for the provided hash was not found so the task has been aborted.431       **/432      CallLookupFailed: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, FrameSupportScheduleLookupError]>;433      /**434       * Canceled some task.435       **/436      Canceled: AugmentedEvent<ApiType, [u32, u32]>;437      /**438       * Dispatched some task.439       **/440      Dispatched: AugmentedEvent<ApiType, [ITuple<[u32, u32]>, Option<U8aFixed>, Result<Null, SpRuntimeDispatchError>]>;441      /**442       * Scheduled some task.443       **/444      Scheduled: AugmentedEvent<ApiType, [u32, u32]>;445      /**446       * Generic event447       **/448      [key: string]: AugmentedEvent<ApiType>;449    };450    structure: {451      /**452       * Executed call on behalf of token453       **/454      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;455      /**456       * Generic event457       **/458      [key: string]: AugmentedEvent<ApiType>;459    };460    sudo: {461      /**462       * The \[sudoer\] just switched identity; the old key is supplied if one existed.463       **/464      KeyChanged: AugmentedEvent<ApiType, [Option<AccountId32>]>;465      /**466       * A sudo just took place. \[result\]467       **/468      Sudid: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;469      /**470       * A sudo just took place. \[result\]471       **/472      SudoAsDone: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;473      /**474       * Generic event475       **/476      [key: string]: AugmentedEvent<ApiType>;477    };478    system: {479      /**480       * `:code` was updated.481       **/482      CodeUpdated: AugmentedEvent<ApiType, []>;483      /**484       * An extrinsic failed.485       **/486      ExtrinsicFailed: AugmentedEvent<ApiType, [SpRuntimeDispatchError, FrameSupportWeightsDispatchInfo]>;487      /**488       * An extrinsic completed successfully.489       **/490      ExtrinsicSuccess: AugmentedEvent<ApiType, [FrameSupportWeightsDispatchInfo]>;491      /**492       * An account was reaped.493       **/494      KilledAccount: AugmentedEvent<ApiType, [AccountId32]>;495      /**496       * A new account was created.497       **/498      NewAccount: AugmentedEvent<ApiType, [AccountId32]>;499      /**500       * On on-chain remark happened.501       **/502      Remarked: AugmentedEvent<ApiType, [AccountId32, H256]>;503      /**504       * Generic event505       **/506      [key: string]: AugmentedEvent<ApiType>;507    };508    treasury: {509      /**510       * Some funds have been allocated.511       **/512      Awarded: AugmentedEvent<ApiType, [u32, u128, AccountId32]>;513      /**514       * Some of our funds have been burnt.515       **/516      Burnt: AugmentedEvent<ApiType, [u128]>;517      /**518       * Some funds have been deposited.519       **/520      Deposit: AugmentedEvent<ApiType, [u128]>;521      /**522       * New proposal.523       **/524      Proposed: AugmentedEvent<ApiType, [u32]>;525      /**526       * A proposal was rejected; funds were slashed.527       **/528      Rejected: AugmentedEvent<ApiType, [u32, u128]>;529      /**530       * Spending has finished; this is the amount that rolls over until next spend.531       **/532      Rollover: AugmentedEvent<ApiType, [u128]>;533      /**534       * We have ended a spend period and will now allocate funds.535       **/536      Spending: AugmentedEvent<ApiType, [u128]>;537      /**538       * Generic event539       **/540      [key: string]: AugmentedEvent<ApiType>;541    };542    unique: {543      /**544       * Address was add to allow list545       * 546       * # Arguments547       * 548       * * collection_id: Globally unique collection identifier.549       * 550       * * user:  Address.551       **/552      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;553      /**554       * Address was remove from allow list555       * 556       * # Arguments557       * 558       * * collection_id: Globally unique collection identifier.559       * 560       * * user:  Address.561       **/562      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;563      /**564       * Collection admin was added565       * 566       * # Arguments567       * 568       * * collection_id: Globally unique collection identifier.569       * 570       * * admin:  Admin address.571       **/572      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;573      /**574       * Collection admin was removed575       * 576       * # Arguments577       * 578       * * collection_id: Globally unique collection identifier.579       * 580       * * admin:  Admin address.581       **/582      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;583      /**584       * Collection limits was set585       * 586       * # Arguments587       * 588       * * collection_id: Globally unique collection identifier.589       **/590      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;591      /**592       * Collection owned was change593       * 594       * # Arguments595       * 596       * * collection_id: Globally unique collection identifier.597       * 598       * * owner:  New owner address.599       **/600      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;601      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;602      /**603       * Collection sponsor was removed604       * 605       * # Arguments606       * 607       * * collection_id: Globally unique collection identifier.608       **/609      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;610      /**611       * Collection sponsor was set612       * 613       * # Arguments614       * 615       * * collection_id: Globally unique collection identifier.616       * 617       * * owner:  New sponsor address.618       **/619      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;620      /**621       * New sponsor was confirm622       * 623       * # Arguments624       * 625       * * collection_id: Globally unique collection identifier.626       * 627       * * sponsor:  New sponsor address.628       **/629      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;630      /**631       * Generic event632       **/633      [key: string]: AugmentedEvent<ApiType>;634    };635    vesting: {636      /**637       * Claimed vesting.638       **/639      Claimed: AugmentedEvent<ApiType, [AccountId32, u128]>;640      /**641       * Added new vesting schedule.642       **/643      VestingScheduleAdded: AugmentedEvent<ApiType, [AccountId32, AccountId32, OrmlVestingVestingSchedule]>;644      /**645       * Updated vesting schedules.646       **/647      VestingSchedulesUpdated: AugmentedEvent<ApiType, [AccountId32]>;648      /**649       * Generic event650       **/651      [key: string]: AugmentedEvent<ApiType>;652    };653    xcmpQueue: {654      /**655       * Bad XCM format used.656       **/657      BadFormat: AugmentedEvent<ApiType, [Option<H256>]>;658      /**659       * Bad XCM version used.660       **/661      BadVersion: AugmentedEvent<ApiType, [Option<H256>]>;662      /**663       * Some XCM failed.664       **/665      Fail: AugmentedEvent<ApiType, [Option<H256>, XcmV2TraitsError]>;666      /**667       * An XCM exceeded the individual message weight budget.668       **/669      OverweightEnqueued: AugmentedEvent<ApiType, [u32, u32, u64, u64]>;670      /**671       * An XCM from the overweight queue was executed with the given actual weight used.672       **/673      OverweightServiced: AugmentedEvent<ApiType, [u64, u64]>;674      /**675       * Some XCM was executed ok.676       **/677      Success: AugmentedEvent<ApiType, [Option<H256>]>;678      /**679       * An upward message was sent to the relay chain.680       **/681      UpwardMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;682      /**683       * An HRMP message was sent to a sibling parachain.684       **/685      XcmpMessageSent: AugmentedEvent<ApiType, [Option<H256>]>;686      /**687       * Generic event688       **/689      [key: string]: AugmentedEvent<ApiType>;690    };691  } // AugmentedEvents692} // declare module