git.delta.rocks / unique-network / refs/commits / 33ed679d9290

difftreelog

source

tests/src/interfaces/augment-api-events.ts28.0 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, U256, U8aFixed, bool, u128, u32, u64, u8 } from '@polkadot/types-codec';10import type { ITuple } from '@polkadot/types-codec/types';11import type { AccountId32, H160, H256 } from '@polkadot/types/interfaces/runtime';12import type { EthereumLog, EvmCoreErrorExitReason, FrameSupportScheduleLookupError, FrameSupportTokensMiscBalanceStatus, FrameSupportWeightsDispatchInfo, OrmlVestingVestingSchedule, PalletEvmAccountBasicCrossAccountIdRepr, RmrkTraitsNftAccountIdOrCollectionNftTuple, SpRuntimeDispatchError, XcmV1MultiLocation, XcmV2Response, XcmV2TraitsError, XcmV2TraitsOutcome, XcmV2Xcm, XcmVersionedMultiAssets, XcmVersionedMultiLocation } from '@polkadot/types/lookup';1314export type __AugmentedEvent<ApiType extends ApiTypes> = AugmentedEvent<ApiType>;1516declare module '@polkadot/api-base/types/events' {17  interface AugmentedEvents<ApiType extends ApiTypes> {18    balances: {19      /**20       * A balance was set by root.21       **/22      BalanceSet: AugmentedEvent<ApiType, [who: AccountId32, free: u128, reserved: u128], { who: AccountId32, free: u128, reserved: u128 }>;23      /**24       * Some amount was deposited (e.g. for transaction fees).25       **/26      Deposit: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;27      /**28       * An account was removed whose balance was non-zero but below ExistentialDeposit,29       * resulting in an outright loss.30       **/31      DustLost: AugmentedEvent<ApiType, [account: AccountId32, amount: u128], { account: AccountId32, amount: u128 }>;32      /**33       * An account was created with some free balance.34       **/35      Endowed: AugmentedEvent<ApiType, [account: AccountId32, freeBalance: u128], { account: AccountId32, freeBalance: u128 }>;36      /**37       * Some balance was reserved (moved from free to reserved).38       **/39      Reserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;40      /**41       * Some balance was moved from the reserve of the first account to the second account.42       * Final argument indicates the destination balance type.43       **/44      ReserveRepatriated: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus], { from: AccountId32, to: AccountId32, amount: u128, destinationStatus: FrameSupportTokensMiscBalanceStatus }>;45      /**46       * Some amount was removed from the account (e.g. for misbehavior).47       **/48      Slashed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;49      /**50       * Transfer succeeded.51       **/52      Transfer: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, amount: u128], { from: AccountId32, to: AccountId32, amount: u128 }>;53      /**54       * Some balance was unreserved (moved from reserved to free).55       **/56      Unreserved: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;57      /**58       * Some amount was withdrawn from the account (e.g. for transaction fees).59       **/60      Withdraw: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;61      /**62       * Generic event63       **/64      [key: string]: AugmentedEvent<ApiType>;65    };66    common: {67      /**68       * Amount pieces of token owned by `sender` was approved for `spender`.69       **/70      Approved: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;71      /**72       * New collection was created73       **/74      CollectionCreated: AugmentedEvent<ApiType, [u32, u8, AccountId32]>;75      /**76       * New collection was destroyed77       **/78      CollectionDestroyed: AugmentedEvent<ApiType, [u32]>;79      /**80       * The property has been deleted.81       **/82      CollectionPropertyDeleted: AugmentedEvent<ApiType, [u32, Bytes]>;83      /**84       * The colletion property has been added or edited.85       **/86      CollectionPropertySet: AugmentedEvent<ApiType, [u32, Bytes]>;87      /**88       * New item was created.89       **/90      ItemCreated: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;91      /**92       * Collection item was burned.93       **/94      ItemDestroyed: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;95      /**96       * The token property permission of a collection has been set.97       **/98      PropertyPermissionSet: AugmentedEvent<ApiType, [u32, Bytes]>;99      /**100       * The token property has been deleted.101       **/102      TokenPropertyDeleted: AugmentedEvent<ApiType, [u32, u32, Bytes]>;103      /**104       * The token property has been added or edited.105       **/106      TokenPropertySet: AugmentedEvent<ApiType, [u32, u32, Bytes]>;107      /**108       * Item was transferred109       **/110      Transfer: AugmentedEvent<ApiType, [u32, u32, PalletEvmAccountBasicCrossAccountIdRepr, PalletEvmAccountBasicCrossAccountIdRepr, u128]>;111      /**112       * Generic event113       **/114      [key: string]: AugmentedEvent<ApiType>;115    };116    cumulusXcm: {117      /**118       * Downward message executed with the given outcome.119       * \[ id, outcome \]120       **/121      ExecutedDownward: AugmentedEvent<ApiType, [U8aFixed, XcmV2TraitsOutcome]>;122      /**123       * Downward message is invalid XCM.124       * \[ id \]125       **/126      InvalidFormat: AugmentedEvent<ApiType, [U8aFixed]>;127      /**128       * Downward message is unsupported version of XCM.129       * \[ id \]130       **/131      UnsupportedVersion: AugmentedEvent<ApiType, [U8aFixed]>;132      /**133       * Generic event134       **/135      [key: string]: AugmentedEvent<ApiType>;136    };137    dmpQueue: {138      /**139       * Downward message executed with the given outcome.140       **/141      ExecutedDownward: AugmentedEvent<ApiType, [messageId: U8aFixed, outcome: XcmV2TraitsOutcome], { messageId: U8aFixed, outcome: XcmV2TraitsOutcome }>;142      /**143       * Downward message is invalid XCM.144       **/145      InvalidFormat: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;146      /**147       * Downward message is overweight and was placed in the overweight queue.148       **/149      OverweightEnqueued: AugmentedEvent<ApiType, [messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64], { messageId: U8aFixed, overweightIndex: u64, requiredWeight: u64 }>;150      /**151       * Downward message from the overweight queue was executed.152       **/153      OverweightServiced: AugmentedEvent<ApiType, [overweightIndex: u64, weightUsed: u64], { overweightIndex: u64, weightUsed: u64 }>;154      /**155       * Downward message is unsupported version of XCM.156       **/157      UnsupportedVersion: AugmentedEvent<ApiType, [messageId: U8aFixed], { messageId: U8aFixed }>;158      /**159       * The weight limit for handling downward messages was reached.160       **/161      WeightExhausted: AugmentedEvent<ApiType, [messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64], { messageId: U8aFixed, remainingWeight: u64, requiredWeight: u64 }>;162      /**163       * Generic event164       **/165      [key: string]: AugmentedEvent<ApiType>;166    };167    ethereum: {168      /**169       * An ethereum transaction was successfully executed. [from, to/contract_address, transaction_hash, exit_reason]170       **/171      Executed: AugmentedEvent<ApiType, [H160, H160, H256, EvmCoreErrorExitReason]>;172      /**173       * Generic event174       **/175      [key: string]: AugmentedEvent<ApiType>;176    };177    evm: {178      /**179       * A deposit has been made at a given address. \[sender, address, value\]180       **/181      BalanceDeposit: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;182      /**183       * A withdrawal has been made from a given address. \[sender, address, value\]184       **/185      BalanceWithdraw: AugmentedEvent<ApiType, [AccountId32, H160, U256]>;186      /**187       * A contract has been created at given \[address\].188       **/189      Created: AugmentedEvent<ApiType, [H160]>;190      /**191       * A \[contract\] was attempted to be created, but the execution failed.192       **/193      CreatedFailed: AugmentedEvent<ApiType, [H160]>;194      /**195       * A \[contract\] has been executed successfully with states applied.196       **/197      Executed: AugmentedEvent<ApiType, [H160]>;198      /**199       * A \[contract\] has been executed with errors. States are reverted with only gas fees applied.200       **/201      ExecutedFailed: AugmentedEvent<ApiType, [H160]>;202      /**203       * Ethereum events from contracts.204       **/205      Log: AugmentedEvent<ApiType, [EthereumLog]>;206      /**207       * Generic event208       **/209      [key: string]: AugmentedEvent<ApiType>;210    };211    parachainSystem: {212      /**213       * Downward messages were processed using the given weight.214       **/215      DownwardMessagesProcessed: AugmentedEvent<ApiType, [weightUsed: u64, dmqHead: H256], { weightUsed: u64, dmqHead: H256 }>;216      /**217       * Some downward messages have been received and will be processed.218       **/219      DownwardMessagesReceived: AugmentedEvent<ApiType, [count: u32], { count: u32 }>;220      /**221       * An upgrade has been authorized.222       **/223      UpgradeAuthorized: AugmentedEvent<ApiType, [codeHash: H256], { codeHash: H256 }>;224      /**225       * The validation function was applied as of the contained relay chain block number.226       **/227      ValidationFunctionApplied: AugmentedEvent<ApiType, [relayChainBlockNum: u32], { relayChainBlockNum: u32 }>;228      /**229       * The relay-chain aborted the upgrade process.230       **/231      ValidationFunctionDiscarded: AugmentedEvent<ApiType, []>;232      /**233       * The validation function has been scheduled to apply.234       **/235      ValidationFunctionStored: AugmentedEvent<ApiType, []>;236      /**237       * Generic event238       **/239      [key: string]: AugmentedEvent<ApiType>;240    };241    polkadotXcm: {242      /**243       * Some assets have been placed in an asset trap.244       * 245       * \[ hash, origin, assets \]246       **/247      AssetsTrapped: AugmentedEvent<ApiType, [H256, XcmV1MultiLocation, XcmVersionedMultiAssets]>;248      /**249       * Execution of an XCM message was attempted.250       * 251       * \[ outcome \]252       **/253      Attempted: AugmentedEvent<ApiType, [XcmV2TraitsOutcome]>;254      /**255       * Expected query response has been received but the origin location of the response does256       * not match that expected. The query remains registered for a later, valid, response to257       * be received and acted upon.258       * 259       * \[ origin location, id, expected location \]260       **/261      InvalidResponder: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, Option<XcmV1MultiLocation>]>;262      /**263       * Expected query response has been received but the expected origin location placed in264       * storage by this runtime previously cannot be decoded. The query remains registered.265       * 266       * This is unexpected (since a location placed in storage in a previously executing267       * runtime should be readable prior to query timeout) and dangerous since the possibly268       * valid response will be dropped. Manual governance intervention is probably going to be269       * needed.270       * 271       * \[ origin location, id \]272       **/273      InvalidResponderVersion: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;274      /**275       * Query response has been received and query is removed. The registered notification has276       * been dispatched and executed successfully.277       * 278       * \[ id, pallet index, call index \]279       **/280      Notified: AugmentedEvent<ApiType, [u64, u8, u8]>;281      /**282       * Query response has been received and query is removed. The dispatch was unable to be283       * decoded into a `Call`; this might be due to dispatch function having a signature which284       * is not `(origin, QueryId, Response)`.285       * 286       * \[ id, pallet index, call index \]287       **/288      NotifyDecodeFailed: AugmentedEvent<ApiType, [u64, u8, u8]>;289      /**290       * Query response has been received and query is removed. There was a general error with291       * dispatching the notification call.292       * 293       * \[ id, pallet index, call index \]294       **/295      NotifyDispatchError: AugmentedEvent<ApiType, [u64, u8, u8]>;296      /**297       * Query response has been received and query is removed. The registered notification could298       * not be dispatched because the dispatch weight is greater than the maximum weight299       * originally budgeted by this runtime for the query result.300       * 301       * \[ id, pallet index, call index, actual weight, max budgeted weight \]302       **/303      NotifyOverweight: AugmentedEvent<ApiType, [u64, u8, u8, u64, u64]>;304      /**305       * A given location which had a version change subscription was dropped owing to an error306       * migrating the location to our new XCM format.307       * 308       * \[ location, query ID \]309       **/310      NotifyTargetMigrationFail: AugmentedEvent<ApiType, [XcmVersionedMultiLocation, u64]>;311      /**312       * A given location which had a version change subscription was dropped owing to an error313       * sending the notification to it.314       * 315       * \[ location, query ID, error \]316       **/317      NotifyTargetSendFail: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64, XcmV2TraitsError]>;318      /**319       * Query response has been received and is ready for taking with `take_response`. There is320       * no registered notification call.321       * 322       * \[ id, response \]323       **/324      ResponseReady: AugmentedEvent<ApiType, [u64, XcmV2Response]>;325      /**326       * Received query response has been read and removed.327       * 328       * \[ id \]329       **/330      ResponseTaken: AugmentedEvent<ApiType, [u64]>;331      /**332       * A XCM message was sent.333       * 334       * \[ origin, destination, message \]335       **/336      Sent: AugmentedEvent<ApiType, [XcmV1MultiLocation, XcmV1MultiLocation, XcmV2Xcm]>;337      /**338       * The supported version of a location has been changed. This might be through an339       * automatic notification or a manual intervention.340       * 341       * \[ location, XCM version \]342       **/343      SupportedVersionChanged: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;344      /**345       * Query response received which does not match a registered query. This may be because a346       * matching query was never registered, it may be because it is a duplicate response, or347       * because the query timed out.348       * 349       * \[ origin location, id \]350       **/351      UnexpectedResponse: AugmentedEvent<ApiType, [XcmV1MultiLocation, u64]>;352      /**353       * An XCM version change notification message has been attempted to be sent.354       * 355       * \[ destination, result \]356       **/357      VersionChangeNotified: AugmentedEvent<ApiType, [XcmV1MultiLocation, u32]>;358      /**359       * Generic event360       **/361      [key: string]: AugmentedEvent<ApiType>;362    };363    promotion: {364      StakingRecalculation: AugmentedEvent<ApiType, [AccountId32, u128, u128]>;365      /**366       * Generic event367       **/368      [key: string]: AugmentedEvent<ApiType>;369    };370    rmrkCore: {371      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;372      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;373      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;374      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;375      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;376      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;377      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;378      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;379      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;380      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;381      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;382      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;383      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;384      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;385      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;386      /**387       * Generic event388       **/389      [key: string]: AugmentedEvent<ApiType>;390    };391    rmrkEquip: {392      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;393      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;394      /**395       * Generic event396       **/397      [key: string]: AugmentedEvent<ApiType>;398    };399    scheduler: {400      /**401       * The call for the provided hash was not found so the task has been aborted.402       **/403      CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;404      /**405       * Canceled some task.406       **/407      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;408      /**409       * Dispatched some task.410       **/411      Dispatched: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError>], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, result: Result<Null, SpRuntimeDispatchError> }>;412      /**413       * Scheduled some task.414       **/415      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;416      /**417       * Generic event418       **/419      [key: string]: AugmentedEvent<ApiType>;420    };421    structure: {422      /**423       * Executed call on behalf of the token.424       **/425      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;426      /**427       * Generic event428       **/429      [key: string]: AugmentedEvent<ApiType>;430    };431    sudo: {432      /**433       * The \[sudoer\] just switched identity; the old key is supplied if one existed.434       **/435      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;436      /**437       * A sudo just took place. \[result\]438       **/439      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;440      /**441       * A sudo just took place. \[result\]442       **/443      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;444      /**445       * Generic event446       **/447      [key: string]: AugmentedEvent<ApiType>;448    };449    system: {450      /**451       * `:code` was updated.452       **/453      CodeUpdated: AugmentedEvent<ApiType, []>;454      /**455       * An extrinsic failed.456       **/457      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;458      /**459       * An extrinsic completed successfully.460       **/461      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;462      /**463       * An account was reaped.464       **/465      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;466      /**467       * A new account was created.468       **/469      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;470      /**471       * On on-chain remark happened.472       **/473      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;474      /**475       * Generic event476       **/477      [key: string]: AugmentedEvent<ApiType>;478    };479    transactionPayment: {480      /**481       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,482       * has been paid by `who`.483       **/484      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;485      /**486       * Generic event487       **/488      [key: string]: AugmentedEvent<ApiType>;489    };490    treasury: {491      /**492       * Some funds have been allocated.493       **/494      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;495      /**496       * Some of our funds have been burnt.497       **/498      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;499      /**500       * Some funds have been deposited.501       **/502      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;503      /**504       * New proposal.505       **/506      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;507      /**508       * A proposal was rejected; funds were slashed.509       **/510      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;511      /**512       * Spending has finished; this is the amount that rolls over until next spend.513       **/514      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;515      /**516       * A new spend proposal has been approved.517       **/518      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;519      /**520       * We have ended a spend period and will now allocate funds.521       **/522      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;523      /**524       * Generic event525       **/526      [key: string]: AugmentedEvent<ApiType>;527    };528    unique: {529      /**530       * Address was added to the allow list531       * 532       * # Arguments533       * * collection_id: ID of the affected collection.534       * * user: Address of the added account.535       **/536      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;537      /**538       * Address was removed from the allow list539       * 540       * # Arguments541       * * collection_id: ID of the affected collection.542       * * user: Address of the removed account.543       **/544      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;545      /**546       * Collection admin was added547       * 548       * # Arguments549       * * collection_id: ID of the affected collection.550       * * admin: Admin address.551       **/552      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;553      /**554       * Collection admin was removed555       * 556       * # Arguments557       * * collection_id: ID of the affected collection.558       * * admin: Removed admin address.559       **/560      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;561      /**562       * Collection limits were set563       * 564       * # Arguments565       * * collection_id: ID of the affected collection.566       **/567      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;568      /**569       * Collection owned was changed570       * 571       * # Arguments572       * * collection_id: ID of the affected collection.573       * * owner: New owner address.574       **/575      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;576      /**577       * Collection permissions were set578       * 579       * # Arguments580       * * collection_id: ID of the affected collection.581       **/582      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;583      /**584       * Collection sponsor was removed585       * 586       * # Arguments587       * * collection_id: ID of the affected collection.588       **/589      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;590      /**591       * Collection sponsor was set592       * 593       * # Arguments594       * * collection_id: ID of the affected collection.595       * * owner: New sponsor address.596       **/597      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;598      /**599       * New sponsor was confirm600       * 601       * # Arguments602       * * collection_id: ID of the affected collection.603       * * sponsor: New sponsor address.604       **/605      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;606      /**607       * Generic event608       **/609      [key: string]: AugmentedEvent<ApiType>;610    };611    vesting: {612      /**613       * Claimed vesting.614       **/615      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;616      /**617       * Added new vesting schedule.618       **/619      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;620      /**621       * Updated vesting schedules.622       **/623      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;624      /**625       * Generic event626       **/627      [key: string]: AugmentedEvent<ApiType>;628    };629    xcmpQueue: {630      /**631       * Bad XCM format used.632       **/633      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;634      /**635       * Bad XCM version used.636       **/637      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;638      /**639       * Some XCM failed.640       **/641      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;642      /**643       * An XCM exceeded the individual message weight budget.644       **/645      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;646      /**647       * An XCM from the overweight queue was executed with the given actual weight used.648       **/649      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;650      /**651       * Some XCM was executed ok.652       **/653      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;654      /**655       * An upward message was sent to the relay chain.656       **/657      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;658      /**659       * An HRMP message was sent to a sibling parachain.660       **/661      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;662      /**663       * Generic event664       **/665      [key: string]: AugmentedEvent<ApiType>;666    };667  } // AugmentedEvents668} // declare module