git.delta.rocks / unique-network / refs/commits / 6c48590c156a

difftreelog

source

tests/src/interfaces/augment-api-events.ts27.8 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    rmrkCore: {364      CollectionCreated: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;365      CollectionDestroyed: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;366      CollectionLocked: AugmentedEvent<ApiType, [issuer: AccountId32, collectionId: u32], { issuer: AccountId32, collectionId: u32 }>;367      IssuerChanged: AugmentedEvent<ApiType, [oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32], { oldIssuer: AccountId32, newIssuer: AccountId32, collectionId: u32 }>;368      NFTAccepted: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32 }>;369      NFTBurned: AugmentedEvent<ApiType, [owner: AccountId32, nftId: u32], { owner: AccountId32, nftId: u32 }>;370      NftMinted: AugmentedEvent<ApiType, [owner: AccountId32, collectionId: u32, nftId: u32], { owner: AccountId32, collectionId: u32, nftId: u32 }>;371      NFTRejected: AugmentedEvent<ApiType, [sender: AccountId32, collectionId: u32, nftId: u32], { sender: AccountId32, collectionId: u32, nftId: u32 }>;372      NFTSent: AugmentedEvent<ApiType, [sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool], { sender: AccountId32, recipient: RmrkTraitsNftAccountIdOrCollectionNftTuple, collectionId: u32, nftId: u32, approvalRequired: bool }>;373      PrioritySet: AugmentedEvent<ApiType, [collectionId: u32, nftId: u32], { collectionId: u32, nftId: u32 }>;374      PropertySet: AugmentedEvent<ApiType, [collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes], { collectionId: u32, maybeNftId: Option<u32>, key: Bytes, value: Bytes }>;375      ResourceAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;376      ResourceAdded: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;377      ResourceRemoval: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;378      ResourceRemovalAccepted: AugmentedEvent<ApiType, [nftId: u32, resourceId: u32], { nftId: u32, resourceId: u32 }>;379      /**380       * Generic event381       **/382      [key: string]: AugmentedEvent<ApiType>;383    };384    rmrkEquip: {385      BaseCreated: AugmentedEvent<ApiType, [issuer: AccountId32, baseId: u32], { issuer: AccountId32, baseId: u32 }>;386      EquippablesUpdated: AugmentedEvent<ApiType, [baseId: u32, slotId: u32], { baseId: u32, slotId: u32 }>;387      /**388       * Generic event389       **/390      [key: string]: AugmentedEvent<ApiType>;391    };392    scheduler: {393      /**394       * The call for the provided hash was not found so the task has been aborted.395       **/396      CallLookupFailed: AugmentedEvent<ApiType, [task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError], { task: ITuple<[u32, u32]>, id: Option<U8aFixed>, error: FrameSupportScheduleLookupError }>;397      /**398       * Canceled some task.399       **/400      Canceled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;401      /**402       * Dispatched some task.403       **/404      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> }>;405      /**406       * Scheduled some task.407       **/408      Scheduled: AugmentedEvent<ApiType, [when: u32, index: u32], { when: u32, index: u32 }>;409      /**410       * Generic event411       **/412      [key: string]: AugmentedEvent<ApiType>;413    };414    structure: {415      /**416       * Executed call on behalf of the token.417       **/418      Executed: AugmentedEvent<ApiType, [Result<Null, SpRuntimeDispatchError>]>;419      /**420       * Generic event421       **/422      [key: string]: AugmentedEvent<ApiType>;423    };424    sudo: {425      /**426       * The \[sudoer\] just switched identity; the old key is supplied if one existed.427       **/428      KeyChanged: AugmentedEvent<ApiType, [oldSudoer: Option<AccountId32>], { oldSudoer: Option<AccountId32> }>;429      /**430       * A sudo just took place. \[result\]431       **/432      Sudid: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;433      /**434       * A sudo just took place. \[result\]435       **/436      SudoAsDone: AugmentedEvent<ApiType, [sudoResult: Result<Null, SpRuntimeDispatchError>], { sudoResult: Result<Null, SpRuntimeDispatchError> }>;437      /**438       * Generic event439       **/440      [key: string]: AugmentedEvent<ApiType>;441    };442    system: {443      /**444       * `:code` was updated.445       **/446      CodeUpdated: AugmentedEvent<ApiType, []>;447      /**448       * An extrinsic failed.449       **/450      ExtrinsicFailed: AugmentedEvent<ApiType, [dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchError: SpRuntimeDispatchError, dispatchInfo: FrameSupportWeightsDispatchInfo }>;451      /**452       * An extrinsic completed successfully.453       **/454      ExtrinsicSuccess: AugmentedEvent<ApiType, [dispatchInfo: FrameSupportWeightsDispatchInfo], { dispatchInfo: FrameSupportWeightsDispatchInfo }>;455      /**456       * An account was reaped.457       **/458      KilledAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;459      /**460       * A new account was created.461       **/462      NewAccount: AugmentedEvent<ApiType, [account: AccountId32], { account: AccountId32 }>;463      /**464       * On on-chain remark happened.465       **/466      Remarked: AugmentedEvent<ApiType, [sender: AccountId32, hash_: H256], { sender: AccountId32, hash_: H256 }>;467      /**468       * Generic event469       **/470      [key: string]: AugmentedEvent<ApiType>;471    };472    transactionPayment: {473      /**474       * A transaction fee `actual_fee`, of which `tip` was added to the minimum inclusion fee,475       * has been paid by `who`.476       **/477      TransactionFeePaid: AugmentedEvent<ApiType, [who: AccountId32, actualFee: u128, tip: u128], { who: AccountId32, actualFee: u128, tip: u128 }>;478      /**479       * Generic event480       **/481      [key: string]: AugmentedEvent<ApiType>;482    };483    treasury: {484      /**485       * Some funds have been allocated.486       **/487      Awarded: AugmentedEvent<ApiType, [proposalIndex: u32, award: u128, account: AccountId32], { proposalIndex: u32, award: u128, account: AccountId32 }>;488      /**489       * Some of our funds have been burnt.490       **/491      Burnt: AugmentedEvent<ApiType, [burntFunds: u128], { burntFunds: u128 }>;492      /**493       * Some funds have been deposited.494       **/495      Deposit: AugmentedEvent<ApiType, [value: u128], { value: u128 }>;496      /**497       * New proposal.498       **/499      Proposed: AugmentedEvent<ApiType, [proposalIndex: u32], { proposalIndex: u32 }>;500      /**501       * A proposal was rejected; funds were slashed.502       **/503      Rejected: AugmentedEvent<ApiType, [proposalIndex: u32, slashed: u128], { proposalIndex: u32, slashed: u128 }>;504      /**505       * Spending has finished; this is the amount that rolls over until next spend.506       **/507      Rollover: AugmentedEvent<ApiType, [rolloverBalance: u128], { rolloverBalance: u128 }>;508      /**509       * A new spend proposal has been approved.510       **/511      SpendApproved: AugmentedEvent<ApiType, [proposalIndex: u32, amount: u128, beneficiary: AccountId32], { proposalIndex: u32, amount: u128, beneficiary: AccountId32 }>;512      /**513       * We have ended a spend period and will now allocate funds.514       **/515      Spending: AugmentedEvent<ApiType, [budgetRemaining: u128], { budgetRemaining: u128 }>;516      /**517       * Generic event518       **/519      [key: string]: AugmentedEvent<ApiType>;520    };521    unique: {522      /**523       * Address was added to the allow list524       * 525       * # Arguments526       * * collection_id: ID of the affected collection.527       * * user: Address of the added account.528       **/529      AllowListAddressAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;530      /**531       * Address was removed from the allow list532       * 533       * # Arguments534       * * collection_id: ID of the affected collection.535       * * user: Address of the removed account.536       **/537      AllowListAddressRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;538      /**539       * Collection admin was added540       * 541       * # Arguments542       * * collection_id: ID of the affected collection.543       * * admin: Admin address.544       **/545      CollectionAdminAdded: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;546      /**547       * Collection admin was removed548       * 549       * # Arguments550       * * collection_id: ID of the affected collection.551       * * admin: Removed admin address.552       **/553      CollectionAdminRemoved: AugmentedEvent<ApiType, [u32, PalletEvmAccountBasicCrossAccountIdRepr]>;554      /**555       * Collection limits were set556       * 557       * # Arguments558       * * collection_id: ID of the affected collection.559       **/560      CollectionLimitSet: AugmentedEvent<ApiType, [u32]>;561      /**562       * Collection owned was changed563       * 564       * # Arguments565       * * collection_id: ID of the affected collection.566       * * owner: New owner address.567       **/568      CollectionOwnedChanged: AugmentedEvent<ApiType, [u32, AccountId32]>;569      /**570       * Collection permissions were set571       * 572       * # Arguments573       * * collection_id: ID of the affected collection.574       **/575      CollectionPermissionSet: AugmentedEvent<ApiType, [u32]>;576      /**577       * Collection sponsor was removed578       * 579       * # Arguments580       * * collection_id: ID of the affected collection.581       **/582      CollectionSponsorRemoved: AugmentedEvent<ApiType, [u32]>;583      /**584       * Collection sponsor was set585       * 586       * # Arguments587       * * collection_id: ID of the affected collection.588       * * owner: New sponsor address.589       **/590      CollectionSponsorSet: AugmentedEvent<ApiType, [u32, AccountId32]>;591      /**592       * New sponsor was confirm593       * 594       * # Arguments595       * * collection_id: ID of the affected collection.596       * * sponsor: New sponsor address.597       **/598      SponsorshipConfirmed: AugmentedEvent<ApiType, [u32, AccountId32]>;599      /**600       * Generic event601       **/602      [key: string]: AugmentedEvent<ApiType>;603    };604    vesting: {605      /**606       * Claimed vesting.607       **/608      Claimed: AugmentedEvent<ApiType, [who: AccountId32, amount: u128], { who: AccountId32, amount: u128 }>;609      /**610       * Added new vesting schedule.611       **/612      VestingScheduleAdded: AugmentedEvent<ApiType, [from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule], { from: AccountId32, to: AccountId32, vestingSchedule: OrmlVestingVestingSchedule }>;613      /**614       * Updated vesting schedules.615       **/616      VestingSchedulesUpdated: AugmentedEvent<ApiType, [who: AccountId32], { who: AccountId32 }>;617      /**618       * Generic event619       **/620      [key: string]: AugmentedEvent<ApiType>;621    };622    xcmpQueue: {623      /**624       * Bad XCM format used.625       **/626      BadFormat: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;627      /**628       * Bad XCM version used.629       **/630      BadVersion: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;631      /**632       * Some XCM failed.633       **/634      Fail: AugmentedEvent<ApiType, [messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64], { messageHash: Option<H256>, error: XcmV2TraitsError, weight: u64 }>;635      /**636       * An XCM exceeded the individual message weight budget.637       **/638      OverweightEnqueued: AugmentedEvent<ApiType, [sender: u32, sentAt: u32, index: u64, required: u64], { sender: u32, sentAt: u32, index: u64, required: u64 }>;639      /**640       * An XCM from the overweight queue was executed with the given actual weight used.641       **/642      OverweightServiced: AugmentedEvent<ApiType, [index: u64, used: u64], { index: u64, used: u64 }>;643      /**644       * Some XCM was executed ok.645       **/646      Success: AugmentedEvent<ApiType, [messageHash: Option<H256>, weight: u64], { messageHash: Option<H256>, weight: u64 }>;647      /**648       * An upward message was sent to the relay chain.649       **/650      UpwardMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;651      /**652       * An HRMP message was sent to a sibling parachain.653       **/654      XcmpMessageSent: AugmentedEvent<ApiType, [messageHash: Option<H256>], { messageHash: Option<H256> }>;655      /**656       * Generic event657       **/658      [key: string]: AugmentedEvent<ApiType>;659    };660  } // AugmentedEvents661} // declare module